Tagged Questions
The gz tag has no wiki summary.
4
votes
1answer
94 views
Can VIM uncompress gzip files automatically with a different file extension?
Vim automatically expands .gz files when I open them up, which is great. However, it doesn't reccognize .GZ (upper case) in the same way. Unfortunately I cannot change the file extensions of the ...
3
votes
3answers
54 views
How do I read a gzip file line by line?
I have a gzip file and currently I read it like this:
infile = open("file.log.gz")
gz = Zlib::GzipReader.new(infile)
output = gz.read
puts result
I think this converts the file to a string, but I ...
3
votes
2answers
573 views
get the filesize of very large .gz file on a 64bit platform
According to the specifiction of gz the filesize is saved in the last 4bytes of a .gz file.
I have created 2 files with
dd if=/dev/urandom of=500M bs=1024 count=500000
dd if=/dev/urandom of=5G ...
2
votes
6answers
106 views
Installing java - should I use the .rpm file or the .tar.gz?
I am looking to install java on Linux Ubuntu 64-bit. Should I use the .tar files or the .gz files. Download speed is not an issue. I'm not interested in tons of details I just would like to pick ...
2
votes
1answer
154 views
Unzip a tar.gz file from maven repository into build directory with gradle
i have a tar.gz file containing the WSDL file of a webservice and want to unzip this file into the build directory. The tar.gz file is in maven repository.
e.g. file name is ...
2
votes
2answers
258 views
How can I gzinflate and save the inflated data without running it? (Found what I think is a trojan on my server)
Well, not my server. My friend found it and sent it to me, trying to make sense of it. What it appears to be is a PHP IRC bot, but I have no idea how to decode it and make any sense of it.
Here is ...
2
votes
2answers
473 views
Generate and serving gz compressed in ASP.NET
Hi I need to serve from a ASHX a GZ compressed file. In the code I already have the string in clear:
public void ProcessRequest(HttpContext context)
{
// this is the code without compression
...
1
vote
1answer
23 views
Is there a way to make zip or other compressed files that extract more quickly?
I'd like to know if there's a way to make a zip file, or any other compressed file (tar,gz,etc) that will extract as quickly as possible. I'm just trying to move one folder to another computer, so I'm ...
1
vote
1answer
43 views
After gunzipping a tar.gz file and gzipping it again, the size of the tar.gz file changed a little bit
Could someone please explain me why that was the case?
1
vote
2answers
381 views
How do you create a .gz file using PHP?
I would like to gzip compress a file on my server using PHP. Does anyone have an example that would input a file and output a compressed file?
1
vote
3answers
149 views
Coldfusion8 - Decompressing GZ files using Coldfusion 8
On a daily basis I am download a GZ file that I will then need to decompress and import the contents into my database table.
I found CFX_Gzip.dll from Adobe Coldfusion Exchange. Anyone know where i ...
1
vote
3answers
174 views
PHP parse GZ file as XML
I have the file "filmsdb-full.gz".
Weight "filmsdb-full.gz" is 5 mb, In it there is a file weight of 17 mb.
I use this code for extract...
$file = gzfile('filmsdb-full.gz');
BUT!!! This file is ...
1
vote
3answers
457 views
unzip huge gz file in Java and performance
I am unzipping a huge gz file in java, the gz file is about 2 gb and the unzipped file is about 6 gb. from time to time it the unzipping process would take forever(hours), sometimes it finishes in ...
1
vote
0answers
350 views
Why does Android aapt remove .gz file extension of assets?
When I add a GZIP-ed file to my Android project's assets, the ".gz" extension is stripped when the project is packaged. (So, for instance, "foo.gz" in my assets folder needs to be accessed in code ...
0
votes
1answer
64 views
wait for shell script to finish before going to next line with Cron
--- file makebackup.sh
#!/bin/bash
mysqldump --all-databases | gzip -9 > /backup/temp_db.gz
tar -Pcf /backup/temp_ftp.tar /public_html/
tar -Pcf /backup/temp_backup.tar /home/temp_db.gz ...
0
votes
1answer
62 views
split a huge gz file
I have a gz file that is about 100 GB, I need to split it into many smaller files. Do I need to unzip it and then pipe it to split?
It makes no sense to split a gz file directly since the results ...
0
votes
1answer
231 views
Ruby streaming tar/gz
Basically I want to stream data from memory into a tar/gz format (possibly multiple files into the tar, but it should NEVER TOUCH THE HARDDRIVE, only streaming!), then stream them somewhere else (an ...
0
votes
1answer
113 views
PHP: Uncompressing gzcompressed file with gzuncompress and fopen
I am trying to uncompress a binary file and then uncompress it to test whether the compresssion is working.
However the 'uncompressed' file has the same data as the 'compressed' file. As though the ...
0
votes
1answer
59 views
Get infomation from Compressed XML file in Android application
I have a compressed(.gz) xml file on my server. I need to read that file and get the information to store in the SQLite DB
Have to access the server via HTTPS.
...
0
votes
1answer
96 views
Android Remote XML File access
In my android application I need to get an input stream from a remote xml file(In a remote server) that has extension gz. Eg student.gz.
I just tried to connect but give an exception "Exception ...
0
votes
1answer
230 views
Read local compressed XML file(gzip) in Android application
I am new to android development and have the following issue.
I don't know how to get an InputStream(Read gzipped local xml file) from the locally stored gzip xml file.
employee.gz
If someone Can ...
0
votes
1answer
38 views
Method other than polling to Download a file that may be being updated by server
My code can download any file from a given url. The problem is that i have to download search results that are in .gz file format which is being continuously updated.
my code is downloading ...
0
votes
2answers
86 views
MYSQL data files are compressed to gz
I have drupal website, the database is about 10GB. I was checking the datadir of my drupal database and found that some files are .gz!! why is this? and does it affect performance??
the website is ...
0
votes
1answer
339 views
SharpZipLib: Decompress .gz from inside .tar file?
I have a .tar file containing multiple compressed .gz files. I have no issue itterating through the .tar file creating each .gz file in a destination directory. I'd like to skip writting the .gz all ...
0
votes
1answer
114 views
How to deploy zippedfolder.sql.gz.gz on my MYSQL server on my windowsplatform
How to deploy zippedfolder.sql.gz.gz (its a backup from an existing database) on my MYSQL server on my windowsplatform?
Extracting it twice throws error 'Archives not found' though the size is not ...
0
votes
2answers
264 views
How does gzcompress work?
I'm wondering about why I need to cut off the last 4 Characters, after using gzcompress().
Here is my code:
header("Content-Encoding: gzip");
echo "\x1f\x8b\x08\x00\x00\x00\x00\x00";
$index = ...
0
votes
3answers
1k views
how do I read a huge .gz file (more than 5 gig uncompressed) in c
I have some .gz compressed files which is around 5-7gig uncompressed.
These are flatfiles.
I've written a program that takes a uncompressed file, and reads it line per line, which works perfectly.
...
0
votes
1answer
777 views
How to download and unzip a sitemap gz file in c#?
I need to download and unzip a sitemap.xml file that is compressed (maybe tar + gzip?) into a sitemap.xml.gz
From Windows I use 7zip. But note that the gz contains a directory with the same name of ...
-4
votes
1answer
190 views
Read locally stored gzipped XML file in Android application [closed]
Possible Duplicate:
Read local compressed XML file(gzip) in Android application
Hi I am working on an android project and need to open XML files which are compressed in gzip format and ...