Background I’m in the process of setting up a new Droplet on DigitalOcean. Mine is a Ubuntu droplet. The joy about DigitalOcean is that you have full control over your (super fast) server (and at a great price). You want Apache? you can install it yourself. You want git? same deal. Trying out node.js? You… Read more »
Posts Tagged: Linux
Setting up Subversion (SVN) on Bluehost
I found some instructions from J. Taylor on how to install SVN on Bluehost, but they were a bit out-dated. For one, Subversion is now an Apache project and isn’t found on subversion.tigris.org anymore. You can find the project on http://subversion.apache.org/. Other than that, the instructions are great! mkdir src cd src wget http://subversion.tigris.org/downloads/subversion-1.6.15.tar.bz2 wget… Read more »
SVN batch commands for adding or deleting multiple files (Linux)
Here are a few little hints that may help speed up your SVN workflow if you are using SVN in a Linux environment. I found the first one on Snipplr and used that to create the second one for myself. Deleting multiple missing files (ie. the ones with a “!” next to them): svn delete… Read more »
Another process using packaging system database in Adept Manager
I was upgrading Kubuntu today, when it told me something went wrong and so I stopped it. Then, when I went back to restart Adept Manager, I got the message: Another process using packaging system database I started looking around my running processes and attempting to kill whatever I thought might be causing the problem,… Read more »
Yes, you can rsync between two local directories
I wanted to set up a cronjob to backup my photos from a Windows computer to my linux server. To do so I simply set Windows to share the photos directory, then mounted the directory in linux. The rsync command seemed like the most logical way to sync the mounted directory with my backup directory…. Read more »