首页 > 系统相关 >给虚拟机挂载一块硬盘(以ubuntu24.04为例)

给虚拟机挂载一块硬盘(以ubuntu24.04为例)

时间:2024-10-28 14:20:16浏览次数:6  
标签:ext4 为例 -- ubuntu24.04 虚拟机 bytes ubuntu 512 size

一、新增、分区、格式化新盘

1、首先在虚拟机中增加一块新硬盘(500G)

例如:Vmware、Exsi 软件,增加完成后,查看一下:

root@ubuntu:~# lsblk -f
NAME                      FSTYPE      FSVER    LABEL UUID                                   FSAVAIL FSUSE% MOUNTPOINTS
sda                                                                                                        
├─sda1                    vfat        FAT32          0CC8-757B                                   1G     1% /boot/efi
├─sda2                    ext4        1.0            602d4169-741c-47c2-9d63-686cc0a09f0d      1.7G     5% /boot
└─sda3                    LVM2_member LVM2 001       AfCID6-QHNz-OEcg-KXdj-bVeS-KCMK-DQ2fwE                
  └─ubuntu--vg-ubuntu--lv ext4        1.0            8b41073e-f1ba-412e-9eb2-8127713f827d     84.4G     7% /
sdb                                                                                                        
sr0                                                                                                        

其中sdb就是新增加的硬盘。

 

可以查看更详细的硬盘情况

root@ubuntu:~# fdisk -l
Disk /dev/sda: 100 GiB, 107374182400 bytes, 209715200 sectors
Disk model: Virtual disk    
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: gpt
Disk identifier: A226A3F1-5348-41F9-A64B-0F2F00938DD1

Device       Start       End   Sectors  Size Type
/dev/sda1     2048   2203647   2201600    1G EFI System
/dev/sda2  2203648   6397951   4194304    2G Linux filesystem
/dev/sda3  6397952 209713151 203315200 96.9G Linux filesystem


Disk /dev/mapper/ubuntu--vg-ubuntu--lv: 96.95 GiB, 104094236672 bytes, 203309056 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes


Disk /dev/sdb: 500 GiB, 536870912000 bytes, 1048576000 sectors
Disk model: Virtual disk    
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes

请查标红的一行。

 

2、新硬盘分区(分区表)

root@ubuntu:~# fdisk /dev/sdb

Welcome to fdisk (util-linux 2.39.3).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.

Device does not contain a recognized partition table.
Created a new DOS (MBR) disklabel with disk identifier 0x7bfe4259.

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-1048575999, default 2048): <直接回车>
Last sector, +/-sectors or +/-size{K,M,G,T,P} (2048-1048575999, default 1048575999): <直接回车>

Created a new partition 1 of type 'Linux' and of size 500 GiB.

Command (m for help): w
The partition table has been altered.
Calling ioctl() to re-read partition table.
Syncing disks.

 

3、查看新盘分区结果

root@ubuntu:~# lsblk -f
NAME                      FSTYPE      FSVER    LABEL UUID                                   FSAVAIL FSUSE% MOUNTPOINTS
sda                                                                                                        
├─sda1                    vfat        FAT32          0CC8-757B                                   1G     1% /boot/efi
├─sda2                    ext4        1.0            602d4169-741c-47c2-9d63-686cc0a09f0d      1.7G     5% /boot
└─sda3                    LVM2_member LVM2 001       AfCID6-QHNz-OEcg-KXdj-bVeS-KCMK-DQ2fwE                
  └─ubuntu--vg-ubuntu--lv ext4        1.0            8b41073e-f1ba-412e-9eb2-8127713f827d     84.4G     7% /
sdb                                                                                                        
└─sdb1                                                                                                     
sr0                      

说明分区成功了

 

4、将新的分区格式化成 ext4 格式

root@ubuntu:~# mkfs -t ext4 /dev/sdb1
mke2fs 1.47.0 (5-Feb-2023)
Creating filesystem with 131071744 4k blocks and 32768000 inodes
Filesystem UUID: 8fd776d3-9be5-4a59-8ce4-504bb14849e2
Superblock backups stored on blocks: 
    32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208, 
    4096000, 7962624, 11239424, 20480000, 23887872, 71663616, 78675968, 
    102400000

Allocating group tables: done                            
Writing inode tables: done                            
Creating journal (262144 blocks): done
Writing superblocks and filesystem accounting information: done

记住新的UUID,说明格式化成功。

 

查看一下格式化结果:

root@ubuntu:~# lsblk -f
NAME                      FSTYPE      FSVER    LABEL UUID                                   FSAVAIL FSUSE% MOUNTPOINTS
sda                                                                                                        
├─sda1                    vfat        FAT32          0CC8-757B                                   1G     1% /boot/efi
├─sda2                    ext4        1.0            602d4169-741c-47c2-9d63-686cc0a09f0d      1.7G     5% /boot
└─sda3                    LVM2_member LVM2 001       AfCID6-QHNz-OEcg-KXdj-bVeS-KCMK-DQ2fwE                
  └─ubuntu--vg-ubuntu--lv ext4        1.0            8b41073e-f1ba-412e-9eb2-8127713f827d     84.4G     7% /
