aarch64架构移动设备挂载移动硬盘
添加yum源
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
安装ntfs
yum install -y ntfs-3g
查看设备的信息:
lsblk
查看盘符路径
df -h
挂载
# -t ntfs 表示挂载的移动磁盘
mount -t ntfs /dev/block/sda1 /data
添加yum源
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
安装ntfs
yum install -y ntfs-3g
查看设备的信息:
lsblk
查看盘符路径
df -h
挂载
# -t ntfs 表示挂载的移动磁盘
mount -t ntfs /dev/block/sda1 /data