Hello and welcome to CertForums.co.uk, here we host free active certification forums with links to the best free resources for Microsoft's MCSA MCSE MCDBA Cisco's CCNA CCDA and CCNP, and CompTIA's A+ Network+ i-NET+ and Security+ certifications in the UK. If you wish to post or use other advanced features you will need to register first. Registration is absolutely free and takes only a few minutes to complete so sign up today!
If you have any problems with the registration
process or your account login, please contact support
Ive installed Ubuntu onto fusion 2 and im trying to instal vmware tools so that i can get full screen mode etc. Im not to good with linux and im having problems with terminal. The instructions for installing are below:
So far im in terminal and have copied the files to a temp directory on my desktop. The command line looks like this : raffaz@ubuntu-desktop:~/Desktop/temp/vmware-tools-distrib$
Ive tried the sudo command to run the install file mentioned below but i keep getting sudo: vmware-install.pl: command not found. Any idea where im going wrong? Cheers
____________________________________________________________ _________________
INSTALLING/UPGRADING
To install/upgrade VMware Tools for Linux,
run the program "vmware-install.pl" from a command prompt, either in text
mode or from a terminal inside an X session. You must have super user
privileges (i.e. be logged as root) to run it.
./vmware-install.pl
If you are installing VMware Tools for the first time,
you can hit the <enter> key each time you are prompted to select the
factory default answer. By default,
the installation program installs:
the executables in /usr/bin,
the server executables in /usr/sbin,
the library files in /usr/lib/vmware-tools,
and the documentation files in /usr/share/doc/vmware-tools.
If you have previously installed VMware Tools,
you can hit the <enter> key each time you are prompted to keep your previous
answer, or you can decide to submit a new answer.
Once the installation/upgrade is complete, you can safely remove the
vmware-tools-distrib directory from your system.
CONFIGURING
In order to run correctly, VMware Tools must first be configured.
To configure VMware Tools, run the program "vmware-config-tools.pl" (this is
automatically done for you at the end of the installation/upgrade
process if you answer "yes" to the last question). You must have super user
privileges (i.e. be logged as root) to run it.
vmware-config-tools.pl
This will teach VMware Tools how to run on your current Linux kernel.
If you reboot your machine with a new kernel that VMware Tools
doesn't know yet (because, let's say, you have upgraded your Linux system),
you will have to run this configuration program again.
Then, VMware Tools will know this new kernel once and for all.
____________________________________________________________ __________________
UNINSTALLING
To remove an existing installation, run the program
"vmware-uninstall-tools.pl".
You must have super user privileges (i.e. be logged as root) to run it.
vmware-uninstall-tools.pl
The uninstall process will delete all installed files, and will backup the
files that have been modified since they have been installed.
The ./ is important when running scripts, can't remember why, think its to tell it thats its in the current directory and not in one of the system directories...
Quote:
“
Most of the systems I'm familiar with do NOT have the current working directory in the PATH variable. This Debian Linux system, for example shows this when I echo $PATH:
/usr/local/bin:/usr/bin:/bin:/usr/game...
./ means look for this program in the current directory. That means if I type "test.sh" it will look in the various bin directories and in /usr/games. If it's in the current directory then I'm out of luck. I used to have a Unix account where typing a.out got you a shell script which printed out that if you wanted your program to run you had to type ./a.out. In other words, if your current directory is in PATH there is NO difference between the two, but the default is that your current directory is not in PATH, and I'm not sure I'm comfortable with it being there. I don't practice safe computing and have been burned a few times.
In the Windows world the 'current directory' is included in the search path (look for the environment variable PATH) even if not mentioned explicitly.
In the Unix world this is not the case. So either add it to the PATH, or prefix the command with an absolute or relative path. Most people use the relative path method as it is much easier and shorter. As '.' is the notation for the current directory the relative path would be ./