The command below will rsync the wordpress folder with carlmoonan.com
rsync -a -u wordpress/ carlmoonan.com/ -n
The trailing -n will make i do a dry run. To do this to a remote machine you can use the following command:
rsync cmoonan@217.155.133.176:'/Users/cmoonan/Documents/svnroot/trunk/java/' ~/Documents/svnroot/trunk/java/ --progress --recursive -n --exclude-from '/Users/carl/Documents/rsync-exclude.txt' --stats -e 'ssh -p 22' -v
Posted on Oct 30, 2007
Here are some instructions on how to build and install open source software that can be used to host your own website. I created these documents, scripts and how to's in the process of building this site. I used an apple mac computer running os x 10.4.9 with a fixed ip address from my ISP and open source software found on the web.
The only real difficulty ...
Posted on May 28, 2007
Working as of 2007/05/23 … if you are reading this & this date is very old then these instructions may not work as they do now.
To build PHP is pretty strait forward but like installing Subversion there is a dependency on a library called PEAR. Also PHP has a module that runs inside of apache and in this instance linked to MySQL. You can find instructions ...
Posted on May 24, 2007