VMware虚拟机Debian扩展磁盘

一、 版本

  • VMware:Workstation 17 Pro
  • 虚拟机:Debian11

二、 VMware虚拟机扩展

  • 虚拟机关机状态
  • 快照或者备份:以免扩容失败导致文件丢失
  • 虚拟机——设置——硬盘——磁盘使用工具——扩展——扩展磁盘容量——设置为想要的大小
    在这里插入图片描述

三、 虚拟机Debian系统扩展

  1. 开机进入虚拟机系统:删除分区、设置分区(重新创建主分区和swap分区,swap分区给4G,主分区96G。以下大小都是扇区单元表示,每个单元512个字节)、设置启动信息

    hslong@debian:~$ sudo fdisk /dev/sda   #输入执行重新分区
    
    Welcome to fdisk (util-linux 2.36.1).
    Changes will remain in memory only, until you decide to write them.
    Be careful before using the write command.
    
    
    Command (m for help): p  #输入查看信息
    Disk /dev/sda: 100 GiB, 107374182400 bytes, 209715200 sectors
    Disk model: VMware Virtual S
    Units: sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disklabel type: dos
    Disk identifier: 0xcdff7fa8
    
    Device     Boot     Start       End   Sectors  Size Id Type
    /dev/sda1  *         2048 123828223 123826176   59G 83 Linux
    /dev/sda2       123830270 125827071   1996802  975M  5 Extended
    /dev/sda5       123830272 125827071   1996800  975M 82 Linux swap / Solaris
    
    Command (m for help): d  #输入删除分区
    Partition number (1,2,5, default 5): 2  #删除分区2
    
    Partition 2 has been deleted.
    
    Command (m for help): d #输入显示操作信息
    Selected partition 1
    Partition 1 has been deleted.
    
    Command (m for help): n  #输入查看分区类型
    Partition type
       p   primary (0 primary, 0 extended, 4 free)
       e   extended (container for logical partitions)
    Select (default p): p  #输入选择分区类型
    Partition number (1-4, default 1):   #回车默认1进行分区
    First sector (2048-209715199, default 2048):  #回车默认
    Last sector, +/-sectors or +/-size{K,M,G,T,P} (2048-209715199, default 209715199): 201326592  #设置96G(96*1024*1024*1024/512)
    
    Created a new partition 1 of type 'Linux' and of size 96 GiB.
    Partition #1 contains a ext4 signature.
    
    Do you want to remove the signature? [Y]es/[N]o: y  #输入确认
    
    The signature will be removed by a write command.
    
    Command (m for help): n #输入查看分区类型
    Partition type
       p   primary (1 primary, 0 extended, 3 free)
       e   extended (container for logical partitions)
    Select (default p): p #输入选择分区类型
    Partition number (2-4, default 2): 2 #输入进行2分区
    First sector (201326593-209715199, default 201328640):   #回车默认
    Last sector, +/-sectors or +/-size{K,M,G,T,P} (201328640-209715199, default 209715199):  #回车默认
    
    Created a new partition 2 of type 'Linux' and of size 4 GiB.  #剩余4G
    
    Command (m for help): t  #输入
    Partition number (1,2, default 2):  #回车默认
    Hex code or alias (type L to list all): 82  #输入
    
    Changed type of partition 'Linux' to 'Linux swap / Solaris'.
    
    Command (m for help): a  #输入设置启用分区
    Partition number (1,2, default 2): 1  #输入启用分区1
    
    The bootable flag on partition 1 is enabled now.
    
    Command (m for help): p #查看分区信息
    Disk /dev/sda: 100 GiB, 107374182400 bytes, 209715200 sectors
    Disk model: VMware Virtual S
    Units: sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disklabel type: dos
    Disk identifier: 0xcdff7fa8
    
    Device     Boot     Start       End   Sectors Size Id Type
    /dev/sda1  *         2048 201326592 201324545  96G 83 Linux
    /dev/sda2       201328640 209715199   8386560   4G 82 Linux swap / Solaris
    
    Filesystem/RAID signature on partition 1 will be wiped.
    
    Command (m for help): w  #保存分区设置,以下提示后,重启系统
    The partition table has been altered.
    Failed to remove partition 5 from system: 设备或资源忙
    Failed to update system information about partition 1: 设备或资源忙
    
    The kernel still uses the old partitions. The new table will be used at the next reboot. 
    Syncing disks.
    
    
  2. 重启虚拟机系统

  3. resize2fs 命令扩大分区

    hslong@debian:~$ sudo resize2fs /dev/sda1 #输入执行扩大分区
    [sudo] hslong 的密码:
    resize2fs 1.46.2 (28-Feb-2021)
    Filesystem at /dev/sda1 is mounted on /; on-line resizing required
    old_desc_blocks = 8, new_desc_blocks = 12
    The filesystem on /dev/sda1 is now 25165568 (4k) blocks long.
    
    hslong@debian:~$ df -h  #输入查看已经完成
    文件系统        容量  已用  可用 已用% 挂载点
    udev            4.9G     0  4.9G    0% /dev
    tmpfs           992M  2.9M  989M    1% /run
    /dev/sda1        95G   43G   48G   48% /
    tmpfs           4.9G     0  4.9G    0% /dev/shm
    tmpfs           5.0M  4.0K  5.0M    1% /run/lock
    tmpfs           992M   96K  992M    1% /run/user/116
    tmpfs           992M   68K  992M    1% /run/user/1000
    

