Saturday, November 15, 2014

How to Execute a .run file in Linux

 1. Open the terminal
 2. Move to the file's directory with "cd"
 3. Mark the file as executable with the chmod command:

      chmod +x file-name.run

  4. Now execute the file:

     ./file-name.run

No comments:

Post a Comment