search
HomeOperation and MaintenanceLinux Operation and MaintenanceSample code sharing on virtual machine and partition disk expansion space recording in Linux (picture and text)

This article mainly introduces the detailed explanation of Linux virtual machine root partition disk expansion space record, which has certain reference value. Interested friends can refer to

blogger: Centos6.5 64-bit VM 11

Cause: I want the Linux virtual machine in VM11 to be displayed in full screen, and I want to support the seamless copy and paste function between the virtual machine and the physical machine. Installationvmware tools caused insufficient space, and the following appears

Sample code sharing on virtual machine and partition disk expansion space recording in Linux (picture and text)

After searching online, I found the solution:

yum remove gnome-power-manager
yum install gnome-power-manager

After execution:

Sample code sharing on virtual machine and partition disk expansion space recording in Linux (picture and text)

The prompt is insufficient space

Check:

Sample code sharing on virtual machine and partition disk expansion space recording in Linux (picture and text)

Sure enough, the space utilization is 100%

The question turns to:

1. Why is it used so fast?

2. How to expand?

Question 1:

This is the root directory, and everything installed is in it. (This is a brief summary, and no in-depth research has been done)

The main topic:

It took about 2 hours to solve it, and the record is as follows:

1. Disk expansion

Sample code sharing on virtual machine and partition disk expansion space recording in Linux (picture and text)
#Fill in the size of the disk you need, the value you fill in - the size of the current hard disk = the value you added

2. View,

Command: fdisk -l (root user)


[ding@master ~]$ sudo 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: 0x000c82f5

  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    1045   7875584  8e Linux LVM

Disk /dev/mapper/vg_master-lv_root: 7205 MB, 7205814272 bytes
255 heads, 63 sectors/track, 876 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_master-lv_swap: 855 MB, 855638016 bytes
255 heads, 63 sectors/track, 104 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

found that it has become 21.5G

3. Operation partition table

Command:


fdisk /dev/sda

Sample code sharing on virtual machine and partition disk expansion space recording in Linux (picture and text)

Type p to view the number of partitions and get:

Sample code sharing on virtual machine and partition disk expansion space recording in Linux (picture and text)

Judge us from this The added partition number should be 3 (dev/sda1, dev/sda2...the next one should be dev/sda3)

Type n to add a partition and get:

Sample code sharing on virtual machine and partition disk expansion space recording in Linux (picture and text)

Type p, primary partition, and type 3 (number):

Sample code sharing on virtual machine and partition disk expansion space recording in Linux (picture and text)

Just set the default start sector and end sector (type Enter twice)

Type t and modify the partition type to 8e:

Sample code sharing on virtual machine and partition disk expansion space recording in Linux (picture and text)

Type w, write the partition table, and then restart:

Sample code sharing on virtual machine and partition disk expansion space recording in Linux (picture and text)

4. Format

mkfs.etx4 /dev/sda3

.ext4 is its own file system type. If you don’t know, you can query


parted /dev/sda

(parted) print list
1

parted

5. Expand the volume and add it to the LVM group:

##lvm> pvcreate /dev/sda3    Initialize the partition just now


Sample code sharing on virtual machine and partition disk expansion space recording in Linux (picture and text)##lvm> vgextend vg_master /dev/sda3  Add the initialized partition to the virtual volume group vg_master

lvm>lvextend -L +12G /dev/vg_master/lv_root Expand the capacity of an existing volume


##lvm>pvSample code sharing on virtual machine and partition disk expansion space recording in Linux (picture and text)display

View the volume capacity


Sample code sharing on virtual machine and partition disk expansion space recording in Linux (picture and text)lvm>quit         


6. File system expansion

resize2fs /dev/vg_master/lv_root


The above is the detailed content of Sample code sharing on virtual machine and partition disk expansion space recording in Linux (picture and text). For more information, please follow other related articles on the PHP Chinese website!

