Can't install Parallels Tools on Debian 7.2.0
Posted
by
jfm429
on Super User
See other posts from Super User
or by jfm429
Published on 2013-11-09T15:14:20Z
Indexed on
2013/11/09
15:59 UTC
Read the original article
Hit count: 347
(Parallels Desktop 9, latest version)
As per instructions, I switch to root:
$ su - root
$ whoami
root
$ echo $EUID
0
and then execute the installer:
$ cd /media/cdrom0
$ ./install
and I get this error:
sudo: unable to execute ./install: Permission denied
What? I'm root! What's with this? I double check to make sure the execute bit is set:
$ ls -lA | grep install$
-r-xr-xr-x 1 root root 17284 Oct 25 09:22 install
Yep. People online are saying that you need to drag the install script to the terminal after typing sudo. So I do that, and this command is what's formed:
$ sudo '/media/cdrom0/install'
sudo: unable to execute /media/cdrom0/install: Permission denied
What's the solution here?
© Super User or respective owner