RHE6SWAP的创建/扩展
SWAP我称之为交换区,相当于Windows系统下的虚拟内存。他的作用就是当我们系统中的内存不够用的时候,可以通过SWAP来增加内存。我们在安装Linux系统的时候,最基本的分区一个是根,一个是SWAP。如果我们当初把SWAP分小了的话,你需要增加他的大小,那么今天的内容就是这个内容:SWAP的创建/扩展。有两种方法供我们选择。
1、利用磁盘的剩余空间
这个前提就是你的磁盘还有剩余空间没有划分,或者是已经划分的分区不在使用。这个时候才能使用此方法。下面是此方法的实现步骤。
第一步:分区
查看磁盘的情况
[root@yufei ~]# fdisk -l /dev/sdb
此处省略N多行
Device Boot Start End Blocks Id System
/dev/sdb1 1 132 1060258+ 83 Linux
/dev/sdb2 133 183 409657+ b W95 FAT32
/dev/sdb3 184 2610 19494877+ 5 Extended
/dev/sdb5 184 445 2104483+ 83 Linux
/dev/sdb6 446 511 530113+ 82 Linux swap / Solaris
sdb6是我们前面讲分区与格式化的时候分出来的,先不理会他。为了完整的来演示,所以我们增加新的分区
[root@yufei ~]# fdisk /dev/sdb
此处有省略内容
Command (m for help): n
Command action
l logical (5 or over)
p primary partition (1-4)
l
First cylinder (512-2610, default 512):
Using default value 512
Last cylinder, +cylinders or +size{K,M,G} (512-2610, default 2610): +256M
Command (m for help): p
此处有省略
/dev/sdb7 512 545 273073+ 83 Linux
第二步:转换分区类型
Command (m for help): t
Partition number (1-7): 7
Hex code (type L to list codes): L
此处有省略
Hex code (type L to list codes): 82
Changed system type of partition 7 to 82 (Linux swap / Solaris)
Command (m for help): w
The partition table has been altered!
Calling ioctl() to re-read partition table.
WARNING: Re-reading the partition table failed with error 16: Device or resource busy.
The kernel still uses the old table. The new table will be used at
相关新闻>>
- 发表评论
-
- 最新评论 更多>>