This one does the opposite of django’s compress_string function. def uncompress_string(s): import cStringIO, gzip zbuf = cStringIO.StringIO(s) zfile = gzip.GzipFile(mode='r', fileobj=zbu… more →
Collin's CodeArjun Raja wrote 3 months ago: To tar and compress files, backup the files and also untar and uncompress the same files. cd /u01/or … more →
Amin Jaffer wrote 5 months ago: Using the example below one can view the contents a compress tar file without un-compressing the fil … more →
Cowboy wrote 1 year ago: Right click on the downloaded file. select Properties, on the General tab, press the Unblock button, … more →
gurudev wrote 1 year ago: Install unrar command Under Debian Linux, you need to type apt-get as follows to install unrar progr … more →
Collin Anderson wrote 1 year ago: This one does the opposite of django’s compress_string function. def uncompress_string(s): imp … more →