similar to: How can I access a ZIP file that's over 2Gb?

Displaying 20 results from an estimated 5000 matches similar to: "How can I access a ZIP file that's over 2Gb?"

2008 Oct 30
2
Small modification of zip.file.extract in utils?
Dear list, I needed to extract a zip-archive, and found zip.file.extract in utils. My only problem was the use of tempdir(), since I wanted to permanently extract the archive at a fixed location for later use. My own fix was simple, adding an extra parameter zipdir (without default), and within the function change tmpd <- tempdir() to tmpd = ifelse(missing(zipdir),tempdir(),zipdir) This
2002 Feb 04
1
read zipped files
I received several answer to my querry re reading zipped files, R.Gentleman, Liaw Andy, BD Ripley,J Holtman, A.Matt, and others, sorry if I missed your names. a- use pipe to run external unzip to a file and read from there b- use gzfile() to open directly a gzipped file c- use zip.file.extract() solution b works like a charm, unfortunately it open gzipped files and not zipped files, would it be
2018 Jul 04
1
unexpected behavior of unzip with list=T and unzip=/usr/bin/unzip
Hello, I encountered some unexpected behavior of unzip when using info-zip's unzip instead of R's internal program. Specifically, unzip("file.zip", list=TRUE, unzip=/usr/bin/unzip) produces incorrect output if the zip archive has filenames with spaces, and results in an error if the zip archive includes an archive comment or file comments. Here is some code to reproduce along
2009 Apr 12
3
Hi, complete ubuntu 8.10 novice needs help with wine
hi i've been trying to get an old game (Dune 2) which i used to play through DOS to work on Linux systems, i've not used this before and am in need of an 'idiot's guide to Linux' i've gotten as far as having unpacked the file and installed it on terminal, it now to the point of running the Setup.exe however when i try to run the setup, i get the following command line
2010 Sep 03
1
Error message
I just installed Wine into Ubuntu 10.4, from Ubuntu's Software Center (the installation instructions at WineHQ didn't work). I've tried installing a couple of Windows programs from CD (a set of clip art images from Nova Development Corp, and Willmaker Plus from Intuit). Every executable I've tried generates the following standard error message: Archive:
2009 Sep 12
1
My WINE won't go to work
I still can't seem to figure out Wine and how it works. I tried again to get Brainfuse Quick Connect working last night and had the notion that perhaps I need to get Explorer up and running. I've tried everything I know to get that file in Other to run but nothing is happening. I did get a lengthy error message. [/home/ken/.wine/dosdevices/c:/windows/explorer.exe]
2011 May 29
3
Re: error while installing orcad
I get this message when i try to launch the setup of OrCAD version 10.0. I have wive version 1.2. [quote]Archive: /media/5CFC92BDFC9290BE/Documents and Settings/Bhuved/Desktop/ORCAD_10 (D)/ORCAD_10 (D)/Setup.exe [/media/5CFC92BDFC9290BE/Documents and Settings/Bhuved/Desktop/ORCAD_10 (D)/ORCAD_10 (D)/Setup.exe] End-of-central-directory signature not found. Either this file is not a zipfile,
2009 Mar 23
5
Wine fails to install Adobe PS
I have tried a few rtimes now to install Abobe PS7 (not a crack) on the latest Linux Mint and now on Ubuntu 8.10 64bit. I am having the same problem in both. Is it because my new comp is a 64bit? An error occurred while loading the archive. [/media/cdrom0/Autoplay.exe] End-of-central-directory signature not found. Either this file is not a zipfile, or it constitutes one disk of a multi-part
2009 Aug 27
5
wine does n't open
Hai Friends, I was using wine happily with ubuntu 8.04. Now I have ubuntu 9.04 clean install on a new machine. I could install wine but when I open wine-program-accessories-notepad nothing happens. Also configure wine does n't funtion. Also when I try to install any exe file this message comes: here is one example [/home/illusions/Desktop/TeamViewer_Setup.exe] End-of-central-directory
2009 Sep 01
4
Loading iTunes
I am informed that it is possible to load iTunes in Wine using Ubuntu 9.04 but am experiencing problems. In Ubuntu I downloaded the Wine package via Synaptic which duly displayed in my applications menu. Having achieved that I then loaded iTunes the version for XP and Vista. When I attempt to open the iTunes it is then that I hit problems. The iTunes .exe file is now on my desktop. On opening
2013 May 29
5
Developing custom type/providers for multiple OS
Hello all, I am developing a few custom providers for some features that I need into my system (such as dealing with different zipped files or generating some JSON data based on OS files) and I have hit into a question about "how to do this for multiple OS?" Lets focus into the zipped file provider that should provide a common method to pack or unpack zipped files (tar, tar.gz,
2012 Apr 04
6
3.2 kernel with C5? Or ndiswrapper?
I know, I know... don't use the non-standard kernels unless you have to... BUT: I have a D-Link N150 USB card. Bus 001 Device 004: ID 0846:9030 NetGear, Inc. WNA1100 Wireless-N 150 [Atheros AR9271] This isn't supported in C5, but it is supported in newer kernels (ath9k_htc). So let's try NDISwrapper: # rpm -i kmod\-ndiswrapper\-1.56\-1.el5.elrepo.i686.rpm
2005 Feb 22
1
problems with tcltk in R 2.0.1 (PR#7698)
Full_Name: Vidar Hjellvik Version: 2.0.1 OS: windows Submission from: (NULL) (82.134.28.194) I have an tcltk application that runs without problems in R1.9.1, but when I press the "run"-button (and other buttons as well) in R2.0.1, I get the message: "Error in function () : can't change value of a locked binding". I have another tcltk application that runs fine on
2007 Mar 30
1
zip.file.extract on Windows
Hello R-help! I just wanted to share a tip might help others of us stuck on R. The documentation for zip.file.extract is rather scant, and a few examples would. When using zip.file.extract, the first argument should be the full (or relative) path and the second the name of the zip file, it seems. While this is counterintuitive to me, that it should get the part from the first argument,
2009 Jan 12
10
Creating an iso image of a audio CD with K3B
Can you do this? I have not found the options to get this to happen. So far I have seen how to read the Audio CD and make a directory of WAV files with a control file for later burning to CD, but I want an iso image that I can archive and burn audio CDs to use as they get used up.
2011 Sep 15
2
Dragonfly and Zip uploads
I''m poring through the Dragonfly source code right now, trying to get a handle on how to apply the following technique there: Client uploads a Zip archive containing N images, PDF files, text files, etc. When that file arrives at the server, but before it is stored as an attachment to the current object, the Zip is burst open, contents are iterated over, and each contained file is saved
2012 Jul 18
0
Zipping files contained in a dir (rubyzip)
hey so I''m trying to zip all the files contained in a directory (RubyZip). heres what I have: def bundle #create the ZIPfile with the title of (:id).zip bundle_filename = "public/attachments/#{self.id}/#{self.id}.zip" #open the ZIPfile in order to add items in Zip::ZipFile.open(bundle_filename, Zip::ZipFile::CREATE) { |zipfile|
2006 Aug 03
1
Unzipping a file
Hi ! I''m attempting to write a simple gallery in Rails. The thing is I''d like to be able to upload a lot of pictures at once with a zip file. I''ve so far managed to upload the zip file (containing pictures) to the server. But how do I unzip the file to have access to the pictures ? I haven''t been able to understand how to use Zlib to do this. Any tips or
2009 Sep 02
1
Brainfuse QuickConnect in Wine
I got Brainfuse QuickConnect to come up in Wine but it's not all working properly. The whiteboard works fine. All the functions work well and curriculum explorer gets the right lessons. However, the lesson pages don't display correctly and none of the links down the left of the initial QC page work to take me to my schedule or anything else and neither do the links at the top of the
2014 Jun 25
2
[LLVMdev] [cfe-dev] AArch64 Clang CLI interface proposal
On 25 Jun 2014, at 12:58, James Molloy <james at jamesmolloy.co.uk> wrote: > This is one of the worst parts about the Clang CLI for cross compilation at the moment. I'd really like, if we're changing the CLI, to allow users to remove it. For example, if I specify -march=armv7-a, it *shouldn't* need me to put "-target arm" before it to work! One thing that I've