首頁  >  文章  >  php教程  >  linux下磁碟分割區

linux下磁碟分割區

高洛峰
高洛峰原創
2016-12-01 13:35:051337瀏覽

建立分割區---》格式化---》掛載使用

1.建立分割區

[root@localhost ~]# fdisk -l 查看磁碟的分割區情況

[root@localhost ~]# fdisk /dev/sdb

Command (m for help): m 獲得幫助,查看具體可以使用那些命令

Command (m for help): n 新建分區

Command action

e extendeded

-4)

p #主分區

Partition number (1-4): 1 主分區的編號

First cylinder (1-10443, default 1):

Using default value 1%或 +size{K,M,G} (1-10443, default 10443): +10G #指定分區的大小

Command (m for help): p 輸出

Command (m for help): w 退出並且儲存

The partition table has been altered!

Calling ioctl() to re-read partition table.

Syncing disks.

2.格式化

[root@2m化sdb1這個分割區

mke2fs 1.41.12 (17-May-2010)

Filesystem label=

OS type: Linux

Block size=4096 (OS type: Linux

Block size=4096 (loglog=2) log

Stride=0 blocks, Stripe width=0 blocks

655776 inodes, 2622603 blocks

131130 blocks (5.00%) reservcks

131130 blocks (5.00%) reservcks

131130 blocks (5.00%) reservcks

131130 blocks (5.00%) reservcks

131130 blocks (5.00%) reservcks

131130 blocks (5.00%) reserved for the super 0%時候,root用戶還是可以進入系統的。

First data block=0

Maximum filesystem blocks=2688548864

81 block groups

32768 blocks per group, 32768 f block backups stored on blocks:

32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632

Writing inode tables: done

Creating journal (32768 錯誤):

This filesystem will be automatically checked every 32 mounts or

180 days, whichever comes first. Use tune2fs -c or -i to override.

3.新建掛載目錄

mkdir /music 掛載目

4. /music 掛載使用新的分區

5.開機實現自動

echo "mount /dev/sdb1 /music" >>/etc/rc.local

/etc/rc.local檔案的作用是,系統開機會自動執行這個檔案裡的指令


安裝系統的時候,到底分成多少個分割區。

/ 盡可能大

swap 內存的兩倍

/home

/boot 200M足夠


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn