ChinaUnix.net
相关文章推荐:

solaris tar

solaris 8/e3500. T3-raid5-LTO tape library. tar is pretty slow, 3Mbytes/second. I tried to speed up with: tar cvfb /dev/rmt/2 2048 /oradata/$ORACLE_SID from iostat, it seems much faster, that is ,10+M bytes per second. But from iostat, I verified with truss and see it is doing 1M read/write. But from iostat , I also noticed that, write per second to tape is much greater than read per secon...

by fairysky - Solaris - 2003-10-01 00:35:07 阅读(838) 回复(1)

相关讨论

[code] find . -name 'a*' -o -name 'b*' -exec tar rf abc.tar {} \; [/code] 结果只操作了 'b*'文件. 'a*'文件没有操作

by ddb521 - Shell - 2008-11-06 09:44:11 阅读(2020) 回复(6)

转载自: http://www.hbit88.cn/3/viewspace-2245 solaris 下解压 tartar.gz文件 gzip -d filename.tar.gz tar xvf filename.tar ------------------------- solaris下解压tar.bz2文件 如: bzip2 -d gcc-4.1.0.tar.bz2 ---上面 解压 完之后执行下面的命令。 tar -xvf gcc-4.1.0.tartar -xvf *.tar 解完之后会出现多一个 文件 夹 gcc-4.1.0 -------------------------------------------------- soalris下解压 zip...

by gwl48 - Solaris文档中心 - 2008-04-25 17:26:47 阅读(14628) 回复(0)

solaris tar命令打的包可以直接还原到绝对路径,无论在哪个目录中解的,而LINUX不能

by xzh2002 - Solaris - 2005-04-26 20:25:54 阅读(940) 回复(2)

I wanna use tar command like this: tar czvf target.tgz target # the version of this tar is GNU tar 1.14 unfortunately, solaris couldn't recognize this "z", it's too sad in my scripts ... which tar version can support this option "z" in solaris like RHlinux (GNU tar 1.13.25-11) anyone can tell me how to solve it ? thank you very much !

by alinker - Solaris - 2004-10-31 20:53:45 阅读(747) 回复(2)

Problem of the Z parameter of GNU tar in solaris I wanna use tar command like this: tar czvf target.tgz target # the version of this tar is GNU tar 1.14 unfortunately, solaris couldn't recognize this "z", it's too sad in my scripts ... which tar version can support this option "z" in solaris like RHlinux (GNU tar 1.13.25-11) anyone can tell me how to solve it ? thank you ver...

by alinker - Solaris - 2004-10-28 14:02:23 阅读(896) 回复(0)

tar 可以列出磁带里的内容,但是抽取不出来 我用tar tvf /dev/rmt/0 可以列出磁带里的所有内容,包括 /home/cb/bin、/home/cb/src下的文件和文件夹。 但我用 tar tvf /dev/rmt/0 /home/cb/bin却只能列出/home/cb/bin下的部分内容,然后tar就不动了,用tar tvf /dev/rmt/0 /home/cb/src/* 就跟本显不出一个文件。 我用tar xvf /dev/rmt/0 /home/cb/src/* 半天一个文件也没抽取出来。 咋办?明天就要用这些文件了。 ...

by welcome008 - Solaris - 2003-09-28 09:52:12 阅读(1019) 回复(4)

我的oracle跑在solaris8上,用热备,即alter tablespace tablespace_name begin backup; cp resource_datafile destination_datafiel; alter tablespace tablespace_name end bakcup; 所有的数据文件加起来近30G左右,然后进行压缩,但我今天把压缩的包解压后发现仅近16G。是不是用tar打不了这么大的文件。如果是这样我应该用什么方法?用gzip吗?谢谢大家

by kennyblues - Solaris - 2004-01-13 15:22:16 阅读(1267) 回复(9)

tar.z进行安装和卸载: # zcat jdk-6u10-beta-solaris-sparc.tar.Z | tar -xf - (解压文件,执行一次就可以)  # pkgadd -d . SUNWj6rt SUNWj6dev SUNWj6cfg SUNWj6man SUNWj6dmo (Default install) # pkgadd -d . -a /export/default SUNWj6rt SUNWj6dev SUNWj6cfg SUNWj6man SUNWj6dmo (No default install) 执行自定义路径安装命令之前,需做如下配置: 1、 拷贝安装配置文件到/export/目录下 #cp /var/sadm/install...

by xujun1206 - Solaris文档中心 - 2009-08-26 16:04:20 阅读(2368) 回复(0)

solaris下的tar没有和gzip结合起来,不像Linux的tar有z命令。如果希望tar的同时也能压缩或者解压可以这样写: 打包压缩 tar cvf - testfile | gzip > testfile.tar.gz 解释:"gzip"有的时候需要写绝对路径 例:tar cvf - testfile | /edame/bin/gzip > testfile.tar.gz 解包 gunzip -c testfile.tar.gz | tar xvf 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u3/98460/showart_1962714.html

by chenxing8738 - Solaris文档中心 - 2009-06-12 13:31:00 阅读(4473) 回复(0)

solaris下解压.tar 文件出现目录校验和错误,解压的是gcc-3.4.6..tar文件,大小有180多m,应该也不算太大的文件吧。解压的别的tar都没问题,就是最近在网上下了一些包,其中一部分就解压不开。用flashfxp的二进制方式上传,也不行。网上搜的解压命令行不通。

by zhoukun - Solaris - 2008-01-17 09:27:20 阅读(1827) 回复(1)