Home Operation and Maintenance Linux Operation and Maintenance Teach you how to adjust partition size in linux

Teach you how to adjust partition size in linux

May 24, 2017 pm 02:19 PM
linux

This article mainly introduceslinuxHow to resize the partition without loss. The editor thinks it is quite good. Now I will share it with you and give it as a reference. Let’s follow the editor and take a look.

Situation:

  1. home: 500G

  2. root: 50G

  3. The root partition is not enough

Idea: divide part of the space of the home partition into the root partition


1

2

3

4

5

6

7

8

# 设置home分区大小为200G,释放300G空间

$ lvreduce -L 200G /dev/centos/home

 

# 将空闲空间扩展到root分区

$ lvextend -l +100%FREE /dev/centos/root

 

# 使用XFS文件系统自带的命令集增加分区空间

$ xfs_growfs /dev/mapper/centos-root

Copy after login

Instance

situation

The partition /dev/mapper/centos-root mounted in the root directory is full and occupies 100%


1

2

3

4

5

6

7

8

9

10

$ df -h

Filesystem        Size Used Avail Use% Mounted on

/dev/mapper/centos-root  50G  50G  19M 100% /

devtmpfs         32G   0  32G  0% /dev

tmpfs           32G   0  32G  0% /dev/shm

tmpfs           32G 2.5G  29G  8% /run

tmpfs           32G   0  32G  0% /sys/fs/cgroup

/dev/mapper/centos-home 476G  33M 476G  1% /home

/dev/sda1        497M 238M 259M 48% /boot

tmpfs          6.3G   0 6.3G  0% /run/user/0

Copy after login

analyze

The partition space mounted in the root directory is too small, only 50G, and the server home directory is a very common directory and is mounted on Nearly 500G of space.

Idea: Allocate 300G space from the centos-home partition to the centos-root partition.

operation

1. Check the information of each partition


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

$ lvdisplay

--- Logical volume ---

LV Path        /dev/centos/home

LV Name        home

VG Name        centos

LV UUID        1fAt1E-bQsa-1HXR-MCE2-5VZ1-xzBz-iI1SLv

LV Write Access    read/write

LV Creation host, time localhost, 2016-10-26 17:23:47 +0800

LV Status       available

# open         0

LV Size        475.70 GiB

Current LE       121778

Segments        1

Allocation       inherit

Read ahead sectors   auto

- currently set to   256

Block device      253:2

 

--- Logical volume ---

LV Path        /dev/centos/root

LV Name        root

VG Name        centos

LV UUID        lD64zY-yc3Z-SZaB-dAjK-03YM-2gM8-pfj4oo

LV Write Access    read/write

LV Creation host, time localhost, 2016-10-26 17:23:48 +0800

LV Status       available

# open         1

LV Size        50.00 GiB

Current LE       12800

Segments        1

Allocation       inherit

Read ahead sectors   auto

- currently set to   256

Block device      253:0

Copy after login

2. Reduce the /home partition space


1

2

3

4

5

6

7

8

# 释放 /dev/centos/home 分区 300G 的空间

# 命令设置 /dev/centos/home 分区 200G空间

$ lvreduce -L 200G /dev/centos/home

WARNING: Reducing active logical volume to 200.00 GiB.

 THIS MAY DESTROY YOUR DATA (filesystem etc.)

Do you really want to reduce centos/home? [y/n]: y

 Size of logical volume centos/home changed from 475.70 GiB (121778 extents) to 200.00 GiB (51200 extents).

 Logical volume centos/home successfully resized.

Copy after login

3. Increase the /root partition space


1

2

3

$ lvextend -l +100%FREE /dev/centos/root

Size of logical volume centos/root changed from 50.06 GiB (12816 extents) to 325.76 GiB (83394 extents).

Logical volume centos/root successfully resized.

Copy after login

4.Expand the XFS file space size


1

2

3

4

5

6

7

8

9

10

11

$ xfs_growfs /dev/mapper/centos-root

meta-data=/dev/mapper/centos-root isize=256  agcount=4, agsize=3276800 blks

     =            sectsz=512  attr=2, projid32bit=1

     =            crc=0    finobt=0 spinodes=0

