Dropbox is so useful! Wouldn’t it be great to have that same convenience and function for your user account on your server, just like you have on your workstation?
This has been tested on Ubuntu Lucid and Jaunty. This procedure will create a system with:
Install a separate Dropbox client (daemon) for individual users
Each user has a separate [...]
If you need to communicate from your Ubuntu server to an FTP server that requires passive mode, there is a problem: your firewall likely blocks communication. Using an FTP client manually, you can probably connect with the server, but not list or transfer files!
The reasons for this are straightforward, your system is operating exactly as it [...]
This is a quick little script I wrote to warn me when disk space is getting low on a server I’m responsible for.
i just stuck this into a daily cron and now I know when to act!
#!/usr/bin/perl
#
# lowdiskspacewarning.pl
#
use strict;
use Filesys::DiskFree;
# init
my $sendmail = "/usr/lib/sendmail -t";
# file system to monitor
my $dirFilesystem = "/";
my $systemName = "putYourSystemNameHere";
# low [...]
These are basically my notes from installing Trac and Subversion on an Ubuntu Intrepid Ibex server.
Install Software Packages
sudo aptitude install libapache2-mod-python libapache2-svn python-setuptools subversion python-subversion
sudo easy_install Trac
Create the Trac Environments Directory
sudo mkdir /var/lib/trac
sudo chown www-data:www-data /var/lib/trac
Setup Apache2
Using the default Ubuntu Apache virtual server setup, create a virtual server instance for
Trac. [...]