各位dgdj们,偶用tar来备份一些文件,发现tar生成的打包文件最大也就2147483647,然后tar就报 File too large的错了,不知道有没有办法解决啊,谢谢
by louxiaoping - Linux论坛 - 2004-07-26 11:24:59 阅读(580) 回复(0)
It does not preserve the sparse nature of any file that is sparsely allocated. Any file that was originally sparse before the restoration will have all space allocated within the filesystem for the size of the file.是什么意思; 另外Sparse Files是什么概念? filespace命令需要安装何软件包?我运行不了(ksh: fileplace: not found.)
我运行的命令如下: /home/oms>tar c /dev/krm -C /home/oms/test/test1 ./test1 -C /home/oms/test/test2 ./test2 tar: cannot open /dev/rmt/0m 系统报错。 如果改为 /home/oms/test/test1>tar cvf test.tar -C /home/oms/test/test1/ /home/oms/test/test1>ls -C EXCLUDE test.tar test1 test2 test3 test4 /home/oms/test/test1>tar tvf test.tar 可以压缩成功,但是test.tar里面没有任何内容。 请高...
前几天对AIX进行了一次备份,是用tar指令,将"/"根目寻下的所有文件全部写到磁带中,AIX系统中还装有DB2数据库。 请问: 1、当系统崩溃的时候,这种方式的备份能否恢复系统?还是只能恢复文件系统?如果可以,将如何操作呢? 2、这种将DB2的备份也按照这种方式是否可行呢?tar指令的备份的可以恢复DB2吗?
:shock::shock: 我在服务器上用tar打包 再FTP到本地机 用WINRAR软件解压之后 大小从.tar文件的1.99GB变成了1。59GB Q:这个正常吗?
需要备份/home/software/test下内容, 不包含里面的目录005 这样可以备份 #cd /home/software/test # tar -cvzf test.tar.gz . --exclude=005 ./ ./001 ./002 ./003 ./004 ./008 ./test.tar.gz 如果回到上一层目录, cd ../就是在/home/software # tar -cvzf test.tar.gz --exclude=test/005/ test test/ test/001 test/002 test/003 test/004 test/005/ test/005/006 test/005/007 test/008 test/test.tar.gz exclude却没有作用...