(2)Linux基础知识

1. kernel basic function:
(1) hardware management
(2) memory management
(3) I/O
(4) VFS : 对不同的文件系统类型进行了抽象,编程者只对VFS编程
(5) process management
2. boot sequence
1. load bios (hardware information)
2. read MBR's config to find out the OS
3. load the kernel of the OS
4. init process starts...
5. execute /etc/rc.d/sysinit    //(runcommand.deamon)后台
6. start other modules (/etc/modules.conf)
7. execute the run level scripts
8. execute /etc/rc.d/rc.local
9. execute /bin/login
10. shell started....
3. init n (run level   /etc/inittab)
0 系统停机状态
1 单用户工作状态
2 多用户状态(没有NFS)
3 多用户状态(有NFS)
4. 系统未使用
5. 图形界面
6 系统正常关闭并重新启动
/etc/rc0.d   
4. 硬件设备
Linux看设备为文件,文件分两类:
字符设备:键盘,打印机
块设备:磁盘等
hda/sda(1~4)(5~)
ls /dev
挂载点与挂载设备 mount/umount

你可能感兴趣的:(linux,职场,休闲)