[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] Backup/Restore procedures for RAQ3
- Subject: Re: [cobalt-users] Backup/Restore procedures for RAQ3
- From: Bill Gunning <billgun@xxxxxxxxxxxxxxxxx>
- Date: Thu Apr 13 17:30:22 2000
>Does anybody have a proven backup/restore method for trhe RAQ3?
I use the GUI backup, and then just in case. I also copy a couple
of files and back them up using FTP before deleting the copied files.
mkdir home/sites/backup
copy and paste into a telnet session:
cp etc/aliases home/sites/backup/aliases.txt
cp etc/virtusertable home/sites/backup/virtusertable.txt
cp etc/shadow home/sites/backup/shadow.txt
cp etc/passwd home/sites/backup/passwd.txt
chmod 666 home/sites/backup/aliases.txt
chmod 666 home/sites/backup/virtusertable.txt
chmod 666 home/sites/backup/shadow.txt
chmod 666 home/sites/backup/passwd.txt
chown admin.home home/sites/backup/aliases.txt
chown admin.home home/sites/backup/virtusertable.txt
chown admin.home home/sites/backup/shadow.txt
chown admin.home home/sites/backup/passwd.txt
Bill