root@OpenWrt:~# mkfs.ext4 /dev/sda mke2fs 1.46.5 (30-Dec-2021) /dev/sda contains a ext4 file system created on Sat Oct 29 08:03:58 2022 Proceed anyway? (y,N) y
2.3 挂载 U盘
挂载 U盘 至 overlay 重启之后,就大功告成 放心地去安装各种插件吧
1 2 3 4 5 6 7 8 9 10 11
root@OpenWrt:~# mount /dev/sda /mnt root@OpenWrt:~# mkdir /tmp/root root@OpenWrt:~# mount -o bind / /tmp/root root@OpenWrt:~# cp /tmp/root/* /mnt -a root@OpenWrt:~# umount /tmp/root root@OpenWrt:~# umount /mnt root@OpenWrt:~# block detect > /etc/config/fstab root@OpenWrt:~# uci set fstab.@mount[0].target='/overlay' root@OpenWrt:~# uci set fstab.@mount[0].enabled='1' root@OpenWrt:~# uci commit fstab root@OpenWrt:~# reboot