Results 1 to 9 of 9

Thread: Help installing a bitnami .bin file 9.04

  1. #1
    Join Date
    Oct 2009
    Beans
    8

    Question Help installing a bitnami .bin file 9.04

    I did a fresh install of 9.04 desktop which went fine. I am now trying to install a stack from bitnami.org and I can't seem to execute the .bin file installer.

    It downloads to desktop, I'm making darn sure that it's checked as "executable" and chmod 755, etc.

    When I "sudo filename.bin" I get "no such file or directory.

    Also.. an alternate method that was suggested on the bitnami forums was to rename the file removing the .bin extension, mark it as executable, and double click it. This does nothing. I have even watched via System Monitor and nothing happens when the file is double clicked or right click "open".

    I have also tried a few different installer files from bitname and all have the same result. Nothing.

    Help?

    Thanks.

  2. #2
    Join Date
    Dec 2007
    Location
    Science Station Hermes
    Beans
    611
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: Help installing a bitnami .bin file 9.04

    You need to tell the shell where to look, otherwise it looks in the directories in your PATH variable. Use ./ before the executable if you are in the directory where it is located, or use the full path, ie
    Code:
    sudo ./filename.bin
    (./ means 'here')

    or

    Code:
    sudo /home/kevinsteger/Desktop/filename.bin
    I don't know about executing through GUI, though, it should ask you if you want to execute I think...
    Last edited by alphaniner; October 7th, 2009 at 09:41 PM.
    Quote Originally Posted by Legendary_Bibo View Post
    I tried, and by tried I mean I did a half a**ed google search, and by half a**ed google search I mean I typed "eread pdg"

  3. #3
    Join Date
    Mar 2005
    Beans
    947
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Help installing a bitnami .bin file 9.04

    Check if a program is in the Ubuntu repositories (including Universe and Multiverse) before turning to bitnami.org. It looks like everything they carry is open source (?), which means it probably is in the repos.

  4. #4
    Join Date
    Oct 2009
    Beans
    8

    Re: Help installing a bitnami .bin file 9.04

    What I am doing is "sudo ./installerfile.bin"

    which is what you are tell me. It is spelled right, as +x, etc. I'm just dumbfounded

    Quote Originally Posted by alphaniner View Post
    You need to tell the shell where to look, otherwise it looks in the directories in your PATH variable. Use ./ before the executable if you are in the directory where it is located, or use the full path, ie
    Code:
    sudo ./filename.bin
    (./ means 'here')

    or

    Code:
    sudo /home/kevinsteger/Desktop/filename.bin
    I don't know about executing through GUI, though, it should ask you if you want to execute I think...

  5. #5
    Join Date
    Oct 2009
    Beans
    8

    Re: Help installing a bitnami .bin file 9.04

    We are trying to standardize everyone on the same stack, otherwise I would do just that. I've been instructed to use this stack.

    Quote Originally Posted by wmcbrine View Post
    Check if a program is in the Ubuntu repositories (including Universe and Multiverse) before turning to bitnami.org. It looks like everything they carry is open source (?), which means it probably is in the repos.

  6. #6
    Join Date
    Oct 2009
    Beans
    8

    Re: Help installing a bitnami .bin file 9.04

    Code:
    kevin@nix1:~/Desktop$ ls
    lampinstaller.bin  rubyinstaller.bin
    kevin@nix1:~/Desktop$ chmod 755 rubyinstaller.bin
    kevin@nix1:~/Desktop$ chmod +x rubyinstaller.bin
    kevin@nix1:~/Desktop$ sudo ./rubyinstaller.bin
    sudo: unable to execute ./rubyinstaller.bin: No such file or directory
    kevin@nix1:~/Desktop$
    Nothing happens at all. Thanks for your help.

  7. #7
    Join Date
    Dec 2007
    Location
    Science Station Hermes
    Beans
    611
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: Help installing a bitnami .bin file 9.04

    This is a shot in the dark, but what is the output of

    Code:
    file rubyinstaller.bin
    Edit:

    I found this post. Are you running 32bit or 64bit Ubuntu?
    Last edited by alphaniner; October 7th, 2009 at 10:49 PM.
    Quote Originally Posted by Legendary_Bibo View Post
    I tried, and by tried I mean I did a half a**ed google search, and by half a**ed google search I mean I typed "eread pdg"

  8. #8
    Join Date
    Oct 2009
    Beans
    8

    Re: Help installing a bitnami .bin file 9.04

    Quote Originally Posted by alphaniner View Post
    This is a shot in the dark, but what is the output of

    Code:
    file rubyinstaller.bin
    Edit:

    I found this post. Are you running 32bit or 64bit Ubuntu?

    Running 64, and the output of that command is this:

    rubyinstaller.bin: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.2.5, stripped

    I think you're on to something. I'll report back on this.

  9. #9
    Join Date
    May 2008
    Beans
    1

    Re: Help installing a bitnami .bin file 9.04

    I fixed this problem by installing ia32-libs. Cannot take the full credit for solving it myself, found off of another web site (http://bitnami.org/forums/forums/dru...ling-in-ubuntu)
    Last edited by smcclos; December 30th, 2010 at 04:54 PM. Reason: Adding more infomation

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
  •