suse linux增加新磁盘分区,Virtualbox中Linux添加新磁盘并创建分区

引言:我们常常在使用系统的时候突然发现,哎呦~~~我们的磁盘空间不够用啦!我遇到常见的就是数据库数据暴增,预留的空间没有啦,只好新添加磁盘,在VB虚拟机上就可以实现,往往苦于没有图文并茂的好资料,下面我来为大家简单快捷的实操示范一下,做一名“实操族”偶耶!

Virtualbox中Linux添加一个新磁盘->创建分区->格式化->挂载分区。

一virtualbox设置添加磁盘

关闭你的虚拟机,挂载新磁盘不可以在开机状态做

Virtualbox菜单栏->设置->存储-> SATA控制器->右击,选择“添加虚拟硬盘”

5c03eacf2af97e83cc8f00b49842527c.png

注:千万不要选择“IDE控制器”这是一种非常古老的并口磁盘,现在已经都淘汰了,请选SATA控制器现在流行的串口磁盘添加。我们点击红框框中的“添加虚拟磁盘”按钮

2068d5059059d8f51349e884634792e6.png

它会问你,添加虚拟磁盘是要创建一个新文件来保存数据,还是选择一个现有文件保存,我们选择“创建新的虚拟磁盘”

0821987e8a064e131573be267312e992.png

这时又让你选择“虚拟磁盘文件类型”,请注意90%都是选择VDI(虚拟磁盘映像)类型的,如果你的系统没有什么特殊需求,请选择第一个。点击“下一步”

fdc9bec2398a291cf3b58171c98bacc0.png

选择“动态分配”磁盘空间,只在需要的时候扩展物理磁盘空间,点击“下一步”

02ddf1968101da24106b0d5836b149a4.png

虚拟磁盘映像文件的路径:E:\Vritaulbox\leonarding2.vdi

虚拟磁盘映像文件的大小:20GB

点击“创建”

b37b383dc2fcfdf4ec2e7bb0d8283f44.png

现在已经创建好了一个新的虚拟磁盘“leonarding2.vdi”,我们启动系统,virtualbox添加工作已经完成,剩下的就是在Linux系统中给新添加的磁盘->分区。

二Linux系统进行新磁盘分区

[root@leonarding1~]# fdisk –l检查现有系统磁盘空间

Disk/dev/sda: 21.4 GB, 21474836480 bytes这是我们原来的那块旧磁盘

255 heads, 63sectors/track, 2610 cylinders

Units = cylindersof 16065 * 512 = 8225280 bytes

Device Boot     Start       End     Blocks  Id  System旧磁盘就分了2个分区

/dev/sda1   *        1        13     104391   83  Linux

/dev/sda2           14       2610   20860402+  8e  Linux LVM

Disk/dev/sdb: 21.4 GB, 21474836480 bytes这是我们新添加的磁盘/dev/sdb,还没有分区

255 heads, 63sectors/track, 2610 cylinders

Units = cylindersof 16065 * 512 = 8225280 bytes

Disk /dev/sdbdoesn't contain a valid partition table不包含有效分区表信息,我们需要给新磁盘创建分区表

Disk /dev/dm-0:18.2 GB, 18253611008 bytes下面这些都不用管

255 heads, 63sectors/track, 2219 cylinders

Units = cylindersof 16065 * 512 = 8225280 bytes

Disk /dev/dm-0doesn't contain a valid partition table

Disk /dev/dm-1:3087 MB, 3087007744 bytes

255 heads, 63sectors/track, 375 cylinders

Units = cylindersof 16065 * 512 = 8225280 bytes

Disk /dev/dm-1doesn't contain a valid partition table

[root@leonarding1~]# fdisk /dev/sdb          sdb磁盘分区,有很多选项,我们选择m帮助信息

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

Building a new DOSdisklabel. Changes will remain in memory only,

until you decideto write them. After that, of course, the previous

content won't be recoverable.

The number ofcylinders for this disk is set to 2610.

There is nothingwrong with that, but this is larger than 1024,

and could incertain setups cause problems with:

1) software thatruns at boot time (e.g., old versions of LILO)

2) booting andpartitioning software from other OSs

(e.g., DOS FDISK, OS/2 FDISK)

Warning: invalidflag 0x0000 of partition table 4 will be corrected by w(rite)

Command (m forhelp):m选择m即可看到帮助信息

Command action

a  toggle a bootable flag

b  edit bsd disklabel

c  toggle the dos compatibility flag

d  delete a partition

l  list known partition types

m  print this menu

n   add a new partition创建一个新分区

