Find the answer to your Linux question:
Results 1 to 4 of 4
I'm new to Linux. I have downloaded Realplayer, which is in form of a .bin file. How to run it?...
  1. #1
    Just Joined!
    Join Date
    Oct 2007
    Posts
    1

    running .bin file

    I'm new to Linux. I have downloaded Realplayer, which is in form of a .bin file. How to run it?

  2. #2
    Linux Engineer valemon's Avatar
    Join Date
    Oct 2006
    Location
    Volos
    Posts
    934
    Make sure that the bin file is executable. If not run
    Code:
    chmod +x filename.bin
    Then run
    Code:
    ./filename.bin
    in order to install.

    edit: just a bit faster
    Linux is like a Teepee, No Windows, No Gates, Only Apache Inside!
    Arch Linux
    Linux user #442041

  3. #3
    Linux Engineer Kieren's Avatar
    Join Date
    Aug 2007
    Location
    England
    Posts
    845
    Let's say the file you have downloaded is realplayer.tar.bin

    To run it first make it executable by typing:

    Code:
    chmod a+x realplayer.tar.bin
    ...and then run it by typing:

    Code:
    ./realplayer.tar.bin
    (Don't forget to change both instances of realplayer.tar.bin to what ever your bin file is called)
    Linux User #453176

  4. #4
    Linux Engineer Kieren's Avatar
    Join Date
    Aug 2007
    Location
    England
    Posts
    845
    valemon Wins
    Linux User #453176

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •