- 浏览: 2198 次
- 性别:
- 来自: 北京
最新评论
文章列表
boot sequence
- 博客分类:
- linux
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
6.start other modules(etc/modules.conf)
7.execute the run level scripts (启动/etc/rc0.d或rc1.d或rc2.d……)
NFS:Network File System
三种分区:
MBR(Master Boot Record)位于硬盘第一个物理扇区(绝对扇区)柱面0,磁头0,扇区1处。
MBR中包含硬盘的主引导程序和硬盘分区表,最多存储4条,所以主分区+扩展分区最多有4个。
扩展分区可任意分成若干逻辑分区。
不同分区可用不同格式化方式。
如图,是一个主分区(一般用放操作系统),一个扩展分区,扩展分区又分成3个逻辑分区
this.tableViewer = new TableViewer(container);
this.tableViewer.getContentProvider() 为 null
this.tableViewer.getLabelProvider() 不为 null
getContentProvider()和 getLabelProvider()继承自ContentViewer,具体代码:
public IContentProvider getContentProvider() {
return contentProvider;
}
...