【LINUX】磁碟格式化 建立檔案系統
格式化磁碟,將磁碟分割槽以後就要將磁碟格式化,否則是無法使用的。
[root@localhost ~]# mke2fs
-b:指定檔案系統的block的大小,支援1024,2048,4096 bytes,預設4096 bytes
-i:多少容量分配一個inode
-j:預設的mke2fs 是ext2,加上-j 格式化為ext3 型檔案系統。
-c:檢查磁碟錯誤,-c 會很快進行測試,-c -c 則會以read-write方式進行測試,時間會很長的、
-L: 給檔案系統一個標籤。
#將/dev/sdb5 格式化為ext3 並且命名為logicl
[root@localhost ~]# mke2fs -j -L "logicl" /dev/sdb5
mke2fs 1.39 (29-May-2006)
Filesystem label=logical
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
100576 inodes, 200804 blocks
10040 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=209715200
7 block groups
32768 blocks per group, 32768 fragments per group
14368 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840
Writing inode tables: done
Creating journal (4096 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 24 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
#將剛才的檔案系統的block 改為2048 並且inode 改為4096
[root@localhost ~]# mke2fs -j -L "logical" -b 2048 -i 4096 /dev/sdb5
mke2fs 1.39 (29-May-2006)
Filesystem label=logical
OS type: Linux
Block size=2048 (log=1)
Fragment size=2048 (log=1)
201200 inodes, 401608 blocks
20080 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=412090368
25 block groups
16384 blocks per group, 16384 fragments per group
8048 inodes per group
Superblock backups stored on blocks:
16384, 49152, 81920, 114688, 147456
Writing inode tables: done
Creating journal (8192 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 32 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
#也可以將裝置格式化為其他的格式,檢視一下系統所支援的系統格式:
[root@localhost ~]# ls -l /sbin/mkfs*
-rwxr-xr-x 1 root root 7072 2007-01-12 /sbin/mkfs
-rwxr-xr-x 1 root root 18100 2007-01-12 /sbin/mkfs.cramfs
-rwxr-xr-x 3 root root 47288 2007-01-12 /sbin/mkfs.ext2
-rwxr-xr-x 3 root root 47288 2007-01-12 /sbin/mkfs.ext3
-rwxr-xr-x 3 root root 29672 2007-01-12 /sbin/mkfs.msdos
-rwxr-xr-x 3 root root 29672 2007-01-12 /sbin/mkfs.vfat
從上可以看出系統除了ext2,ext3以外所支援的檔案系統vfat,msdos,cramfs
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22664653/viewspace-680898/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- linux磁碟和檔案系統Linux
- Linux磁碟管理與檔案系統(關於磁碟方面)Linux
- 【Linux】Linux檔案系統管理1 磁碟分割槽、格式化、掛載-卷標掛載Linux
- 【Linux】Linux檔案系統管理2 磁碟分割槽、格式化、掛載-UUID掛載LinuxUI
- Linux 磁碟分割槽及檔案系統管理Linux
- 磁碟管理與檔案系統
- 【Linux】Linux檔案系統管理7 磁碟配額管理Linux
- Linux 建立檔案系統及掛載檔案系統詳解一薦Linux
- linux磁碟和檔案系統的學習筆記Linux筆記
- Linux系統中建立檔案常用的方法!Linux
- 檔案系統操作與磁碟管理
- Linux Centos系統 磁碟分割槽和檔案系統管理 (深入理解)LinuxCentOS
- 【Linux基礎入門】Linux磁碟與檔案系統管理命令!Linux
- AIX新增磁碟並在上面建立檔案系統的主要步驟AI
- 04 磁碟儲存和檔案系統
- Linux系統篇-檔案系統&虛擬檔案系統Linux
- 【Solaris】Solaris檔案系統管理1 UFS檔案系統的建立
- 【Solaris】Solaris檔案系統管理3 ZFS檔案系統的建立
- Linux建立檔案系統並掛載的方法 -----ddLinux
- Linux dd 在當前目錄建立檔案系統Linux
- 在Linux中,如何建立檔案系統的備份?Linux
- 檔案系統&&磁碟管理(六)–swap分割槽、迴環裝置、檔案系統配置檔案fstab
- 從ASM磁碟中複製檔案到本地檔案系統ASM
- 何在Mac系統上建立大檔案?教你在Mac系統建立大檔案的方法Mac
- HP-UX磁碟管理與檔案系統UX
- WSL子系統檔案遷移至其他磁碟
- Linux檔案系統Linux
- linux 檔案系統Linux
- HP-UNIX 建立檔案系統
- AIX 建立檔案系統步驟AI
- FreeBSD建立檔案系統(轉)
- Linux系統檔案系統及檔案基礎篇Linux
- Linux系統下建立檔案最常見的8種方法!Linux
- linux系統程式設計之檔案與IO(三):利用lseek()建立空洞檔案Linux程式設計
- 分散式檔案系統(HDFS)與 linux系統檔案系統 對比分散式Linux
- Linux AUFS 檔案系統Linux
- linux的檔案系統Linux
- 論Linux檔案系統Linux