Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Desktop Environments
  • Search

VMware re-configure every time for network support

Problems with GUI applications? Questions about X, KDE, Gnome, Fluxbox, etc.? Come on in. NOTE: For multimedia, go up one forum
Post Reply
Advanced search
15 posts • Page 1 of 1
Author
Message
MattSharp
Apprentice
Apprentice
Posts: 258
Joined: Fri Aug 15, 2003 6:35 pm

VMware re-configure every time for network support

  • Quote

Post by MattSharp » Tue May 04, 2004 12:12 am

Everytime I reboot my host box and try run vmware the network support is not there. When I the proceed to run "/etc/init.d/vmware start" and then try to run vmware it errors out and I am forced to run vmware-conf.pl (or whatever teh file is) and reset all the confiuration. What is wrong that is causing this to happen?

Is this easily fixable? Would adding Vmware to the RC fix this at all?
Top
badMojo
n00b
n00b
Posts: 53
Joined: Wed Jul 30, 2003 12:13 am

  • Quote

Post by badMojo » Tue May 04, 2004 2:25 am

I have had the same annoying problem and am also interested in a solution.
Top
sfcfagwdse
n00b
n00b
User avatar
Posts: 39
Joined: Mon Mar 29, 2004 7:32 am
Location: Portland, OR

  • Quote

Post by sfcfagwdse » Tue May 04, 2004 5:10 am

I remeber i had this problem and i removed a file called not.configured or something like that in /etc/vmware. I dont know the exact file name cause its gone. After that the /etc/init.d/vmware start script worked fine for me.
Top
MattSharp
Apprentice
Apprentice
Posts: 258
Joined: Fri Aug 15, 2003 6:35 pm

  • Quote

Post by MattSharp » Thu May 06, 2004 7:36 pm

sfcfagwdse wrote:I remeber i had this problem and i removed a file called not.configured or something like that in /etc/vmware. I dont know the exact file name cause its gone. After that the /etc/init.d/vmware start script worked fine for me.
I don't have a file like that anywhere....
Top
Moonlight-Flower
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 135
Joined: Mon Sep 15, 2003 7:13 am

  • Quote

Post by Moonlight-Flower » Thu Jul 15, 2004 12:43 pm

I don't have any such file either, and I have to reconfigure vmware every time I reboot as well...
Top
Kabuto
l33t
l33t
Posts: 701
Joined: Thu Aug 01, 2002 7:19 pm

  • Quote

Post by Kabuto » Thu Jul 15, 2004 2:31 pm

What do you mean by network support? As in any IP support?
Top
malone
Apprentice
Apprentice
User avatar
Posts: 159
Joined: Thu Feb 19, 2004 2:39 pm
Location: The p-n junction.

  • Quote

Post by malone » Thu Jul 15, 2004 2:46 pm

Are you using udev?
malone
Top
acid2000
n00b
n00b
Posts: 24
Joined: Fri Aug 30, 2002 10:32 pm
Location: UK
Contact:
Contact acid2000
Website

  • Quote

Post by acid2000 » Thu Jul 15, 2004 5:48 pm

Check that /etc/init.d/vmware is the gentoo version and not the vmware version.
"Only two things are infinite, the universe and human
stupidity, and I'm not sure about the former."
Albert Einstein
Top
Moonlight-Flower
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 135
Joined: Mon Sep 15, 2003 7:13 am

  • Quote

Post by Moonlight-Flower » Fri Jul 16, 2004 5:19 am

I'm using udev, and my vmware is from portage.
Top
ikaro
Advocate
Advocate
User avatar
Posts: 2527
Joined: Mon Jul 14, 2003 2:04 pm
Location: Denmark

  • Quote

Post by ikaro » Fri Jul 16, 2004 5:43 am

i dont think you need to start /etc/init.d/vmware
i use udev too, and once i run the configuration script after a new kernel, I can start using vmware right away with no problems, and the network works fine.

which kernel are you using, and did you remember to fix the link from linux -> kernel dir
linux: #232767
Top
searcher
Apprentice
Apprentice
User avatar
Posts: 175
Joined: Thu Mar 13, 2003 9:55 pm
Location: NL

  • Quote

Post by searcher » Fri Jul 16, 2004 7:30 am

just to be on the safe side, try

Code: Select all

rc-update add vmware default
and start vmware services by typing

Code: Select all

/etc/init.d/vmware start
If you get some error run

Code: Select all

vmware-config.pl
first, and if that breaks you have to remove a single file in /etc/vmware called something like `not_configured'.

~searcher
You are unique ... just like everyone else.
Top
Moonlight-Flower
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 135
Joined: Mon Sep 15, 2003 7:13 am

  • Quote

Post by Moonlight-Flower » Fri Jul 16, 2004 7:36 am

Well... that's the problem. It's in default, and every time it tries to reboot and start, I have to reconfigure it, or it doesn't work. It works fine after I reconfigure, as long as I don't reboot... and there's nothing like no_configured in /etc/vmware...

Code: Select all

amackenzie@chaos vmware $ ls
config  init.d  installer.sh  installer.sh.old.0  locations  vmnet8
Top
malone
Apprentice
Apprentice
User avatar
Posts: 159
Joined: Thu Feb 19, 2004 2:39 pm
Location: The p-n junction.

  • Quote

Post by malone » Fri Jul 16, 2004 10:41 am

If you're using udev, then every time you reboot the special device nodes created by the config script are lost. I added the following to /etc/init.d/vmware ( right after start() ):

Code: Select all

	# ========================================================
	# create device nodes for use with udev
	# ========================================================
	einfo "Creating Vmware device nodes" 
	
	if [ ! -e "/dev/vmnet0" ]; then 
		mknod -m 600  /dev/vmnet0 c 119 0 
	fi 
	if [ ! -e "/dev/vmnet1" ]; then 
		mknod -m 600  /dev/vmnet1 c 119 1 
	fi 
	if [ ! -e "/dev/vmnet8" ]; then 
		mknod -m 600  /dev/vmnet8 c 119 8 
	fi 
	if [ ! -e "/dev/vmmon" ]; then 
		mknod -m 666  /dev/vmmon c 10 165 
	fi 
	if [ ! -e "/dev/parport0" ]; then 
		mknod -m 600  /dev/parport0 c 99 0 
	fi 
	if [ ! -e "/dev/parport1" ]; then 
		mknod -m 600  /dev/parport1 c 99 1 
	fi 
	if [ ! -e "/dev/parport2" ]; then 
		mknod -m 600  /dev/parport2 c 99 2 
	fi 
	if [ ! -e "/dev/parport3" ]; then 
		mknod -m 600  /dev/parport3 c 99 3 
	fi
	# ========================================================
	# end of device node creation
	# ========================================================
You may want to put it in a different file, so that any updates wont overwrite it. Just be sure that they are created before /etc/init.d/vmware is run.

Cheers.
malone
Top
Moonlight-Flower
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 135
Joined: Mon Sep 15, 2003 7:13 am

  • Quote

Post by Moonlight-Flower » Fri Jul 16, 2004 11:15 am

Ahhh... that would be it then... many many thanks! ^_^
Top
2lt.chronic
n00b
n00b
User avatar
Posts: 52
Joined: Wed Feb 02, 2005 1:38 am
Location: york.on.ca
Contact:
Contact 2lt.chronic
Website

  • Quote

Post by 2lt.chronic » Sat Jun 11, 2005 11:57 pm

wow nearly a year after this post and the same problem still occurs..... I solved it by above method.. :S
Top
Post Reply

15 posts • Page 1 of 1

Return to “Desktop Environments”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy

 

 

magic