博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mount 开机自动挂载
阅读量:6822 次
发布时间:2019-06-26

本文共 636 字,大约阅读时间需要 2 分钟。

hot3.png

 8 [root@FriendlyARM /]# cat /etc/init.d/rcS  | grep mount  9 [ -e /proc/1 ]    || /bin/mount -n -t proc  none /proc          2.在内存中 10 [ -e /sys/class ] || /bin/mount -n -t sysfs none /sys           1.在内存中 ---> proc 11 [ -e /dev/tty ]   || /bin/mount    -t ramfs none /dev 12 # mounting file system specified in /etc/fstab 13 /bin/mount -n -t devpts none /dev/pts -o mode=0622 14 /bin/mount -n -t tmpfs tmpfs /dev/shm 15 /bin/mount -n -t ramfs none /tmp 16 /bin/mount -n -t ramfs none /var 17         /bin/mount -n -t usbfs none /proc/bus/usb     #sh mount.sh  18 [root@FriendlyARM /]#

转载于:https://my.oschina.net/tplinuxhyh/blog/524579

你可能感兴趣的文章