linux如何挂载硬盘-LMLPHP

挂载命令(mount)格式:

mount [-t vfstype] [-o options] device dir
登录后复制

参数说明:

-t vfstype 指定文件系统的类型,通常不必指定。mount 会自动选择正确的类型。

-o options 主要用来描述设备或档案的挂接方式。

device 要挂接(mount)的设备。

dir设备在系统上的挂接点(mount point)。

(推荐教程:linux教程

举例如下:

sudo mount /dev/sdc1 /home/qiuqiu/2t
登录后复制

或者指定文件格式挂载

sudo mount -t ntfs-3g /dev/sdc1 /home/qiuqiu/data
登录后复制

相关视频教程推荐:linux视频教程

以上就是linux如何挂载硬盘的详细内容,更多请关注Work网其它相关文章!

08-28 08:48