Page 1 of 3 123 LastLast
Results 1 to 10 of 29

Thread: installing software in terminal

  1. #1
    Join Date
    May 2010
    Beans
    13

    Exclamation installing software in terminal

    Can anyone post some tutorial how to install progs in terminal? I hawe some files like tar.gz or something.

  2. #2
    nmaster is offline Extra Foam Sugar Free Ubuntu
    Join Date
    Jun 2009
    Beans
    718

    Re: installing software in terminal

    Quote Originally Posted by Orions View Post
    Can anyone post some tutorial how to install progs in terminal? I hawe some files like tar.gz or something.
    https://help.ubuntu.com/community/InstallingSoftware

    in the future, you should try this link before starting a thread: http://www.google.com/cse?cx=0122857...i9yr8qlpb18&q=

  3. #3
    Join Date
    Apr 2007
    Location
    Texas, USA
    Beans
    809
    Distro
    Kubuntu 12.10 Quantal Quetzal

    Re: installing software in terminal

    Quote Originally Posted by Orions View Post
    Can anyone post some tutorial how to install progs in terminal? I hawe some files like tar.gz or something.
    Given the file type, it seems you've downloaded something you need to compile. What is the program that you've downloaded?
    Laptop: [AMD Vision A4-3300M | 8GB RAM | ATI Radeon 6480G | Ubuntu 12.04 64-bit]

    Studio Box: [AMD Athlon 64 X2 5000+ | 4GB RAM | Nvidia 210 | M-Audio FastTrackPro | KXStudio 11.04 64-bit | 2.6.31-rt14-custom | KDE 4.6.5]

  4. #4
    Join Date
    May 2010
    Beans
    13

    Re: installing software in terminal

    it's kind a difficilt. Now I'm running on win vista, becouse the only internet connection avaiable is usb wireless modem, that runs only with software. The problem is to gen i-net for ubuntu, wich is secondary os on my laptop. MobilePartner.tar is the one.

    And manual.. but I don't understand it. Anytime i need some help with ubuntu I must restart system, it's quite annoyng. I only need to get internet working, and than I could google ewerything from ubuntu myself.

    --How to Install----------------------
    *You need login as root*
    1. Run "install" in TERMINAL to install MobilePartner
    eg: # bash /<path>/install

    2. If you had installed this software in your system before, you will get a prompt: "The software is exist, do you want overwrites? ([Y]/[N])", enter "y" to overwrites or "n" to exit.
    3. If you do not had installed this software in your system before, you will get a prompt: "Please input the install path[/usr/local/Mobile_Partner]:". Then you can input install path(fullpath), or you may using the default path(/usr/local/Mobile_Partner) by press ENTER direct
    4. Finish installing
    --How to run--------------------------
    * From shortcut in desktop
    * Run MobilePartner in your install path
    eg: # /<install path>/MobilePartner
    * Plug in your device, it will run automatically(Not supported in Xandros)

  5. #5
    Join Date
    Apr 2006
    Location
    Montana
    Beans
    Hidden!
    Distro
    Kubuntu Development Release

    Re: installing software in terminal

    A tar.gz is an archive, like a Zip file.

    The contents can vary, what are you trying to install ?

    Where did you get it ?

    What is in the README file ?

    If the package is in the Ubuntu repositories, use apt-get to install it.

    If it is source code you first need to install any dependencies. You then extract the file and cd into the directory.

    You then run

    ./configure
    make
    sudo make install
    There are two mistakes one can make along the road to truth...not going all the way, and not starting.
    --Prince Gautama Siddharta

    #ubuntuforums web interface

  6. #6
    Join Date
    Oct 2006
    Location
    Kansas City
    Beans
    1,509
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: installing software in terminal

    actually the installation looks pretty simple, it has an install script...
    just un tar that bad boy then it looks like a good
    Code:
    sudo install
    will do the trick, after following the directions/questions

  7. #7
    Join Date
    May 2010
    Beans
    13

    Re: installing software in terminal

    I can't use use apt-get to install it, because I hawen't internet connection when running on ubuntu. I am trying to install wireless usb modem and I get it from my local providers web page. Because theare isn't any info for total newbies in linux, I am not able to run it.
    And this is readme:
    --How to Install----------------------
    *You need login as root*
    1. Run "install" in TERMINAL to install MobilePartner
    eg: # bash /<path>/install

    2. If you had installed this software in your system before, you will get a prompt: "The software is exist, do you want overwrites? ([Y]/[N])", enter "y" to overwrites or "n" to exit.
    3. If you do not had installed this software in your system before, you will get a prompt: "Please input the install path[/usr/local/Mobile_Partner]:". Then you can input install path(fullpath), or you may using the default path(/usr/local/Mobile_Partner) by press ENTER direct
    4. Finish installing
    --How to run--------------------------
    * From shortcut in desktop
    * Run MobilePartner in your install path
    eg: # /<install path>/MobilePartner
    * Plug in your device, it will run automatically(Not supported in Xandros)

  8. #8
    Join Date
    May 2010
    Beans
    13

    Re: installing software in terminal

    Ok, than what are the commands for un-taring it? And how I can change path in terminal?

  9. #9
    Join Date
    Oct 2006
    Location
    Kansas City
    Beans
    1,509
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: installing software in terminal

    Code:
    cd /path/to/where/you/want/to/go
    that will get you around, as for untar'ing, tar --help or google "untar gz", i dont know the command off the top of my head because i have my shell set to do it for me when i type in the name of a tar'd file

  10. #10
    Join Date
    Apr 2009
    Location
    Tennessee, USA
    Beans
    Hidden!
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: installing software in terminal

    Code:
    cd directory
    to change directories (Folders) eg.
    Code:
     cd Downloads
    remember that *nix is case sensitive, so Downloads, downloads and DOWNLOADS are three different files/folders.

    then to untar is
    Code:
     tar -xvzf filename
    Though note if the tarball is .tar.bz2 then it would be tar -xvjf filename
    Help me out! Go make a dropbox account from this link to get me more space! https://www.dropbox.com/referrals/NTU2ODUyNDY5 (You get the bonus space too!)

Page 1 of 3 123 LastLast

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
  •