linux系统分区扩展,linux系统扩展根分区容量大小

#查看新增加的磁盘

[root@centos002 ~]# fdisk -l

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: 0x000c8b4b

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: 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: 0x00000000

#新建分区

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

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

Building a new DOS disklabel with disk identifier 0x3ec1c9a6.

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-1305, default 1):

Using default value 1

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

Using default value 1305

Command (m for help): w

The partition table has been altered!

Calling ioctl() to re-read partition table.

Syncing disks.

#格式化分区

[root@centos002 ~]# mkfs.ext4 /dev/sdb1

mke2fs 1.41.12 (17-May-2010)

Filesystem label=

OS type: Linux

Block size=4096 (log=2)

Fragment size=4096 (log=2)

Stride=0 blocks, Stripe width=0 blocks

655360 inodes, 2620595 blocks

131029 blocks (5.00%) reserved for the super user

First data block=0

Maximum filesystem blocks=2684354560

80 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

Writing inode tables: done

Creating journal (32768 blocks): done

Writing superblocks and filesystem accounting information: done

This filesystem will be automatically checked every 26 mounts or

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

#将新建分区更改为支持LVM格式

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

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): p

Disk /dev/sdb: 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: 0x3ec1c9a6

Device Boot      Start         End      Blocks   Id  System

/dev/sdb1               1        1305    10482381   83  Linux

Command (m for help): t

Selected partition 1

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

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@centos002 ~]# fdisk -l

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: 0x000c8b4b

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: 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: 0x3ec1c9a6

Device Boot      Start         End      Blocks   Id  System

/dev/sdb1               1        1305    10482381   8e  Linux LVM

##查看VG

[root@centos002 ~]# vgdisplay

--- Volume group ---

VG Name               vg_centos002

System ID

Format                lvm2

Metadata Areas        1

Metadata Sequence No  3

VG Access             read/write

VG Status             resizable

MAX LV                0

Cur LV                2

Open LV               2

Max PV                0

Cur PV                1

Act PV                1

VG Size               19.51 GiB

PE Size               4.00 MiB

Total PE              4994

Alloc PE / Size       4994 / 19.51 GiB

Free  PE / Size       0 / 0

VG UUID               ugeSA9-XCNj-M5XK-Gz4d-DxoR-7TSv-X9Pq6O

#创建PV与查看

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

Physical volume "/dev/sdb1" successfully created

[root@centos002 ~]# pvdisplay

--- Physical volume ---

PV Name               /dev/sda2

VG Name               vg_centos002

PV Size               19.51 GiB / not usable 3.00 MiB

Allocatable           yes (but full)

PE Size               4.00 MiB

Total PE              4994

Free PE               0

Allocated PE          4994

PV UUID               Z7AOVb-LEzI-su15-J5lC-alj8-a94k-1NmRRv

"/dev/sdb1" is a new physical volume of "10.00 GiB"

--- NEW Physical volume ---

PV Name               /dev/sdb1

VG Name

PV Size               10.00 GiB

Allocatable           NO

PE Size               0

Total PE              0

Free PE               0

Allocated PE          0

PV UUID               4N37pw-Q59f-FRZE-glEx-lRWh-BY5O-Zk9JrF

#查看LV

[root@centos002 ~]# lvdisplay

--- Logical volume ---

LV Path                /dev/vg_centos002/lv_root

LV Name                lv_root

VG Name                vg_centos002

LV UUID                2G4f2m-gkIR-xXG0-MCfO-jFO2-jYNC-IBKYqL

LV Write Access        read/write

LV Creation host, time centos002, 2017-08-21 13:15:29 +0800

LV Status              available

# open                 1

LV Size                17.57 GiB

Current LE             4498

Segments               1

Allocation             inherit

Read ahead sectors     auto

- currently set to     256

Block device           253:0

--- Logical volume ---

LV Path                /dev/vg_centos002/lv_swap

LV Name                lv_swap

VG Name                vg_centos002

LV UUID                ITJYHF-bGpM-z314-lW1B-q8gj-8tgl-8NZ4bM

LV Write Access        read/write

LV Creation host, time centos002, 2017-08-21 13:15:34 +0800

LV Status              available

# open                 1

LV Size                1.94 GiB

Current LE             496

Segments               1

Allocation             inherit

Read ahead sectors     auto

- currently set to     256

Block device           253:1

#LVM扩容

[root@centos002 ~]# vgextend vg_centos002 /dev/sdb1

Volume group "vg_centos002" successfully extended

[root@centos002 ~]# vgdisplay

--- Volume group ---

VG Name               vg_centos002

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               29.50 GiB

PE Size               4.00 MiB

Total PE              7552

Alloc PE / Size       4994 / 19.51 GiB

Free  PE / Size       2558 / 9.99 GiB

VG UUID               ugeSA9-XCNj-M5XK-Gz4d-DxoR-7TSv-X9Pq6O

#此时查看磁盘大小并没有增加

[root@centos002 ~]# df -h

