...
To use USB devices we have to make some changes in the .xml file of our vm.
First of all we need to know the usb Vendor ID and Product ID. Using this command we'll find it:
Panel |
---|
sudo lsusb |
The output will be:
Panel |
---|
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub |
In our case the Vendor ID and Product ID of the USB we want to add to the guest OS is :
...
To make any change to the settings, we can do it with the following command.
Panel |
---|
sudo gedit/etc/vsftpd.conf |
To let the clients upload files to the server we should change
#write_enable = YES to write_enable = YES
3. Everytime we make any change we have to restart the vsftpd, in order to make the changes effective.
...