LINUX教程:CentOS 7 挂载ntfs磁盘格式的U盘

LINUX教程:CentOS 7 挂载ntfs磁盘格式的U盘,第1张

概述介绍《LINUX教程:CentOS 7 挂载ntfs磁盘格式的U盘》开发教程,希望对您有用。

《liNUX教程:CentOS 7 挂载ntfs磁盘格式的U盘》要点:
本文介绍了liNUX教程: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

本文永远更新链接地址

《liNUX教程:CentOS 7 挂载ntfs磁盘格式的U盘》是否对您有启发,欢迎查看更多与《liNUX教程:CentOS 7 挂载ntfs磁盘格式的U盘》相关教程,学精学透。内存溢出PHP学院为您提供精彩教程。

总结

以上是内存溢出为你收集整理的LINUX教程:CentOS 7 挂载ntfs磁盘格式的U盘全部内容,希望文章能够帮你解决LINUX教程:CentOS 7 挂载ntfs磁盘格式的U盘所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/1042085.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存