如何在内核为 6.3.0-1-amd64 的 vmware 17 player 和 debian 13 testing 中启用网络

如何在内核为 6.3.0-1-amd64 的 vmware 17 player 和 debian 13 testing 中启用网络

我已经安装了“VMware-Player-完整版-17.0.2-21581411.x86_64“在 Debian 13 trixie(测试版)上使用内核”6.3.0-1-amd64“ 根据https://wiki.debian.org/VMware#VMware_Workstation_Pro.2FPlayer_17

我以 root 身份手动安装了 vmnet 和 vmmon 模块

cd /usr/lib/vmware/modules/source  
tar xvf vmnet.tar  
cd vmnet-only  
make  
cd ..  
tar xvf vmmon.tar  
cd vmmon-only  
make  
cd ..  
cp vmmon.o /lib/modules/`uname -r`/kernel/drivers/misc/vmmon.ko  
cp vmnet.o /lib/modules/`uname -r`/kernel/drivers/misc/vmnet.ko  
depmod -a  
service vmware restart

最后一个命令冻结,服务 VMware 重启

我也尝试过命令

sudo vmware-modconfig --console --install-all

我得到了这些错误

[AppLoader] GLib does not have GSettings support.
Stopping VMware services:
   VMware Authentication Daemon                                        done
   Virtual machine monitor                                             done
modprobe: FATAL: Module vmnet is in use.
rmmod: ERROR: Module vmnet is in use
Unable to stop services

如果我尝试从内核卸载 vmnet 模块,我会得到这些

user@laptop:~$ sudo modprobe -r vmnet
modprobe: FATAL: Module vmnet is in use.
  1. 如何停止使用 vmnet 并再次安装 vmware 模块

    sudo vmware-modconfig --console --install-all

  1. 在我的 vmware 机器中,由于 vmnet 冻结,我没有网络、NAT 或桥接

3)dmesg给出:

sudo dmesg | grep vmnet
[    8.856687] traps: Missing ENDBR: init_module+0x0/0x110 [vmnet]

[    8.856760] RIP: 0010:init_module+0x0/0x110 [vmnet]

[    8.856774]  ? __pfx_init_module+0x10/0x10 [vmnet]

[    8.856779]  ? __pfx_init_module+0x10/0x10 [vmnet]

[    8.856818] Modules linked in: vmnet(OE+) 
vmw_vsock_vmci_transport vsock vmw_vmci vmmon(OE) ccm cmac 
algif_hash 
algif_skcipher af_alg qrtr bnep binfmt_misc nls_ascii nls_cp437 
vfat 
fat snd_ctl_led snd_soc_skl_hda_dsp snd_soc_intel_hda_dsp_common 
snd_soc_hdac_hdmi snd_sof_probes snd_hda_codec_hdmi 
snd_hda_codec_realtek uvcvideo snd_hda_codec_generic 
videobuf2_vmalloc uvc videobuf2_memops ledtrig_audio 
videobuf2_v4l2 
videodev snd_soc_dmic videobuf2_common snd_sof_pci_intel_tgl mc 
iwlmvm snd_sof_intel_hda_common x86_pkg_temp_thermal 
intel_powerclamp 
soundwire_intel soundwire_generic_allocation soundwire_cadence 
coretemp btusb snd_sof_intel_hda btrtl kvm_intel snd_sof_pci 
btbcm 
mac80211 snd_sof_xtensa_dsp btintel btmtk kvm snd_sof bluetooth 
libarc4 snd_sof_utils snd_soc_hdac_hda snd_hda_ext_core irqbypass 
snd_soc_acpi_intel_match snd_soc_acpi ghash_clmulni_intel iwlwifi 
snd_soc_core aesni_intel snd_compress jitterentropy_rng 
soundwire_bus 
crypto_simd cryptd cfg80211 snd_hda_intel sha512_ssse3 
snd_intel_dspcfg

答案1

[解决了]

我下载了内核 5.15.120 并在 Debian 13 trixie 测试上从头开始构建它。

当我启动内核 5.15.120 并运行 vmware 时,它​​会毫无怨言地编译 vmmon 和 vmnet 模块。

这是 6.x 系列的内核问题

相关内容