Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 19th December 2006, 06:42 AM
GaryG Offline
Registered User
 
Join Date: Nov 2004
Location: North-East Ohio
Posts: 121
VMware-server install

Trying to install vmware-server, the following conflicting messages happen.
Quote:
[root@abitbox3471 ~]# rpm -Uhv /home/gary/VMware-server-1.0.1-29996.i386.rpm
Preparing... ########################################### [100%]
package VMware-server-1.0.1-29996 is already installed
[root@abitbox3471 ~]# rpm -e /home/gary/VMware-server-1.0.1-29996.i386.rpm
error: package /home/gary/VMware-server-1.0.1-29996.i386.rpm is not installed
[root@abitbox3471 ~]#
(I did something that may have been unwise - searched for and deleted all references to vmware; intention was to start the install again from scratch)
Reply With Quote
  #2  
Old 19th December 2006, 06:59 AM
pobbz Offline
Registered User
 
Join Date: Apr 2005
Location: Finland
Posts: 190
Hello.

I'm by no means a rpm expert, but could you consider trying using --force option with that rpm -Uhv ...

That was just a thought, I take no responsibility if that makes your box go ape**** and eat your dog.
Reply With Quote
  #3  
Old 19th December 2006, 07:54 AM
ilbh Offline
Registered User
 
Join Date: May 2006
Posts: 302
post the output of
$ rpm -qa | grep vmware

to remove it just do like
rpm -e vmware-xxxx
you got from rpm -qa.......
Reply With Quote
  #4  
Old 19th December 2006, 08:28 AM
markkuk Offline
Registered User
 
Join Date: Apr 2005
Location: Finland
Posts: 5,076
There's nothing conflicting about the messages, "rpm -U" takes a file name as its parameter, while "rpm -e" needs an installed package name.
Reply With Quote
  #5  
Old 19th December 2006, 03:55 PM
GaryG Offline
Registered User
 
Join Date: Nov 2004
Location: North-East Ohio
Posts: 121
Thank you for the replies.
Here is the output of requested command,

CHECK NEXT POST FOR CORRECTED CONSOLE OUTPUT


Quote:
[gary@abitbox3471 ~]$ rpm -qa | grep vmware
xorg-x11-drv-vmware-10.11.1.3-1.1
[gary@abitbox3471 ~]$
[gary@abitbox3471 ~]$
[gary@abitbox3471 ~]$ rpm -e xorg-x11-drv-vmware-10.11.1.3-1.1
error: Failed dependencies:
xorg-x11-drv-vmware is needed by (installed) xorg-x11-drivers-7.0-2.x86_64
[gary@abitbox3471 ~]$
Gary

Last edited by GaryG; 19th December 2006 at 04:15 PM.
Reply With Quote
  #6  
Old 19th December 2006, 04:14 PM
GaryG Offline
Registered User
 
Join Date: Nov 2004
Location: North-East Ohio
Posts: 121
tried again using VMware instead of vmware; here is the console output:
Quote:
[root@abitbox3471 ~]# rpm -qa | grep VMware
VMware-server-1.0.1-29996
VMware-server-console-1.0.1-29996

[root@abitbox3471 ~]# rpm -e VMware-server-1.0.1-29996
/var/tmp/rpm-tmp.64366: line 34: /etc/vmware/installer.sh: No such file or directory

error: %preun(VMware-server-1.0.1-29996.i386) scriptlet failed, exit status 127

[root@abitbox3471 ~]# rpm -e VMware-server-console-1.0.1-29996
/var/tmp/rpm-tmp.79997: line 34: /etc/vmware-server-console/installer.sh: No such file or directory

error: %preun(VMware-server-console-1.0.1-29996.i386) scriptlet failed, exit status 127
[root@abitbox3471 ~]#
================================================== ================
ran the -Uhv with --force option and got"
Quote:
[root@abitbox3471 ~]# rpm -Uhv --force /home/gary/VMware-server-1.0.1-29996.i386.rpm
Preparing... ########################################### [100%]
1:VMware-server ########################################### [100%]
[root@abitbox3471 ~]# rpm -qa | grep VMware
VMware-server-1.0.1-29996
VMware-server-console-1.0.1-29996
[root@abitbox3471 ~]#
gotta run; I will check out results later

Last edited by GaryG; 19th December 2006 at 04:26 PM.
Reply With Quote
  #7  
Old 19th December 2006, 04:30 PM
ilbh Offline
Registered User
 
Join Date: May 2006
Posts: 302
im not sure if it is your case, but sometimes the rpm database gets damaged
to rebuild it:
rm /var/lib/rpm/__db*
rpm --rebuilddb
yum clean all (to remove files on cache: /var/cache/yum ... etc)

you can also try
# rpm -ihv /home/gary/VMware-server-1.0.1-29996.i386.rpm --force
or instead --force you can try --nodeps
Reply With Quote
  #8  
Old 19th December 2006, 07:39 PM
GaryG Offline
Registered User
 
Join Date: Nov 2004
Location: North-East Ohio
Posts: 121
Ilbh, thankyou for the assistance.
The install ran part way -- here is a cut-n-paste from the console showing the error:
Quote:
Unable to find any instance of the super-server "inetd" or "xinetd". It is
possible that you do not have one of these packages installed on this machine.
Please install "inetd" or "xinetd".

If you do have "inetd" or "xinetd" installed, make sure that /etc/inetd.conf or
/etc/xinetd.d exists.
The configuration will continue, but you should re-run
/usr/bin/vmware-config.pl after you fix the super-server.
Hit enter to continue.
[root@abitbox3471 ~]#
My Diagnostics:
Quote:
[root@abitbox3471 ~]# find / -name xinetd.d
/etc/xinetd.d
[root@abitbox3471 ~]# rpm -qa | grep xinetd
[root@abitbox3471 ~]# whereis xinetd
xinetd: /etc/xinetd.d
[root@abitbox3471 ~]#
Reply With Quote
  #9  
Old 19th December 2006, 07:58 PM
ilbh Offline
Registered User
 
Join Date: May 2006
Posts: 302
try installing xinetd
yum install xinetd
as i said before it could be due to a "disaster" with your rpm database...
Reply With Quote
  #10  
Old 19th December 2006, 07:59 PM
Dies Offline
Registered User
 
Join Date: Oct 2006
Posts: 4,752
What happened when you tried to install xinetd ? Did it just come back with 'Nothing to do' ?
What does yum list xinetd say?

yum install xinetd.i386
Reply With Quote
  #11  
Old 19th December 2006, 08:46 PM
GaryG Offline
Registered User
 
Join Date: Nov 2004
Location: North-East Ohio
Posts: 121
THANKYOU ALL FOR THE ASSISTANTS
cleaned up yum and rpm.
I did a yum install for xinetd and it worked; the setup of vmware-server worked, and the creation of a virtual disk for a windows virtual machine is now running

Thank's again everyone.
Reply With Quote
Reply

Tags
install, vmwareserver

Thread Tools Search this Thread
Search this Thread:

Advanced Search
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

BB 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
VMware Server 1.8 Install Onto FC10 Help stresco Using Fedora 9 1st January 2009 07:53 PM
How to Install and run Vmware Server 2 on FC9??? K0tuk Using Fedora 2 10th October 2008 05:46 AM
Vmware server 1.0.4 install boflo971 Using Fedora 12 5th December 2007 03:04 AM
Install VMware VMware-server-1.0.1-29996.i386.rpm sheffrem Servers & Networking 6 12th April 2007 01:13 AM
Trying to install FC6 on VMware Server pickles EOL (End Of Life) Versions 3 12th December 2006 11:07 AM


Current GMT-time: 20:56 (Monday, 20-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat