Anwar

Posts

UBUNTU ISPCONFIG3 REDMINE GIT SVN Server

echo pm.cybernetikz.com > /etc/hostname   sudo su nano /etc/hosts   127.0.0.1       localhost.localdomain   localhost 192.168.0.100   server1.example.com     server1   # The following lines are desirable for IPv6...

Ubuntu Network Configuration Command Line

https://help.ubuntu.com/community/NetworkConfigurationCommandLine/Automatic sudo vi /etc/network/interfaces ## To configure a dynamic IP address auto eth0 iface eth0 inet dhcp   ## Or configure a static IP auto...

Ubuntu read and write permission group

First you enter the particular folder path, then using this command … chmod -R 775 foldername chown username:username foldername

Ubuntu user group shows

Ubuntu user group shows   groups To confirm the users’ group membership, enter the following command for each user: groups <username> Put the Magento file...

Ubuntu add user to group www data

http://www.cyberciti.biz/faq/ubuntu-add-user-to-group-www-data/ grant-a-user-permissions-on-www-data-owned-var-www http://askubuntu.com/questions/365087/grant-a-user-permissions-on-www-data-owned-var-www   sudo chown -R mariio128:group html sudo useradd -g mariio128 -G www-data sudo usermod -aG www-data mariio128 chown mariio128:www-data -R html/* http://bjarneo.codes/ubuntu-add-permissions-to-user-for-www-data/...

Ubuntu How Much Swap Should You Use in Linux?

How Much Swap Should You Use in Linux? How much should be the swap size? Should the swap be double of the RAM size or...

Ubutnu Leverage browser caching

https://www.digitalocean.com/community/questions/how-do-setup-gzip-leverage-browser-caching-properly-on-wordpress Did you enable mod_expires and mod_headers? And remember to restart Apache after changing its configuration. Run: sudo a2enmod headers sudo a2enmod expires service apache2...

Upload zip file by remote server php sftp

http://www.webhostingtalk.com/showthread.php?t=418793   http://www.webhostingtalk.com/showthread.php?t=418793   https://www.codexpedia.com/php/php-ssh2-upload-and-download-files-through-sftp/ You can upload your site files after zip, via scp also scp local_site.zip runcloud@server-ip-address:webapps/your-web-app-path/   <?php /** *  Simple code for executing commands...

User group permissions chmod apache

http://fideloper.com/user-group-permissions-chmod-apache http://askubuntu.com/questions/26848/permissions-issue-how-can-apache-access-files-in-my-home-directory user-group-permissions-chmod-apache I’ve been scouring the internet for good information on setting up user and group permissions for Apache. I’ll link some resources on...