Find the answer to your Linux question:
Results 1 to 3 of 3
I got a file with .bin extention . How can I install it and where will it be stored after installaton....
  1. #1
    Just Joined!
    Join Date
    Oct 2005
    Posts
    1

    how to install .bin file



    I got a file with .bin extention . How can I install it and where will it be stored after installaton.

  2. #2
    Linux Engineer
    Join Date
    Mar 2005
    Posts
    1,431
    You can install it from CUI. Just open a terminal and type this:
    Code:
    chmod +x file.bin
    ./file.bin
    The installation will then start.

    Where the installed files goes depends on which .bin installer it is, however in many cases it will ask where to install.

    If you want a system-wide install, do this before typing the above commands:
    Code:
    su -
    password&#58; <enter password>

  3. #3
    Just Joined!
    Join Date
    Dec 2007
    Posts
    29
    HI
    also try before using chmod command this:
    $file example.bin
    u can determine whether it is executable or not, if not then it is a cd image.
    cheers
    Raed

Posting Permissions

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