Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to untar tar.gz

 tar xvzf file.tar.gz
Comment

unzip tar.gz

tar -xvf file.tar.gz
Comment

linux unpack tar.gz file

tar -zxvf file_name.tar.gz
Comment

untar tar.gz

tar -xzf file.tar.gz
Comment

tar extract gz

# compress
tar czvf < archive_name >.tar.gz < path >
# extract
tar xzvf < archive_name >.tar.gz
tar xzvf < archive_name >.tar.gz  -C /home/usera/tmp
Comment

unzip a tar.gz file in linux

tar -xvzf community_images.tar.gz
Comment

tar.gz extract

tar -xf archive.tar.gz
Comment

unrachive .tar.gz



tar -xvzf community_images.tar.gz
Also, to extract in a specific directory

for eg. to extract the archive into a custom my_images directory .

tar -xvzf community_images.tar.gz -C my_images
Comment

linux extract tar.gz

tar –xvzf documents.tar.gz
Comment

how to unzip tar.gz file

tar -xvf archive.tar.gz
or
tar -xf archive.tar.gz -C /home/linuxize/files
Comment

extract tar.gz

tar -xf archive.tar.gz
Comment

extract tar.gz

 tar -zxvf {file.tar.gz}
Comment

tar.gz extract

tar -xf archive.tar.gz -C /home/linuxize/files
Comment

tar.gz

tar -xvzf community_images.tar.gz
Comment

extracting tar.gz

tar –xvf documents.tar
Comment

Linux tar.gz

tar -xzf archive-name.tar.gz
cd archive-name
./configure
make
sudo make install
Comment

PREVIOUS NEXT
Code Example
Shell :: how to install webpack 
Shell :: how to install metasploit in ubuntu 
Shell :: firebase deploy command 
Shell :: how to upgrade snap packages 
Shell :: asdf current 
Shell :: dpkg: error processing package gitweb (--configure): installed gitweb package post-instal 
Shell :: mac nano location 
Shell :: telegram on arch linux 
Shell :: scan port linux 
Shell :: how to prevent idle ubuntu suspending 
Shell :: how to convert ppk to pem in linux 
Shell :: git commit disable hooks 
Shell :: install october cms on windows 
Shell :: docker run restart on boot 
Shell :: why is gitlens not working on vscode 
Shell :: push a local branch 
Shell :: git delete tag from commit 
Shell :: uninstall snap package ubuntu 
Shell :: git set alias 
Shell :: resolve git conflicts github button disabled 
Shell :: ubuntu delete files older than 5 days 
Shell :: how to I list powershell functions 
Shell :: powershell remove files recursive 
Shell :: pocketsphinx 
Shell :: add passphrase to ssh agent 
Shell :: access windows files from windows ubuntu 
Shell :: extract file extension bash 
Shell :: ssh timeout option 
Shell :: if else in mac terminal 
Shell :: iisreset 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =