Executing a .run file on Ubuntu 9.10

Solved
00Hugo00 Posted messages 93 Status Member -  
 pedobear -
Hello,

I would like to know how to execute a .run program on Ubuntu 9.10 (these are the drivers for my graphics card).

Ubuntu is trying to open it with Wine, but I can't find the "installation interpreter" as it were, to choose the default application.
Configuration: Linux (Ubuntu 9.10) Google Chrome 4

6 answers

  1. jipicy Posted messages 40842 Registration date   Status Moderator Last intervention   4 898
     
    Hi,

    Open a terminal, go to the directory where your .run is located, check that it is executable (ls -l), if not, make it executable:

    chmod u+x your_program.run

    and run it:

    sudo ./your_program.run

    --
    $ man woman
    There is no manual page for woman.
    23
    1. pedobear
       
      thank you
      0