当前位置: 首页>>技术教程>>正文


如何将USB设备安装到Ubuntu 12.04 Server中的AutoMount

, , ,

问题描述

在Ubuntu 12.04 Desktop中,可以插入USB设备,并且它们大部分都可以工作。

在Ubuntu 12.04 Server中,当我插入USB设备时,它什么也没做。

添加打印机,扫描仪和thumb-drives等USB设备时,如何设置服务器的行为就像台式机?

最终,我将把这个USB设备转发到VirtualBox虚拟机。但是,如果Ubuntu服务器没有以某种方式挂载它们,我也无法通过VirtuaBox看到它们。

最佳办法

Ubuntu documentation中,尝试安装usbmount

sudo apt-get install usbmount

这是仓库中的描述:

automatically mount and unmount USB mass storage devices This package automatically mounts USB mass storage devices (typically USB pens) when they are plugged in, and unmounts them when they are removed. The mountpoints (/media/usb[0-7] by default), filesystem types to consider, and mount options are configurable. When multiple devices are plugged in, the first available mountpoint is automatically selected. If the device provides a model name, a symbolic link /var/run/usbmount/MODELNAME pointing to the mountpoint is automatically created.

使用自动挂载时,它将在/media/usb[0-7]挂载存储设备(没有对话框)。

打印机/扫描仪不是”mounted”,因此配置会有所不同。虽然,如果最终目的只是将这些传递给Windows来宾,则需要从此处https://www.virtualbox.org/wiki/Downloads安装VirtualBox Extension Pack。在Windows客户机上使用之前,无需在Ubuntu主机中设置设备。

次佳办法

  1. 安装usbmount

    sudo apt-get install usbmount
    
  2. 允许用户访问USB驱动器

    sudo sed -i 's/MOUNTOPTIONS="/MOUNTOPTIONS="user,umask=000,/' /etc/usbmount/usbmount.conf
    
  3. 插入并使用

    cd /media/usb
    touch beeblebrox
    

您可以得到一些More Details

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/9059.html,未经允许,请勿转载。