由买买提看人间百态

topics

全部话题 - 话题: tar
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
O******e
发帖数: 734
1
来自主题: Programming版 - How to concatenate two .tar.gz files
Maybe this is more like what you want:
$ tar tf p1.tar
file1
file2
$ tar tf p2.tar
file3
file4
$ tar Af p.tar p1.tar
$ tar Af p.tar p2.tar
$ tar tf p.tar
file1
file2
file3
file4
It seems that the "tar Af" command needs to be issued once
for each of p1 and p2. I didn't play around with the gzip
part; you can try it on your own.
l********k
发帖数: 14844
2
自己顶一个:afio
docstore.mik.ua/orelly/unix3/upt/ch38_05.htm
There are good arguments both for and against compression of tar archives
when making backups. The overall problem is that neither tar nor gzip is
particularly fault-tolerant, no matter how convenient they are. Although
compression using gzip can greatly reduce the amount of backup media
required to store an archive, compressing entire tar files as they are
written to floppy or tape makes the backup prone to complete loss if one
block of th... 阅读全帖
d*****g
发帖数: 36
3
来自主题: Unix版 - 如何解压*.tar.bz2文件?请教!
Actually bzip2 it is very similar
with gzip. But bzip with higher
compressing ratio (30%). You can
download it from:
http://sourceware.cygnus.com/bzip2/
First I assume you have installed "bzip".
In Linux with new version of tar, you can
unpack it as:
tar Ixvf *.tar.bz2
You can also unpack it as:
bzip2 *.tar.bz2 | tar xvf -
or
bzip2 *.tar.bz2
tar xvf *.tar
j***y
发帖数: 87
4
gunzip -c filename.tar.gz | tar xvf -
tar -xvfz filename.tar gz (linux)
gzip -dc filename.tar.gz| tar xvf -
m**h
发帖数: 9
5
来自主题: Unix版 - 请教怎样使用tar压文件
I hate man page too. At least it should be html file.
If you are sure your tar application is OK
to extract tar file
tar -xvzf tar_file_name
or
tar -xvf tar_file_name
to creat tar file
tar -cvzf tar_file_name directory_name
or
tar -cvf tar_file_name directory
When you have z as one of parameters you use gzip to compress the file too.
c*****m
发帖数: 1160
6
现在是
tar -cvf out.tar fileA fileB
现在目标是加上一个目录进来。放在旁边目录下,是否这样就可以?
tar -cvf out.tar fileA fileB ../folderC
?
l***t
发帖数: 81
7
来自主题: Programming版 - How to concatenate two .tar.gz files
I have two tar packages, p1.tar.gz and p2.tar.gz
How can use tar or some other tools to
concatenate two packages into one: p.tar.gz ?
Thanks,
s*****d
发帖数: 258
8
来自主题: Unix版 - 请教如何使用tar
if you don't want to read man, better stick to windows.
Simplest usages:
To untar:
tar xvf file.tar
To tar
tar cvf file.tar filelist
ay
发帖数: 2267
9
来自主题: Linux版 - tar问题
tar -cvf xx.tar xx/
完成后
tar: Error exit delayed from previous errors
这个 xx.tar还能用吗?
Z**0
发帖数: 1119
10
full backup, 在一个星期以后,
tar -g
find和tar并用也可以。
google incremental tar,比较我说的清楚多了。man tar。

