Results 1 to 8 of 8
Hi all:
I'm in the process of installing vmware~tools, however I was just eondering if someone could advise further! I have installed tools, however it has dropped them onto the ...
- 07-19-2006 #1
VMware~tools
Hi all:
I'm in the process of installing vmware~tools, however I was just eondering if someone could advise further! I have installed tools, however it has dropped them onto the CDROM (RPM and TAR.GZ) Now I wish to move the tar.gz onto the HD into a folder like /usr/local/src - now I have attempted a cut and paste, however it throws up the error message, access denied!!!!!! The help I require is how do i move the package into such a folder (step-by-step guide, total newbie!!!!!!) and from there I have the following to deal with the tar.gz:
Unzip the file:Code:cd /root cp /path/file.tar.gz .
Extract the files:Code:gzip -d file.tar.gz
Change into the source directory:Code:tar -xvf file.tar
And within here there was a perl script to install. ExecuteCode:cd file
with:
Many thanksCode:./name.pl
p.s. I have included the above as there is another step I would like to run through after this which deals with the missing kernel headers!
Oliver
- 07-19-2006 #2Linux User
- Join Date
- Jan 2006
- Posts
- 251
oliver,
you get the error 'access denied' because you do not have the permissions to write to that directory.Change the permissions of the directory (or) do the copy as root
to change the permissions use 'chmod',you might also need to change the owner(with chown)
regards
- 07-19-2006 #3
Hi:
Thanks for that, could you possibly give me an example? Or how too?
Thanks again
- 07-19-2006 #4Linux User
- Join Date
- Jan 2006
- Posts
- 251
traverse to the directory where you have the .tar.gz fileCode:su password:
for example /usr
Code:cd /usr cp x.tar.gz /usr/local/src/
- 07-19-2006 #5
I'm getting the response:
When I perform the above?Code:cp: missing destination file
Thanks
- 07-19-2006 #6Linux User
- Join Date
- Jan 2006
- Posts
- 251
thats weird,did you try cut and paste?
Originally Posted by oliver79
- 07-19-2006 #7
Hi:
I did, however access is denied! Even when I'm logged in as root!!!!!!!
Any suggestions?
Many thanks
Oliver
- 07-19-2006 #8Linux User
- Join Date
- Jan 2006
- Posts
- 251
well, is the immutable bit set on the target directory?(I dont think so)
you could test that with a lsattr


Reply With Quote
