d***d 发帖数: 24 | 1 I have downloaded several very large encrypted Winzip files, I tried to
unzip it with "unzip -P password file -d newdir" but it doesn't work. The
manual page of unzip says if no password is provided then it will prompt
for password, but when I use "unzip file" it gave me encrypted (not supported)
error.
The files are quite big(around 3G) so I really don't want to transfer them
to Windows and unzip. Anyone has some idea how to do it in unix? Thanks.. |
|
S*****T 发帖数: 400 | 2 I met a unzip problem in Solaris 7.
Tried to install some patch from sun and directly downloaded them, then
unzip under Solaris but it never worked.
It gives error mesg saying wrong zip file.
I could unzip the file in linux though.
really weird.
Anyone has some idea on this?
BTW, I downloaded the patch and put on another ftp since my DNS does
work now and I could not direct download from sun.
Is this related to what happened?
Like binary format or something
thanks |
|
q**j 发帖数: 10612 | 3 I need to download a .zip file, unzip it as a .txt file and then read data
from that .txt file into SAS. Is it a feasible thing to do? thanks a lot. |
|
b*****e 发帖数: 223 | 4 可见我有多抓狂了,这么多问题,呜呜
如果 folder 里有 100 zipped file,我怎么可以让他们自动的一个个去 unzip,不需
要我一个个点开,填path做100下 |
|
D******n 发帖数: 2836 | 5 in that folder ,ctrl+a, use RIGHT mouse button to drag them to a new folder,
select the option to unzip the files in the popup menu. |
|
b*****e 发帖数: 223 | 6 did it but no unzip option in the popup menu ah, only copy here and move
here
folder, |
|
p********a 发帖数: 5352 | 7 You can do it by SAS
first read the folder name, and you can select all the file names into marco
variables. Then use x command to unzip the files
Use the following to get file names-
%sysexec cd &dir; %sysexec dir *.txt /b/o:n >flist;
data indexfile;
length filen $200 ;
infile "&dir./flist" length=reclen;
input filen $varying256. reclen;
run; |
|
t******e 发帖数: 2009 | 8 【 以下文字转载自 PDA 讨论区 】
发信人: theodore (陀螺), 信区: PDA
标 题: 在G1上装froyo-----长,复杂,绝对慎入
发信站: BBS 未名空间站 (Wed Dec 29 04:28:36 2010, 美东)
应朋友的要求写了个攻略,好辛苦,版主给个包子吧。
所有的攻略都是来自于xda,我只是做了搜索和整理,翻译和写了解释性的语言和自己
的感受。
我自己按照这个攻略刷机成功了。
1. downgrade OS
要装froyo,必须要有root的权限,要变成root,必须要寻找有安全漏洞的版本,一般来
说,RC30
以上的版本都把已知漏洞给补上了,所以第一步一般是downgrad到RC29的版本。
步骤如下:
1.1 Format your phone's SD card to FAT32 mode
1.2 Download and unzip the RC29 image file. Copy the DREAIMG.nbh file
to the SD card root.
http://www.megaupload.com/?d=EMY1HI... 阅读全帖 |
|
m***y 发帖数: 14763 | 9 应该马上改用政确的表达方式
put his hands down her pants and directly stimulated her genitalia
这个纨绔子弟啊,就是不学无术。要是象老汉这样多读点书,不就不会说出什么抓猫来
了吗?
你们伢们也来读读名著
(i) Wednesday, November 15, 1995
Ms. Lewinsky testified that she had her first sexual contact with the
President on the evening of Wednesday, November 15, 1995, while she was an
intern at the White House. Two times that evening, the President invited Ms.
Lewinsky to meet him near the Oval Office.(15) On the first occasion,
the President took Ms. L... 阅读全帖 |
|
m******y 发帖数: 588 | 10 刚到一个新公司, 今天给我们的production db server set up log shipping到我们
另外一个data center, 可是居然发现两个data center之间network只有每秒几百k传输
速度, 传个4g的transaction log 就要好几小时,真是没辙了。
现在的问题是,log backup every 15 mins, 平时还不算大,但每天晚上reindexing后
log就变成几个g了, reindexing是根据avg_fragmentation_in_percent和avg_page_
space_used_in_percent逐个rebuild或者reorganize的,我想不出还有什么办法让log
小一点。
还有现在的log shipping没用zip和unzip, 请问大侠们有没有自己customize的script
用zip和unzip在log shipping里的?我想把job改一改,放个zip, unzip, 就是我们那
个xp_cmdshell都不让enable,不知道还怎么办
还有就是把restore的间隔弄的大点 |
|
c*****m 发帖数: 1160 | 11 最后还是用验证zip file的方式来做了。因为我所拿到的都是 zip file,如果最后部
分没有上传上来的话,unzip -v 会说:
unzip -v a1.zip
Archive: a1.zip
End-of-central-directory signature not found. Either this file is not
a zipfile, or it constitutes one disk of a multi-part archive. In the
latter case the central directory and zipfile comment will be found on
the last disk(s) of this archive.
unzip: cannot find zipfile directory in one of a1.zip or
a1.zip.zip, and cannot find a1.zip.ZIP, period.
(Exit code = 9)
而用python的 zi... 阅读全帖 |
|
c*****m 发帖数: 1160 | 12 最后还是用验证zip file的方式来做了。因为我所拿到的都是 zip file,如果最后部
分没有上传上来的话,unzip -v 会说:
unzip -v a1.zip
Archive: a1.zip
End-of-central-directory signature not found. Either this file is not
a zipfile, or it constitutes one disk of a multi-part archive. In the
latter case the central directory and zipfile comment will be found on
the last disk(s) of this archive.
unzip: cannot find zipfile directory in one of a1.zip or
a1.zip.zip, and cannot find a1.zip.ZIP, period.
(exit code=9)
而用python的 zipf... 阅读全帖 |
|
f****u 发帖数: 12 | 13 RT.
偶用unzip,结果如下:
Archive: zhangy-k201-108.zip
skipping: zhangy-k201-108.mp3 encrypted (not supported)
Then I man unzip,好像是我的unzip 不支持decryption.
有没有什么办法? |
|
s********x 发帖数: 914 | 14 难道是build.xml有问题?我用eclipse自动生成的。大家帮忙看看。I hate t
hat robot!!!
阅读全帖 |
|
m*****5 发帖数: 23482 | 15 Bill Clinton Finally Just Shows America His Penis
CHARLOTTE, NC—During his speech Wednesday evening at the Democratic
National Convention in downtown Charlotte, former U.S. president Bill
Clinton finally just unzipped his fly and showed the entire country his
penis.
Sources at the convention told reporters that shortly after stepping onstage
at the Time Warner Cable Arena, the 42nd president of the United States
quieted the audience’s extended standing ovation with his raised hands and
began to ... 阅读全帖 |
|
h***l 发帖数: 34 | 16 找到了!!
TUTORIAL How To Install Option File on PS3 :
Please note: There have been some people saying that Trophies have been
locked because of downloading an Option File. What I did was delete my own
Edit Data before copying over the one from the OF. I can confirm this worked
as I got the Last Minute Win trophy after installing the Option File.
1. Download the Option File
2. Unzip it (I unzip it onto my desktop)
3. Insert USB stick into PC
4. Make a new folder on your USB called PS3, then inside t |
|
Y******e 发帖数: 20256 | 17 刚刚update了option file,把所有队名,球员,联赛名称,球衣都改正确了,和大家
分享一下,谁给俺发个包子,呵呵。
这里下载,是PS3美版的,如果是xbox或是PS3欧洲版可以到那个论坛上找。
http://www.pesgaming.com/showthread.php?t=74811
这里是copy的操作步骤,注意不要把原来的system data file覆盖了,不然你原来的一些
trophies,什么的就可能没有了。也就是说,copy file时,把所有的file(system data file除外)copy到PS3上,有好多个file呢,每一个都是球衣的设计。改好这个很爽了,英超等联赛的队名和球衣都好了。呵呵。
1. Download the Option File
2. Unzip it (I unzip it onto my desktop using WinRAR)
3. Insert USB stick into PC
4. Make a new folder on your USB called PS3, then inside that create |
|
s*l 发帖数: 9421 | 18 记得多年前NPR节目采访美国七十年代的一位女喜剧演员Carol Leifer,不了解她的人
应该都看过她参与制作的喜剧连续剧Seinfeld。采访中Carol回忆起她那个爱讲段子的
父亲,还有小时候她爸爸曾讲过的一个chicken的笑话。感谢Google,我搜索了一下还
真的在网上找到了那个采访笑话原文,我觉得这是我所听到过的最好的笑话,没有之一~
"A guy goes to the ticket window of a movie theater with a chicken on his
shoulder and asks for two tickets. The ticket lady asks who's going in with
him, and the guys says, 'My pet chicken here.' 'Well, I'm sorry,' the woman
tells him, 'but we don't allow animals in the movie theater.' So the guy
goes around the corner an... 阅读全帖 |
|
|
y********o 发帖数: 2565 | 20 没有inventory目录,但是在
C:\Documents and Settings\Owner\Local Settings\Temp\OraInstall2008-02-17_01-
14-49PM
下面有这个log 文件:
installActions2008-02-17_01-14-49PM.log
内容如下:
Using paramFile: D:\software\win32_11gR1_database\database\install\oraparam.
ini
Checking monitor: must be configured to display at least 256 colors. Actu
al 4294967296 Passed
The commandline for unzip:
D:\software\win32_11gR1_database\database\install\unzip -qqqo ..\stage\Compo
nents\oracle.jdk\1.5.0.1.1\1\DataFiles/"*.jar" -d "C |
|
l********r 发帖数: 140 | 21 我下载了一个.jar文件, 想在我的程序中用里面的class什么的.
请问在JBuilder 7中, 如何使用呢?
I see that the .jar file (actually a zip file, I know that), in the jar file,
there are folders and .class files. I think I can extract/unzip them
to the same folder as in my program, then import xx.xx.xx.class.*;
But I think there is a way to use the classes in the .jar file without
unzip the file.
How can I do it and use it from my java program? (in JBuilder).
Thanks a lot. |
|
s**********g 发帖数: 29 | 22 我刚刚接到一个crack for my software.
但它是用java的,
×××××××××××××××××××××××××××××××××××××××
×
Unzip, unrar, and install. After installation, unzip CRACK.ZIP
and copy patcher.jar to /http/Dwwwprimierbiosoft.com/P80/DMIUpdater
/DM**/DM** (the very last subdir in this hierarchy). Run with
java -jar patcher.jar and enjoy!
×××××××××××××××××××××××××××××××××××××××
××××
希大牛帮助,讲具体一点!!
多谢!!!! |
|
g**********y 发帖数: 14569 | 23 Unzip eclipse要一个小时???你的机器肯定没问题?Eclipse最多几百兆,把它
unzip, zip来回倒腾几遍也用不了一个小时。除非你的机器是个病毒集中营。 |
|
S*A 发帖数: 7142 | 24 FT, 我不是说了么,你不要 unzip 到磁盘上,直接 unzip 到 stdout
然后 pipe 到 md5sum/sha1. 慢主要是写硬盘引起的。我的这个方法只需要读
一次所有的数据就可以比较了。读一次是肯定需要的,不然你怎么可能
确认你没有读的部分是不是对的?这个已经是接近最优化的方法了。 |
|
|
|
s*****d 发帖数: 258 | 27 unzip first
unzip file.tar.Z |tar -xvf - |
|
s**s 发帖数: 242 | 28 unzip
UnZip 5.32 of 3 November 1997, by Info-ZIP. Maintained by Greg Roelofs. Send
bug reports to the authors at Z******[email protected]; see README for details. |
|
s***e 发帖数: 911 | 29 不可能的. AFM没这么高的精度解析sequence dependent conformation per bp. 以前
有另外一个思路, 是用外力把双链拉开. 因为sequence-dependent base pair
stability, 所以理论上拉开不通的base pair需要不同的力. sequence dependent
Unzipping force range在15-20 pN之间. 但是因为有大量的热噪音, 也作不成. 不过
我想如果能amplify sequence-dependent base pair energy, 同时在低温作unzipping
, 说不定能成. |
|
a*z 发帖数: 294 | 30 I unzipped them last night with 7-zip. No issue at all. I have not mount the
unzipped files to VM. |
|
a*z 发帖数: 294 | 31 I unzipped them last night with 7-zip. No issue at all. I have not mount the
unzipped files to VM. |
|
i***s 发帖数: 39120 | 32 美国一对情侣遭逮后竟在警车内从事性行为,行径大胆
Couple busted on drug charges caught having sex in cop car on the way to jail - while in HANDCUFFS
美国媒体报道,一对德州情侣因持有「受管制药物」遭到警方逮捕,却于前往警局途中在警车上从事性行为,两人当时还戴着手铐,行径大胆嚣张。
德州警方14日接获通报,前往波特市一间餐厅援救一名因滥用药物而失去意识的男子。警察初步调查后发现,在场另一位名为温汉(Howard Windham)的男子持有管制性药品SOMA药丸,而跟他在一起的女友艾黎(Tina Marie Arie)负责提供药物。警方将昏迷男子送医急救,把犯法的情侣送上警车。
劲爆的事还在后头。根据《KSAT.com》报道,员警开车开到一半,望向后照镜时突然发现艾黎「消失」了。他把车停在路边下车探查,赫然发现艾黎解开了男友的裤子拉链,正在帮他口交。员警阻止两人的行为,重新上路将两人移送警局。随后,温汉和艾黎分别被控持有与供给受管制药物,并未被控公共猥亵罪。
911 call: Authori... 阅读全帖 |
|
|
t*******3 发帖数: 2005 | 34 South Asian cop on trial in sexual assault
October 5, 2012 · 0 Comments
inShare.
TORONTO
Indo-Canadian Detective Constable, Mandip Sandhu, from 31 Division in
Toronto, currently suspended from duty following allegations of sexual
assault involving a masseuse back on June 3, 2010, has pleaded not guilty at
his trial this week. Following that incident, the SIU (Special
Investigations Unit) which investigates incidents involving law enforcement
officers arrested Constable Sandhu and charged him... 阅读全帖 |
|
M1 发帖数: 2038 | 35 zipperhead
A racial slur referring to people of East Asian descent, coined by US
soldiers during the Korean War. There are multiple proposed origins, but the
most commonly accepted is that it if enemy Asian soldiers were shot in the
head with high-powered weapons, their heads would split as if they had been
"unzipped". Another origin could be that when enemy soldiers were ran over
by military Jeeps, there would be tire tracks on them that resembled zippers
. It's violent origin makes it a par... 阅读全帖 |
|
I******a 发帖数: 3812 | 36 http://gyral.blackshell.com/names.html
Visit the original once in a while. Apparently, it's chock full o' updates.
Slur Represents Reasons/Origins
51st Stater Canadians Self-explanatory.
Abba-Dabba Arabs Used in the movie "Betrayed" by rural American hate group.
Abo Australian Aboriginal Derogative shortened term for Aboriginal.
Adolf Germans Hitler, of course. Generally thought of the worst person ever.
Ahab Whites From Moby-Dick. Ahab hunted the white whale.
Ainu Japanese Aboriginal Originall... 阅读全帖 |
|
j****e 发帖数: 911 | 37 南华早报alex lo的评论,希望香港的媒体多点类似的理性评论,而不是如某些才子
「乩童上身」在大陆说一套,在香港又说一套。毕竟,香港的基础设施在面临大
量人流时是有承载极限的,否则,湾仔酒吧区,兰贵坊,香港七人榄球赛为什么全有人
在公共场合解决nature call? 苛责一个二岁幼童并无限扩大化,好似文革般上纲上线
了。。。 ... 阅读全帖 |
|