Filesystem            Size  Used Avail Use% Mounted on

/dev/mapper/vg_centos002-lv_root

18G  803M   16G   5% /

tmpfs                 238M     0  238M   0% /dev/shm

/dev/sda1             477M   28M  425M   7% /boot

#扩展LVM分区大小

[root@centos002 ~]# lvextend -L 28G /dev/vg_centos002/lv_root

Insufficient free space: 2670 extents needed, but only 2558 available

#报错说明扩容的空间不足,需要调整值

[root@centos002 ~]# lvextend -L 27G /dev/vg_centos002/lv_root

Size of logical volume vg_centos002/lv_root changed from 17.57 GiB (4498 extents) to 27.00 GiB (6912 extents).

Logical volume lv_root successfully resized.

[root@centos002 ~]# lvdisplay

--- Logical volume ---

LV Path                /dev/vg_centos002/lv_root

LV Name                lv_root

VG Name                vg_centos002

LV UUID                2G4f2m-gkIR-xXG0-MCfO-jFO2-jYNC-IBKYqL

LV Write Access        read/write

LV Creation host, time centos002, 2017-08-21 13:15:29 +0800

LV Status              available

# open                 1

LV Size                27.00 GiB

Current LE             6912

Segments               2

Allocation             inherit

Read ahead sectors     auto

- currently set to     256

Block device           253:0

--- Logical volume ---

LV Path                /dev/vg_centos002/lv_swap

LV Name                lv_swap

VG Name                vg_centos002

LV UUID                ITJYHF-bGpM-z314-lW1B-q8gj-8tgl-8NZ4bM

LV Write Access        read/write

LV Creation host, time centos002, 2017-08-21 13:15:34 +0800

LV Status              available

# open                 1

LV Size                1.94 GiB

Current LE             496

Segments               1

Allocation             inherit

Read ahead sectors     auto

- currently set to     256

Block device           253:1

#再次查看磁盘大小还是没有增加

[root@centos002 ~]# df -h

Filesystem            Size  Used Avail Use% Mounted on

/dev/mapper/vg_centos002-lv_root

18G  803M   16G   5% /

tmpfs                 238M     0  238M   0% /dev/shm

/dev/sda1             477M   28M  425M   7% /boot

#重设根分区大小

[root@centos002 ~]# resize2fs /dev/vg_centos002/lv_root

resize2fs 1.41.12 (17-May-2010)

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

old desc_blocks = 2, new_desc_blocks = 2

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

The filesystem on /dev/vg_centos002/lv_root is now 7077888 blocks long.

#重新查看根分区大小

[root@centos002 ~]# df -h

Filesystem            Size  Used Avail Use% Mounted on

/dev/mapper/vg_centos002-lv_root

27G  803M   25G   4% /

tmpfs                 238M     0  238M   0% /dev/shm

/dev/sda1             477M   28M  425M   7% /boot

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/555790.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

linux命令 socket,如何从linux中的命令行向socket.io websocket发送消息?

是否可以使用linux中的命令行向我的localhost服务器(节点)发送socket.io消息?我不确定这是否可行……从稀缺的谷歌搜索结果来看,我猜这不可能或不复杂……我的socket.io代码如下所示:var io require(socket.io);var socket;socket io.listen(server, {…

Linux编译soci库,Soci库linux下的编译方法

Soci库的linux编译方法1、下载soci库源码2、在目标机器上配置数据库环境以oracle为例:(其他数据库只需要简单安装客户端即可)A)下载oracle客户端安装包oracle-instantclient-basic-12.1.0.5-1.i386.rpmoracle-instantclient-devel-12.1.0.5-1.i386.rpmoracle-instan…

为什么有了接口还要增加一层抽象类?

文章目录接口:抽象类:区别:表象:深层次理解:类图使用抽象类前使用抽象类后为什么有了接口还要增加一层抽象类?接口: 接口里的方法和抽象类中的方法一样,它的方法是抽象的&#xff0…

linux iptables 编译,Linux下编译安装iptables

Linux下如何编译安装iptables实例:先卸载系统已经安装的iptables,卸载前需备份三个文档:iptables启动脚本,iptables-config配置文档,以及已经建立好的iptables规则文档[rootlinuxidc ~]# cp /etc/init.d/iptables ~/ip…

【java基础】——java枚举类型基本介绍

枚举enum类型是Java 5新增的特性,它是一种新的类型,允许用常量来表示特定的数据片断,而且全部都以类型安全的形式来表示。 1、常量的使用 在JDK1.5之前,我们定义常量都是:public static fianl…。现在好了&#xff0…

linux密文解密工具,Linux之加密解密工具openssl的用法以及自建CA

在Linux下的安全工具openssl【安全特性】1、保密性:数据保密性、隐私性2、完整性:数据完整性、系统完整性3、可用性4、真实性:确保数据发送方不是被替换的5、可追溯性【安全***】被动***:窃听主动***:伪装、重播、消息…

Windows远程连接的用户名和密码怎么设置?

1、首先,打开A电脑的控制面板,点击系统和安全进入,设置电脑允许远程访问; ] 2、查看A电脑的ip地址,再次打开控制面板,在“网络和Internet”里面点击查看网络状态和任务。 ] 3、在访问类型连接网络里面点…

