在Linux上,我试图从不同的目录创建一个.tar.gz存档,也就是说,我有一个bash脚本,它将从另一个目录执行。脚本将打包该文件夹,我将给出文件夹的绝对目录--比如/home/user1/Documents/folder1 --然而,当它打包tar文件时,它将整个绝对目录放在存档中,而我只需要folder1中的相对目录例如:
tar czf /h
我是一个新的Linux用户,而且还在学习它。据我所知,默认情况下,tar命令(单独使用,没有z、j或J等选项)不会压缩文件。它只将多个文件打包到一个文件中。下面是我的测试。root@u2004:~# du -sh /etc/root@u2004:~# tar cf etc.tar /etcroot@u2004:
我在红帽Linux上工作,我有一个tar.gz文件。我想将这个tar.gz文件打包到一个rpm包文件中。In the rpm package phase, I just want to extract the tar.gz file and package all of the staff into therpm package, when I install the rpm package in linux server, it will just simply copy all of
我可以使用以下命令从目录directory创建一个文件file.tar.gz文件使用以下命令将其解包
tar xzf file.tar.gz重新创建目录directory。但是,如何从目录directory创建一个file.tar.gz,该目录在使用相同的命令解压时创建directory-foo (需要保留unpack命令)?在打包之