o  create a new empty DOS partition table

p  print the partition table

q  quit without saving changes

s  create a new empty Sun disklabel

t  change a partition's system id

u  change display/entry units

v  verify the partition table

w  write table to disk and exit

x  extra functionality (experts only)

Command (m forhelp):n创建一个新分区

Command action

e  extended

p  primary partition (1-4)

p选择p添加主分区

Partition number(1-4): 1选择主分区编号为1,这样创建后的主分区为sdb1

First cylinder(1-2610, default 1):选择格式化分区从第几个柱面开始

Using defaultvalue 1直接“回车”默认从第1个柱面开始

Last cylinder or+size or +sizeM or +sizeK (1-2610, default 2610):选择格式化分区从第几个柱面结束

Using defaultvalue 2610直接“回车”默认从最后1个柱面结束

我们把所有20GB空间都格式化为一个分区了,如果有朋友想划分多个分区,如下方法

Last cylinder or+size or +sizeM or +sizeK (1-2610, default 2610):以MB为单位输入自己想要的大小即可

这样我们就创建完一个分区,如果要创建更多分区可以照上面的步骤继续创建。

Command (m forhelp): w键入w,保存设置并退出,完成新磁盘分区表创建

The partitiontable has been altered!

Calling ioctl() tore-read partition table.

Syncing disks.

[root@leonarding1~]# fdisk –l我们在看一下系统磁盘空间分配情况

Disk /dev/sda:21.4 GB, 21474836480 bytes

255 heads, 63sectors/track, 2610 cylinders

Units = cylindersof 16065 * 512 = 8225280 bytes

Device Boot     Start       End     Blocks  Id  System

/dev/sda1   *        1        13     104391  83  Linux

/dev/sda2           14       2610   20860402+  8e  Linux LVM

Disk/dev/sdb: 21.4 GB, 21474836480 bytes这时我们可以看到新磁盘已经加入分区表了

255heads, 63 sectors/track, 2610 cylinders

Units =cylinders of 16065 * 512 = 8225280 bytes

Device Boot     Start       End     Blocks  Id  System

/dev/sdb1           1       2610   20964793+  83  Linux

下面我们给新磁盘的/dev/sdb1分区进行格式化操作

[root@leonarding1~]# mkfs -t ext4 /dev/sdb1用ext4格式对/dev/sdb1分区进行格式化

mke4fs 1.41.12(17-May-2010)

Filesystem label=

OS type: Linux操作系统类型Linux

Block size=4096(log=2)操作系统块大小4k

Fragment size=4096(log=2)

Stride=0 blocks,Stripe width=0 blocks

1310720 inodes,5241198 blocks

262059 blocks(5.00%) reserved for the super user

First data block=0

Maximum filesystemblocks=4294967296

160 block groups

32768 blocks pergroup, 32768 fragments per group

8192 inodes pergroup

Superblock backupsstored on blocks:

32768, 98304, 163840, 229376, 294912,819200, 884736, 1605632, 2654208,

4096000

Writing inodetables: done

Creating journal(32768 blocks): done

Writingsuperblocks and filesystem accounting information: done

This filesystemwill be automatically checked every 35 mounts or

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

到此我们的新分区格式化完毕,下面我们就要挂载上分区就可以使用啦!

[root@leonarding1~]# df –h这是我们还没有挂载新分区之前的挂载点分布

Filesystem         Size  Used Avail Use% Mounted on

/dev/mapper/VolGroup00-LogVol00

17G   15G 1.6G  90% /

/dev/sda1           99M   23M  71M  25% /boot

tmpfs             731M  320M 411M  44% /dev/shm

/dev/sr0           55M   55M    0 100% /media/VBOXADDITIONS_4.2.6_82870

[root@leonarding1/]# mkdir /u02在根目录上创建一个新的挂载目录/u02

[root@leonarding1/]# mount /dev/sdb1 /u02将新磁盘分区挂载到/u02目录下

[root@leonarding1/]# df –h这是我们挂载新分区之后的挂载点分布

Filesystem         Size  Used Avail Use% Mounted on

/dev/mapper/VolGroup00-LogVol00

17G   15G 1.6G  90% /

/dev/sda1           99M   23M  71M  25% /boot

tmpfs             731M  320M 411M  44% /dev/shm

/dev/sr0           55M   55M    0 100% /media/VBOXADDITIONS_4.2.6_82870

/dev/sdb1           20G  172M  19G   1% /u02

现在我们可以正常使用新添加的磁盘空间了

[root@leonarding1/]# cd /u02

[root@leonarding1u02]# mkdir app创建一个app目录试试

