先給硬盤分區(qū),再格式化\x0d\x0a1、分區(qū)命令fdisk,cfdisk,parted等\x0d\x0aa)查看有幾塊硬盤\x0d\x0afdisk -l\x0d\x0ab)比如移動(dòng)硬盤是/dev/sdb\x0d\x0afdisk /dev/sdb\x0d\x0a不會(huì)了就輸入?看著幫助\x0d\x0a\x0d\x0a2、為了使用ntfs分區(qū),安裝ntfs-3g\x0d\x0a下載ntfs-3g_ntfsprogs-2013.1.13.tgz\x0d\x0atar zxf ntfs-3g_ntfsprogs-2013.1.13.tgz\x0d\x0acd ntfs-3g_ntfsprogs-2013.1.13/\x0d\x0a./configure\x0d\x0amake\x0d\x0amake install\x0d\x0a\x0d\x0a3、分好區(qū)后,比如/dev/sdb1\x0d\x0a格式化成ntfs:\x0d\x0amkfs.ntfs /dev/sdb1\x0d\x0amount -t ntfs-3g /dev/sdb1 /mnt
創(chuàng)新互聯(lián)建站于2013年開始,先為南漳等服務(wù)建站,南漳等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為南漳企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。
Linux下常用的分區(qū)工具:
fdisk/sfdisk:命令行工具,各種版本和環(huán)境都能使用,包含在軟件包util-linux中
diskdruid:圖形化分區(qū)工具,只能在安裝REDHAT系統(tǒng)時(shí)使用。
第一步:fdisk
[root@novice ~]# fdisk -l /dev/sdb
Disk /dev/sdb: 254 MB, 254017536 bytes
8 heads, 61 sectors/track, 1016 cylinders, total 496128 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
[root@novice ~]# fdisk /dev/sdb
Command (m for help): #在輸入上面的命令后會(huì)出現(xiàn)左邊的提示,輸入m就會(huì)得到一個(gè)幫助菜單,如下:
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
l list known partition types
m print this menu
n add a new partition
o create a new empty DOS partition table
p print the partition table
q quit without saving changes
s create a new empty Sun disklabel
t change a partition's system id
u change display/entry units
v verify the partition table
w write table to disk and exit
x extra functionality (experts only)
#help雖然是英文的,可都很簡(jiǎn)單,在這里不再解釋。
#現(xiàn)在,我們正式開始分區(qū)的操作:
Command (m for help): n #新建分區(qū)
Command action
e extended
p primary partition (1-4)
#e/p分別對(duì)應(yīng)擴(kuò)展分區(qū) /主分區(qū);我們先分四個(gè)主分區(qū),每個(gè)50M;然后再來增加主分區(qū)或擴(kuò)展分區(qū),看會(huì)出現(xiàn)怎樣的狀況,嘿嘿。
p #分區(qū)類型為主分區(qū)
Partition number (1-4, default 1): 1 #分區(qū)號(hào),在這里我們依次選擇1、2、3、4
First sector (2048-496127, default 2048): #指定分區(qū)的起始扇區(qū),一般默認(rèn),按enter鍵即可。
Last sector, +sectors or +size{K,M,G} (2048-496127, default 496127): +50M #指定分區(qū)的終止扇區(qū),根據(jù)前面的提示我們可以做出相應(yīng)的選擇+sectors 或 +size{K,M,G}
Command (m for help): p #用p打印出已建好的分區(qū)列表
Disk /dev/sdb: 254 MB, 254017536 bytes
8 heads, 61 sectors/track, 1016 cylinders, total 496128 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
/dev/sdb1 2048 104447 51200 83 Linux
#剩下的三個(gè)分區(qū)的建立操作同上
#分好四個(gè)主分區(qū)后的情況如下
Command (m for help): p
Disk /dev/sdb: 254 MB, 254017536 bytes
8 heads, 61 sectors/track, 1016 cylinders, total 496128 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
/dev/sdb1 2048 104447 51200 83 Linux
/dev/sdb2 104448 206847 51200 83 Linux
/dev/sdb3 206848 309247 51200 83 Linux
/dev/sdb4 309248 309298 25+ 83 Linux
#已經(jīng)建好四個(gè)主分區(qū)啦,現(xiàn)在我們來看看如果再建主分區(qū)或是擴(kuò)展分區(qū)的話會(huì)出現(xiàn)怎樣的情況:
Command (m for help): n
You must delete some partition and add an extended partition first
??吹搅税?,不能再建分區(qū)啦!要再建分區(qū)的話必須刪除some分區(qū),再新建一個(gè)擴(kuò)展分區(qū)才行。
#現(xiàn)在,我們刪掉一個(gè)主分區(qū),來新建擴(kuò)展分區(qū)
Command (m for help): d #刪除分區(qū)
Partition number (1-4): 4 #選擇要?jiǎng)h除分區(qū)的分區(qū)號(hào),我們選第四個(gè)
Command (m for help): p #打印,如下,四個(gè)分區(qū)變成了三個(gè)!
Disk /dev/sdb: 254 MB, 254017536 bytes
8 heads, 61 sectors/track, 1016 cylinders, total 496128 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
/dev/sdb1 2048 104447 51200 83 Linux
/dev/sdb2 104448 206847 51200 83 Linux
/dev/sdb3 206848 309247 51200 83 Linux
#新建一個(gè)擴(kuò)展分區(qū)
#如果在沒有建滿三個(gè)主分的區(qū)的情況下建立擴(kuò)展分區(qū),相關(guān)選項(xiàng)會(huì)有些不同。
Command (m for help): n
Command action
e extended
p primary partition (1-4)
e
Selected partition 4
First sector (309248-496127, default 309248): #enter,默認(rèn)
Using default value 309248
Last sector, +sectors or +size{K,M,G} (309248-496127, default 496127): #enter,默認(rèn),使用剩余空間
Using default value 496127
Command (m for help): p
Disk /dev/sdb: 254 MB, 254017536 bytes
8 heads, 61 sectors/track, 1016 cylinders, total 496128 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
/dev/sdb1 2048 104447 51200 83 Linux
/dev/sdb2 104448 206847 51200 83 Linux
/dev/sdb3 206848 309247 51200 83 Linux
/dev/sdb4 309248 496127 93440 5 Extended
#接下來,我們?cè)谛陆ǖ臄U(kuò)展分區(qū)里再新建兩個(gè)邏輯分區(qū),因?yàn)橐呀?jīng)有了三個(gè)主分區(qū),這里不會(huì)再顯示是建立邏輯分區(qū)還是主分區(qū)的提示!
Command (m for help): n
First sector (311296-496127, default 311296): #enter
Using default value 311296
Last sector, +sectors or +size{K,M,G} (311296-496127, default 496127): +50M
Command (m for help): n
First sector (415744-496127, default 415744): #enter
Using default value 415744
Last sector, +sectors or +size{K,M,G} (415744-496127, default 496127): #enter
Using default value 496127
Command (m for help): p
Disk /dev/sdb: 254 MB, 254017536 bytes
8 heads, 61 sectors/track, 1016 cylinders, total 496128 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
/dev/sdb1 2048 104447 51200 83 Linux
/dev/sdb2 104448 206847 51200 83 Linux
/dev/sdb3 206848 309247 51200 83 Linux
/dev/sdb4 309248 496127 93440 5 Extended
/dev/sdb5 311296 413695 51200 83 Linux
/dev/sdb6 415744 496127 40192 83 Linux
#上面的列表,就是我們今天分區(qū)的成果啦!接下來保存退出,重啟計(jì)算機(jī),就可以進(jìn)行下一步的mkfs操作啦!如果忘記了相關(guān)的操作命令,記得按m!!!
Command (m for help): w #保存
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.
另:在建好分區(qū)后,我們還可以更改相關(guān)分區(qū)的文件系統(tǒng)類型
#如,我們要把第二個(gè)主分區(qū)改成Linux下的交換分區(qū),操作如下
Command (m for help): t #更改文件系統(tǒng)類型
Partition number (1-6): 2 #選擇第二個(gè)分區(qū)
Hex code (type L to list codes): L #選擇要更改的文件系統(tǒng)編碼,可以按L來查看相關(guān)編碼信息。
0 Empty 24 NEC DOS 81 Minix / old Lin bf Solaris
1 FAT12 39 Plan 9 82 Linux swap / So c1 DRDOS/sec (FAT-
2 XENIX root 3c PartitionMagic 83 Linux c4 DRDOS/sec (FAT-
3 XENIX usr 40 Venix 80286 84 OS/2 hidden C: c6 DRDOS/sec (FAT-
............
16 Hidden FAT16 64 Novell Netware af HFS / HFS+ fb VMware VMFS
17 Hidden HPFS/NTF 65 Novell Netware b7 BSDI fs fc VMware VMKCORE
18 AST SmartSleep 70 DiskSecure Mult b8 BSDI swap fd Linux raid auto
1b Hidden W95 FAT3 75 PC/IX bb Boot Wizard hid fe LANstep
1c Hidden W95 FAT3 80 Old Minix be Solaris boot ff BBT
1e Hidden W95 FAT1
Hex code (type L to list codes): 82 #查找到linux swap的編碼為82
Changed system type of partition 2 to 82 (Linux swap / Solaris)
Command (m for help): p
..............
Device Boot Start End Blocks Id System
/dev/sdb1 2048 104447 51200 83 Linux
/dev/sdb2 104448 206847 51200 82 Linux swap / Solaris
/dev/sdb3 206848 309247 51200 83 Linux
/dev/sdb4 309248 496127 93440 5 Extended
/dev/sdb5 311296 413695 51200 83 Linux
/dev/sdb6 415744 496127 40192 83 Linux
#最后別忘了保存!如果你須要的話!
#擴(kuò)展分區(qū)不能直接使用,邏輯分區(qū)只能建立在擴(kuò)展分區(qū)上!
第二步:mkfs(mkfs時(shí)分區(qū)的格式最好與fdisk設(shè)定的分區(qū)格式一致,不然.......)
mkfs支持ext2 ext3 vfa msdos jfs reiserfs等文件系統(tǒng)。
用法1:mkfs -t
例: mkfs -t ext3 /dev/sdb2
用法2:mkfs.
例:mkfs,vfat /dev/sdb3
mke2fs支持ext2/ext3文件系統(tǒng)
用法:mke2fs [-j]
例:mke2fs -j /dev/sdb5
# 更多更具體的用法請(qǐng)參照相關(guān)命令的man手冊(cè)
下面,接著實(shí)驗(yàn):
例一
[root@novice ~]# mkfs -t ext3 /dev/sdb1
mke2fs 1.41.12 (17-May-2010)
Filesystem label=
OS type: Linux
Block size=1024 (log=0)
Fragment size=1024 (log=0)
Stride=0 blocks, Stripe width=0 blocks
12824 inodes, 51200 blocks
2560 blocks (5.00%) reserved for the super user
First data block=1
Maximum filesystem blocks=52428800
7 block groups
8192 blocks per group, 8192 fragments per group
1832 inodes per group
Superblock backups stored on blocks:
8193, 24577, 40961
Writing inode tables: done
Creating journal (4096 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 34 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
第三部:掛載
掛載:mount
例:mount /dev/sdb1 /mnt /sdb1
卸載:umonut
例:umount /dev/sdb1
linux格式化磁盤命令:mkfs。
案例:格式化sda1分區(qū)
[root@localhost beinan]#mkfs -t ext2 /a href=";tn=44039180_cprfenlei=mv6quAkxTZn0IZRqIHckPjm4nH00T1YkmyR3nAPbmWP-mhfkPjc40ZwV5Hcvrjm3rH6sPfKWUMw85HfYnjn4nH6sgvPsT6KdThsqpZwYTjCEQLGCpyw9Uz4Bmy-bIi4WUvYETgN-TLwGUv3EnHmYnH64n1Tv" target="_blank" class="baidu-highlight"dev/a/sda1
#將sda1磁盤分區(qū)格式化為ext2格式
使用方式 : mkfs [-V] [-t fstype]
[fs-options]
說明 : 建立 linux 檔案系統(tǒng)在特定的partition上
參數(shù) :
device : 預(yù)備檢查的硬盤 partition,例如:/dev/sda1;
-V : 詳細(xì)顯示模式;
-t : 給定檔案系統(tǒng)的型式,Linux 的預(yù)設(shè)值為 ext2;
-c : 在制做檔案系統(tǒng)前,檢查該partition 是否有壞軌;
-l bad_blocks_file : 將有壞軌的block資料加到 bad_blocks_file 里面;
block : 給定 block 的大?。?/p>
-L:建立lable。
1、查看一下硬盤,然后選擇啟動(dòng)終端選項(xiàng)按鈕。
2、在終端上面輸入命令:sudo fdisk -l 回車。然后找到/dev/sda /dev/sdb命令。sda則是第一個(gè)硬盤,sdb是第二個(gè)硬盤。
3、然后對(duì)格式化硬盤進(jìn)行分區(qū),在終端輸入命令:圖片里面的命令回車,其中sudo mkfs -t 理解為固定格式即可。
4、把上面的命令回車后,可以看到格式化磁盤的進(jìn)度,百分比顯示。
5、格式化后的分區(qū)需要查看寫入文件的話還需要進(jìn)行掛載。在終端輸入命令:df -h ?可以看到分區(qū)的容量大小等信息。
6、掛載成功后點(diǎn)擊左下角的符號(hào),然后點(diǎn)擊文件管理器,進(jìn)入這個(gè)目錄訪問硬盤即可。
參考資料來源:百度百科-格式化
在終端上面輸入命令:sudo fdisk -l 回車。然后找到/dev/sda /dev/sdb這樣子的英文。這里電腦上面的硬盤,其中sda則是第一個(gè)硬盤,sdb是第二個(gè)硬盤。
格式化硬盤分區(qū):
在終端輸入命令:圖片里面的命令回車。
其中sudo mkfs -t 理解為固定格式即可,ntfs則是格式化的類型U盤可以改成fat32 后面的/dev/sdb1 格式化的分區(qū)。如果直接寫入sdb則會(huì)出錯(cuò),無法格式化整個(gè)硬盤,只能夠格式化分區(qū)。
上面的命令回車后,會(huì)看到圖一的百分比,等到百分百就可以。最后成功后會(huì)顯示completed successfully,證明成功格式化。
4.掛載分區(qū):格式化后的分區(qū)需要查看寫入文件的話還需要進(jìn)行掛載。在終端輸入命令:圖片里面的命令
回車沒有報(bào)錯(cuò)則為掛載成功,其中sdb1就是你所需掛載的分區(qū)。
輸入命令:df -h ?可以看到分區(qū)的容量大小等信息。命令使用介紹請(qǐng)查看“Linux命令大全”
首先我們來認(rèn)識(shí)下Linux上的文件系統(tǒng)
/:根目錄
/bin:二進(jìn)制,可執(zhí)行命令
/sbin:可執(zhí)行命令,僅用于管理,通常只有管理員才有權(quán)限使用。
/boot:引導(dǎo),操作系統(tǒng)用于引導(dǎo)系統(tǒng)啟動(dòng)的文件,一般指內(nèi)核
/dev:設(shè)備文件
Linux的設(shè)備類型
字符設(shè)備:以c開頭的文件,線性設(shè)備
塊設(shè)備:以b開頭的文件,隨機(jī)設(shè)備
/etc:配置文件
/home:用戶的家目錄,/home/username,eg:jerry,/home/jerry
/lib,/lib64:庫文件
/media:掛載點(diǎn)目錄,通常用于掛在便攜性設(shè)備
/mnt:掛載點(diǎn)目錄,掛在額外的文件系統(tǒng)
/misc:備份目錄
/net
/opt可選目錄,通常第三方軟件偶爾安裝于此路徑下
/proc:偽文件系統(tǒng),內(nèi)存中內(nèi)核的映射
/selinux: 安全加強(qiáng)的linux
/srv: service 屬于服務(wù)的中間數(shù)據(jù)存儲(chǔ)位置
/sys:類似于proc,通常用于訪問獲取硬件設(shè)備屬性信息
/tmp:臨時(shí)文件目錄
/usr:存放只讀文件
/var:經(jīng)常會(huì)發(fā)生變化的文件,比方說日志等
文件系統(tǒng)通常有內(nèi)核提供,Windows里邊的文件系統(tǒng)有:NTFS、FAT32 Linux里邊的文件系統(tǒng)主要由ext2,ext3,ext4,xfs,reiserfs,nfs,iso9600,jfs,brtfs
對(duì)磁盤格式化就是創(chuàng)建文件系統(tǒng),那么怎么實(shí)現(xiàn)格式化的呢?下面介紹一下實(shí)現(xiàn)磁盤格式化的命令及用法
第一步;分區(qū)
fdisk [DEVICE]
d 刪除一個(gè)分區(qū)
n 新建一個(gè)分區(qū)
w 保存退出
q 不保存退出
l 各分區(qū)類型對(duì)應(yīng)的System ID
t 修改指定分區(qū)的System ID
分區(qū)之后讓內(nèi)核重新讀取硬盤分區(qū)表的方法
1、重啟系統(tǒng)
2、RHEL5 上利用partprobe [DEVICE] 實(shí)現(xiàn)
REHL6 利用partx -a [PARTITION] DEVICE 實(shí)現(xiàn)
第二步:格式化分區(qū),創(chuàng)建文件系統(tǒng)
mkfs -t fstype /dev/part = mke2fs -t fstype /dev/part
要點(diǎn):1、文件系統(tǒng)必須被內(nèi)核支持才能使用,即內(nèi)核有相應(yīng)的內(nèi)核模塊,或者已經(jīng)
將之整合進(jìn)內(nèi)核;
2、要有相應(yīng)文件系統(tǒng)創(chuàng)建工具,這通常是mkfs.fstype
mke2fs -t {ext2|ext3|ext4}
-b {1024|2048|4096}:塊大小
塊大小取決CPU對(duì)內(nèi)存頁框大小的支持,x86系統(tǒng)默認(rèn)頁框大小為4K;
-L label: 設(shè)定卷標(biāo)
-m #: 預(yù)留給管理使用的塊所占據(jù)總體空間的比例;
-r #: 預(yù)留給管理使用的塊的`個(gè)數(shù);
-E: 設(shè)定文件系統(tǒng)的擴(kuò)展屬性;
tune2fs
-l: 顯示文件系統(tǒng)超級(jí)塊信息;
-L label:重新設(shè)定卷標(biāo);
-m #: 調(diào)整預(yù)留給管理使用的塊所占據(jù)總體空間的比例;
-r #: 調(diào)整預(yù)留給管理使用的塊個(gè)數(shù);
-o:設(shè)定掛載默認(rèn)選項(xiàng)
-O: 設(shè)定文件系統(tǒng)默認(rèn)特性
-E: 調(diào)整文件系統(tǒng)的擴(kuò)展屬性
blkid DEVICE 顯示設(shè)備的UUID、文件系統(tǒng)類型及卷標(biāo)
第三步 掛載
mount [-t fstype] DEVICE MOUNT_POINT
mount [-t fstype] LABEL="卷標(biāo)" MOUNT_POINT
mount [-t fstype] UUID="UUID" MOUNT_POINT
掛載之后,原有數(shù)據(jù)的會(huì)被隱藏,因此不能掛載到系統(tǒng)常用目錄上;
卸載之時(shí),要確保沒有進(jìn)程正在訪問掛載的設(shè)備;否則,無法卸載;
-o 用于指定掛在選項(xiàng)。
ro: 只讀掛載;
rw: 讀寫,默認(rèn)即為讀寫;
noatime: 關(guān)閉 更新 訪問時(shí)間;
auto: 是否能夠由“mount -a”掛載;
defaults:相當(dāng)于rw, suid, dev, exec, auto, nouser, async, and relatime
sync: 同步寫入
async:異步寫入
dev:
remount: 重新掛載
loop: 本地回環(huán)設(shè)備;
-n 掛在系統(tǒng)時(shí),不更新設(shè)備文件
-r 只讀掛載,相當(dāng)于“-o ro”
free 查看內(nèi)存大小
-m: 空間大小換算為MB
-g: 空間大小換算為GB