Creating a Backup...

hostanet

Verified User
Joined
Jun 11, 2003
Messages
43
Location
Central Illinois USA
I was wondering when you create a backup if there is a way to change where it puts the backup file? Such as on another partition or other local hard drive?
Thanks!
John
 
It's currently hard coded. For now, you could probably create a symbolic link to the new location:
Code:
cd /home/username
mv backups /some/new/drive/backups/username
ln -s /some/new/drive/backups/username backups
John
 
Back
Top