完全路径的tar文件如何恢复成相对路径

发表于:2007-06-09来源:作者:点击数: 标签:

在FAQ看见的,单独拿出来灌水。未经测试
How do I untar a file with absolute paths to a relative location? 

Method 1 (user) 
/usr/bin/pax -r -s ',^/,,' -f file.tar 

Method 2 (root) 
/usr/bin/cp /usr/sbin/static/tar /tmp 
/usr/bin/dd if=file.tar | /usr/bin/chroot /tmp ./tar xf -

原文转自:http://www.ltesting.net