Results 1 to 10 of 10

Thread: How to install tar.gz or tar.bz2 files on Ubuntu 12.04

  1. #1
    Join Date
    Jun 2012
    Beans
    15

    How to install tar.gz or tar.bz2 files on Ubuntu 12.04

    please ho to install compressed files tar.gz tar.bz2...zip in ubuntu 12.04

  2. #2
    Join Date
    Nov 2010
    Location
    India
    Beans
    Hidden!

    Re: How to install tar.gz or tar.bz2 files on Ubuntu 12.04

    basic thing is you should have build-essential tools install .

    and then you have to follow these steps to install.

    Code:
    tar -xvf <source.tar>
    cd <source>
    ./configure
    make
    sudo make install
    for more infomation https://help.ubuntu.com/community/CompilingEasyHowTo
    Dont miss anything even it is small. one small pin is enough to bring down a man.


  3. #3
    Join Date
    Jun 2006
    Location
    Nux Jam
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: How to install tar.gz or tar.bz2 files on Ubuntu 12.04

    usually you should not need to follow that way: ubuntu have ready to use package inside the repos. See synaptic or software center for your needs.

    http://askubuntu.com/questions/25961...r-tar-bz2-file

  4. #4
    Join Date
    Nov 2010
    Location
    India
    Beans
    Hidden!

    Re: How to install tar.gz or tar.bz2 files on Ubuntu 12.04

    ouch! I am bit old . Thanks dino.
    Dont miss anything even it is small. one small pin is enough to bring down a man.


  5. #5
    kjohri is offline Gee! These Aren't Roasted!
    Join Date
    Dec 2008
    Location
    Ghaziabad, India
    Beans
    133

    Re: How to install tar.gz or tar.bz2 files on Ubuntu 12.04

    For tar.gz,

    tar -xvzf filename.tar.gz

    For tar.bz2,

    tar -xvjf filename.tar.bz2

  6. #6
    Join Date
    Nov 2009
    Location
    Finland near North Pole
    Beans
    43

    Re: How to install tar.gz or tar.bz2 files on Ubuntu 12.04

    I use for those files Gdebi-installer.
    Right click on file, and choose Gdebi.
    You can find Gdebi in Unity-menu, if I remember right.
    Or install first Synaptic in terminal:
    sudo apt-get install synaptic

  7. #7
    Join Date
    Nov 2010
    Location
    India
    Beans
    Hidden!

    Re: How to install tar.gz or tar.bz2 files on Ubuntu 12.04

    Quote Originally Posted by HannuMR View Post
    I use for those files Gdebi-installer.
    Right click on file, and choose Gdebi.
    You can find Gdebi in Unity-menu, if I remember right.
    Or install first Synaptic in terminal:
    sudo apt-get install synaptic
    Hi amigo .
    Gdebi for .DEB . its not going to work for source pkgs .
    Dont miss anything even it is small. one small pin is enough to bring down a man.


  8. #8
    Join Date
    Nov 2009
    Location
    Finland near North Pole
    Beans
    43

    Re: How to install tar.gz or tar.bz2 files on Ubuntu 12.04

    Quote Originally Posted by raja.genupula View Post
    Hi amigo .
    Gdebi for .DEB . its not going to work for source pkgs .
    Yes.
    I must repeat:
    "if I remember right."

  9. #9
    Join Date
    Apr 2008
    Location
    LOCATION=/dev/random
    Beans
    5,767
    Distro
    Ubuntu Development Release

    Re: How to install tar.gz or tar.bz2 files on Ubuntu 12.04

    There is no single answer to your question except 'it depends'.

    A tar.gz or tar.bz2 file is just like a zip file, it is just a compressed file that can contain anything. Its contents may be source code, they may be a .deb file, or it could contain a precompiled binary (or an mp3, or a video file ........).

    Basically you need to first decompress the file and see what's inside it before you figure out what the next steps should be, there is usually a README file inside with this information.
    Cheesemill

  10. #10
    Join Date
    Jun 2012
    Beans
    15

    Re: How to install tar.gz or tar.bz2 files on Ubuntu 12.04

    I thank you all for this support an help..

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •