[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Etch: Netzwerkkarte fehlt.



Hallo Michael,

hab mir das vmware-tools-Initscript nochmal angeschaut.

Der will vmxnet nochmal laden, obwohl das Gerät schon von pcnet32 angesprochen wird.

Mit dieser Änderung funkt jetzt die Initialisierung.

Du könntest das von Hand testen (ifdown eth0; ifdown eth1; rmmod pcnet32; modprobe vmxnet; ifup eth0; ifup eth1; bzw. ifconfig <dev> <ip>).



# Start the virtual ethernet kernel service
vmware_start_vmxnet() {
   # only load vmxnet if it's not already loaded
   if [ "`isLoaded "$vmxnet"`" = 'no' ]; then
     ifdown eth0
     rmmod pcnet32
     rmmod vmxnet
     vmware_load_module $vmxnet
     ifup eth0
   fi
}

# Stop the virtual ethernet kernel service
# XXX Might want to stop the network in case the device is
#     configured.
vmware_stop_vmxnet() {
  vmware_unload_module $vmxnet
/etc/init.d/vmware-tools: unmodified, readonly: line 562 of 809 [69%]



Reply to: