If bunzip2 is available with OpenBSD then you can try it. To know whether you have it just type bunzip2 at the command prompt. Hope this helps.
Main Topics
Browse All TopicsHi all, i'm a beginner with Freebsd OS. And now i'm starting to learn and know it deeper.
I wanna know, how to install a package if the file with .tar.gz extention.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
david; the easiest way is to run it through tar w/ gzip flags. tar -zxvf filename.tar.gz will do the trick to include recursive directories. try 'man tar' if you want to know more about this. Also, use the ports system to your advantage when learning. If you run pkg_add -r packagename ... it will download and install a package for you (root access req'd). Again, 'man pkg_add' can help you with this. good luck.
Business Accounts
Answer for Membership
by: gheistPosted on 2003-04-25 at 08:33:15ID: 8396043
Better not, just look if you can find your package around here ts/, or even on cd (try /stand/sysinstall, it has easy interface to extract packages from cd2
http://www.FreeBSD.org/por
most likely you will use gzip and tar just like
gzip -cd packag3.tar.gz | tar tvf -
replace "tv" with "x" to extract files and look for README inside (more or view commands are of help)