0

I'm trying to install netbeans-7.4-linux.sh on my 13.10 Ubuntu.

After using terminal sudo sh ./netbeans-7.4-linux.sh it is telling me cannot open netbeans-7.4-linux.sh.

How do I get past this?

Seth
  • 58,122

1 Answers1

0

Force a script to run

  1. sudo bash /path/to/file.sh

Setting a file for execution

  1. chmod +x /path/to/file.sh
  2. `./path/to/file.sh

Problems with symbolic links

  1. echo "set mark-symlinked-directories on" >> ~/.inputrc
  2. `./path/to/file.sh
earthmeLon
  • 11,247