當(dāng)前位置:首頁文章首頁 IT學(xué)院 IT技術(shù)

linux文件系統(tǒng)

作者:  來源:  發(fā)布時間:2012-2-16 16:18:50  點(diǎn)擊:

  文件系統(tǒng):Filesystem(基于內(nèi)核的軟件)

  磁盤分區(qū)是以柱面(一個個磁道)來分的.

  每一個分區(qū)就是一個文件系統(tǒng)!

  UNIX:FresBSD

  Partition:

  獨(dú)立的文件系統(tǒng)

  文件的數(shù)據(jù):

   元數(shù)據(jù)(metadata):屬性信息,單獨(dú)存放!

   數(shù)據(jù)(data)

  inode:文件權(quán)限、屬主屬組、文件類型、磁盤塊指向

  cp:同樣的數(shù)據(jù)存儲了兩次,有兩個inode號

  mv:文件數(shù)據(jù)沒動,映射關(guān)系改變(在同一個分區(qū)之內(nèi))

  rm:對應(yīng)關(guān)系,inode號為空,磁盤塊內(nèi)的數(shù)據(jù)沒變,表示為空!

  ln:

  硬鏈接:不同的文件路徑的文件指向的是同一個inode,刪除硬連接跟原文件沒關(guān)系,不能跨分區(qū)存在!不能連接到目錄上,避免循環(huán)引用

  軟連接:刪除原文件軟連接不可用,軟連接可以對目錄創(chuàng)建,可以跨分區(qū),

  ln:

  ln [OPTION]... [-T] TARGET LINK_NAME (1st form)

   -s 軟鏈接

 

  ls -i 顯示inode號

  Linux文件 系統(tǒng):

  ext2

  ext3

  ext4

  xfs

  reiserfs

  jfs

  iso9660

  swap

  vfat

  ntfs

  GFS2

  OCFS2 orical數(shù)據(jù)庫文件系統(tǒng)

  NFS

  VFS:Virtual FileSystem 虛擬文件系統(tǒng)

  du:估算文件空間使用量的!

  -s 僅顯示統(tǒng)計

  -S顯示個別目錄的大小

  -h 單位換算

  df:顯示磁盤相關(guān)信息

  -h 單位換算

  -i 顯示inode信息

  fdisk:

  -l 列出當(dāng)前系統(tǒng)磁盤分區(qū)情況

  gzip:壓縮文件

  -d 解開壓縮文件

  -f 強(qiáng)制壓縮文件

  -c 輸出重定向,不動原文件

  使用例子:

  gzip -c File > Gzip.gz 輸出重定向Gzip

  -t 測試壓縮文件是否正確

  -# (1-9)指定壓縮比 默認(rèn)為6,壓縮比越大,壓縮越慢

  gunzip:解壓縮文件

  zcat File.gz 只能壓縮文件,不能壓縮目錄

  bzip File

   .bz2

   -d 解壓縮

   -k 直接保留原文件

  bunzip2 File.bz2 = bzip2 -d File.bz2

  bzcat File.bz2

  zip:

  zip 指定文件名.zip + 需要壓縮的文件名

  unzip File.zip

  tar 文件歸檔工具

  -c 創(chuàng)建歸檔文件

  -f 指定文件名

  -x 從歸檔文件中還原文件

  -t 列出文件內(nèi)容

  -v 顯示詳細(xì)過程

  -z 指定通過gzip處理歸檔文件

 

  常用

  tar -zcvf 創(chuàng)建歸檔壓縮文檔并顯示過程 (擴(kuò)展名為tar.gz)

  tar -zxvf 展開歸檔文檔并顯示過程 (擴(kuò)展名為tar.gz)

  tar -jcvf 創(chuàng)建歸檔壓縮文檔并顯示過程 (擴(kuò)展名為tar.bz2)

  tar -jxvf 展開歸檔文檔并顯示過程 (擴(kuò)展名為tar.bz)

  分區(qū):

   Boot Sector : bootloader + fat + 封裝碼

   512 = 446 + 64 +2(封裝碼)

   64 :每16個字節(jié)可以引導(dǎo)一個主分區(qū)!最多4個主分區(qū),多采用3+1(一主三擴(kuò)展)

 

  linux 如何識別磁盤設(shè)備:

   /dev/

 

  IDE(ATA):hd

  SATA:sd

  SCSI:sd

  USB:sd

  SAS:sd

  a,b,c,d

  /dev/hda

  /dev/hab

  ...

  /dev/sda

  掛載卸載

  /media 掛載便攜式設(shè)備

  /mnt 常用掛載目錄

  fdisk:

  fdisk /dev/sda

  m 獲得幫助

  p 獲得分區(qū)表

  n 新建分區(qū)

   e 新建擴(kuò)展分區(qū)

   p 新建主分區(qū)

  n 新建邏輯分區(qū)

  d:刪除分區(qū)

  l 查看id號

  t 修改分區(qū)的id

  w 保存修改并退出

  q 放棄修改并退出

  fdisk 最多只能創(chuàng)建15個分區(qū)

  partprobe /dev/sda 重新掃描分區(qū)

  [root@localhost wangzhen]# fdisk

  Usage: fdisk [-l] [-b SSZ] [-u] device

  E.g.: fdisk /dev/hda (for the first IDE disk)

   or: fdisk /dev/sdc (for the third SCSI disk)

   or: fdisk /dev/eda (for the first PS/2 ESDI drive)

   or: fdisk /dev/rd/c0d0 or: fdisk /dev/ida/c0d0 (for RAID devices)

   ...

  [root@localhost wangzhen]# fdisk /dev/sda

  The number of cylinders for this disk is set to 6527.

  There is nothing wrong with that, but this is larger than 1024,

  and could in certain setups cause problems with:

  1) software that runs at boot time (e.g., old versions of LILO)

  2) booting and partitioning software from other OSs

   (e.g., DOS FDISK, OS/2 FDISK)

  Command (m for help): m

  Command action

   a toggle a bootable flag

   b edit bsd disklabel

   c toggle the dos compatibility flag

   d delete a partition 刪除一個分區(qū)

   l list known partition types 顯示分區(qū)id號

   m print this menu 幫助菜單

   n add a new partition 一個新的分區(qū)域

   o create a new empty DOS partition table

   p print the partition table 顯示分區(qū)表

   q quit without saving changes 放棄保存并退出

   s create a new empty Sun disklabel

   t change a partition's system id 調(diào)整分區(qū)ID

   u change display/entry units

   v verify the partition table

   w write table to disk and exit 保存并退出

   x extra functionality (experts only)

  Command (m for help): p

  Disk /dev/sda: 53.6 GB, 53687091200 bytes

  255 heads, 63 sectors/track, 6527 cylinders

  Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot Start End Blocks Id System

  /dev/sda1 * 1 38 305203+ 83 Linux

  /dev/sda2 39 6462 51600780 83 Linux

  /dev/sda3 6463 6527 522112+ 82 Linux swap / Solaris

  fdisk 默認(rèn)只支持到15個數(shù)字!

  partprobe 重新掃描分區(qū)

  sfdisk 保存?zhèn)浞莘謪^(qū)表

  格式化:(高級格式化)

  mkfs -t ext2 /dev/sdb1

  mkfs -L + Lables 卷標(biāo)

  mkfs 默認(rèn)不支持ntfs 格式

  e2label /dev/sdb1 顯示卷標(biāo)

  e2label /dev/sdb1 LABLE 設(shè)置卷標(biāo)

  mke2fs 創(chuàng)建文件系統(tǒng)

  mke2fs /dev/sdb2

   -j 帶日志類型的文件類型

   -L 設(shè)置卷標(biāo)

   -b(1024|2048|4096<默認(rèn)>)

   -c 檢測磁盤是否有壞道

   -i inode比率(byte/inode)

   默認(rèn)每128個字節(jié)創(chuàng)建一個inode條目,決定inode的個數(shù)!

上一篇:linux 軟件包的安裝 下一篇:

相關(guān)軟件

相關(guān)文章

文章評論

軟件按字母排列: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z