Linux系统中查看硬盘信息
lsblk -f # 查看硬盘挂载情况和硬盘的格式
fdisk -l# 查看硬盘分区信息
挂载ntfs硬盘
yum install ntfs-3g #安装ntfs驱动包
mount -t ntfs /dev/sdb1 data #挂载硬盘,将移动硬盘/dev/sdb1,挂载到data目录下
挂载exFAT硬盘
yum install exfat-utils fuse-exfat #安装exfat驱动包
mount -t exfat /dev/sdb1 data #挂载硬盘,将移动硬盘/dev/sdb1,挂载到data目录下
报错解决方法:
yum install ntfs-3g #安装ntfs驱动包,有时会出现 nothing to do 或者 no package ntfs-3g available 提示
原因是默认源里没有ntfs3g,可以添加aliyun的epel源来yum安装。
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo #添加epel yum源
curl -o /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo #或者这样,也是添加epel yum源
yum list|grep ntfs-3g #查看源里有没有ntfs-3g