The quick way to TAR

<script type="text/javascript"> </script> <script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script>

TAR is command used to archive a directory to TAPE device on OpenBSD, like on any other UNIX OSes.

To achive a directory named, say, /home/test/www,  to a file named wwwbackup.tar, do the following:

#cd /home/test/www
#tar cfv wwwbackup.tar .

note the f switch, it tell tar to send all files to a file instead of the tape device, which is the default destination if f switch is not present. At the end, it tells you how much blocks it archived.

Also note the “.”, which represents current directory.

To view or list the archived file, use:

# tar tf wwwbackup.tar

To create a compressed tar file, use “z” switch:

#tar czf wwwbackup.tar.gz .

To view a gzip compressed tar file, use:

# tar tfz wwwbackup.tar.gz

To restore from a tar file, use:

#tar xf wwwbackup.tar

Or, if compressed,

#tar xzf wwwbackup.tar.gz

To archive only a certain directories, just specify the the name you want to archive:

#tar cfz partialwww.tar.gz dir1 dir2 dir5

To append to a existing archive, use r switch instead c; To update an archive, use “u” switch instead of “c”.

#man tar for more information.

THE END

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值