温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

linux系统VPS扩展硬盘的方法是什么

发布时间:2022-01-10 16:57:38 来源:亿速云 阅读:139 作者:iii 栏目:云计算

本篇内容介绍了“linux系统VPS扩展硬盘的方法是什么”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

[root@cloud ~]# df -hal查看扩容后磁盘情况。

文件系统 容量 已用 可用 已用%% 挂载点

/dev/mapper/vg_cloud-lv_root

7.5G 7.5G 0 100% /

proc 0 0 0 - /proc

sysfs 0 0 0 - /sys

devpts 0 0 0 - /dev/pts

tmpfs 494M 0 494M 0% /dev/shm

/dev/sda1 485M 33M 427M 8% /boot

none 0 0 0 - /proc/sys/fs/binfmt_misc

sunrpc 0 0 0 - /var/lib/nfs/rpc_pipefs

[root@cloud wwwroot]# fdisk -l查看分区情况。这里看到/dev/sdc为刚才加上的没有分区的盘。

Disk /dev/sda: 10.7 GB, 10737418240 bytes

255 heads, 63 sectors/track, 1305 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: 0x00051f5f

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 1306 9972736 8e Linux LVM

Disk /dev/sdb: 53.7 GB, 53687091200 bytes

255 heads, 63 sectors/track, 6527 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

Disk /dev/mapper/vg_cloud-lv_root: 8128 MB, 8128561152 bytes

255 heads, 63 sectors/track, 988 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

Disk /dev/mapper/vg_cloud-lv_swap: 2080 MB, 2080374784 bytes

255 heads, 63 sectors/track, 252 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

[root@cloud ~]# fdisk /dev/sdb进行分区。fdisk进行硬盘分区从实质上说就是对硬盘的一种格式化。

Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklable

Building a new DOS disklabel with disk identifier 0x3c59d1a9.

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): n #新建分区

Command action

e extended

p primary partition (1-4)

p #设置为主分区

Partition number (1-4): 1 #主分区号

First cylinder (1-2610, default 1):1 #开始扇区(直接默认回车)

Using default value 1

Last cylinder, +cylinders or +size{K,M,G} (1-2610, default 2610):2610

Using default value 2610 #结束扇区(直接默认回车)

Command (m for help): t #指定分区类型

Selected partition 1 #选择1号分区

Hex code (type L to list codes): 8e #8e为LVM

Changed system type of partition 1 to 8e (Linux LVM)

Command (m for help): w #保存

The partition table has been altered!

Calling ioctl() to re-read partition table.

Syncing disks.

[root@cloud ~]# reboot

======================================================

重启中

======================================================

[root@cloud ~]# vgs

VG #PV #LV #SN Attr VSize VFree

vg_cloud 1 2 0 wz--n- 9.51g 0

[root@cloud ~]# pvcreate /dev/sdb1

Physical volume "/dev/sdb1" successfully created

[root@cloud ~]# vgextend vg_cloud /dev/sdb1

Volume group "vg_cloud" successfully extended

[root@cloud ~]# vgdisplay

--- Volume group ---

VG Name vg_cloud

System ID

Format lvm2

Metadata Areas 2

Metadata Sequence No 4

VG Access read/write

VG Status resizable

MAX LV 0

Cur LV 2

Open LV 2

Max PV 0

Cur PV 2

Act PV 2

VG Size 59.50 GiB

PE Size 4.00 MiB

Total PE 15233

Alloc PE / Size 2434 / 9.51 GiB

Free PE / Size 12799 / 50.00 GiB

VG UUID I5k6GO-mjni-7dO0-O4TF-RUxH-RNcI-bnWFY3

[root@cloud ~]# lvresize -L +49.900G /dev/vg_cloud/lv_root

Rounding size to boundary between physical extents: 49.90 GiB

Extending logical volume lv_root to 57.47 GiB

Logical volume lv_root successfully resized

[root@cloud ~]# resize2fs /dev/vg_cloud/lv_root

resize2fs 1.41.12 (17-May-2010)

Filesystem at /dev/vg_cloud/lv_root is mounted on /; on-line resizing required

old desc_blocks = 1, new_desc_blocks = 4

Performing an on-line resize of /dev/vg_cloud/lv_root to 15066112 (4k) blocks.

The filesystem on /dev/vg_cloud/lv_root is now 15066112 blocks long.

[root@cloud ~]# df -hal

文件系统 容量 已用 可用 已用%% 挂载点

/dev/mapper/vg_cloud-lv_root

57G 7.5G 47G 14% /

proc 0 0 0 - /proc

sysfs 0 0 0 - /sys

devpts 0 0 0 - /dev/pts

tmpfs 494M 0 494M 0% /dev/shm

/dev/sda1 485M 33M 427M 8% /boot

none 0 0 0 - /proc/sys/fs/binfmt_misc

sunrpc 0 0 0 - /var/lib/nfs/rpc_pipefs

======================================================

扩展成功

======================================================

“linux系统VPS扩展硬盘的方法是什么”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注亿速云网站,小编将为大家输出更多高质量的实用文章!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI