国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 操作系統(tǒng) > 正文

用gdisk調(diào)整gpt/ext4分區(qū)大小

2024-06-28 13:20:21
字體:
供稿:網(wǎng)友
用gdisk調(diào)整gpt/ext4分區(qū)大小

主機(jī): CentOS release 6.4 (Final)

目的:從/home分區(qū)分出100G來創(chuàng)建新分區(qū)/vm

參考

http://ryanclouser.com/?p=66

http://falstaff.agner.ch/2013/12/22/online-resize-root-filesystem-on-a-gpt-partition/

http://blog.zepsikopat.net/2011/07/22/resize-an-ext4-partition-on-a-gpt-disk/

http://superuser.com/questions/660309/live-resize-of-a-gpt-partition-on-linux

1. 查看當(dāng)前分區(qū)情況

[root@tanghuimin/]# df -Th

Filesystem Type Size Used Avail Use% Mounted on

/dev/sda3 ext4 9.7G 6.6G 2.6G 72% /

tmpfs tmpfs 1.8G 280K 1.8G 1% /dev/shm

/dev/sda1 ext4 426G 37G 368G 10% /home

/dev/sda2 ext4 20G 4.2G 15G 23% /opt

/home分區(qū)在/dev/sda1.

2. gdisk /dev/sda

?: 打印gdisk下命令的用法

p: 查看分區(qū)表

b:備份分區(qū)表,以便后面操作失誤可以恢復(fù)分區(qū)表

[root@tanghuimin~]# gdisk /dev/sda

GPT fdisk (gdisk) version 0.8.10

Partition table scan:

MBR: PRotective

BSD: not present

APM: not present

GPT: present

Found valid GPT with protective MBR; using GPT.

Command (?for help): ?

bback up GPT data to a file

cchange a partition's name

ddelete a partition

ishow detailed information on a partition

llist known partition types

nadd a new partition

ocreate a new empty GUID partition table (GPT)

pprint the partition table

QQuit without saving changes

rrecovery and transformation options (experts only)

ssort partitions

tchange a partition's type code

vverify disk

wwrite table to disk and exit

xextra functionality (experts only)

?print this menu

Command (?for help): p

Disk /dev/sda: 976773168 sectors, 465.8 GiB

Logical sector size: 512 bytes

Disk identifier (GUID): FB42D8BC-9B54-4B3B-A16C-A39A39B902FF

Partition table holds up to 128 entries

First usable sector is 34, last usable sector is 976773134

Partitions will be aligned on 2048-sector boundaries

Total free space is 2029 sectors (1014.5 KiB)

Number Start (sector) End (sector) Size Code Name

1 2048 907141119 432.6 GiB 0700

2 907141120 948101119 19.5 GiB 0700

3 948101120 968581119 9.8 GiB EF00

4 968581120 976773119 3.9 GiB 8200

Command (?for help): b

Enter backup filename to save: /root/gpt.sda.bak

The Operation has completed successfully.

3. 卸載即將被調(diào)整的分區(qū)/home

[root@tanghuimin~]# umount /home/

[root@tanghuimin ~]# df -Th

Filesystem Type Size Used Avail Use% Mounted on

/dev/sda3 ext4 9.7G 6.6G 2.6G 72% /

tmpfs tmpfs 1.8G 296K 1.8G 1% /dev/shm

/dev/sda2 ext4 20G 4.2G 15G 23% /opt

4. 檢測文件系統(tǒng)錯誤

[root@tanghuimin~]# e2fsck -f /dev/sda1

e2fsck 1.41.12 (17-May-2010)

Pass 1: Checking inodes, blocks, and sizes

Pass 2: Checking directory structure

Pass 3: Checking directory connectivity

Pass 4: Checking reference counts

Pass 5: Checking group summary information

/dev/sda1: 268432/28352512 files (0.1% non-contiguous),11359488/113392384 blocks

5. resize2fs調(diào)整文件系統(tǒng)大小

[root@tanghuimin~]# resize2fs /dev/sda1 326G

resize2fs 1.41.12 (17-May-2010)

Resizing the filesystem on /dev/sda1 to 85458944 (4k) blocks.

The filesystem on /dev/sda1 is now 85458944 blocks long.

6. gdisk調(diào)整分區(qū)大小,先用d刪除分區(qū),后用n創(chuàng)建分區(qū)

[root@tanghuimin ~]# gdisk /dev/sda

GPT fdisk (gdisk) version 0.8.10

Partition table scan:

MBR: protective

BSD: not present

APM: not present

GPT: present

Found valid GPT with protective MBR; using GPT.

Command (? for help): p

Disk /dev/sda: 976773168 sectors, 465.8 GiB

Logical sector size: 512 bytes

Disk identifier (GUID): FB42D8BC-9B54-4B3B-A16C-A39A39B902FF

Partition table holds up to 128 entries

First usable sector is 34, last usable sector is 976773134

Partitions will be aligned on 2048-sector boundaries

Total free space is 2029 sectors (1014.5 KiB)

Number Start (sector) End (sector) Size Code Name

1 2048 907141119 432.6 GiB 0700

2 907141120 948101119 19.5 GiB 0700

3 948101120 968581119 9.8 GiB EF00

4 968581120 976773119 3.9 GiB 8200

Command (?for help): d

Partition number (1-4): 1

Command (? for help): p

Disk /dev/sda: 976773168 sectors, 465.8 GiB

Logical sector size: 512 bytes

Disk identifier (GUID): FB42D8BC-9B54-4B3B-A16C-A39A39B902FF

Partition table holds up to 128 entries

First usable sector is 34, last usable sector is 976773134

Partitions will be aligned on 2048-sector boundaries

Total free space is 907141101 sectors (432.6 GiB)

