1. Linux Command Line
Linux Reference Card - Great reference published on FOSSwire website
One page Linux Manual - Great one page reference to the most popular Linux commands
Unix Tool Box - An incredibly...
0
MySQL commands
This is a list of handy MySQL commands that I use time and time again. At the bottom are statements, clauses,
and functions you can use in MySQL. Below that are PHP and Perl API functions you can use...
0
Using ssh to remotely start a process
Use the below format to start a process on a remote server
ssh -n -f user@host "processname > /dev/null 2>&1 &"
Or
ssh -n -f user@host "sh -c 'cd /whereever; nohup ./whatever > /dev/null...