Results 1 to 6 of 6

Thread: install from .zip file?

  1. #1
    Join Date
    Jul 2009
    Beans
    4

    Question install from .zip file?

    Hi Everyone,
    I am a n00b to ubuntu (and therefore, linux) and am wondering how to install a program called Biogenesis. I have the link here and if anyone can be of assistance, I would appreciate it. (I've also attached the .zip file I downloaded.)
    Thanks.

    Link:http://linux.softpedia.com/progDownl...oad-19248.html

    Remember, you can do anything with a command prompt.
    Play now, Play later.
    Attached Files Attached Files

  2. #2
    Join Date
    Jan 2007
    Location
    Melbourne, Australia
    Beans
    5,096

    Re: install from .zip file?

    Hi, one way to run the program is to open a terminal (Applications>Accessories>Terminal) and download the binary version with wget
    Code:
    wget http://downloads.sourceforge.net/sourceforge/biogenesis/biogenesis_jar_0_5.zip?use_mirror=transact
    then unzip it with
    Code:
    unzip biogenesis_jar_0_5.zip
    then enter the newly created directory
    Code:
    cd biogenesis_jar
    then make the 'biogenesis.jar' file executable
    Code:
    chmod +x biogenesis.jar
    then you can run it from the terminal in its source directory (Where you currently are) with
    Code:
    ./biogenesis.jar
    or if you want to launch it from your Desktop you can right click on the Desktop and choose "Create launcher" then fill in the details
    Type: Application
    Name: biogenesis
    Command: Browse to '/home/user/biogenesis_jar/biogenesis.jar' (replace user with your username)
    Comments: Leave blank or add something
    Change icon pic (left top) to what ever you like.
    Last edited by Partyboi2; July 19th, 2009 at 04:13 AM. Reason: typo
    Ubuntu Newbie Help: irc: #beginners-help on network irc.freenode.net
    Help others, mark your threads solved.

  3. #3
    Join Date
    Jul 2009
    Beans
    4

    Exclamation Re: install from .zip file?

    thanks, but i got this during the end:

    boris@james-laptop:~$ cd biogenesis_jar
    boris@james-laptop:~/biogenesis_jar$ chmod +x biogenesis.jar
    boris@james-laptop:~/biogenesis_jar$ ./biogenesis.jar
    bash: ./biogenesis.jar: cannot execute binary file
    boris@james-laptop:~/biogenesis_jar$

    I also tried the launcher, didn't work, tried going to directory, didn't work.

    I am attaching pics of the screen
    Attached Images Attached Images

  4. #4
    Join Date
    Jan 2007
    Location
    Melbourne, Australia
    Beans
    5,096

    Re: install from .zip file?

    ok, instead of using './biogenesis.jar' to run the program use
    Code:
     java -jar biogenesis.jar
    If that works you will need to change the "command" field for the launcher to
    Code:
    java -jar /home/boris/biogenesis_jar/biogenesis.jar
    Last edited by Partyboi2; July 19th, 2009 at 03:44 PM. Reason: update
    Ubuntu Newbie Help: irc: #beginners-help on network irc.freenode.net
    Help others, mark your threads solved.

  5. #5
    Join Date
    Jul 2009
    Beans
    4

    Re: install from .zip file?

    both times it gave me thischeck attachment for screenshot)
    Attached Images Attached Images

  6. #6
    Join Date
    Jan 2007
    Location
    Melbourne, Australia
    Beans
    5,096

    Re: install from .zip file?

    Have you got java installed?
    Code:
    java -version
    Also what version of Ubuntu are you using?

    Edit: If you don't have java installed the output to 'java -version' will be
    Code:
    bash: /usr/bin/java: No such file or directory
    If its not installed you can install java with
    Code:
    sudo apt-get install openjdk-6-jre

    Code:
    java -jar biogenesis.jar
    Last edited by Partyboi2; July 19th, 2009 at 04:30 PM.
    Ubuntu Newbie Help: irc: #beginners-help on network irc.freenode.net
    Help others, mark your threads solved.

Tags for this Thread

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
  •