Results 1 to 6 of 6

Thread: How do you install tar.gz2

  1. #1
    Join Date
    Feb 2010
    Location
    Michigan, US
    Beans
    20
    Distro
    Ubuntu 10.04 Lucid Lynx

    Question How do you install tar.gz2

    I keep forgetting the command to compile these and install packages, what is the command? Also is there a program that can auto compile these instead of having to open a terminal everytime?

  2. #2
    Join Date
    Apr 2006
    Beans
    Hidden!

    Re: How do you install tar.gz2

    Quote Originally Posted by JacobVengeance View Post
    I keep forgetting the command to compile these and install packages, what is the command? Also is there a program that can auto compile these instead of having to open a terminal everytime?
    I am pretty sure that compression is handled by file-roller which is installed by default in ubuntu.

    Look under Accessories -> Archive Manager in your Main menu.

  3. #3
    Join Date
    Feb 2010
    Location
    Michigan, US
    Beans
    20
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: How do you install tar.gz2

    Quote Originally Posted by sefs View Post
    I am pretty sure that compression is handled by file-roller which is installed by default in ubuntu.

    Look under Accessories -> Archive Manager in your Main menu.
    Isn't that to extract it. I need to install it and it came in a tar.gz2 archive.

  4. #4
    Join Date
    Nov 2008
    Location
    S.H.I.E.L.D. 6-1-6
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: How do you install tar.gz2

    what are you installing?
    Don't waste your energy trying to change opinions ... Do your thing, and don't care if they like it.

  5. #5
    Join Date
    Feb 2010
    Location
    Michigan, US
    Beans
    20
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: How do you install tar.gz2

    kthememanager

  6. #6
    Join Date
    Mar 2008
    Location
    Republic of Texas
    Beans
    Hidden!

    Re: How do you install tar.gz2

    tar.gz is simply a combination of compression algorithms. A package with these extensions is typically called a 'tarball'. If the tarball you are referring to is a source package, you can conceivably compile and install it with /usr/bin/make.
    First you must extract the tarball with /bin/tar:
    Code:
    $ tar -xvf packagename.tar.gz
    The extracted tarball will generally create a directory named for the package which you will cd to:
    Code:
    $ cd packagename
    There is usually (but not always) a configure script. If you are not familiar with the configure options, run it with the --help switch.
    Code:
    $ ./configure --help
    Compile the source with /usr/bin/make:
    Code:
    $ make
    Install with
    Code:
    # make install
    glhf
    Last edited by MisfitI38; February 27th, 2010 at 02:19 AM.
    ..and the writing's on the wall,
    but the walls have all come down,
    if you can't see past the truth,
    I love to let you down..

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
  •