From 210dfe0d2aab5e172f6bd06810840f717424c600 Mon Sep 17 00:00:00 2001 From: zyimm Date: Wed, 18 Dec 2024 15:25:49 +0800 Subject: [PATCH] =?UTF-8?q?:art:=20=E8=87=AA=E5=8A=A8=E6=8C=82=E8=BD=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _posts/Linux/openwrt/mount-error.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_posts/Linux/openwrt/mount-error.md b/_posts/Linux/openwrt/mount-error.md index 9388ff9..9e94c19 100644 --- a/_posts/Linux/openwrt/mount-error.md +++ b/_posts/Linux/openwrt/mount-error.md @@ -9,7 +9,7 @@ openwrt将目录挂载到新硬盘出现“Errorr elocating /usr/bin/mount:mnt_f ### 出现错误可能的原因 -mount命令尝试使用的库函数mnt_fs_is_regularfs在运行时,mount依赖fdisk(这个是具体环境)libblkid libfdisk libmount libuuid 等包,没有安装完整导致的。 +mount命令尝试使用的库函数mnt_fs_is_regularfs在运行时,mount依赖fdisk(这个是具体环境)libblkid libfdisk libmount libuuid 等包,没有安装完整或内部版本不匹配导致的。 ### 解决办法 @@ -18,7 +18,7 @@ opkg update opkg install --force-reinstall fdisk libblkid libfdisk libmount libuuid ``` -使用 --force-reinstall 选项强制重新安装包,确保所有依赖项都正确安装。 +使用 `--force-reinstall` 选项强制重新安装包,确保所有依赖项都正确安装。 ### 自动挂载