๐ป Programming/Linux
[Linux] ํ์ผ ์์ถ ํ๊ธฐ / ์์ถ ํ๊ธฐ ( Compressing / Uncompressing on Linux )
You need to use tar command as follows (syntax of tar command):
tar -zcvf [ํ์ผ๋ช
.tar.gz] [์์ถํ๊ณ ์ํ๋ํ์ผ/๋๋ ํ ๋ฆฌ ๋ช
]
Where,
- -z: Compress archive using gzip program
- -c: Create archive
- -v: Verbose i.e display progress while creating archive
- -f: Archive File name
For example, you have directory called /home/jerry/prog and you would like to compress this directory then you can type tar command as follows:
/home/jerry/prog ํด๋ ๋ฐ ํ์ ํด๋์ ์๋ ๋ชจ๋ ํ์ผ์ prog.tar.gz ๋ก ์์ถ
$ tar -zcvf prog.tar.gz /home/jerry/prog
Above command will create an archive file called prog-1-jan-2005.tar.gz in current directory. If you wish to restore your archive then you need to use following command (it will extract all files in current directory):
ํ์ฌ ์์น์์ ์์ถ์ ํ๊ณ ์ ํ ๋
$ tar -zxvf prog-1-jan-2005.tar.gz
Where,
- -x: Extract files
If you wish to extract files in particular directory, for example in /tmp then you need to use following command:
์ํ๋ ์์น์ ์์ถ์ ํ๊ณ ์ ํ ๋
$ tar -zxvf prog-1-jan-2005.tar.gz -C /tmp
$ cd /tmp
$ ls -
์ถ์ฒ : http://www.cyberciti.biz/faq/how-do-i-compress-a-whole-linux-or-unix-directory/