[root@leonarding1u02]# ll

total 20

drwxr-xr-x 2 rootroot  4096 Apr 14 09:12 app     ok成功创建木有问题

drwx------ 2 rootroot 16384 Apr 14 08:59 lost+found

到此Virtualbox中Linux添加一个新磁盘->创建分区->格式化->挂载分区系列操作完毕

Virtualbox添加磁盘创建分区格式化挂载分区

开机自动挂载新磁盘分区/dev/sdb1

[root@leonarding1 /]# vim /etc/fstab修改文件,在文件最后新增一行

/dev/VolGroup00/LogVol00 /                 ext3    defaults       1 1

LABEL=/boot          /boot              ext3    defaults       1 2

tmpfs              /dev/shm            tmpfs   defaults       0 0

devpts             /dev/pts            devpts  gid=5,mode=620  0 0

sysfs              /sys               sysfs   defaults       0 0

proc               /proc              proc    defaults       0 0

/dev/VolGroup00/LogVol01 swap               swap    defaults       0 0

/dev/sdb1           /u02               ext4     defaults       0 0

这样在重启系统后就会自动挂载到/u02目录上

0b1331709591d260c1c78e86d0c51c18.png

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

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

相关文章

arcgis字段计算器无法赋值_Arcgis空间连接工具的妙用

​Arcgis功能真的无比强大,读书时一般只会用到一些常见的,工作后挖掘了很多新功能,数据处理效率大幅提升,个人觉得arcgis是最强大最好用的gis软件!本节给大家分享下空间连接功能的两个妙用。空间连接功能很多giser应该…

SpringMVC Mybatis Shiro RestTemplate的实现客户端无状态验证及访问控制【转】

2019独角兽企业重金招聘Python工程师标准>>> A.首先需要搭建SpringMVCShiro环境 a1.pom.xml配置 spring: <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId><version>4.1.0.RELEAS…

sql服务器默认密码_搭建一个DNS服务器,轻松实现域名解析内容分发,访问速度提高N倍...

DNS服务器&#xff0c;Domain Name Server&#xff0c;域名解析服务器&#xff0c;互联网上相互通信使用的是IP&#xff0c;但是IP是又长又臭又难记&#xff0c;所以创造了域名来解决IP难写难记的问题&#xff0c;记一个g.cn比203.208.50.127强过不知多少倍了。有了域名&#x…

linux .net 控制台应用程序,VisualStudioCode创建的asp.net core控制台程序部署到linux

1、asp.net core控制台程序static void Main(string[] args){int times10;while(times>0){Console.WriteLine("Hello World!");times--;Thread.Sleep(1000);}}2、发布发布前&#xff0c;修改test2.csproj文件(项目名称为test2)Exenetcoreapp2.1centos.7-x64主要添…

linux系统怎样写单片机程序,单片机知识是Linux驱动开发的基础之一以及如何学单片机...

这是arm裸机1期加强版第1课第2、3节课程的wiki文字版。为什么没前途也要学习单片机&#xff1f;因为它是个很好的入口。学习单片机可以让我们抛开复杂的软件结构&#xff0c;先掌握硬件操作&#xff0c;如&#xff1a;看原理图、芯片手册、写程序操作寄存器等。在上一节视频里&…

bat 批处理 常用命令和乱码问题

为什么80%的码农都做不了架构师&#xff1f;>>> rem echo off ECHO OFF XCOPY E:\test.bat D:\ IF ERRORLEVEL 1 ECHO 文件拷贝Failure IF ERRORLEVEL 0 ECHO 文件拷贝Success :start set /p first"1记事本,2远程:" if %first% LEQ 2 (IF %first% …

SuperMap iServer发布的ArcGIS REST 地图服务如何通过ArcGIS API加载

作者&#xff1a;yx 文章目录 一、发布服务二、代码加载三、结果展示 一、发布服务 SuperMap iServer支持将地图发布为ArcGIS REST地图服务&#xff0c;您可以在发布服务时直接勾选ArcGIS REST地图服务&#xff0c;如下图所示&#xff1a; 也可以在已发布的地图服务中&#x…

new file会创建文件吗_Rust 文件系统处理之文件读写 Rust 实践指南

Rust 中&#xff0c;文件读写处理简单而高效。代码也很紧凑&#xff0c;容易阅读。我们从读取文件的字符串行、避免读取写入同一文件、使用内存映射随机访问文件这三个文件处理中的典型案例来了解一下。文件处理场景大家都很熟悉&#xff0c;因此闲言少叙&#xff0c;直接看代码…