sdb                                                                                                        
└─sdb1                    ext4        1.0            8fd776d3-9be5-4a59-8ce4-504bb14849e2                  
sr0                           

 

二、挂载新盘

1、查看卷分组

 

标签:ext4,为例,--,ubuntu24.04,虚拟机,bytes,ubuntu,512,size
From: https://www.cnblogs.com/hunttown/p/18510531

相关文章

  • ubuntu24.04安装完以后发现硬盘空间少一半
    1、查看现在硬盘情况root@ubuntu:~#df-hFilesystemSizeUsedAvailUse%Mountedontmpfs1.6G1.1M1.6G1%/runefivarfs256K64K188K26%/sys/firmware/efi/efivars/dev......
  • KVM虚拟机下利用宝塔面板中的 Docker 配置 Nextcloud + onlyoffice
    第一部分:安装配置nextcloud准备(1)启动一个KVM虚拟机,见下图。该虚拟机为anlisos8…0.2虚拟机的ssh、hostname、IP地址都已配置好。(2)宝塔面板也已安装好docker一、环境docker版本:29.0.4DockerCompose版本:2.27.0mariadb-docker版本:10.6.17......
  • 怎么给虚拟机添加新硬盘
    1.首先需要将虚拟机关机才能进行磁盘的添加。2.点击编辑虚拟机状态,选择硬盘(SCSI),点击添加。3.硬件类型选择硬盘,点击下一步。4.磁盘类型选择SCSI(S),点击下一步。5.选择创建磁盘,点击下一步。6.磁盘容量可以根据需要自行设定,将虚拟磁盘拆分成多个文件(M)。7.指定文件名不需......
  • Java 中使用 Session 对象(以登录、退出功能为例)
    一、创建Session(登录功能)使用session.setAttribute(value,key)保存key属性的值value@RequestMapping("/login")publicStringlogin(Stringusername,Stringpassword,HttpSessionsession){//验证账号密码是否错误if(username!="张三"||password!=......
  • 数据挖掘与机器学习入门-以房价预测为例
    数据挖掘与机器学习入门-以房价预测为例背景此时我们有两份CSV文件houseprice_train.csv:包含训练数据和房价数据houseprice_test.csv:只包含测试数据不包括房价,将测试集真正房价对开发者不可见用于打分数据处理导入两份csv文件:train=pd.read_csv('houseprice_train.cs......
  • 如何阅读 CPU 电路图(以 6502 为例)
    开篇你是否曾对CPU的工作原理充满好奇,以及简单的晶体管又是如何组成逻辑门,进而构建出复杂的逻辑电路实现?本文将以知名的6502CPU的电路图为例,介绍如何阅读CPU电路图,并向你演示如何从晶体管电路还原出逻辑门电路。通过这篇文章的引导,你将能够揭开CPU复杂设计的面纱,一窥其......
  • 如何选取笔记本外接显示器(以华为matebook14 2020版为例)
    选取与自己相近笔记本规格主要就是看:1、分辨率(像素):1k就是1920*1080像素,2k就是2560×1440像素,4k就是3840x2160像素、4096x2160像素;2、刷新率:就是一秒刷新多少个画面,体现在游戏流不流畅、视频卡不卡这种,例如60hz、100hz;3、连接线:看电脑的接口包含哪一些,如HDMI、USB-C(Thun......
  • 基于windows系统连接VMware虚拟机过程
    vmware使用关闭虚拟机使用挂起功能(不会占用系统资源),开启时,速度块。删除虚拟机从磁盘中删除快照功能右键虚拟机-->快照-->恢复快照远程连接必备信息IP地址端口用户名密码协议ssh协议无法连接虚拟机排查思路1.首先在win系统上,检查vmNet8网卡,并配置IP2.在VM虚拟......
  • 【如何安装linux系统】【为什么我要用vmware虚拟机呢?】【阿里云镜像】
    如何安装linux系统为什么我要用vmware虚拟机呢?阿里云镜像(下载镜像)(安装虚拟机)http://mirrors.aliyun.com/......
  • 【容器】容器与虚拟机对比:全面解析与应用指南
    目录引言1.基本概念1.1容器1.2虚拟机(VM)2.架构比较3.性能比较3.1启动时间和资源消耗3.2性能指标4.用例场景4.1微服务架构4.2开发与测试4.3大规模部署5.安全性比较5.1容器安全性5.2虚拟机安全性6.生态系统6.1容器生态6.2虚拟机生态7.选择指南7.1选......