Saturday, April 27, 2024
 Popular · Latest · Hot · Upcoming
11
rated 0 times [  11] [ 0]  / answers: 1 / hits: 66386  / 2 Years ago, sat, october 22, 2022, 3:36:43

In Ubuntu 10.04, how can one install a tar.bz2 file? I do not know how to do it so are there any one can help me?



ex: package name is : Manager-0.8.3.998.tar.bz2


More From » 10.04

 Answers
5

Did you mean network-manager-applet-0.8.3.998.tar.bz2? That is a source package which needs to be extracted and compiled. Unless you really, really need the latest version, I recommend you installing the network-manager-gnome from the package manager. It integrates better and will be updated automatically.



To extract the package, you need to open a terminal and:




  1. Change the directory to the directory containing the .tar.bz file: cd /path/to/dir

  2. Extract the bzip2-compressed tarball: tar xjf Manager-0.8.3.998.tar.bz2

  3. Change the directory to the newly created directory (use ls to get the directory listing). cd network-manager-applet-0.8.3.998

  4. Run ./configure. If you need to have a package installed, you'll be informed here.

  5. Run make to start compiling

  6. Run sudo make install to install



Again, it's recommended to use the package from the package manager, not to compile it yourself unless you really need to.


[#43984] Monday, October 24, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
rryble

Total Points: 489
Total Questions: 121
Total Answers: 119

Location: Marshall Islands
Member since Mon, May 31, 2021
3 Years ago
;