【Maven学习笔记(二)】Maven的安装与配置

为什么80%的码农都做不了架构师&#xff1f;>>> 1、默认本地仓库路径 C:\Users\97449\.m2\repository 2、修改本地仓库路径 打开D:\apache-maven\conf\settings.xml <?xml version"1.0" encoding"UTF-8"?><!-- Licensed to the Apa…

npm 全局安装vuecli报错_cnn explainer本地使用--被npm坑惨

最近在知乎上面看到&#xff0c;看到一个cnn解释器&#xff0c;把每个步揍都很清楚的展示了出来&#xff0c;我想自己搞来玩玩。第一次使用npm&#xff0c;很多地方不会&#xff0c;第一步&#xff1a;先在网页上下载下来cnn_explainer&#xff0c;然后解压在没有中文路径的文件…

Python程序从给定的N个数字中找到最大倍数

Here, we will be framing code for finding the maximum multiple of a number x from a given set of a number (set of 5 numbers in this program). 在这里&#xff0c;我们将使用成帧代码&#xff0c; 从给定的一组数字(此程序中的5个数字组成的集合)中找到x的最大倍数 。…

openmpi安装_Intel Parallel Studio XE 2019安装设置

1.Intel Parallel Studio XE 2019简介Intel Parallel Studio XE 是Intel在单独一款软件开发套件中整合了英特尔公司业界领先的 C/C 和 Fortran 编译器、性能和MPI并行库、错误检查、代码健壮和性能分析的工具&#xff0c;有助于大幅提升应用程序性能&#xff0c;同时提高代码质…

[Android] 开源View组件(一)

Material Design系列&#xff0c;自定义Behavior实现Android知乎首页 仿今日头条最强顶部导航指示器&#xff0c;支持6种模式 MagicIndicator系列之一 —— 使用MagicIndicator打造千变万化的ViewPager指示器 Android 优雅的为RecyclerView添加HeaderView和FooterView Android …

sql server修改字段编码格式_关于MySQL如何修改character_set_client的编码问题

问题引入&#xff1a;我们经常会遇到一些向MySQL数据库中插入中文&#xff0c;但是select出来的时候&#xff0c;却发现是乱码的情况。如我们向表a出入这样一段记录&#xff1a;iinsert into a values(‘你好helloworld你好’,’helloworld’);可能当你访问它的时候&#xff0c…

通用apdu指令_8086微处理器中的通用指令格式

通用apdu指令Introduction: 介绍&#xff1a; In this article, we are going to discuss about the 6 general formats of instructions. 在本文中&#xff0c;我们将讨论6种通用指令格式。 One byte instruction: 一字节指令 &#xff1a; This is only one byte long an…

Win10系统怎样让打开图片方式为照片查看器

打开注册表编辑器之后&#xff0c;我们双击左侧的目录&#xff0c;依次打开HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft目录&#xff0c;如下图所示。 在Microsoft目录下&#xff0c;我们需要找到Windows Photo Viewer\Capabilities\FileAssociations目录项&#xff0c;直到看到该子…

c语言插入排序算法_插入排序算法,流程图和C,C ++代码

c语言插入排序算法In the last article, we discussed about the bubble sort with algorithm, flowchart and code. In this article, we are going to discuss about another basic sorting technique i.e. insertion sort. 在上一篇文章中&#xff0c;我们讨论了用算法&…

EF使用CodeFirst方式生成数据库技巧经验

前言 EF已经发布很久了&#xff0c;也有越来越多的人在使用EF。如果你已经能够非常熟练的使用EF的功能&#xff0c;那么就不需要看了。本文意在将自己使用EF的方式记录下来备忘&#xff0c;也是为了给刚刚入门的同学一些指导。看完此文&#xff0c;你应该就学会以CodeFirst的方…

对象过滤某个属性 循环 php_37道PHP面试题(附答案)

1、什么事面向对象&#xff1f;主要特征是什么&#xff1f;面向对象是程序的一种设计方式&#xff0c;它利于提高程序的重用性&#xff0c;使程序结构更加清晰。主要特征&#xff1a;封装、继承、多态。2、SESSION 与 COOKIE的区别是什么&#xff0c;请从协议&#xff0c;产生的…

oracle   SQL执行过程

1.sql执行过程1>解析&#xff08;判断对象是否存在&#xff0c;是否有权限查询&#xff0c;语义解析&#xff0c;检查缓存中是否有相同的SQL等等&#xff09;2>优化&#xff08;CBO确定优化模式&#xff0c;确定访问路径&#xff0c;联接顺序&#xff0c;过程中通过很多综…