linux+掛在磁盤命令 linux掛在磁盤命令

linux下如何掛載硬盤?

1.插入新硬盤,啟動(dòng)Linux服務(wù)器,使用fdisk -l 查看硬盤

成都創(chuàng)新互聯(lián)是一家專業(yè)提供保亭黎族企業(yè)網(wǎng)站建設(shè),專注與網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)HTML5建站、小程序制作等業(yè)務(wù)。10年已為保亭黎族眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)絡(luò)公司優(yōu)惠進(jìn)行中。

#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)重啟后自動(dòng)掛載該分區(qū)

#vi /etc/fstab

在最后一行添加

/dev/sdb /media/imgs ext4 defaults 1 2

一、添加磁盤

添加加新硬盤重啟服務(wù)器

添加完之后就可以重啟機(jī)器了,如果你機(jī)器是開(kāi)啟的,進(jìn)入系統(tǒng)并不能看見(jiàn)你剛添加的那塊磁盤,只有等系統(tǒng)重啟,重新加載之后才會(huì)顯示安裝的那塊磁盤

二、進(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

可以看到這臺(tái)機(jī)器加載了三個(gè)磁盤sda、sdb、sdc

其中sda是初始磁盤,sdb已經(jīng)初始化且經(jīng)過(guò)使用,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è)定可啟動(dòng)標(biāo)記

b ? edit bsd disklabel

c ? toggle the dos compatibility flag

d ? delete a partition ? ? ? ? ?#刪除一個(gè)分區(qū)

l ? list known partition types ?#各分區(qū)類型所對(duì)應(yīng)的ID

m ? print this menu ? ? ? ? ? ? #菜單

n ? add a new partition ? ? ? ? #添加一個(gè)分區(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)前并沒(méi)有分區(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)建一個(gè)新的分區(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): //我這里直接回車,是不想把該磁盤分成多個(gè)分區(qū),把整個(gè)磁盤作為1個(gè)分區(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個(gè)分區(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類型,具體為什么沒(méi)有深入研究,暫時(shí)不清楚,想了解的朋友可以自己查一下

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

第一個(gè)數(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

格式化完畢,此時(shí)就可以使用“mount”命令掛載分區(qū)了,然后使用這個(gè)磁盤空間了

六、掛載分區(qū)以及開(kāi)機(jī)自動(dòng)掛載

[root@localhost ~]# df -h //此時(shí)只有sda1和sdb1兩個(gè)磁盤掛載

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

linux磁盤掛載

linux默認(rèn)不會(huì)識(shí)別外部的設(shè)備(磁盤),所有我們需要將設(shè)備掛載到系統(tǒng)已經(jīng)存在的目錄下才能進(jìn)行訪問(wèn)。這個(gè)過(guò)程就叫做掛載,使用的命令為mount。

(1)根文件系統(tǒng)是必須最先掛載的

(2)掛載點(diǎn)必須存在

(3)掛載設(shè)備和掛載點(diǎn)同一時(shí)刻只能掛載一次

3.1 查看文件/etc/fstab,這個(gè)文件是掛載的配置文件,配置好掛載信息系統(tǒng)重新后會(huì)直接讀取該文件內(nèi)容進(jìn)行自動(dòng)掛載。

命令: cat /etc/fstab

文件內(nèi)容解釋:

(1)第一列為掛載設(shè)備,這里使用的UUID進(jìn)行掛載,可以通過(guò)blkid查詢?cè)O(shè)備的UUD。

查詢UUID命令: blkid /dev/vda1

(2)第二列內(nèi)容為掛載的位置,即當(dāng)前設(shè)備下存在的路徑。

(3)第三列為掛在的類型,查詢UUID時(shí)會(huì)帶有type值即掛載類型。

(4)第四列為掛載參數(shù),defaults是默認(rèn)值的意思。

(5)第五列為是否備份,0代表不要做dump備份;1代表每天進(jìn)行dunp操作;2代表不定日期進(jìn)行dump操作。

(6)是否進(jìn)行磁盤檢驗(yàn),0代表不檢驗(yàn);1代表最早檢驗(yàn);2代表1級(jí)別檢驗(yàn)完之后進(jìn)行檢驗(yàn)。

3.2編輯fstab文件,可以使用命令: vim /etc/fstab 進(jìn)入文件編輯,增加需要掛載的磁盤信息即可。

3.2編輯完成后,使用 mount -a 可以完成的文檔在系統(tǒng)掛載

(1)查看系統(tǒng)磁盤掛載信息: df -l

(2)查看服務(wù)器有多少塊磁盤: lsblk

(3)卸載掛載: umount -l /data /data 是磁盤掛載路徑

如何查看Linux掛載磁盤

查看Linux掛載磁盤的步驟如下:

1.成功登錄到Linux的遠(yuǎn)程主機(jī)。

2.輸入指令:df -h,查看當(dāng)前磁盤的情況,該命令會(huì)顯示出掛載磁盤和掛載點(diǎn),目前一共有三個(gè),分別是:邏輯卷、臨時(shí)文件、和磁盤Sdb。

3.此刻如果你覺(jué)得,可能某個(gè)磁盤沒(méi)有掛載上,可以使用fdisk -l命令,查看本機(jī)磁盤的具體情況,果然磁盤sda的第一個(gè)分區(qū)sda1沒(méi)有掛載上,這是一個(gè)啟動(dòng)引導(dǎo)的程序。

4.現(xiàn)在,使用命令mount掛載sda1,示例:mount /dev/sda1 /boot,執(zhí)行之后,若是沒(méi)有任何提示輸出,證明已經(jīng)執(zhí)行成功了,這是Linux的一個(gè)特點(diǎn)。

5.最后再次執(zhí)行df -h命令,查看磁盤的使用情況,其中有磁盤的掛載點(diǎn)信息。這樣就解決了查看Linux掛載磁盤的問(wèn)題了。

分享標(biāo)題:linux+掛在磁盤命令 linux掛在磁盤命令
網(wǎng)站鏈接:http://muchs.cn/article18/docsjgp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供域名注冊(cè)、商城網(wǎng)站、建站公司、服務(wù)器托管企業(yè)建站、手機(jī)網(wǎng)站建設(shè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

小程序開(kāi)發(fā)