我想压缩一个目录。
tar -cvzf mydir.tar.gz mydir
但这保留了符号链接,因此它不能移植到新系统。
如何转换符号链接?
我努力了
tar -cvzfh
因为man tar
说
-h,--取消引用
don’t dump symlinks; dump the files they point to
但这会导致错误
tar: Error exit delayed from previous errors
并创建一个名为“zh”的文件
我的文件在 RHEL 服务器上。