四、 重建swap分区信息

  • 新建交互分区

    hslong@debian:~$ sudo blkid  #输入查看交互分区,没有UUID
    /dev/sr0: BLOCK_SIZE="2048" UUID="2022-12-17-12-02-38-00" LABEL="Debian 11.6.0 amd64 1" TYPE="iso9660" PTUUID="5880e2de" PTTYPE="dos"
    /dev/sda1: UUID="f83080bb-7084-4727-a2dc-557ae5e5fe9e" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="cdff7fa8-01"
    /dev/sda2: PARTUUID="cdff7fa8-02"
    hslong@debian:~$ sudo mkswap /dev/sda2 #重新创建swap信息,会产生UUID
    Setting up swapspace version 1, size = 4 GiB (4293914624 bytes)
    no label, UUID=53d8ea82-bbef-4ad1-867e-70c5963bcfca
    
  • 修改 /etc/fstab 文件,将里面的 swap 分区信息的 uuid 换成新生成的uuid

    • sudo vi /etc/fstab 在这里插入图片描述
  • 运行 sudo swapon /dev/sda2 启用 swap

    • sudo swapon /dev/sda2
  • 查看新交互分区信息

    	hslong@debian:~$ sudo swapon -s 
    	Filename				Type		Size	Used	Priority
    	/dev/sda2                              	partition	4193276	0	-2
    	hslong@debian:~$ free -m
    	               total        used        free      shared  buff/cache   available
    	内存:       9913         748        8524           9         640        8914
    	交换:       4094           0        4094
    	hslong@debian:~$ 
    	```
    
    

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

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

新能源汽车的未来:车载电源与V2G技术的前景

近年来,新能源汽车在全球市场上发展迅速,尤其是在中国,新能源汽车的月销量已经超过了燃油车。随着新能源技术的不断发展,新能源汽车不仅仅是作为出行工具,而逐渐成为“移动能源站”。本文将探讨电动汽车的车载外放电功…

JavaScript知识点梳理及案例实践

1. Date对象 创建Date对象 //方法1:不指定参数 var nowd1new Date(); console.log(nowd1.toLocaleString( )); //方法2:参数为日期字符串 var d2new Date("2004/3/20 11:12"); console.log(d2.toLocaleString( )); var d3new Date("04/…

[vulnhub]DC:7

https://www.vulnhub.com/entry/dc-7,356/ 端口扫描主机发现 探测存活主机,178是靶机 nmap -sP 192.168.75.0/24 Starting Nmap 7.94SVN ( https://nmap.org ) at 2024-11-03 13:30 CST Nmap scan report for 192.168.75.1 Host is up (0.00037s l…

探索React源码:React Diff

本篇文章我们来了解一下Diff算法的实现过程。 相关概念 React中的各种节点 假设当前存在一个DOM节点,触发了一次更新,那么在协调的过程中,会有四种节点和该节点相关联: 该DOM节点本身。 workInProgress fiber,更新过程…

开源库 FloatingActionButton

开源库FloatingActionButton Github:https://github.com/Clans/FloatingActionButton 这个库是在前面这个库android-floating-action-button的基础上修改的,增加了一些更强大和实用的特性。 特性: Android 5.0 以上点击会有水波纹效果 可以选择自定义…

微服务设计模式 - 重试模式(Retry Pattern)

微服务设计模式 - 重试模式(Retry Pattern) 定义 重试模式(Retry Pattern)是一种微服务中的设计模式,用于在临时性失败(如网络故障或暂时不可用的服务)发生时,自动重新尝试请求&…

HTML 基础标签——链接标签 <a> 和 <iframe>

文章目录 1. `<a>` 标签属性详细说明示例2. `<iframe>` 标签属性详细说明示例注意事项总结链接标签在HTML中是实现网页导航的重要工具,允许用户从一个页面跳转到另一个页面或嵌入外部内容。主要的链接标签包括 <a> 标签和<iframe> 标签。本文将深入探…

Netty 组件介绍 - Future Promise

在异步处理时&#xff0c;经常用到这两个接口 netty 中的 Future 继承 jdk 中的 FutuFuture&#xff0c;而Promise 又对 netty Future 进行了扩展。 idk Future 只能同步等待任务结束&#xff08;或成功或失败)才能得到结果netty Future 可以同步等待任务结束得到结也可以异…

Excel:vba实现批量插入图片批注

实现的效果&#xff1a;实现的代码如下&#xff1a; Sub InsertImageNamesAndPictures()Dim PicPath As StringDim PicName As StringDim PicFullPath As StringDim RowNum As IntegerDim Name As StringDim Comment As CommentDim folder As FileDialog 定义文件选择对话框 清…

C++(类和对象-友元)

友元的作用 作用&#xff1a; 在C中&#xff0c;友元&#xff08;friend&#xff09;是一种特殊的类成员&#xff0c;它可以让一个函数或者类访问其他类的私有&#xff08;private&#xff09;和保护&#xff08;protected&#xff09;成员。 注意&#xff1a; 友元的使用应该谨…

ssm044基于java和mysql的多角色学生管理系统+jsp(论文+源码)_kaic

毕 业 设 计&#xff08;论 文&#xff09; 题目&#xff1a;学生管理系统设计与实现 摘 要 现代经济快节奏发展以及不断完善升级的信息化技术&#xff0c;让传统数据信息的管理升级为软件存储&#xff0c;归纳&#xff0c;集中处理数据信息的管理方式。本学生管理系统就是在这…

猜字谜 华为OD

源码 Java import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test;import java.util.ArrayList; import java.util.List; import java.util.TreeSet;public class GuessWord {public Input input;BeforeEachpublic void init() {input new Input("…

C++队列

好久没有发博客了&#xff0c;欢迎阅读&#xff1a;C队列。 1.队列的介绍 队列&#xff08;queue&#xff09;是一种先进先出的、操作受限的线性表。 数据结构是&#xff1a;先进入队列的先出去&#xff0c;后进入队列的后出去。 必须从队尾插入新元素&#xff0c;队列中的…

【ArcGISPro】制作简单的ArcGISPro-AI助手

【python】AI Navigator的使用及搭建本机大模型_anaconda ai navigator-CSDN博客 【Python】AI Navigator对话流式输出_ai大模型流式输出效果(打字效果) python-CSDN博客 【C#】调用本机AI大模型流式返回_怎么实现调用本地大模型时实现流式输出-CSDN博客 【ArcGISPro】宣布推…

小白从零开始配置pytorch环境

一、下载ANACONDA 官方网址Anaconda Installers and Packages 笔者选择的是Anaconda3-5.3.0-Windows-x86_64.exe版本。全程安装可以手机开热点&#xff0c;会快一点。 二、查看电脑是否有显卡 1、打开任务管理器 2、查看电脑CUBA版本&#xff0c;如上篇文章所提到查看CUDA-V…

Java设计模式之责任链模式

1、责任链模式的定义&#xff1a; 责任链模式(Iterator Pattern)是一种行为型设计模式&#xff0c;使多个对象都有机会处理同一个请求&#xff0c;将这些对象连成一条链&#xff0c;并沿着这条链传递该请求&#xff0c;直到有一个对象处理它为止。 2、责任链模式的角色&#x…

web安全测试渗透案例知识点总结(下)——小白入狱

目录 [TOC](目录)一、更多详细的实际案例教程案例1&#xff1a;文件上传漏洞利用案例2&#xff1a;目录遍历&#xff08;Path Traversal&#xff09;漏洞检测案例3&#xff1a;暴力破解登录密码案例4&#xff1a;命令注入漏洞案例5&#xff1a;身份认证绕过&#xff08;Passwor…

.NET 8 中 Entity Framework Core 的使用

本文代码&#xff1a;https://download.csdn.net/download/hefeng_aspnet/89935738 概述 Entity Framework Core (EF Core) 已成为 .NET 开发中数据访问的基石工具&#xff0c;为开发人员提供了强大而多功能的解决方案。随着 .NET 8 和 C# 10 中引入的改进&#xff0c;开发人…

后端java——如何为你的网页设置一个验证码

本文通过HUTOOL实现&#xff1a;Hutool参考文档Hutool&#xff0c;Java工具集https://hutool.cn/docs/#/ 1、工具的准备 如果我们通过hutool来实现这个功能&#xff0c;我们需要提前安装hutool的jar包。 下载地址&#xff1a;Central Repository: cn/hutool/hutool-all/5.8.…

Java面试经典 150 题.P189. 轮转数组(006)

本题来自&#xff1a;力扣-面试经典 150 题 面试经典 150 题 - 学习计划 - 力扣&#xff08;LeetCode&#xff09;全球极客挚爱的技术成长平台https://leetcode.cn/studyplan/top-interview-150/ 题解&#xff1a; class Solution {public void rotate(int[] nums, int k) {…