Q. I would like to Backup all directories in /home to /dev/st0 tape drive. How do I use script to automate task and what commands do I need to use?
A. Use tar command to backup /home directory. The GNU version of the tar archiving utility included with all Linux distributions. Following tar command also works with Solaris/HP-UX UNIX and FreeBSD/*BSD oses.
For example tar command to backup /home should be as follows:
# tar -czf /dev/st0 /home
Where,
- /dev/st0 : Linux SCSI Tape device name
- /home : Home directory name
This will also backup hidden files and directories. Since this topic is already covered, please refer scripts and previous posts:
- Linux tape backup with mt and tar command – howto
- Howto: Use tar command through network over ssh session
- Shell script to backup directories & files from your home directory and email them as .tar.gz file
- Backup shell script to backup selected directories and upload securely (gpg) to FTP server
🐧 4 comments so far... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
This site is extremely helpful in learning scsi tape backup in Linux. I wish you good luck and thank you all for the help.
This site helped me lots. thanks for all this brilliant effort.
i had tried to take backup of whole system , backup has started but there is not any messages apperas after finishing the backup after taking servral hours
This does not backup /home it backups the tape drive..