freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

linux操作系統(tǒng)08-文件系統(tǒng)-文庫吧資料

2024-10-08 19:17本頁面
  

【正文】 x Swap ? 83 Linux – w write table to disk and exit Acegene IT Co. Ltd. 16 Creating Extended Partitions /sbin/fdisk /dev/sde Command (m for help): n Command action e extended p primary partition (14) e Partition number (14): 1 First cylinder (11020, default 1): 1 Last cylinder or +size or +sizeM or +sizeK (11020, default 1020): 1020 Command (m for help): w The partition table has been altered! Acegene IT Co. Ltd. 17 Creating Logical Partitions /sbin/fdisk /dev/sde Command (m for help): n Command action l logical (5 or over) p primary partition (14) l First cylinder (11020, default 1): Using default value 1 Last cylinder or +size or +sizeM or +sizeK (11020, default 1020): +5m Command (m for help): p Disk /dev/sde: 232 heads, 62 sectors, 1020 cylinders Units = cylinders of 14384 * 512 bytes Device Boot Start End Blocks Id System /dev/sde1 1 1020 7335809 5 Extended /dev/sde5 1 1 7130 83 Linux Acegene IT Co. Ltd. 18 Listing Partitions cat /proc/partitions major minor blocks name rio rmerge … 8 0 8281507 sda … 8 1 8281476 sda1 … 8 16 4192965 sdb … 8 17 2048256 sdb1 … 8 18 2048287 sdb2 … 8 32 9430155 sdc … 8 33 9430123 sdc1 … 8 48 9430155 sdd … 8 49 4715046 sdd1 … 8 50 4715077 sdd2 … 22 0 252290 hdc … Acegene IT Co. Ltd. 19 建立文件系統(tǒng) ?/sbin/mkfs 格式化分區(qū) ––t 指定文件系統(tǒng)類型 –如 : ?Ext2: mkfs –t ext2 /dev/sdb1 ?Ext3: mkfs –j /dev/sdb1 –或使用 /sbin/mkfs.fstype代替 ? mke2fs建立 ext2/3文件系統(tǒng); mke2fs /dev/hdb3 mke2fs j ext3 /dev/hdb3 ext2 vs. ext3 ? ext2 used to be the most mon Linux filesystem ? ext3 is based on ext2 –Same ondisk structure –ext2 can be converted to ext3 –ext3 can be mounted as an ext2 file system ? ext3 is a journaling filesystem –Preserves data integrity better than ext2 –Faster and safer fsck after system crash Acegene IT Co. Ltd. 21 Swap分區(qū)配置 ? mkswap建立 swap文件系統(tǒng)。每個組有 8192個塊,這樣第一個備份超級塊就在8193,第二個在 16385,依次類推。 –在 Linux的 ext2文件系統(tǒng)中,在每一組數(shù)據(jù)塊的后面就安排有一個超級塊。 ? 這個小數(shù)據(jù)結(jié)構(gòu)中保存著好幾個關(guān)鍵的數(shù)據(jù),包括磁盤的幾何尺寸、可用空間容量、以及最重要的 —第一個 i結(jié)點的位置。 Acegene IT Co. Ltd. 11 文件系統(tǒng)的構(gòu)成 : i結(jié)點 ? ext2文件系統(tǒng)中 i 結(jié)點和數(shù)據(jù)塊的組織結(jié)構(gòu)。 ? 子目錄本身就是文件的一種特殊形式。 ? i結(jié)點 ?超級塊 Acegene IT Co. Ltd. 10 文件系統(tǒng)的構(gòu)成 : i結(jié)點 ? UNIX文件系統(tǒng)最基礎(chǔ)的材料是 i結(jié)點 (inode) ? i結(jié)點是一個包含著指針的控制結(jié)構(gòu),其中的指針要么指向其他 i結(jié)點,要么指向數(shù)據(jù)塊。 – 對文件和目錄來說,每個文件和目錄都有一組權(quán)限標志和它們結(jié)合在一起。每個用戶在被建立用戶目錄時都至少被放在一個用戶組中,而且,系統(tǒng)管理員還可以將用戶編進多個用戶組里。 ? ( 15) /home:該目錄用于存放用戶主目錄的位置 。 ? ( 14) /tmp:該目錄用于存放用戶程序運行時所產(chǎn)生或保存的一些臨時文件 。 ? ( 12) /proc:該目錄是一個虛擬的文件系統(tǒng) ( 不是實際貯存在磁盤上的 ) , 它包括被某些程序使用的系統(tǒng)信息 。 ? ( 10) /var:該目錄用于存放系統(tǒng)中不斷擴充 、 變化的文件 , 例如日志文件和鎖定文件 。 ? ( 8) /dev:該目錄用于存放設(shè)備文件 。 ? ( 7) /lib:該目錄用于存放被 /bin 和 /sbin 中的程序使用的庫文件 。 ? ( 5) /boot:該目錄用于存放內(nèi)核和其它系統(tǒng)啟動時使用的文件 。 ? ( 3) /root:該目錄用于存放根用戶 ( 超級用戶 ) 的主目錄 。 ? ( 2) /sbin:該目錄用于存放許多系統(tǒng)命令 , 例如 shutdown。 Acegene IT Co. Ltd. 4 文件系統(tǒng)的樹狀結(jié)構(gòu) /b i n /sb i n /u sr /etc /v ar /lib /etc /b i n /ad /sp o o Acegene IT Co. Ltd. 5 Linux文件系統(tǒng)介紹 ? ( 1) /bin:該目錄用于存放用戶命令 。 ? 磁盤管理要處理以下任務(wù) –建立硬盤分區(qū)、 –建立文件系統(tǒng)、 –引導(dǎo)系統(tǒng)時自動掛裝文件系統(tǒng)、 –以及發(fā)生系統(tǒng)崩潰之后如何對它們進行恢復(fù)等等。Acegene IT Co. Ltd. 1 Linux操作系統(tǒng) 文件系統(tǒng)
點擊復(fù)制文檔內(nèi)容
環(huán)評公示相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1