linux掛盤的命令 linux 掛載盤

linux下如何掛載硬盤?

1.插入新硬盤,啟動Linux服務器,使用fdisk -l 查看硬盤

創(chuàng)新互聯(lián)公司企業(yè)建站,十余年網站建設經驗,專注于網站建設技術,精于網頁設計,有多年建站和網站代運營經驗,設計師為客戶打造網絡企業(yè)風格,提供周到的建站售前咨詢和貼心的售后服務。對于成都做網站、網站建設、外貿營銷網站建設中不同領域進行深入了解和探索,創(chuàng)新互聯(lián)在網站建設中充分了解客戶行業(yè)的需求,以靈動的思維在網頁中充分展現(xiàn),通過對客戶行業(yè)精準市場調研,為客戶提供的解決方案。

#fdisk -l

Disk /dev/sdb: 1000.2 GB, 1000204886016 bytes

2.格式化硬盤

#mkfs -t ext4 /dev/sdb

3.掛載硬盤

#mount 硬盤地址 要掛載的地址

#mount /dev/sdb /media/imgs

4.實現(xiàn)系統(tǒng)重啟后自動掛載該分區(qū)

#vi /etc/fstab

在最后一行添加

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

一、添加磁盤

添加加新硬盤重啟服務器

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

二、進入系統(tǒng)

使用root用戶進入系統(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

可以看到這臺機器加載了三個磁盤sda、sdb、sdc

其中sda是初始磁盤,sdb已經初始化且經過使用,sdc是剛剛加載的,未格式化的新磁盤

四、創(chuàng)建新硬盤分區(qū)

[root@localhost ~]# fdisk /dev/sdc #進入磁盤

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 ? ? ?#設定可啟動標記

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

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

知道命令之后就可以進行分區(qū)了

Command (m for help): p //打印分區(qū)信息,可以看到當前并沒有分區(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)建擴展分區(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 //再次查看可以看到該磁盤已經有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已經分區(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)標簽=

操作系統(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ù)據塊=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ū)以及開機自動掛載

[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

Linux掛載命令

在linux當中所有的存儲設備如u盤、光盤、硬盤等,都必須掛載之后才能正常使用。

其實掛載可以理解為windows當中的分配盤符,只不過windows當中是以英文字母ABCD等作為盤符,而linux是拿系統(tǒng)目錄作為盤符,當然linux當中也不叫盤符,而是稱為掛載點,而把為分區(qū)或者光盤等存儲設備分配一個掛載點的過程稱為掛載。

在安裝linux系統(tǒng)時設立的各個分區(qū),如根分區(qū)、/boot分區(qū)等都是自動掛載的,也就是說不需要我們人為操作,開機就會自動掛載。但是光盤、u盤等存儲設備如果需要使用,就必須人為的進行掛載。其實我們在windows下插入U盤也是需要掛載(分配盤符)的,只不過windows下分配盤符是自動的。

mount #查詢系統(tǒng)中已經掛載的設備

mount -a #依據配置文件/etc/fstab的內容,進行自動掛載

了解即可,不熟悉建議不要隨意修改,使用默認值。

演示 exec 選項的作用,重新掛載 /home 分區(qū),并設置不允許執(zhí)行可執(zhí)行文件

使用完光盤等存儲設備后必須卸載,執(zhí)行卸載命令時必須保證不在設備掛載的目錄下,否則會提示設備正在使用。

umount 設備文件名或掛載點 #卸載命令

umount /mnt/cdrom #卸載光盤

因為u盤在linux中被當成硬盤看待,一般來說插入u盤后它的設備文件名應該是sdb1,但是這個也不是一定的,有可能系統(tǒng)不止一塊硬盤,所以最好使用命令查看以下。

注意:linux默認是不支持NTFS文件系統(tǒng)的,vfat(相當于windows下的fat32),如果想要支持可以安裝 ntfs -3g 這個軟件。掛載U盤了解即可,實際很少使用。

在真實機中插入U盤后,可以在虛擬機 --可移動設備 --選擇u盤 --連接

Linux 掛載U盤的命令

你好,解決的方法如下:

插入U盤之后,按照下面的步驟:

1.fdisk -l /dev/sd*

通常這一步就能找到U盤,如果U盤有指示燈也會亮,表示被找到。

2.如果執(zhí)行上一個命令沒有反應,或者某些信息顯示模塊沒有加入

可以lsmod查看一下是否有usb-storage scsi_mod

sd_mod模塊。

沒有就modprobe [module],添加所缺模塊。

然后再試就ok

3.最后就是把U盤mount上去,這里需要先在mnt目錄下面建一個usb目錄

mount /dev/sda /mnt/usb

某些系統(tǒng)需要指定文件系統(tǒng)的類型,可以用

mount -t vfat /dev/sda /mnt/usb

新聞名稱:linux掛盤的命令 linux 掛載盤
文章網址:http://muchs.cn/article20/hjsjjo.html

成都網站建設公司_創(chuàng)新互聯(lián),為您提供定制網站、標簽優(yōu)化、網站改版、做網站網站內鏈、企業(yè)建站

廣告

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

成都網頁設計公司