假设你已经设置并安装好了磁带机,本人用的是HP SuitStore 500,外置,SCSI接口。
1. 查看磁带中的目录
tar tvf /dev/st0
2. 查看磁带内容并输出到一个文件中
tar tvf /dev/st0 > stlist
3. 备份档案
tar cvf /dev/st0 /etc
tar cvf /dev/st0 /etc/hosts /boot /etc/smb.conf
4. 按指定的文件内容或目录释放出磁带中的相应文件
tar -T stlist -xvf /dev/st0
tar xvfz /dev/st0 /etc/
6. 附加个别文件到磁带后面
tar -r /etc/hosts /etc/passwd -vf /dev/st0
7. 从现有磁带中删除一个或几个文件
tar --delete etc/hosts -vf /dev/st0
8. 附加一个现有的tar文档到磁带后面
tar -A pamd.tar -vf /dev/st0
阅读(827) | 评论(0) | 转发(0) |