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

正文內(nèi)容

linux操作系統(tǒng)08-文件系統(tǒng)(存儲(chǔ)版)

2024-10-24 19:17上一頁面

下一頁面
  

【正文】 件系統(tǒng)。詳細(xì)資料請查閱 mkswap命令的使用手冊頁 . Acegene IT Co. Ltd. 37 /etc/fstab文件 ? /proc文件系統(tǒng) – 和 /proc聯(lián)系在一起的 none數(shù)據(jù)項(xiàng)用來定義 /proc文件系統(tǒng)。 Acegene IT Co. Ltd. 34 /etc/fstab文件 ? /etc/fstab是一個(gè) mount命令可以利用的配置文件。如下所示: ?[ roottest /root ]umount /usr –把掛裝在 /usr子目錄位置上的分區(qū)卸載下來。 tar of open database files needed for hot backup Acegene IT Co. Ltd. 28 掛裝和卸載硬盤分區(qū) ? 文件系統(tǒng)的管理工作是從根目錄 /開始的。 –在 Linux的 ext2文件系統(tǒng)中,在每一組數(shù)據(jù)塊的后面就安排有一個(gè)超級(jí)塊。 ? i結(jié)點(diǎn) ?超級(jí)塊 Acegene IT Co. Ltd. 10 文件系統(tǒng)的構(gòu)成 : i結(jié)點(diǎn) ? UNIX文件系統(tǒng)最基礎(chǔ)的材料是 i結(jié)點(diǎn) (inode) ? i結(jié)點(diǎn)是一個(gè)包含著指針的控制結(jié)構(gòu),其中的指針要么指向其他 i結(jié)點(diǎn),要么指向數(shù)據(jù)塊。 ? ( 14) /tmp:該目錄用于存放用戶程序運(yùn)行時(shí)所產(chǎn)生或保存的一些臨時(shí)文件 。 ? ( 7) /lib:該目錄用于存放被 /bin 和 /sbin 中的程序使用的庫文件 。 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ǎng)絡(luò)文件系統(tǒng)、 –硬盤空間配額管理、 –自動(dòng)掛裝( automounter)子系統(tǒng)等等。 ? ( 6) /lost+found:該目錄被 fsck用于存放零散文件 ( 沒有名稱的文件 ) 。 ? ( 13) /initrd:該目錄用于存放在計(jì)算機(jī)啟動(dòng)時(shí)掛載 映像文件的目錄以及載入所需的設(shè)備模塊 。如果用 ls命令加 l開關(guān)可能會(huì)看到目錄列表 Acegene IT Co. Ltd. 9 文件系統(tǒng)的構(gòu)成 ? Linux的缺省文件系統(tǒng) ext2的全部抽象操作層面的構(gòu)成和管理操作。 ? 超級(jí)塊數(shù)據(jù)結(jié)構(gòu)被拷貝復(fù)制了許多份,散布保存在整個(gè)磁盤上,以此對(duì)付第一個(gè)超級(jí)塊被損壞事件的發(fā)生。如果想在 /dev/hdb2上建立 swap空間,需要輸入下面的命令: ? mkswap /dev/hdb2 ?物理內(nèi)存的 2倍,或大于 2 GB ?獲得 swap分區(qū)信息 : /sbin/swapon s Filename Type Size Used Priority /dev/sda5 partition 2096440 0 1 /dev/sda6 partition 2096440 0 2 Acegene IT Co. Ltd. 22 /proc Filesystem ?/proc is a virtual file system ? Provides an instantaneous view of the operation of the system – /proc/meminfo, /proc/mounts, /proc/partitions –Can be viewed with cat, more, less ? Can be used to configure kernel parameters –Settable parameters are below /proc/sys –Can be set with echo or via sysctl Acegene IT Co. Ltd. 23 shmfs ? Mount tmpfs on /dev/shm via fstab ? Option ―size=8g‖ means 8GB ? Option ―size=??‖ can be larger than physical RAM ? Required by Oracle for VLM mode –Only used for buffer cache –Never used in nonVLM mode Acegene IT Co. Ltd. 24 裸設(shè)備 Raw Devices ? I/O directly to partitions instead of a filesystem ? Eliminates copying to/from filesystem cache ? Each raw device is a character device – Character device major number 162 ? Requires more experienced administration ? Devices will be either in /dev or /dev/raw ? Device names are raw1 – 255 by convention – May need to manually create raw129 – raw255: ? ., mknod /dev/raw/raw129 c 162 129 ? Minor 0 is special and can’t be used for I/O – Implies a limit of 255 raw devices ? DB files should be symlinks to /dev/raw/raw* Process Disk file Write Read Acegene IT Co. Ltd. 25 創(chuàng)建裸設(shè)備 ? Create partitions of type ―Linux‖ (type id=83) ? Use /sbin/raw to bind raw device with a partition ? Examples: – /sbin/raw /dev/raw/raw1 /dev/sdc1 – /sbin/raw /dev/raw/raw1 8 33 ? Give oracle user ownership of raw device: – chown oracle:dba /dev/raw/raw1 ? Bindings are not persistent across reboot – Use /etc/sysconfig/rawdevices Acegene IT Co. Ltd. 26 System V Shared Memory ? Used by Oracle for the SGA – May have multiple segments if shmmax is low – Normally all segments deleted at shutdown – If instance crashes, segments may hang around ? To view existing segments: – /usr/bin/ipcs ? T
點(diǎn)擊復(fù)制文檔內(nèi)容
環(huán)評(píng)公示相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號(hào)-1