Page 1 of 2 12 LastLast
Results 1 to 10 of 15

Thread: How do I install a program?

  1. #1
    Join Date
    Sep 2008
    Beans
    131

    How do I install a program?

    Installations are straightforward if the program is catalogued in your repository. But if I got it elsewhere, I am at a loss. I got a folder conaining the executable plus ancillary files. Clicking or double clicking are useless. What do I do?

    Incidentally, this program requires JAVA. I've downloaded it but again don't know how to install it. It might be already installed. How do I check it? If necessary, how do I install it?

  2. #2
    Join Date
    Jan 2008
    Location
    Manchester UK
    Beans
    13,573
    Distro
    Ubuntu

    Re: How do I install a program?

    What program is it?

    Is it contained within a tarball. Is it a .deb?

    Is there a README file contained within it?

  3. #3
    Join Date
    Feb 2008
    Location
    digital_world:://home
    Beans
    303

    Re: How do I install a program?

    Quote Originally Posted by Coco999 View Post
    Installations are straightforward if the program is catalogued in your repository. But if I got it elsewhere, I am at a loss. I got a folder conaining the executable plus ancillary files. Clicking or double clicking are useless. What do I do?

    Incidentally, this program requires JAVA. I've downloaded it but again don't know how to install it. It might be already installed. How do I check it? If necessary, how do I install it?
    Did you downloaded the installer? And if so, what format?

    It should be .deb, .rpm, or something like that. Not .exe.
    Quote Originally Posted by ushimitsudoki View Post
    Fixing Bug #1 doesn't mean becoming Bug #1. We need to improve Linux, not clone Windows.
    Windows sucks. Linux rocks!
    Minsan, masaya rin kung hindi ka naiintindihan ng iba. Go multilinguals!

  4. #4
    Join Date
    Jul 2009
    Location
    Mentakab, Malaysia
    Beans
    1,864
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: How do I install a program?

    Keep your important files in HOSTS when ubuntu is installed with WUBI
    How to install ANYTHING in Ubuntu!
    'No PUB KEY' error? Try this!


  5. #5
    Join Date
    Jan 2010
    Beans
    165

    Re: How do I install a program?

    Quote Originally Posted by Coco999 View Post
    Installations are straightforward if the program is catalogued in your repository. But if I got it elsewhere, I am at a loss. I got a folder conaining the executable plus ancillary files. Clicking or double clicking are useless. What do I do?

    Incidentally, this program requires JAVA. I've downloaded it but again don't know how to install it. It might be already installed. How do I check it? If necessary, how do I install it?
    CD to the directory it's in. Lets say you put the folder on your desktop and its called that_installer.

    cd Desktop/that_installer/
    ./configure
    make
    sudo make install

  6. #6
    Join Date
    Sep 2008
    Beans
    131

    Re: How do I install a program?

    Quote Originally Posted by nothingspecial View Post
    What program is it?

    Is it contained within a tarball. Is it a .deb?

    Is there a README file contained within it?
    The name is MagnumOpus. What is a tarball?
    It is .jar. No readme file


    Did you downloaded the installer? And if so, what format?

    It should be .deb, .rpm, or something like that. Not .exe.
    No downloader available. Extension is .jar, I think this is the exexutable.



    CD to the directory it's in. Lets say you put the folder on your desktop and its called that_installer.
    Do you use installer as a fantasy name or is it supposed to imply a functionality? I have none.

  7. #7
    Join Date
    Jul 2008
    Location
    Birmingham, England
    Beans
    2,400

    Re: How do I install a program?

    If the extension is jar it usually suffices to run
    Code:
    java file.jar
    installer is a made up name used as an example (same as file above).The idea is to replace these words with the name of your file

  8. #8
    Join Date
    Dec 2005
    Location
    Western Australia
    Beans
    11,480
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: How do I install a program?

    I imagine there should be instructions, either with that file or on its developer's website.

    There might be a shell script included (filename might end in '.sh'), that you have to drag to the terminal window to run the program.
    I try to treat the cause, not the symptom. I avoid the terminal in instructions, unless it's easier or necessary. My instructions will work within the Ubuntu system, instead of breaking or subverting it. Those are the three guarantees to the helpee.

  9. #9
    Join Date
    Jan 2010
    Beans
    165

    Re: How do I install a program?

    ....I was making an example.

    .jar files are java archive files not executeables. You're trying to install something made in Javascript. Mind giving an ls on the contents of the downloaded files?

    Unpack the .jar

  10. #10
    Join Date
    Feb 2008
    Location
    digital_world:://home
    Beans
    303

    Re: How do I install a program?

    So it's a jar. Then you really need Java.

    Install java by using the repository. Then you can start your app by

    Code:
    java -jar <jar file name here>.jar
    That should get you going.

    Note: Install the Java Runtime Environment.
    Quote Originally Posted by ushimitsudoki View Post
    Fixing Bug #1 doesn't mean becoming Bug #1. We need to improve Linux, not clone Windows.
    Windows sucks. Linux rocks!
    Minsan, masaya rin kung hindi ka naiintindihan ng iba. Go multilinguals!

Page 1 of 2 12 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
  •