Announcement

Collapse
No announcement yet.

Newbie trying to figuer out how to install game

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Newbie trying to figuer out how to install game

    hello all im new to K/X/Ubuntu family after my discust with microsoft i downloaded Enemy teritory and i cannot figuer out how to install it, i double click on it and nothing happens i get an error message this is the files whole name: et-linux-2.60.x86.run do i use the terminal to install it or what lol, i used the terminal to install google earth but at least that came with instructions.

    #2
    Re: Newbie trying to figuer out how to install game


    Generally, when a file has a .run ending, it's an indicator that it's a shell script. That means running from a terminal in the same directory as the file with the line:

    Code:
    sh ./et-linux-2.60.x86.run
    It's possible that you'll need to do this with sudo (if you want to install it system wide rather than just in your /home, for instance), and that you may need to make the file executable.

    If it complains about the file not being executable, you fix it with:

    Code:
    chmod +x et-linux-2.60.x86.run

    Comment

    Working...
    X