now
l******9
发帖数: 579
11
【 以下文字转载自 JobHunting 讨论区 】
发信人: light009 (light009), 信区: JobHunting
标 题: transfer a tar.gz file from Linux server to win7 desktop
发信站: BBS 未名空间站 (Fri Nov 14 22:42:50 2014, 美东)
I need to transfer a tar.gz file (2.6 GB) from a Linux server to my laptop (
win 7).
I have installed cygwin on my desktop.
On the linux server, I used scp:
scp myUserName@linux-server:/mypath/myFile.tar.gz myUserName@my-desktop/
mypath
But, the command did not have and response.The same problem happened if I
used scp to ... 阅读全帖
l******9
发帖数: 579
12
【 以下文字转载自 JobHunting 讨论区 】
发信人: light009 (light009), 信区: JobHunting
标 题: transfer a tar.gz file from Linux server to win7 desktop
发信站: BBS 未名空间站 (Fri Nov 14 22:42:50 2014, 美东)
I need to transfer a tar.gz file (2.6 GB) from a Linux server to my laptop (
win 7).
I have installed cygwin on my desktop.
On the linux server, I used scp:
scp myUserName@linux-server:/mypath/myFile.tar.gz myUserName@my-desktop/
mypath
But, the command did not have and response.The same problem happened if I
used scp to ... 阅读全帖
q***e
发帖数: 90
13
来自主题: Unix版 - 请教怎样使用tar压文件
Just type "man tar", that all you nee
to do. If you are really lazy, just ask one
of your fellow to read the manual and do it
for you. It takes only a few minutes. A simple
command might be:
tar cvf name.tar file1 files2 ...
Where files1 , file2 is the file/directory name
you want to tar. EVerything could be found from teh
manual.
l******9
发帖数: 579
14
【 以下文字转载自 JobHunting 讨论区 】
发信人: light009 (light009), 信区: JobHunting
标 题: transfer a tar.gz file from Linux server to win7 desktop
发信站: BBS 未名空间站 (Fri Nov 14 22:42:50 2014, 美东)
I need to transfer a tar.gz file (2.6 GB) from a Linux server to my laptop (
win 7).
I have installed cygwin on my desktop.
On the linux server, I used scp:
scp myUserName@linux-server:/mypath/myFile.tar.gz myUserName@my-desktop/
mypath
But, the command did not have and response.The same problem happened if I
used scp to ... 阅读全帖
l******9
发帖数: 579
15
I need to transfer a tar.gz file (2.6 GB) from a Linux server to my laptop (
win 7).
I have installed cygwin on my desktop.
On the linux server, I used scp:
scp myUserName@linux-server:/mypath/myFile.tar.gz myUserName@my-desktop/
mypath
But, the command did not have and response.The same problem happened if I
used scp to copy to my laptop.
When I used scp on my win7 laptop with cygwin openssh:
scp myUserName@linux-server:/mypath/myFile.tar.gz myUserName@my-laptop/
mypath
I got:
ssh: connect to h... 阅读全帖
D******n
发帖数: 2836
16
来自主题: Linux版 - tar question
if I tar a directory like this
tar -cf 123.tar /aa/bb/cc/dd/123
and now I wanna untar it, but dont want to preserve the directory tree, i ju
st wan the 123 folder.
How to do this ?
c*****m
发帖数: 1160
17
试了一下,还要 tar -cvf out.tar fileA fileB -C ../folderC subfolderC
才适合要求。这个目录有点乱。
q*****m
发帖数: 73
18
来自主题: Unix版 - How to creat .tar.gz?
Only tar is enough:
tar -cvzf mydir.tar.gz mydir
r*****s
发帖数: 11
19
just one command, i remember it is something like:
gunzip filename.tar.gz |tar vxf -
but it does not work
anyone help? Thanks
g***i
发帖数: 90
20
【 以下文字转载自 Software 讨论区 】
【 原文由 genii 所发表 】
比如,我用
tar -ckf 1000 t.tar t
只会产生一个1000k的文件t.tar
p*****t
发帖数: 35
21
来自主题: Unix版 - 如何解压缩.tar.bz2 file
bunzip first, than tar xf
or try tar xjf
or bzcat file | tar xf -
w*****y
发帖数: 70
22
俺不是啥资深球迷,只是一个普通的tar heels,写几句谈谈今天的比赛吧。
这场比赛输得比较可惜,毕竟曾经领先十多分,但是总体上达到保8争4的目标了。其实
tourny开始前无论从官方还是民间的看法,GT都应该是这个赛区的no.1 seed,tar
heels靠着最后拿了ACC tourny title才勉强拿到这个一号种子,所以俺们的目标就是
Elite 8,进final 4算赚了。
今天的比赛以被翻盘的方式输了,并不是意外,前面acc内部打比赛输给maryland和acc
tourny决赛胜NC state都暴露了同一个问题,这也是freshmen为主的球队的一个通病,
领先了就开始松懈,对方追分,然后自己进攻choke,无法遏制对方的得分势头,不同
的是,
打GT和maryland输了,打state侥幸赢了而已。GT是典型的中锋球队,有超级中锋,unc
对对方中锋的防守基本是绕前,不让传球,一旦球到了中锋手里,就只能祈祷对方中锋
的手感了,hansbrough和wright基本防不住。 今天比分拉开就是对方中锋一度手感不
好,然后打自己拿手的快速进攻。roy的球队的特点就是打快
c*******a
发帖数: 64
23
It is really a pain to be a Tar Heel.
输了比赛之后我就决定不来这个版了.看到了wildsky的帖子上了十大,遂过来说一下自
己的感受。
当时是和一个老者一起看球的,一个老Tar heel.在Chapel Hill经营中餐馆数十年。号
称当年乔丹在他店里吃了四年.输了球后,老人一个人跑到店外猛抽烟,搞得很不是滋
味。
还是说一下我自己的想法吧,
Hansborough打得不错,发挥出了自己水平,无奈敌人太强大。跟05年的可以同志相比,
身高一样,但是不够强壮,罚球很准,中投不行,转身跳投几乎没见使过。这个夏天如
果苦练中投,在大学联赛里还是很强的。但是不管怎样,职业的前途不被看好。
Lawson 速度比Felton还快,作为freshman,心理素子很不行.作为一个后卫,关键时候
不敢投篮,不敢往里面打。如果能够留在UNC再打一两年,练出过硬的心理素质,职业
前途比较看好。
Elington 作为一个3分射手,整个赛季没有很出色的命中率,并不出彩。
Terry,作为老兵,从打NCST到USC,表现出过硬的心理素质。不过上一场很可惜,最后
大家都不敢投
L**********A
发帖数: 7115
24
来自主题: CouchPotato版 - 没人看TAR?
TAR 是给了很多队伍都发了 invitation 有些人因为档期不符无法参赛 毕竟你要失踪
一个月
我前几天在机场撞到former TAR contestant 聊天得知
g****y
发帖数: 323
25
来自主题: Java版 - Special Thanks to TAR
On tar's ftp,
both the VCAfe4.0 and JBuilder are available now.
Just got the permit from TAR.
Please do not distribute this ftp site.
We did it for education purpose only.
Please.
130.161.67.116
Do not forward or reply this message.
k***e
发帖数: 7933
26
来自主题: Linux版 - tar问题
我用tar每天备份一个文件夹,我只要一个snapshot。今天做了一个全的备份,明天我
能不能只把更新过的文件放到tar文件里面去?不要很多incremental文件。
T*o
发帖数: 363
27
来自主题: Linux版 - tar question
tar xf 123.tar --strip-components 4

