Ubuntu: Mount The Drive From Command Line

use the mount command.

# Open a command-line terminal (select Applications > Accessories > Terminal), and then type the following command to mount /dev/sdb1 at /media/guo/4T.

 You need to create a mount point using the mkdir command. This will be the location from which you will access the /dev/sdb1 drive.
  $ sudo mkdir /media/guo/4T


To mount the drive, enter:
  $ sudo mount /dev/sdb1 /media/guo/4T
  $ df -H
To view files cd to /media/guo/4T, enter:
  $ cd /media/guo/4T
  $ ls -l

Ubuntu: Mount The Drive From Command Line

上一篇:C# 基础知识系列- 8 Linq最后一部分查询表达式语法实践


下一篇:odoo 使用restfultAPI调用模型中的方法