linux中插上兩塊新硬盤后用fdisk -l命令看不到新增的硬盤是設(shè)置錯誤造成的,解決方法為:
站在用戶的角度思考問題,與客戶深入溝通,找到臨西網(wǎng)站設(shè)計(jì)與臨西網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗(yàn)好的作品,建站類型包括:成都網(wǎng)站制作、做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、域名申請、雅安服務(wù)器托管、企業(yè)郵箱。業(yè)務(wù)覆蓋臨西地區(qū)。
1、執(zhí)行fdisk -l 查看新添加的硬盤,可以看到 sdb為新添加的硬盤。
2、fdisk /dev/sdb對新加硬盤格式化。
3、輸入m可以查看幫助。
4、輸入n新建分區(qū),輸入p新建主分區(qū),輸入1(主分區(qū)號),分別磁盤分區(qū)的起始終止位置,這里采用默認(rèn),即分區(qū)為硬盤大小。
5、輸入w對分區(qū)進(jìn)行保存。
6、fdisk -l 查看分區(qū),有了sdb1 ;輸入mkfs.ext4將分區(qū)格式化為ext4格式。
注意事項(xiàng):
linux除了在服務(wù)器操作系統(tǒng)方面保持著強(qiáng)勁的發(fā)展勢頭以外,在個人電腦、嵌入式系統(tǒng)上都有著長足的進(jìn)步。使用者不僅可以直觀地獲取該操作系統(tǒng)的實(shí)現(xiàn)機(jī)制,而且可以根據(jù)自身的需要來修改完善這個操作系統(tǒng),使其最大化地適應(yīng)用戶的需要。[1]
1.插入新硬盤,啟動Linux服務(wù)器,使用fdisk -l 查看硬盤
#fdisk -l
Disk /dev/sdb: 1000.2 GB, 1000204886016 bytes
2.格式化硬盤
#mkfs -t ext4 /dev/sdb
3.掛載硬盤
#mount 硬盤地址 要掛載的地址
#mount /dev/sdb /media/imgs
4.實(shí)現(xiàn)系統(tǒng)重啟后自動掛載該分區(qū)
#vi /etc/fstab
在最后一行添加
/dev/sdb /media/imgs ext4 defaults 1 2
一、添加磁盤
添加加新硬盤重啟服務(wù)器
添加完之后就可以重啟機(jī)器了,如果你機(jī)器是開啟的,進(jìn)入系統(tǒng)并不能看見你剛添加的那塊磁盤,只有等系統(tǒng)重啟,重新加載之后才會顯示安裝的那塊磁盤
二、進(jìn)入系統(tǒng)
使用root用戶進(jìn)入系統(tǒng)
三、 查看硬盤信息
[root@localhost ~]# fdisk -l ? //磁盤命令
1
Disk /dev/sda: 21.5 GB, 21474836480 bytes
255 heads, 63 sectors/track, 2610 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000c4cb5
Device Boot ? ? ?Start ? ? ? ? End ? ? ?Blocks ? Id ?System
/dev/sda1 ? * ? ? ? ? ? 1 ? ? ? ? ?64 ? ? ?512000 ? 83 ?Linux
Partition 1 does not end on cylinder boundary.
/dev/sda2 ? ? ? ? ? ? ?64 ? ? ? ?2611 ? ?20458496 ? 8e ?Linux LVM
Disk /dev/sdb: 21.5 GB, 21474836480 bytes
255 heads, 63 sectors/track, 2610 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xd0f5c869
Device Boot ? ? ?Start ? ? ? ? End ? ? ?Blocks ? Id ?System
/dev/sdb1 ? ? ? ? ? ? ? 1 ? ? ? ?2610 ? ?20964793+ ?83 ?Linux
Disk /dev/sdc: 21.5 GB, 21474836480 bytes
255 heads, 63 sectors/track, 2610 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
可以看到這臺機(jī)器加載了三個磁盤sda、sdb、sdc
其中sda是初始磁盤,sdb已經(jīng)初始化且經(jīng)過使用,sdc是剛剛加載的,未格式化的新磁盤
四、創(chuàng)建新硬盤分區(qū)
[root@localhost ~]# fdisk /dev/sdc #進(jìn)入磁盤
Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel
Building a new DOS disklabel with disk identifier 0x45a3cadb.
Changes will remain in memory only, until you decide to write them.
After that, of course, the previous content won't be recoverable.
Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)
WARNING: DOS-compatible mode is deprecated. It's strongly recommended to
switch off the mode (command 'c') and change display units to
sectors (command 'u').
Command (m for help): m
Command action
a ? toggle a bootable flag ? ? ?#設(shè)定可啟動標(biāo)記
b ? edit bsd disklabel
c ? toggle the dos compatibility flag
d ? delete a partition ? ? ? ? ?#刪除一個分區(qū)
l ? list known partition types ?#各分區(qū)類型所對應(yīng)的ID
m ? print this menu ? ? ? ? ? ? #菜單
n ? add a new partition ? ? ? ? #添加一個分區(qū)
o ? create a new empty DOS partition table
p ? print the partition table ? #顯示該磁盤下的當(dāng)前分區(qū)信息
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)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
知道命令之后就可以進(jìn)行分區(qū)了
Command (m for help): p //打印分區(qū)信息,可以看到當(dāng)前并沒有分區(qū)
Disk /dev/sdc: 21.5 GB, 21474836480 bytes
255 heads, 63 sectors/track, 2610 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x45a3cadb
Device Boot ? ? ?Start ? ? ? ? End ? ? ?Blocks ? Id ?System
Command (m for help): n //創(chuàng)建一個新的分區(qū)
Command action
e ? extended//輸入e為創(chuàng)建擴(kuò)展分區(qū)
p ? primary partition (1-4) //輸入p為創(chuàng)建邏輯分區(qū)
p
Partition number (1-4): 1//劃分邏輯分區(qū)
First cylinder (1-2610, default 1): //我這里直接回車,是不想把該磁盤分成多個分區(qū),把整個磁盤作為1個分區(qū)
Using default value 1
Last cylinder, +cylinders or +size{K,M,G} (1-2610, default 2610):
Using default value 2610
Command (m for help): p //再次查看可以看到該磁盤已經(jīng)有1個分區(qū)了
Disk /dev/sdc: 21.5 GB, 21474836480 bytes
255 heads, 63 sectors/track, 2610 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x45a3cadb
Device Boot ? ? ?Start ? ? ? ? End ? ? ?Blocks ? Id ?System
/dev/sdc1 ? ? ? ? ? ? ? 1 ? ? ? ?2610 ? ?20964793+ ?83 ?Linux
Command (m for help): w //保存分區(qū)
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
再次使用”fdisk -l”命令查看磁盤信息
Disk /dev/sdc: 21.5 GB, 21474836480 bytes
255 heads, 63 sectors/track, 2610 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x406a4c58
Device Boot ? ? ?Start ? ? ? ? End ? ? ?Blocks ? Id ?System
/dev/sdc1 ? ? ? ? ? ? ? 1 ? ? ? ?2610 ? ?20964793+ ?83 ?Linux
1
2
3
4
5
6
7
8
9
第三塊磁盤/dev/sdc已經(jīng)分區(qū)好了
五、格式化分區(qū)
[root@localhost ~]# mkfs.ext3 /dev/sdc1
//將/dev/sdc1格式化為ext3類型,好像大部分的磁盤都是格式化為ext3類型,具體為什么沒有深入研究,暫時不清楚,想了解的朋友可以自己查一下
1
2
[root@localhost ~]# mkfs.ext3 /dev/sdc1
mke2fs 1.41.12 (17-May-2010)
文件系統(tǒng)標(biāo)簽=
操作系統(tǒng):Linux
塊大小=4096 (log=2)
分塊大小=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
1310720 inodes, 5241198 blocks
262059 blocks (5.00%) reserved for the super user
第一個數(shù)據(jù)塊=0
Maximum filesystem blocks=4294967296
160 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
4096000
正在寫入inode表: 完成 ? ? ? ? ? ? ? ? ? ? ? ? ?
Creating journal (32768 blocks): 完成
Writing superblocks and filesystem accounting information: 完成
This filesystem will be automatically checked every 31 mounts or
180 days, whichever comes first. ?Use tune2fs -c or -i to override.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
格式化完畢,此時就可以使用“mount”命令掛載分區(qū)了,然后使用這個磁盤空間了
六、掛載分區(qū)以及開機(jī)自動掛載
[root@localhost ~]# df -h //此時只有sda1和sdb1兩個磁盤掛載
Filesystem ? ? ? ? ? ? ? ? ? ?Size ?Used Avail Use% Mounted on
/dev/mapper/VolGroup-lv_root ? 18G ? 15G ?1.5G ?92% /
tmpfs ? ? ? ? ? ? ? ? ? ? ? ? 932M ? 76K ?932M ? 1% /dev/shm
/dev/sda1 ? ? ? ? ? ? ? ? ? ? 485M ? 40M ?421M ? 9% /boot
/dev/sdb1 ? ? ? ? ? ? ? ? ? ? ?20G ?1.2G ? 18G ? 7% /disk/diskone
/dev/sr0 ? ? ? ? ? ? ? ? ? ? ?4.2G ?4.2G ? ? 0 100% /media/CentOS_6.5_Final
[root@localhost /]# cd /disk/
[root@localhost disk]# ll
總用量 4
drwxr-xr-x. 4 root root 4096 7月 ?28 17:04 diskone
[root@localhost disk]# cd diskone/
[root@localhost diskone]# ll
總用量 20
drwx------. 2 root root 16384 7月 ?28 16:12 lost+found
drwxr-xr-x. 2 root root ?4096 7月 ?28 17:09 software
[root@localhost diskone]# cd ../
[root@localhost disk]# mkdir disktwo //創(chuàng)建被掛載的路徑
[root@localhost disk]# ll
總用量 8
drwxr-xr-x. 4 root root 4096 7月 ?28 17:04 diskone
drwxr-xr-x. 2 r
1、執(zhí)行fdisk -l 查看新添加的硬盤,可以看到 sdb為新添加的硬盤。
2、fdisk /dev/sdb對新加硬盤格式化
3、輸入m可以查看幫助
4、輸入n新建分區(qū),輸入p新建主分區(qū),輸入1(主分區(qū)號),分別磁盤分區(qū)的起始終止位置,這里采用默認(rèn),即分區(qū)為硬盤大小。
5、輸入w對分區(qū)進(jìn)行保存
6、fdisk -l 查看分區(qū),有了sdb1 ;輸入mkfs.ext4將分區(qū)格式化為ext4格式
7、編輯/etc/fstab ,在最下面添加:
8、/dev/sdb1 /app ext4 defaults 0 0
9、使得磁盤開機(jī)掛載到/app
Linux的硬盤識別:
一般使用” fdisk -l ”命令可以列出系統(tǒng)中當(dāng)前連接的硬盤
設(shè)備和分區(qū)信息.新硬盤沒有分區(qū)信息,則只顯示硬盤大小信息.
1.關(guān)閉服務(wù)器加上新硬盤
2.啟動服務(wù)器,以root用戶登錄
3.查看硬盤信息
4.創(chuàng)建新硬盤分區(qū)命令參數(shù):
fdisk可以用m命令來看fdisk命令的內(nèi)部命令;
a:命令指定啟動分區(qū);
d:命令刪除一個存在的分區(qū);
l:命令顯示分區(qū)ID號的列表;
m:查看fdisk命令幫助;
n:命令創(chuàng)建一個新分區(qū);
p:命令顯示分區(qū)列表;
t:命令修改分區(qū)的類型ID號;
w:命令是將對分區(qū)表的修改存盤讓它發(fā)生作用。
5.進(jìn)入磁盤,對磁盤進(jìn)行分區(qū),注意紅色部分。
查看一下:
可以看到/dev/sdb1分區(qū),我就省略截圖咯。
6.格式化分區(qū):
這樣就格式化好了,我們就可以用mount 加載這個分區(qū),然后使用這個文件系統(tǒng);
7.創(chuàng)建/data1目錄:
8.開始掛載分區(qū):
9.查看硬盤大小以及掛載分區(qū):
10.配置開機(jī)自動掛載
因?yàn)閙ount掛載在重啟服務(wù)器后會失效,所以需要將分區(qū)信息寫到/etc/fstab文件中讓它永久掛載:
加入:
11.重啟系統(tǒng)
標(biāo)題名稱:linux添加新硬盤命令 linux新加一塊硬盤
文章URL:http://jinyejixie.com/article12/dohpedc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供標(biāo)簽優(yōu)化、響應(yīng)式網(wǎng)站、虛擬主機(jī)、商城網(wǎng)站、服務(wù)器托管、網(wǎng)站內(nèi)鏈
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)