Number Start (sector) End (sector) Size Code Name

2 907141120 948101119 19.5 GiB 0700

3 948101120 968581119 9.8 GiB EF00

4 968581120 976773119 3.9 GiB 8200

Command (?for help): n

Partition number (1-128, default 1):

First sector (34-976773134, default = 2048) or {+-}size{KMGTP}:

Last sector (2048-907141119, default = 907141119) or{+-}size{KMGTP}: 326G

Current type is 'Linux filesystem'

Hex code or GUID (L to show codes, Enter = 8300):

Changed type of partition to 'Linux filesystem'

Command(? for help): w

Final checks complete. About to write GPT data. THIS WILLOVERWRITE EXISTING

PARTITIONS!!

Do you want to proceed? (Y/N): y

OK; writing new GUID partition table (GPT) to /dev/sda.

Warning: The kernel is still using the old partition table.

The new table will be used at the next reboot.

The operation has completed successfully.

分區(qū)大小調(diào)整完畢。

7. /dev/sda1掛載到/home

[root@tanghuimin ~]# df -Th

Filesystem Type Size Used Avail Use% Mounted on

/dev/sda3 ext4 9.7G 6.6G 2.6G 72% /

tmpfs tmpfs 1.8G 296K 1.8G 1% /dev/shm

/dev/sda2 ext4 20G 4.2G 15G 23% /opt

[root@tanghuimin~]# mount /dev/sda1 /home/

[root@tanghuimin ~]# df -Th

Filesystem Type Size Used Avail Use% Mounted on

/dev/sda3 ext4 9.7G 6.6G 2.6G 72% /

tmpfs tmpfs 1.8G 296K 1.8G 1% /dev/shm

/dev/sda2 ext4 20G 4.2G 15G 23% /opt

/dev/sda1 ext4 321G 37G 269G 12% /home

reboot.

8. /dev/sda所有free的空間上創(chuàng)建新分區(qū)

[root@tanghuimin ~]# gdisk /dev/sda

GPT fdisk (gdisk) version 0.8.10

Partition table scan:

MBR: protective

BSD: not present

APM: not present

GPT: present

Found valid GPT with protective MBR; using GPT.

Command (? for help): p

Disk /dev/sda: 976773168 sectors, 465.8 GiB

Logical sector size: 512 bytes

Disk identifier (GUID): FB42D8BC-9B54-4B3B-A16C-A39A39B902FF

Partition table holds up to 128 entries

First usable sector is 34, last usable sector is 976773134

Partitions will be aligned on 2048-sector boundaries

Total free space is 221374444 sectors (105.6 GiB)

Number Start (sector) End (sector) Size Code Name

1 2048 685768704 327.0 GiB 8300 Linuxfilesystem

2 907141120 948101119 19.5 GiB 0700

3 948101120 968581119 9.8 GiB EF00

4 968581120 976773119 3.9 GiB 8200

Command (?for help): n

Partition number (5-128, default 5):

First sector (34-976773134, default = 685770752) or{+-}size{KMGTP}:

Last sector (685770752-907141119, default = 907141119) or{+-}size{KMGTP}:

Current type is 'Linux filesystem'

Hex code or GUID (L to show codes, Enter = 8300):

Changed type of partition to 'Linux filesystem'

Command (?for help): w

Final checks complete. About to write GPT data. THIS WILLOVERWRITE EXISTING

PARTITIONS!!

Do you want to proceed? (Y/N): y

OK; writing new GUID partition table (GPT) to /dev/sda.

Warning: The kernel is still using the old partition table.

The new table will be used at the next reboot.

The operation has completed successfully.

9. 將新分區(qū)的文件系統(tǒng)類型設(shè)為ext4

[root@tanghuimin~]# mkfs -t ext4 /dev/sda5

mke2fs 1.41.12 (17-May-2010)

Filesystem label=

OS type: Linux

Block size=4096 (log=2)

Fragment size=4096 (log=2)

Stride=1 blocks, Stripe width=0 blocks

6922240 inodes, 27671296 blocks

1383564 blocks (5.00%) reserved for the super user

First data block=0

Maximum filesystem blocks=4294967296

845 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, 7962624, 11239424, 20480000, 23887872

Writing inode tables: done

Creating journal (32768 blocks): done

Writing superblocks and filesystem accounting information: done

This filesystem will be automatically checked every 33 mountsor

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

10. 將新分區(qū)/dev/sda5掛載到/vm

[root@tanghuimin~]# mount /dev/sda5 /vm

[root@tanghuimin ~]# df -Th

Filesystem Type Size Used Avail Use% Mounted on

/dev/sda3 ext4 9.7G 6.6G 2.6G 72% /

tmpfs tmpfs 1.8G 224K 1.8G 1% /dev/shm

/dev/sda1 ext4 321G 37G 269G 12% /home

/dev/sda2 ext4 20G 4.2G 15G 23% /opt

/dev/sda5 ext4 104G 188M 99G 1% /vm

11./etc/fstab中添加如下行,使在系統(tǒng)啟動時/dev/sda5被掛載到/vm

/dev/sda5/vmext4defaults12

reboot.


發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 临江市| 营口市| 镇康县| 鹤岗市| 东莞市| 静安区| 河曲县| 铜梁县| 松江区| 洞头县| 东乡县| 霍城县| 错那县| 桦南县| 镇坪县| 丹棱县| 襄樊市| 绥中县| 松滋市| 花莲县| 治县。| 山西省| 昌平区| 蒲江县| 麦盖提县| 聂拉木县| 睢宁县| 沐川县| 惠东县| 姚安县| 图木舒克市| 惠安县| 新昌县| 惠安县| 荃湾区| 崇阳县| 西安市| 巴里| 荥阳市| 承德县| 沈阳市|