openwrt挂载硬盘只有10m

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了openwrt挂载硬盘只有10m相关的知识,希望对你有一定的参考价值。

如果您使用OpenWRT挂载硬盘只有10M,建议您检查一下系统是否正确安装OpenWRT驱动程序。如果确定已经安装正确,还有可能是OpenWRT的文件系统无法正确识别硬盘,可以尝试重新格式化硬盘,并改变文件系统的格式,看看是否能够解决问题。 参考技术A 出现这种情况,openwrt需要再挂载虚拟硬盘了,不然硬盘容量不足,造成系统不能使用。具体方法如下:
1、在虚拟机设置中添加一个新的硬盘
2、ssh后台查看硬盘列表
df -h
ls /dev/sd*
3、创建分区
fdisk /dev/sdb
根据提示创建卷标等
4、格式化
mkfs.ext4 /dev/sdb
5、挂载
blkid /dev/sdb
6、在openwrt后台添加挂载点

Linux mount挂载和卸载硬盘脚本分享

Linux 挂载

[[email protected] ~]# mount /dev/sdb5 /mnt/
[[email protected] ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda3 16G 2.1G 13G 14% /
tmpfs 931M 0 931M 0% /dev/shm
/dev/sda1 194M 28M 157M 16% /boot
/dev/sdb5 2.0G 68M 1.9G 4% /mnt
[[email protected] ~]# df -T
Filesystem Type 1K-blocks Used Available Use% Mounted on
/dev/sda3 ext4 16311208 2134352 13348288 14% /
tmpfs tmpfs 953276 0 953276 0% /dev/shm
/dev/sda1 ext4 198337 28320 159777 16% /boot
/dev/sdb5 ext4 2071384 68632 1897528 4% /mnt
[[email protected] ~]# 

备注:如果挂载到有文件的目录下 会遮挡原先文件(原文件会变成lost+found文件夹) 必须卸载挂载的硬盘 才能显示

# ls /home/
1.txt 2 22 wanghaipeng whp
# mount /dev/sdb1 /home/  
# ls /home   这时看原来的文件就出来了
lost+found
# umount /home
# ls /home
1.txt 2 22 wanghaipeng whp
#

Linux umount 卸载

[[email protected] /]# mount LABEL=wanghaipeng /home/whp/
[[email protected] /]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda3 16G 2.1G 13G 14% /
tmpfs 931M 0 931M 0% /dev/shm
/dev/sda1 194M 28M 157M 16% /boot
/dev/sdb5 2.0G 68M 1.9G 4% /mnt
/dev/sdb1 2.0G 74M 1.9G 4% /home/whp
[[email protected] /]# umount -l /home/whp/
[[email protected] /]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda3 16G 2.1G 13G 14% /
tmpfs 931M 0 931M 0% /dev/shm
/dev/sda1 194M 28M 157M 16% /boot
/dev/sdb5 2.0G 68M 1.9G 4% /mnt
[[email protected] /]#

以上是关于openwrt挂载硬盘只有10m的主要内容,如果未能解决你的问题,请参考以下文章

openwrt挂载硬盘怎么样做都只能挂四个分区

openwrt挂载硬盘怎么样做都只能挂四个分区

openwrt修改挂载点无法启动

openwrt路由器无法识别硬盘

openwrt 挂载overlay无法写入

linux硬盘掉线挂载信息还在