Linux usual commands
change rights recursive: chmod -R 775 file change owner recursive: chown -R user:group file Process analyze: # ps -A and # top , ps -fax Remove package: apt-get --purge remove package memory info: free -m Set timezone in ubuntu: dpkg-reconfigure tzdata Extract tar archive : tar jxvf archive.tar.bz2 Create tar.gz archive preserving permisions tar -pczf name_of_your_archive.tar.gz /path/to/directory Uncompress: tar zxf archive.tar.gz uncompress bziped: tar jxf archive.tar.bz2 Add group # groupadd groupname Add user # useradd username User Info # id username Add existing user to group www-data # usermod -a -G www-data username Install imagemagik: # apt-get install imagemagick --fix-missing Ubutu timezone set: fi...