Q. I’ve download ed .tbz file. How do I open .tbz file under Linux / UNIX operating system using a shell prompt or GUI application?
A. This is a tarball. A .tar or .tbz or .tgz file is commonly referred to as a Tarball, which is usually compressed to save disk space. Use tar command to open .tbz file.
First, open a terminal or shell prompt.
Extracts all files from a compressed Tar file of the name test.tbz or test.tar.bz2(bzipped file).
$ tar -xjf test.tbz
To extract to a specific folder called /tmp/test, use:
$ tar -xjf test.tbz -C /tmp/test
To view extracted file, use:
$ cd /tmp/test
$ ls -l
GUI tool 7-ZIP
7-Zip is a file archiver with the high compression ratio. The program supports 7z, ZIP, CAB, RAR, ARJ, LZH, CHM, GZIP, BZIP2, Z, TAR, CPIO, ISO, MSI, WIM, NSIS, RPM and DEB formats. It is a open source cross-platform file archiver, supports creation and extraction of Tar archives.
You can download 7-Zip here online.
🐧 Get the latest tutorials on Linux, Open Source & DevOps via:
- RSS feed or Weekly email newsletter
- Share on Twitter • Facebook • 4 comments... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
Salamo Alikom
thx ,this help to extract FreeBSD package .
Thanks, very helpful.
You can do it this way as well. It also works for Solaris.
bzip2 -cd files.tar.bz2 | tar xvf –
don;t mention the name of god. Thanks for this post. This is for SIFE