How to Extract File tar.gz, tar.xz, tar.bz2, zip On Linux
Maybe after download files, it make in archives with extentions tar.gz, tar.z, tar.bz2, zip. Before open the file you must extract it first, now you can follow this step to extract this.
Extract File tar.xz
1. Open the terminal, and change directory is file located
2. And type this command
3. Now you can see new folder in same directory.
Extract File tar.gz
1. Open Terminal, and change directory is file located
2. Type this command on terminal
Extract File tar.bz2
1. Open Terminal, and change directory is file located
2. Type this command on terminal
Extract File .zip
1. Open Terminal
2. Type this command on terminal
Ok, this way to exctract file archive on linux, maybe usefull and thank you for visit this article.
Extract File tar.xz
1. Open the terminal, and change directory is file located
2. And type this command
tar xvf name's_file.tar.xz
3. Now you can see new folder in same directory.
Extract File tar.gz
1. Open Terminal, and change directory is file located
2. Type this command on terminal
tar -xzf name's_file.tar.gzor
tar -xvzf name's_file.tar.gz3. And see new folder in same directory
Extract File tar.bz2
1. Open Terminal, and change directory is file located
2. Type this command on terminal
tar -xjf name's_file.tar.bz2or
tar -xvhf name's_file.tar.bz23. And see new folder in same directory
Extract File .zip
1. Open Terminal
2. Type this command on terminal
unzip name's_file.zip3. And see new folder in same directory
Ok, this way to exctract file archive on linux, maybe usefull and thank you for visit this article.
0 Response to "How to Extract File tar.gz, tar.xz, tar.bz2, zip On Linux"
Post a Comment