Problem on installing VMware

I tried to install VMWare in konsole with user -root-. Here are what I
have done:

chmod +x VMware-Workstation-6.5.0-118166.x86_64.bundle
./VMware-Workstation-6.5.0-118166.x86_64.bundle-

After the second command was executed, error -bash:
./VMware-Workstation-6.5.0-118166.x86_64.bundle: Permission denied-
prompted.

Can anybody tell me why?? I am quite new to linux.

Btw, I can successfully install the software with the command
-sh VMware-Workstation-6.5.0-118166.x86_64.bundle-


MorgenLee

MorgenLee’s Profile: http://forums.opensuse.org/member.php?userid=15462
View this thread: http://forums.opensuse.org/showthread.php?t=406797

Hi
You need a period before the backslash to execute;


../<name_of_file>


Cheers Malcolm °¿° (Linux Counter #276890)
openSUSE 11.1 x86 Kernel 2.6.27.7-9-default
up 11:09, 1 user, load average: 0.59, 0.18, 0.10
GPU GeForce 6600 TE/6200 TE - Driver Version: 180.22

malcolmlewis;1938241 Wrote:
> Hi
> You need a period before the backslash to execute;
> >
Code:

> >
> …/<name_of_file>
>

> >
>
> –
> Cheers Malcolm °¿° (Linux Counter #276890)
> openSUSE 11.1 x86 Kernel 2.6.27.7-9-default
> up 11:09, 1 user, load average: 0.59, 0.18, 0.10
> GPU GeForce 6600 TE/6200 TE - Driver Version: 180.22

thanks~~

one more question, any deference between -sh- and -… /- ??


MorgenLee

MorgenLee’s Profile: http://forums.opensuse.org/member.php?userid=15462
View this thread: http://forums.opensuse.org/showthread.php?t=406797

It should do, if you make it executable first with the chmod
command ./ will work, if you don’t use the chmod, use sh.

It’s also dependent on the whole shebang (#!/…) entry at the
beginning of the script.

For example it may be a perl script (generally indicated by
<filename>.pl) so it would be perl <filename>.pl or python
<filename>.py so in that case it would be python <filename>.py etc

If you don’t know what it’s using, just chmod it and you should be good
to go.


Cheers Malcolm °¿° (Linux Counter #276890)
openSUSE 11.1 x86 Kernel 2.6.27.7-9-default
up 12:37, 3 users, load average: 0.52, 0.72, 0.39
GPU GeForce 6600 TE/6200 TE - Driver Version: 180.22