spirit posteets tagged vmware

 

  • 8 years ago
    Très utile pour mettre une VM snort en bridge sur un linux ; il suffit de mettre les deux vmnet du bridge en promiscuous sur la machine hébergeant la VM
    1. # VMware software does not allow the virtual Ethernet adapter to go into promiscuous mode unless the user running the VMware software has permission to make that setting. This follows the standard Linux practice that only root can put a network interface into promiscuous mode.
    2. chgrp vmware/dev/vmnet0
    3. chmod g+rw /dev/vmnet0
    4. # N.B: Change vmnet0 with the bridged device
  • 8 years ago
    1. # Every time I reboot and run VMWare, I have to manually run vmware-config.pl to create again vmnet devices (/dev/vmnetX)
    2. # This scrit fix this problem. Add it to the init.d directory and run it on startup (rcX.d)
    3. vim /etc/init.d/mkvmnet
    4. #! /bin/sh -e
    5. #Create device nodes for vmnet
    6. sync
    7. `/bin/mknodmode=600 /dev/vmnet0 c 119 0`
    8. `/bin/mknodmode=600 /dev/vmnet1 c 119 1`
    9. `/bin/mknodmode=600 /dev/vmnet2 c 119 2`
    10. `/bin/mknodmode=600 /dev/vmnet3 c 119 3`
    11. `/bin/mknodmode=600 /dev/vmnet4 c 119 4`
    12. `/bin/mknodmode=600 /dev/vmnet5 c 119 5`
    13. `/bin/mknodmode=600 /dev/vmnet6 c 119 6`
    14. `/bin/mknodmode=600 /dev/vmnet7 c 119 7`
    15. `/bin/mknodmode=600 /dev/vmnet8 c 119 8`
    16. `/bin/mknodmode=600 /dev/vmnet9 c 119 9`
    17. sync
    18. exit 0
    19. # To execute the script on startup
    20. cp -s /etc/init.d/mkvmnet /etc/rc3.d/S02mkvmnet
    21. chmod 755 /etc/init.d/mkvmnet
  • 8 years ago
    Ajouter les droits en écriture et execution sur le fichier vmx de la VM
  • 8 years ago
    1. # ** Dans la VM **
    2. dd if=/dev/zero of=/zero.bin
    3. rm zero.bin
    4. # ** Sur la machine hôte **
    5. vmware-vdiskmanager -k <disk.vmdk> #( /!\ Windows uniquement )
    6. vmware-vdiskmanager -r <sourceDisk.vmdk> -t 1 <destinationDisk.vmdk>

    “vmware” related tags

    spirit’s tags