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

Go Back   CertForums > Computing Support Forums > Virtual Computing
Home Forums Register Search Today's Posts Mark Forums Read

Ubunto on Fusion 2

Post New ThreadReply
 
Thread Tools Display Modes
  #1  
Old 26-Aug-2008, 11:57 PM
Raffaz's Avatar
Raffaz Raffaz is offline
Gold Member
Posts: 2,506
Points: 1128 Raffaz has over 1000 pointsRaffaz has over 1000 pointsRaffaz has over 1000 pointsRaffaz has over 1000 pointsRaffaz has over 1000 pointsRaffaz has over 1000 pointsRaffaz has over 1000 pointsRaffaz has over 1000 pointsRaffaz has over 1000 points
Power: 41
None
Join Date: 21 Aug 2006
Location: Newcastle, UK
Age: 34
Certifications: A+, MCP, MCDST, AutoCAD
WIP: Rennovating my house
Ubunto on Fusion 2

Hi,

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.


RIP DAVE
Current Specs
1*Asus Maximus Formula, Q6600, 4GB DDR2, BFG 8600 GTS OC2
2*Asus A8N-SLI Deluxe, Athlon64X2 4200+, 2GB DDR, PX6800GT, Raptor 80Gb, 400Gb, 320Gb, 300Gb
3*Macbook, 2.1ghz intel core 2 duo, 4GB DDR2, 320Gb HDD
 
Reply With Quote
  #2  
Old 27-Aug-2008, 12:02 AM
dmarsh dmarsh is offline
Lifetime Member
Posts: 1,399
Points: 3240 dmarsh has over 3000 pointsdmarsh has over 3000 pointsdmarsh has over 3000 pointsdmarsh has over 3000 pointsdmarsh has over 3000 pointsdmarsh has over 3000 pointsdmarsh has over 3000 pointsdmarsh has over 3000 pointsdmarsh has over 3000 pointsdmarsh has over 3000 pointsdmarsh has over 3000 points
Power: 48
None
Join Date: 24 May 2007
Location: Hampshire
Age: 34
Certifications: One or two...
WIP: OU MST121
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.
You prob want :- sudo ./vmware-install.pl



Last edited by dmarsh : 27-Aug-2008 at 12:10 AM.
 
Reply With Quote
  #3  
Old 27-Aug-2008, 11:34 PM
hbroomhall hbroomhall is offline
Gold Member
Posts: 6,488
Points: 2188 hbroomhall has over 2000 pointshbroomhall has over 2000 pointshbroomhall has over 2000 pointshbroomhall has over 2000 pointshbroomhall has over 2000 pointshbroomhall has over 2000 pointshbroomhall has over 2000 pointshbroomhall has over 2000 pointshbroomhall has over 2000 pointshbroomhall has over 2000 pointshbroomhall has over 2000 points
Power: 92
None
Join Date: 08 Sep 2005
Location: Tunbridge Wells, Kent
Certifications: ECDL A+ Network+ i-Net+
WIP: Server+
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 ./

Harry.

 
Reply With Quote
Post New ThreadReply Spread this thread: Submit this thread to digg Submit this thread to del.icio.us


Go Back   CertForums > Computing Support Forums > Virtual Computing


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
AMD Fusion details leaked: 40/32 nm, dual-core CPU, RV800 graphics wagnerk News 4 05-Aug-2008 11:32 PM
VMware Fusion problems hailstorm Virtual Computing 4 04-Aug-2008 01:50 PM
Converting your Parallels VM's to WMWare Fusion simongrahamuk Virtual Computing 1 30-Jun-2007 02:38 PM
France gets nuclear fusion plant tripwire45 News 3 29-Jun-2005 08:05 PM


All times are GMT +1. The time now is 07:41 AM.

Powered by vBulletin® Version 3.6.11
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
CertForums.co.uk (C) copyright 2003-2007 All Rights Reserved. Content published on CertForums.co.uk requires permission for reprint.
Hosted by Lunarpages