-2

I have setup file *.sh, I installed Ubuntu 14. I have tried terminal mode its not working. How to run GUI mode.

Please let me know the commands and any other samples

carnendil
  • 5,529

1 Answers1

0

To run a .sh file you need to open the terminal, then cd into the directory where the .sh file is located and then type this into the terminal:

chmod +x name-of-your-file.sh

then just

sh name-of-your-file.sh

The output of the command will appear on screen, if you have any other issue, let me know ! :)

ETi
  • 53