How to run a .run file as root?
You need to do two things; both from a Terminal prompt:
- Change to the directory where you have the
.run
file stored. - Type:
chmod 755 filename.run
- Type:
sudo ./filename.run
The above commands will make the file executable and will launch the executable with root-level permissions.