General :: Unzipping A Huge File Stalls The Server?
Jul 8, 2011
I want to extract a huge .tar.gz file but when I do extract it stalls the server. The server is write heavy and extracting seems to choke the disk. Is there a nice way to extract without stopping the world? I've tried the 'nice' and 'cpulimit' command but they don't seem to do the trick.
View 2 Replies
ADVERTISEMENT
Mar 8, 2011
I am in the process of moving from a windows to a linux box. I zipped a folder of images on the windows box and ftpd it to the linux box. When I try to unzip the file I get:
How can I unzip this file if it's too big?
View 1 Replies
View Related
Feb 27, 2011
I made an 8GB password protected Zip file on Ubuntu 10.10, sent it to a friend who's using Windows 7, and now she can't unzip it. The file transfer speeds between us are very slow, so I don't want to resend it. Every application she's tried (WinRAR, WinZip, and 7Zip) fails and gives some sort of "invalid archive format" error.
I had her do an MD5 checksum on the file and it matches mine. So, the likelihood of it being damaged during transmission is very small. I also successfully unzipped it on my end and used TeamViewer to try and get it unzipped on her end, just to make sure she wasn't doing anything wrong, she wasn't.
What could be the problem be UbuntuForums? Is there a difference in the way Windows and Linux handles zip files that is causing this problem?
View 9 Replies
View Related
Feb 18, 2011
I am facing an issue, while unzipping an UNIX ZIpped file. The message I am getting is as below.
/> unzip np_ARUDDP99_20110201.zip
Archive: np_ARUDDP99_20110201.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 np_ARUDDP99_20110201.zip or np_ARUDDP99_20110201.zip.zip, and cannot find np_ARUDDP99_20110201.zip.ZIP, period.
View 4 Replies
View Related
Apr 23, 2011
I have a huge log file of around 3.5 GB and would like to sample random sections in the middle of say 10 MB for the purpose of debugging what my application is doing.
I could use head or tail commands to get the beginning or end of the file, how can I grab an arbitrary portion from the middle of the file? I guess I could do something like head -n 1.75GB | tail -n 10MB but that seems clumsy and I'd need to determine line numbers for the midpoint of the file to get 1.75GB and 10MB line counts.
View 2 Replies
View Related
May 30, 2011
I've a file with a size of 6GB. I would like to compress this file and split them into smaller files. I was also thinking in use bzip2 to compress it, because if offers a good compression rate. How can I split this file into small ones to compress it?
View 5 Replies
View Related
Mar 10, 2010
i am trying to transfer a file from my live linux machine to remote linux machine it is a mail server and single .tar.gz file include all data. but during transfer it stop working. how can i work and trouble shooot the matter. is there any better way then this to transfer huge 14 gb file over network,vpn,wan transfer. the speed is 1mbps,rest of the file it copy it.
rsync -avz --stats bkup_1.tar.gz root@10.1.1.22:/var/opt/bkup
[root@sa1 logs_os_backup]# less remote.log
Wed Mar 10 09:12:01 AST 2010
building file list ... done
bkup_1.tar.gz
deflate on token returned 0 (87164 bytes left)
rsync error: error in rsync protocol data stream (code 12) at token.c(274)
building file list ... done
code....
View 1 Replies
View Related
Dec 19, 2010
i have downloaded the software bluez-4.81.tar.gz from internet and saved iy on desk top.in command line i typed like following.
george@george-desktop ~ $ tar xvzf file:///home/george/Desktop/bluez-4.81.tar.gz
but i have got result like this...
rsh: Could not resolve hostname file: Name or service not known
tar: file:///home/george/Desktop/bluez-4.81.tar.gz: Cannot open: Input/output error
[Code].....
there is a option for unzipping graphically.so i right cliccked using mouse and extracted.then a folder named "bluez-4.81" appeared on desk top. Now what are the steps to install this bluetooth software?
View 3 Replies
View Related
Aug 6, 2010
I am having a problem unzipping multiple files at 1 time.
Proper unzip command that will:
1) extract the file from the zip.
2) remove the zip file.
All my zip files start with SB and end with .emi.zip
SB*.emi.zip
View 2 Replies
View Related
Jul 23, 2010
I have to unzip only files in zipped folder in current directory by c program. For that I am using system() function. This function returns zero.
when I write system("unzip -jo /storage/conf.zip") but folder will not be unzipped. Same will be successful if tried on command line.
View 1 Replies
View Related
Aug 13, 2010
I am trying to compare a list of patterns from one file and grep them against another file and print out only the unique patterns. Unfortunately these files are so large that they have yet to run to completion. Here's the command that I used:
Code: grep -L -f file_one.txt file_two.txt > output.output Here's some example data:
Code:
>FQ4HLCS01BMR4N
>FQ4HLCS01BZNV6
>FQ4HLCS01B40PB
>FQ4HLCS01BT43K
>FQ4HLCS01CB736
>FQ4HLCS01BU3UM
>FQ4HLCS01BBIFQ
how to increase efficiency or use another command?
View 14 Replies
View Related
Feb 13, 2010
Seldom use windows, but need to transfer huge music file from Linux to XP
View 3 Replies
View Related
Feb 23, 2011
I want a huge file of .jpeg files. How can I can compress these files to save my space? Is there any s/w for this??
View 2 Replies
View Related
Feb 14, 2010
I have a UUID file that has grown to 8.4 gigs... and I don't know what to do. Its sucking up all the free space in the partition. I guess I will have to delete the file but I don't know how to do it properly.I suspect this is a backup of all the data I have been moving around between drives recently.
View 2 Replies
View Related
Dec 7, 2010
I am trying to read the /proc/net/tcp6 file of a huge server (chat server) for monitoring the tcp6 connection states.
This tcp6 file has more than 26000 lines. For monitoring the server connections, my monitoring tool has to read the /proc/net/tcp6 file quickly in regular interval. Presently it takes minimum 6-7 seconds for reading the whole file.
My tool can able to read the normal file (26,000 lines) less than 1 second, but it is not possible to read the same size of proc file.
I have 2 questions:
1) Why proc file takes more read time than normal file?
2) Is there any way to read the /proc/net/tcp6 file more quickly?
View 1 Replies
View Related
Jun 1, 2010
I haven't used WinFF before yesterday. Looks simple so I tried to convert an AVI file of 600MB to DV and ended up with an 8GB conversion.For device preset I used Raw DV for Pal Fullscreen as I'm in Australia.Does WinFF always produce such large files?
View 1 Replies
View Related
Feb 10, 2010
my server and it had a load of 60 so i immediately took down apache and the load went back down to 0 in a few mins and every time i put it back on the cpu usage on both cores immediately goes to 100% and the load goes up to 20 in just 60 seconds until i take apache down again?
View 6 Replies
View Related
Jun 9, 2011
im located in Sudan which is under usa empargo, means some software is restricted in my country. My company which has 5000 emloyee os going to build their own webserver which will hold alot of apps which is compatible with linux i didn't trust M$ windows specially on web, so ive to use linux do u recommend any other release other than opensuse coz o can get free update and patches.
View 5 Replies
View Related
May 1, 2010
I've downloaded Ubuntu 10.04 from the UK mirror of the Ubuntu site. When I try to install the OS from the CD it stalls at various different places. I have been able to get it to a max of 25% of installation before stalling, but more often than not it stalls when I'm trying to choose the keyboard type, or when I'm trying to setup my username / PC hostname.
I've carried out an md5sum on the iso and it shows no errors. I've downloaded the iso a second time and carried out the same check, and similarly no errors.
View 14 Replies
View Related
Oct 1, 2010
Gparted LiveCD version 0.6.3-3. boots and loads GUI, then searches endlessly for partitions. No luck running it from command line either. Dell laptop set up to dual boot, Windows XP/PCLinuxOS. I want to shrink the Linux Root partition to give more space to the Home,
View 14 Replies
View Related
Jun 28, 2010
On startup my machine (a PC a few years old with recent Fedora 13 clean install) seems to be OK until it tries to get to the Login GUI, where it stalls at the f/infinity Fedora logo. The last things I did before shutting down my computer last were uninstalling the mail client Evolution via the GUI package manager and downloading a torrent. Could these have effected such a stuff up? I'm not altogether clear on logging in via a terminal.
View 4 Replies
View Related
Jun 30, 2010
I downlload a zip file which has a .htaccess file.
When I unzip it, the .htaccess disappears.
How can I prevent this happens?
View 3 Replies
View Related
Dec 26, 2010
suggest or advise the best practice of bz2 or tar gz. i have a directory /var/opt/axigen which has size 33gb on daily basis as per the schedule we need to take back.i want to know pros and crons of below commands, say best compression and decompresstar cvzf /var/opt/bkup_axigen/axigen_bkup_1.tar.gz /var/opt/axigenortar -jvzf9 /var/opt/bkup_axigen/axigen_bkup_1.tar.gz /var/opt/axigen
View 2 Replies
View Related
Apr 9, 2010
In fact I'm not the systems administrator, but I have a strange problem unzipping a file. I think is a problem of memory or swap space or somethin similar, but I'm going explain the problem in detail: Distribution: Red Hat Enterprise Linux ES release 4 (Nahant Update 3) I'm connected as root. I have this zipped file: -rw-r--r-- 1 root root 678183271 abr 7 15:30 Master032010.zip it contains a 2,4G file
[Code]...
View 14 Replies
View Related
Jan 2, 2011
EDIT, 3 January 2010: SOLVED: In fact, it was the fonts that were being rendered larger and pushing everything out. Altering DPI in xorg.conf solved the problem, see details at bottom.ORIGINAL POST:I used jockey-kde to activate the nVidia (closed-source) driver in order to fix some full-screen problems I was having.It has fixed that, but now everything is really big. I have my resolution set to 1680x1050 but it appears to be lower than it was before - the K menu, for instance, takes up about 1/6 of the screen when I open it. I took a screenshot here:http://i.imgur.com/94lyN.jpgI know this isn't much information, but can anyone tell me why - while the desktop appears to be larger with a higher resolution - applications are actually appearing as though the resolution is lower?
View 7 Replies
View Related
Jan 31, 2010
Here is the error I get from unzipiping a "file" that is approximately 20GB
Quote:
View 2 Replies
View Related
Oct 11, 2010
I unzipped the PacketTracer52 tar.gz folder Subsequently, there is an install script there. I dont know how to activate it.
View 2 Replies
View Related
Jan 30, 2010
I am trying to link my desktop "Karmic" up to an XP laptop "homegroup" for file sharing. Both computers are on my wifi served by a router. The following plugins were installed via Synaptics:
[Code]...
Initially clicking on "samba" brings this up: "warning: some lines couldn't be understood while reading the configuration file /etc/samba/smb.conf. these may be unknown configuration directives samba plugins but could also be configuration errors." You ignore the warning and continue on. The results are a static "samba server menu" accepting what you type ...but doing nothing with it upon pressing OK.
View 3 Replies
View Related
Oct 31, 2010
I got a apple PowerBook 3400c with upgraded ram. I would like to boot linux on it but the ram is still not huge (96MB). I burned PowerPup to a CD but it would not boot and kept booting macOs 9.
View 2 Replies
View Related
Mar 4, 2011
Since a couple of months, the machine is hanging itself. I can't connect in any way to it. I have it in a Datacenter far away my office, so when it happens I have to ask the provider to reboot it manually because it always happen in working hours and my clients gets mad on that moments. It happens every 15 days (more or less). It is very difficult to get the procesess status, but today hangs again and I could connect (a very very slow connection) and save a "ps aux".
[Code]...
There are some scripts that you can see as "php /var/www/html/call_engine.php ..." that are consuming CPU more than I expect and I will correct, but I would like to know about the other processes like many crond or the "/usr/sbin/sendmail -FCronDaemon -i -odi -oem -oi -t". Or maybe the whole problem would be the php script?
View 2 Replies
View Related