data   =            bsize=4096  blocks=13107200, imaxpct=25

     =            sunit=0   swidth=0 blks

naming  =version 2       bsize=4096  ascii-ci=0 ftype=0

log   =internal        bsize=4096  blocks=6400, version=2

     =            sectsz=512  sunit=0 blks, lazy-count=1

realtime =none          extsz=4096  blocks=0, rtextents=0

data blocks changed from 13107200 to 85395456

Copy after login

Complete

[Related recommendations]

1. Mysql free video tutorial

2. Detailed explanation of innodb_index_stats when importing data Error prompting table primary key conflict

3. Example details innodb_autoinc_lock_mode in mysql

4. Detailed example of adding new user permissions in MySQL

##5.

How does Linux detect server network conditions

The above is the detailed content of Teach you how to adjust partition size in linux. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What computer configuration is required for vscode What computer configuration is required for vscode Apr 15, 2025 pm 09:48 PM

VS Code system requirements: Operating system: Windows 10 and above, macOS 10.12 and above, Linux distribution processor: minimum 1.6 GHz, recommended 2.0 GHz and above memory: minimum 512 MB, recommended 4 GB and above storage space: minimum 250 MB, recommended 1 GB and above other requirements: stable network connection, Xorg/Wayland (Linux)

vscode cannot install extension vscode cannot install extension Apr 15, 2025 pm 07:18 PM

The reasons for the installation of VS Code extensions may be: network instability, insufficient permissions, system compatibility issues, VS Code version is too old, antivirus software or firewall interference. By checking network connections, permissions, log files, updating VS Code, disabling security software, and restarting VS Code or computers, you can gradually troubleshoot and resolve issues.

Can vscode be used for mac Can vscode be used for mac Apr 15, 2025 pm 07:36 PM

VS Code is available on Mac. It has powerful extensions, Git integration, terminal and debugger, and also offers a wealth of setup options. However, for particularly large projects or highly professional development, VS Code may have performance or functional limitations.

What is vscode What is vscode for? What is vscode What is vscode for? Apr 15, 2025 pm 06:45 PM

VS Code is the full name Visual Studio Code, which is a free and open source cross-platform code editor and development environment developed by Microsoft. It supports a wide range of programming languages ​​and provides syntax highlighting, code automatic completion, code snippets and smart prompts to improve development efficiency. Through a rich extension ecosystem, users can add extensions to specific needs and languages, such as debuggers, code formatting tools, and Git integrations. VS Code also includes an intuitive debugger that helps quickly find and resolve bugs in your code.

How to run java code in notepad How to run java code in notepad Apr 16, 2025 pm 07:39 PM

Although Notepad cannot run Java code directly, it can be achieved by using other tools: using the command line compiler (javac) to generate a bytecode file (filename.class). Use the Java interpreter (java) to interpret bytecode, execute the code, and output the result.

How to use VSCode How to use VSCode Apr 15, 2025 pm 11:21 PM

Visual Studio Code (VSCode) is a cross-platform, open source and free code editor developed by Microsoft. It is known for its lightweight, scalability and support for a wide range of programming languages. To install VSCode, please visit the official website to download and run the installer. When using VSCode, you can create new projects, edit code, debug code, navigate projects, expand VSCode, and manage settings. VSCode is available for Windows, macOS, and Linux, supports multiple programming languages ​​and provides various extensions through Marketplace. Its advantages include lightweight, scalability, extensive language support, rich features and version

What is the main purpose of Linux? What is the main purpose of Linux? Apr 16, 2025 am 12:19 AM

The main uses of Linux include: 1. Server operating system, 2. Embedded system, 3. Desktop operating system, 4. Development and testing environment. Linux excels in these areas, providing stability, security and efficient development tools.

How to check the warehouse address of git How to check the warehouse address of git Apr 17, 2025 pm 01:54 PM

To view the Git repository address, perform the following steps: 1. Open the command line and navigate to the repository directory; 2. Run the "git remote -v" command; 3. View the repository name in the output and its corresponding address.

See all articles