银河麒麟桌面操作系统V10SP1(ARM)【无法使用mount命令挂载nfs格式移动硬盘】问题解决方法
类别:麒麟
作者:麒麟管理员
发布日期:2023-12-29 16:52

【问题描述】
使用mount命令挂载ntfs的移动硬盘出现报错。报错信息:mount:/mnt:wrong fs type,bad option ,bad superblock on /dev/sdb1,missing codepage or helper program,or other error.
【问题分析】
根据报错信息得知,是不支持nfs文件格式,缺少相关包导致
【问题解决方法】
1、下载安装nfs-common包:sudo apt-get install -y nfs-common;
2、将移动硬盘格式化:sudo mkfs.ntfs -f /dev/sdb1;
3、然后再使用mount命令手动挂载硬盘即可。