Blog Archive
-
▼
2010
(79)
-
►
June
(11)
- Protect Web Directories using .htacess
- eth0_rename in ethernet card
- Reset windows password using linux live CD
- IPP printer configuration in windows
- Reinstall WIndows Fax and Picture viewer
- Stream audio in Bluetooth Headset using Dongle
- Convert image files to text
- Configuring exim4 in Ubuntu to use GMail for SMTP
- Change apache2 web directory
- Checking webserver vulnerabilities
-
▼
January
(16)
- Automatic Login in linux
- reset root password MYSQL
- install Linux / UNIX .tar.gz tarball files
- Public_html webpage for each user in linux
- E-mail Alert on Root SSH Login
- Make pendrive bootable compatible NTLDR or BOOTMGR...
- Internal Error 2908 dot net framework
- Repair XP by recovery Console
- Install windows 7 from pen drive or usb drive
- gunzip a file in linux
- Install xp through pendrive or usbdrive
- Google OS in windows
- Adding Recovery console in boot menu
- Test Usb boot without restarting Computer
- usb boot in virtual box
- USB flash Drive as Harddrive
-
►
June
(11)
Tuesday, January 19, 2010
gunzip a file in linux
Create a .tar.gz file from a folder:
tar czf /path/to/output/folder/filename.tar.gz /path/to/folder
Extract a .tar.gz file:
gunzip -c /path/to/folder/filename.tar.gz
View a list of all files in a .tar.gz archive:
gunzip -c /path/to/folder/filename.tar.gz | tar -tvf -
Extract a single file from a .tar.gz file:
gunzip -c /path/to/folder/filename.tar.gz | tar -xvf - path/within/archive/filename.php
Subscribe to:
Post Comments (Atom)


0 comments:
Post a Comment