Category Archives: instalasi

vmware esxi 6.x attach USB drive to VM

Sumber: USB support in ESXi/ESX 4.1, ESXi 5.x, and ESXi 6.x (1022290)

1. Enabling the xHCI module on ESXi 5.x/6.x hosts

  • Connect to the host with an SSH session.
  • Run the following commands to enable to xHCI module
esxcfg-module -e xhci
  • Make it permanent
echo "vmkload_mod xhci" >> /etc/rc.local.d/local.sh

2. Adding a USB controller

To add a USB controller in a virtual machine running Windows:

  • Right-click the virtual machine and click Edit Settings.
  • Click Add
  • Click USB Controller and click Next
  • Click OK.

To add a Host-Connected USB device:.

  • Right-click the virtual machine and click Edit Settings.
  • Click Add
  • Click the desired USB device and click Next
  • Click OK

3. and a USB device in a virtual machine

To add a Client-Connected USB device:

  • using the vSphere Client (5.0 or newer)
  • Click (or open a console to) the virtual machine
  • In the vSphere Client toolbar, click the icon (similar to a USB device with a wrench) to connect/disconnect the USB devices to the virtual machine.
  • Select the desired USB device to connect.
  • Click OK.

 

Configure static IP on ubuntu 16.04

Cara cepat

sudo nano /etc/network/interfaces

 

auto ens160
iface ens160 inet dhcp

 

iface <interface> inet static
	address 192.168.0.100
	netmask 255.255.255.0
	gateway 192.168.0.1

dns-nameservers 8.8.8.8 8.8.4.4

 

restart service

sudo /etc/init.d/networking restart

 

sumber

Configure static IP address on Ubuntu 16.04 LTS Server