2021-05-12 14:32:11
CentOS 7 掛載ntfs磁碟格式的U盤
因為CentOS 預設不識別NTFS的磁碟格式,所以我們要借助另外一個軟體來掛載,那就是ntfs-3g了
自帶的yum源沒有這個軟體,要用第三方的軟體源,這裡我用的是阿里的epel.
1. 切換到系統yum目錄並下載阿里的epel
[root@localhost ~]# cd /etc/yum.repos.d/
[root@localhost yum.repos.d]# wget http://mirrors.aliyun.com/repo/epel-7.repo
2. 查詢當前源上可用的ntfs-3g軟體
[root@localhost yum.repos.d]# yum list ntfs*
已載入外掛:fastestmirror, langpacks
Repository epel is listed more than once in the configuration
Repository epel-debuginfo is listed more than once in the configuration
Repository epel-source is listed more than once in the configuration
Loading mirror speeds from cached hostfile
* elrepo: dfw.mirror.rackspace.com
* epel: mirrors.aliyun.com
已安裝的軟體包
ntfs-3g.x86_64 2:2017.3.23-1.el7 @epel
可安裝的軟體包
ntfs-3g-devel.x86_64 2:2017.3.23-1.el7 epel
ntfsprogs.x86_64
3. 安裝:
[root@localhost yum.repos.d]# yum -y install ntfs-3g
4. 掛載U盤
插入NTFS格式的U盤,fdisk -l 檢視碟符,新建掛載目錄並掛載
[root@localhost ~]# fdisk -l
磁碟 /dev/sdb:31.1 GB, 31104958464 位元組,60751872 個磁區
Units = 磁區 of 1 * 512 = 512 bytes
磁區大小(邏輯/物理):512 位元組 / 512 位元組
I/O 大小(最小/最佳):512 位元組 / 512 位元組
磁碟標簽型別:dos
磁碟識別符號:0x00000000
裝置 Boot Start End Blocks Id System
/dev/sdb1 * 2048 60751871 30374912 7 HPFS/NTFS/exFAT -->這裡的U盤是sdb1
[root@localhost ~]# mkdir /mnt/ukey
[root@localhost ~]# mount ntfs-3g /dev/sdb1 /mnt/ukey
5. 解除安裝U盤, 聽說不解除安裝的話到Windows上會提示格式化磁碟 -_-''
[root@localhost ~]# umount /dev/sdb1
本文永久更新連結地址:http://www.linuxidc.com/Linux/2017-08/146365.htm
相關文章