转自: http://blog.csdn.net/henulwj/article/details/50347489

 

 

  • 问题描述 
    在Linux如果以普通用户运行VMware Workstations,创建虚拟机后提示如下:

The virtual machine’s operating system has attempted to enable promiscuous mode on adapter ‘Ethernet0’. This is not allowed for security reasons. 
Please go to the Web page “http://vmware.com/info?id=161” for help enabling promiscuous mode in the virtual machine.

  • 解决办法

    1. 创建一个组,给这个组赋予读写权限,然后将/dev/vmnet0或/dev/vmnet8修改为这个组

    groupadd vmwaregroup 
    usermod -a -G vmwaregroup netseclab 
    chgrp vmwaregroup /dev/vmnet0 
    chgrp vmwaregroup /dev/vmnet8 
    chmod g+rw /dev/vmnet0 
    chmod g+rw /dev/vmnet8

2.简单粗暴

chmod a+rw /dev/vmnet0 
chmod a+rw /dev/vmnet8

相关文章:

  • 2021-08-02
  • 2021-11-19
  • 2021-12-06
  • 2021-07-10
  • 2021-08-23
  • 2021-12-04
  • 2021-08-04
  • 2021-12-11
猜你喜欢
  • 2021-08-28
  • 2021-05-10
  • 2021-07-05
  • 2021-03-26
  • 2022-12-23
相关资源
相似解决方案