Statement
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
The Building Blocks of Linux: Key Components ExplainedThe Building Blocks of Linux: Key Components ExplainedApr 30, 2025 am 12:26 AM

The core components of the Linux system include the kernel, file system, and user space. 1. The kernel manages hardware resources and provides basic services. 2. The file system is responsible for data storage and organization. 3. Run user programs and services in the user space.

Using Maintenance Mode: Troubleshooting and Repairing LinuxUsing Maintenance Mode: Troubleshooting and Repairing LinuxApr 29, 2025 am 12:28 AM

Maintenance mode is a special operating level entered in Linux systems through single-user mode or rescue mode, and is used for system maintenance and repair. 1. Enter maintenance mode and use the command "sudosystemctlisolaterscue.target". 2. In maintenance mode, you can check and repair the file system and use the command "fsck/dev/sda1". 3. Advanced usage includes resetting the root user password, mounting the file system in read and write mode and editing the password file.

Linux Maintenance Mode: Understanding the PurposeLinux Maintenance Mode: Understanding the PurposeApr 28, 2025 am 12:01 AM

Maintenance mode is used for system maintenance and repair, allowing administrators to work in a simplified environment. 1. System Repair: Repair corrupt file system and boot loader. 2. Password reset: reset the root user password. 3. Package management: Install, update or delete software packages. By modifying the GRUB configuration or entering maintenance mode with specific keys, you can safely exit after performing maintenance tasks.

Linux Operations: Networking and Network ConfigurationLinux Operations: Networking and Network ConfigurationApr 27, 2025 am 12:09 AM

Linux network configuration can be completed through the following steps: 1. Configure the network interface, use the ip command to temporarily set or edit the configuration file persistence settings. 2. Set up a static IP, suitable for devices that require a fixed IP. 3. Manage the firewall and use the iptables or firewalld tools to control network traffic.

Maintenance Mode in Linux: A System Administrator's GuideMaintenance Mode in Linux: A System Administrator's GuideApr 26, 2025 am 12:20 AM

Maintenance mode plays a key role in Linux system management, helping to repair, upgrade and configuration changes. 1. Enter maintenance mode. You can select it through the GRUB menu or use the command "sudosystemctlisolaterscue.target". 2. In maintenance mode, you can perform file system repair and system update operations. 3. Advanced usage includes tasks such as resetting the root password. 4. Common errors such as not being able to enter maintenance mode or mount the file system, can be fixed by checking the GRUB configuration and using the fsck command.

Maintenance Mode in Linux: When and Why to Use ItMaintenance Mode in Linux: When and Why to Use ItApr 25, 2025 am 12:15 AM

The timing and reasons for using Linux maintenance mode: 1) When the system starts up, 2) When performing major system updates or upgrades, 3) When performing file system maintenance. Maintenance mode provides a safe and controlled environment, ensuring operational safety and efficiency, reducing impact on users, and enhancing system security.

Linux: Essential Commands and OperationsLinux: Essential Commands and OperationsApr 24, 2025 am 12:20 AM

Indispensable commands in Linux include: 1.ls: list directory contents; 2.cd: change working directory; 3.mkdir: create a new directory; 4.rm: delete file or directory; 5.cp: copy file or directory; 6.mv: move or rename file or directory. These commands help users manage files and systems efficiently by interacting with the kernel.

Linux Operations: Managing Files, Directories, and PermissionsLinux Operations: Managing Files, Directories, and PermissionsApr 23, 2025 am 12:19 AM

In Linux, file and directory management uses ls, cd, mkdir, rm, cp, mv commands, and permission management uses chmod, chown, and chgrp commands. 1. File and directory management commands such as ls-l list detailed information, mkdir-p recursively create directories. 2. Permission management commands such as chmod755file set file permissions, chownuserfile changes file owner, and chgrpgroupfile changes file group. These commands are based on file system structure and user and group systems, and operate and control through system calls and metadata.

See all articles

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

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment