zoukankan      html  css  js  c++  java
  • How to Mount a USB Drive in Ubuntu

       Read more : http://www.ehow.com/how_6762235_mount-usb-drive-ubuntu.html

    Most USB drives will automount under the Ubuntu operating system. Automounting means Ubuntu is programmed to automatically recognize the storage device plugged into the system and place it in the /media directory, open a file browser window for the volume and place an icon for the volume on your desktop. In the circumstance that Ubuntu is unable to automount the USB drive, manual mounting the drive is possible using the steps outlined below.

    1.Plug the USB drive into the computer. Ubuntu should mount the device automatically. If no volume appears under the /media directory continue to Step

    2.Click on Applications -> Accessories -> Terminal.

    3.

    Type "sudo fdisk -l" and hit the enter key.

     

    4.

    Find your device in the list. It will look something like: /dev/sdb1

     

    5.

    Type "sudo mkdir /media/external" into the terminal window and hit the enter key.

     

    6.

    If the filesystem is formatted as FAT16 or FAT32, type "sudo mount -t vfat /dev/sdb1 /media/external -o uid=1000,gid=100,utf8,dmask=027,fmask=137" into the terminal window, and hit the enter key. Otherwise, if the device is formatted with NTFS, type "sudo mount -t ntfs-3g /dev/sdb1 /media/external" and hit the enter key.

     

    7.

    To unmount the device, type "sudo umount /media/external" into the terminal window and hit the enter key.

  • 相关阅读:
    如何在ONENET云端搭建IOT平台
    01_接口测试介绍
    10_fiddler_待整理
    09_fiddler_慢网络测试(限制网速)
    08_Fiddler_打断点(bpu)
    07_Fiddler_post提交到主体的四种参数形式
    06_Fiddler_get请求(url详解)
    05_Fiddler的Script 脚本用法
    04_Fiddler_Composer创建和发送HTTP Request
    03_Fiddler抓包的捕获设置
  • 原文地址:https://www.cnblogs.com/cj2014/p/4538944.html
Copyright © 2011-2022 走看看