linux系统date s使用,简述Linux下date命令的使用方法与实例

在Linux环境中,不管是编程还是其他维护,时间是必不可少的,也经常会用到时间的运算,熟练运用date命令来表示自己想要表示的时间,肯定可以给自己的工作带来诸多方便。1.命令格式:date [参数]... [格式]2.命令…

Arrays.asList()使用时的注意事项,这个结论同可适用于Stream.of()___Arrays.stream和Stream.of

Arrays.asList()使用时的注意事项,这个结论同可适用于Stream.of() Arrays.asList的参数不能是基本数据类型的数组 Array.asList()的作用是把数组变成一个列表,但是它不能使用 八种基本类型的数组参数,也就是说如 int[], byte[], char[],sho…

linux虚拟化技术 教程,Linux云计算-虚拟化技术视频教程

目录6 c: Z! r3 a k r/ ]├─1、虚拟化概述. [2 W# Q6 ~! q* b│ ├─1.Linux云计算-虚拟化技术 - 虚拟化概述│ │ ├─1.Linux云计算- 虚拟化技术 - 引入虚拟化的必要性 - 2.mp4. 4 _0 l& ^- j9 A5 r k4 }│ │ ├─2.Linux云计算- 虚拟化技术 - 虚拟化的分类.mp4│…

urlEncoder和urlDecoder的作用和使用

URLEncoder到底是干什么用的?? 都说是对form表单里的请求编码解码用的,但是为什么在写中文文件下载的时候也用到了。 就是说国际通用的编码对中文支持不好,所以需要对着玩意进行转换。 因为中文读取的时候你不给一个编码&#xff…

linux网络文件系统包括,Linux文件系统

在Linux系统中,所有的目录和文件数据都是以一个树形的结构进行存储,整个系统中只存在一个根目录,所有的分区、目录、文件都在同一个根目录下面。“/”下面的第一层目录包括:/bin;/boot;/dev;/et…

Java:URLEncoder、URLDecoder、Base64编码与解码

1. URL 主要用来http get请求url不能传输中文参数问题。http请求是不接受中文参数的 1.1 URLEncoder编码 使用指定的编码机制将字符串转换为 application/x-www-form-urlencoded 格式 对String编码时,使用以下规则: 字母数字字符 “a” 到 “z”、“…

iperf测试带宽linux,iperf3-网络带宽性能测试工具

作用:基于TCP或UDP,对网络带宽吞吐量进行测试安装:yum install iperf3 -y服务端参数:-s:表示启动服务端-i:表示打印报告的时间间隔-p:指定监听端口,默认为5201-D:以后台方…

解决Springboot get请求是参数过长的情况

解决Springboot get请求是参数过长的情况 问题原因 Springboot get请求是参数过长抛出异常:Request header is too large 的问题 错误描述 java.lang.IllegalArgumentException: Request header is too large 解决方案 请求头超过了tomcat的限值。本来post请求…

用get方式提交请求的url带有中文参数

又碰到JSP页面中文乱码问题,经过一次encodeURI处理后仍旧是乱码,后来经过两次encodeURI后正常显示中文 以前也碰到过同样的问题,没深究,这次网上搜集了一些资料,记录下来留做备份 前端JS: var name“中文…

异常:Get请求提交过来的中文参数乱码

一、产生环境 spring boot项目的controller接收Get请求提交的中文参数发生乱码 二、异常情况 中文乱码 三、产生原因 因为内置了tomcat,即使我们在application.yml文件里配置了tomcat的编码格式,但是当我们打包成war包部署到生产服的时候用的却是服…

c语言打印字符的函数参数,C语言格式化打印函数vsnprintf()的实现

Linux内核的格式化打印函数是printk(),它与printf()函数是类似的,都是根据格式字符串把可变参数列表转化成字符序列,然后输出到控制台。printf()是打印到标准输出stdout。printk()是打印到控制台终端。在使用串口线连接嵌入式硬件时&#xff…

使用SpringMVC参数传递时,解决get请求时中文乱码的问题

问题描述: 使用SpringMVC参数传递时, 遇到get请求中文信息时,页面应答会显示中文乱码. 解决办法: 一, 我们需要把request.getParameter(“参数名”)获取到的字符串先用ISO-8859-1编码成字节流,然后再将其用utf-8解码成字符流,代码如下: String str new String(…

二级c语言笔试58,全国计算机等级考试-二级C语言笔试试题.doc

全国计算机等级考试-二级C语言笔试试题2002年4月全国计算机等级考试二级C语言笔试真题试题(含参考答案)一、选择题(1)—(40)题每小题1分,(41)—(50)题每小题2分,共计60分。下列各题A)、B)、C)、D)四个选项中,只有一个选项是正确的&#x…