Top 10 Firefox Extensions to Improve your Productivity
Top 10 extensions that will keep you focused, reduce distractions, streamline your daily work flow, and improve your productivity. More >>>
Articles, tips, tricks, and techniques.
Top 10 extensions that will keep you focused, reduce distractions, streamline your daily work flow, and improve your productivity. More >>>
Posted by
Tony
at
10:55 PM
0
comments
A guide to OS X Browsers - There's no perfect browser for OS X, Firefox is too slow, Camino is too featureless. This is an analysis of 11 browsers for OS X, weighing up the positives and negatives of each More >>>
Posted by
Tony
at
10:51 PM
0
comments
It is really easy for your computer system to get full of junk. This is one reason why people often notice that their computer system seems to be slowing down. Go to Start→Run… and type in cleanmgr /sageset:99
To run the deep clean, simply follow these steps:
cleanmgr /sagerun:99More >>>
Posted by
Tony
at
11:53 PM
0
comments
Back in September I revived my Mini-ITX box to serve as a backup server. I set up BackupPC, ran it once, it seemed to work, and then ignored it for weeks. When I checked back, it hadn’t run successfully since. Ugh, I want backups to just work!
A few nights ago I decided to try again, this time dropping the constraint of not installing software on my laptop. Turns out I already had the building block I needed: rsync, installed in the form of Cygwin.
I began with these Rsync for Windows instructions, and everything went smoothly until the very end—rsync on Windows wasn’t connecting to rsync on Ubuntu. My gut told me rsync’s port 873 isn’t open on Ubuntu, but I had no idea how to open ports anymore. Luckily I found How to start rsync daemon at boot in the Ubuntu forums which told me exactly what I needed to know.
Partly as an aide to my memory, and partly to help anyone out there who might be struggling with the same project (unless everyone except me is already backing up their computers) I decided to summarize the process without all the false starts and dead ends it took me to figure it all out. For more information, the rsync man page is useful, as well as the results in Google for windows rsync.
sudo apt-get install rsync (it’s probably already installed)sudo nano /etc/rsyncd.conf
username with your Ubuntu username: [usernamebackup]
path = /home/username/backup
comment = Backup
uid = username
gid = username
read only = false
auth users = username
secrets file = /etc/rsyncd.secrets
sudo chmod 644 /etc/rsyncd.conf
sudo nano /etc/rsyncd.secrets
username with your username and password with a password of your choosing: username:password
sudo chmod 600 /etc/rsyncd.secrets
RSYNC_ENABLE=true
sudo /etc/init.d/rsync restart
C:\cygwin\bin; to the Windows PATH statement C:\cygwin\bin; to the beginning of the listnano /secret
chmod 600 /secret
chown Administrator:SYSTEM /secret
C:\cygwin\bin\rsync.exe -qrtz --password-file=c:\cygwin\secret --delete "/cygdrive/c/Documents and Settings/User Name" username@ipaddress::usernamebackup
As you may have guessed, the "/cygdrive/c/Documents and Settings/User Name" command line option designates where to start backing up from. As currently configured, this will backup your Windows home directory (Desktop, My Documents, etc). If you want to backup your whole hard drive, change that option to "/cygdrive/c".
C:\rsync.bat in the Run field"/cygdrive/c/Documents and Settings/User Name" to "/cygdrive/c/data"pause on a new line at the bottom of C:\rsync.bat and save the file"/cygdrive/c/data" back to "/cygdrive/c/Documents and Settings/User Name" and remove the pause commandNT AUTHORITY\SYSTEM—this will ensure that the process runs in the background, without popping up a command prompt windowRun C:\rsync.bat from the command line before going to bed. Backing up 35GB over a wireless-g connection took me over 8 hours. Subsequent backups take less than a minute. Behold the beauty of rsync.
Posted by
Tony
at
11:12 PM
2
comments