天天看点

linux挂载硬盘_Linux服务器如何识别移动硬盘?

linux挂载硬盘_Linux服务器如何识别移动硬盘?

序言

通常我们使用的移动硬盘或U盘一般都是ntfs或fat32的文件系统类型。

绝大多数Linux发行版内核支持fat32文件系统,因此我们直接mount即可挂载;

然而对于ntfs格式的设备,Linux系统并不支持直接挂载,需要安装ntfs-3g包

今天我们学习下服务器如何挂载fat32及ntfs设备

一、linux服务器挂载FAT32 U盘(移动硬盘)步骤:

1)将U盘插入USB接口,检查是否插好

2)找到U盘所在设备,比如我的就是/dev/sdb1

[[email protected] ~]# fdisk -l | grep FAT32/dev/sdb1 * 56 640 3580928 c W95 FAT32 (LBA)           

3)创建挂载点,比如/fat32

[[email protected] ~]# mkdir /fat32           

4)挂载U盘

[[email protected] ~]# mount -t vfat /dev/sdb1 /fat32# 挂载成功后,我们可以在/fat32目录下识别到U盘中的内容           

   卸载U盘

[[email protected] ~]# umount /fat32[[email protected] ~]# rm -rf /fat32           

二、Linux服务器挂载NTFS移动硬盘步骤:

1)安装ntfs-3g

ntfs-3g有两种安装方式,一种是使用yum进行安装,一种是使用源码包进行编译安装。

以下两种安装方式,您可按需选择。

如果您对yum源的搭建不太熟悉,参考:yum学习笔记

     1. yum方式安装ntfs-3g

[[email protected] ~]# yum -y install ntfs-3g           

    2. 源码包方式安装ntfs-3g

# 我们从官网上 下载ntfs-3g源码包;[[email protected] ~]# wget https://tuxera.com/opensource/ntfs-3g_ntfsprogs-2017.3.23.tgz# 如果您的服务器不能连接互联网,可以利用WinSCP将源码包上传至服务器           
[[email protected] ~]# yum -y install gcc # 安装gcc编译器[[email protected] ~]# tar -zxvf ntfs-3g_ntfsprogs-2017.3.23.tgz[[email protected] ~]# cd ntfs-3g_ntfsprogs-2017.3.23/[[email protected] ntfs-3g_ntfsprogs-2017.3.23]# ./configure && make && make install           

2)找到移动硬盘所在设备,比如我的就是/dev/sdc1

[[email protected] ~]# fdisk -l | grep NTFS/dev/sdc1 * 1 244 1955776+ 7 HPFS/NTFS           

3)创建挂载点并挂载

[[email protected] ~]# mkdir /ntfs[[email protected] ~]# mount -t ntfs-3g /dev/sdc1 /ntfs           

卸载移动硬盘

[[email protected] ~]# umount /ntfs[[email protected] ~]# rm -rf /ntfs           

三、常用mount案例

最后给大家列举下企业中常用的mount案例

  • mount /dev/sr0 /mnt:挂载光盘至/mnt目录
  • mount /dev/sdb1 /data:挂载sdb1分区至/data目录
  • mount -t vfat /dev/sdb1 /fat32:挂载U盘至/fat32目录
  • mount -t ntfs-3g /dev/sdc1 /ntfs:挂载ntfs移动硬盘至/ntfs目录
  • mount -t iso9660 -o loop centos8.iso /mnt:挂载centos8镜像文件至/mnt目录
  • mount -t nfs 192.168.1.251:/data /mnt:挂载远端nfs服务器的/data目录至本地/mnt目录
  • mount -o remount, rw /:单用户模式下,重新以读写模式挂载根分区

更多帮助信息请参阅 :mount --help 或者 man mount

linux挂载硬盘_Linux服务器如何识别移动硬盘?