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 /]#