ju
O******e
发帖数: 734
28
来自主题: Programming版 - How to concatenate two .tar.gz files
tar cf p.tar p[12].tgz
s*r
发帖数: 2757
29
a tar.gz with size 1G.
winzip/winrar crashes after running a while
I guess it is because the tar file exceeded the 4G limit.
any suggestion?
a****y
发帖数: 1035
30
来自主题: Unix版 - How to creat .tar.gz?
tar cf - | gzip -c >xxx.tar.gz
t****n
发帖数: 1347
31
来自主题: Unix版 - How to creat .tar.gz?
That is GNU tar, not traditional tar.
q*****m
发帖数: 73
32
来自主题: Unix版 - How to creat .tar.gz?
Good question.. but I don't know. The tar manual claims
tar -z leads to better compression, don't know the
detailes.
y**l
发帖数: 10
33
什么东东能将目录及其子目录下的所有.tar文件一次全展开!
(more than handreds subdirectories)
tar行吗?命令行是啥? (Any OS)
Thanks!
m*******m
发帖数: 182
l*l
发帖数: 225
35
find pathname -name "*.tar" -exec tar xvf {}\;
F***Q
发帖数: 6599
36
来自主题: Unix版 - 关于tar的愚昧问题
如何压缩一个目录下的所有文件?
我用
tar -c myfold/*.* mydoc
结果说
tar: /dev/rmt0: The file access permissions do not allow the specified action.
另外用gzip怎么实现呢?谢谢!
l******n
发帖数: 17
37
来自主题: Unix版 - 关于tar的愚昧问题
tar cvf new.tar *
z****g
发帖数: 2
38
or]
gzip -cd file | tar xvf -
s******n
发帖数: 99
39
来自主题: Unix版 - 请教怎样使用tar压文件
I do have read the damned manual for times, and have follow its instruction,
but the system always shows it cannot find some file in /dev****
And I have asked my fellows in lab, they all acted as if this is too simple
and said "go to read man tar". But when I drag them to the computer, not a
single guy could tar the files correctly for me.
So I come to unknown space, but still...
Anyway, hope yr words work. Thanx!
l***n
发帖数: 21
40
来自主题: Unix版 - tar help!!!
I try to decompress a file in current directory by
tar xvf CVv1.2.2.tar.Z
come out "directory checksum error", help, how to do it
s*****d
发帖数: 258
41
来自主题: Unix版 - tar help!!!
unzip first
unzip file.tar.Z |tar -xvf -
S******t
发帖数: 92
42
来自主题: Unix版 - tar help!!!

try this: tar -zxvf file.tar.Z
t****v
发帖数: 9235
43
来自主题: Military版 - 今天TAR去阿布扎比清真寺 (转载)
【 以下文字转载自 Travel 讨论区 】
发信人: tgbrfv (cn), 信区: Travel
标 题: 今天TAR去阿布扎比清真寺
发信站: BBS 未名空间站 (Sun Nov 10 21:13:35 2013, 美东)
一个个都惊叹美
扎伊德清真寺确实不错
我在迪拜只有两天
庆幸花了半天去阿布扎比看了看清真寺
t****z
发帖数: 8931
44
来自主题: Military版 - 加拿大的tar太过份了
tar就是the amazing race
美国获得无数艾美奖
2人搭档在世界旅行
了解各国文化
父母都让小孩子看
加拿大也拍了
我昨天没事看了一集
一伙人从巴黎飞到蒙特利尔
跑画室给画家当毛豆
搭档摆出造型
先是穿着衣服画
然后穿着内裤画
最后脱个屁股精光
比赛选手里有一对印度后裔兄妹
两个人居然脱光了
还说不要告诉妈妈

发帖数: 1
45
诚招 各商场买手Best Buy Tar get 等 线上买手和线下买手
需采购商品:新款iphone(有锁也可) 新款外星人笔记本 CPU
要求:会折扣买货(会买的自然会)
收货价:零售价8折 或85折(价格差太远的,不要浪费彼此时间)
TEL: V-X 1-7-7-7-5-1-2-3-3-3-3
l*****o
发帖数: 26631
46
现在五六十度的天气。 有没有人知道tar paper能在太阳下面坚持多久啊?
p******m
发帖数: 758
47
The Great Blue Devils Who Wanted to Be a Tar Heel
================================
The recruiting battle between the two schools is every bit as intense as the
fight on the hardwood. Each has had their triumphs and losses.
Interestingly, sometimes kids grew up being a fan of one school. Then things
didn't work out that way, and they ended up changing their shade of blue.
These kids then helped torching the school that they grew up cheering for,
the school they now called enemy.
So, the rivalry
j******h
发帖数: 592
48
来自主题: CouchPotato版 - TAR's new line up of contests
i can't wait to watch tar. bb6 is over. BTW, u might want to check this site
out
http://www.jenvasquezsucks.com/

coworkers
b*****n
发帖数: 66
49
来自主题: CouchPotato版 - The casting for TAR 14
They finally did it right. There are some interesting teams. I like 'Ned
Schneebly' in School of Rock :)
I was a huge fan of TAR, but the previous few seasons are so boring that I
just gave up watching.
p**s
发帖数: 788
50
来自主题: CouchPotato版 - 这次TAR的华裔兄妹
那些地方是06年去的。去年去Innsbruck滑翔,看下来的风景应该跟Mel看到的一样。
Bungee跳对于游客可能只有夏天才有。
我们一家刚去西班牙安达露西亚逛了十天。差点犯了TAR第三季的错误,加油时,拿起
Gasoleo A的nozzle就往油箱里捅,怎么都塞不进去,后面等的车主急了,过来看咋回
事,原来Gasoleo A是Diesel,好险啊。
特讨厌那对空姐。
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)