linux中swap管理分区
1.swap是什么?
swap space是磁盘上的一块区域,可以是一个分区,也可以是一个文件,或者是他们的组合。简单点说,当系统物理内存吃紧时,Linux会将内存中不常访问的数据保存到swap上,这样系统就有更多的物理内存为各个进程服务。
基础命令:
mkswap /devices : 格式化成swap格式
swapon /devices : 激活swap ,加入到swap分区中
开机自动启动新添加的swap分区: /etc/fstab /devices swap swap defaults 0 0
实验步骤:
1.建立分区
[root@ localhost ~]# gdisk /dev/sdb
Command (? for help): n #新建分区
Partition number (2-128, default 2): #回车
First sector (34-41943006, default = 2099200) or {+-}size{KMGTP}: #回车
Last sector (2099200-41943006, default = 41943006) or {+-}size{KMGTP}: +1G #给1G
Current type is 'Linux filesystem'
Hex code or GUID (L to show codes, Enter = 8300): #回车
Changed type of partition to 'Linux filesystem'
Command (? for help): w #保存
Do you want to proceed? (Y/N): y
https://blog.csdn.net/xinshuzhan/article/details/10451806
2.查看分区是否成功
[root@localhost ~]# ll /dev/sdb*
brw-rw----. 1 root disk 8, 16 2月 26 15:36 /dev/sdb
brw-rw----. 1 root disk 8, 17 2月 26 15:36 /dev/sdb1
brw-rw----. 1 root disk 8, 18 2月 26 15:37 /dev/sdb2
3.格式化
[root@localhost ~]# mkswap /dev/sdb2
正在设置交换空间版本 1,大小 = 1048572 KiB
无标签,UUID=bf1788b2-c1f5-4f89-bb62-cd91617ee8dc
# 对比( 激活swap空间之前的对比)
[root@ localhost ~]# free -m
total used free shared buff/cache available
Mem: 3770 454 2938 14 378 3082
Swap: 2047 0 2047
[root@ localhost ~]# swapon /dev/sdb2
[root@ localhost ~]# free -m
total used free shared buff/cache available
Mem: 3770 452 2940 14 377 3084
Swap: 3071 0 3071
使用 文件增加swap空间?
阿里云默认的没有swap空间,如何增加swap?
1) 使用dd命令创建个500M大小的文件
[root@ localhost ~]# dd if=/dev/zero of=swap_file bs=1M count=500
记录了500+0 的读入
记录了500+0 的写出
524288000字节(524 MB)已复制,12.2954 秒,42.6 MB/秒
[root@ localhost ~]# ll -h swap_file
-rw-r--r--. 1 root root 500M 2月 26 15:46 swap_file
[root@ localhost ~]# chmod 0600 swap_file
2) 把500M的文件格式化成swap
[root@ localhost ~]# mkswap -f swap_file
正在设置交换空间版本 1,大小 = 511996 KiB
无标签,UUID=def65bf9-7143-4734-9801-d3d8bb583061
[root@ localhost ~]# free -m
total used free shared buff/cache available
Mem: 3770 455 2423 14 891 3075
Swap: 3071 0 3071
3) 激活swap空间
[root@ localhost ~]# swapon /root/swap_file
4) 查看是否被激活
[root@ localhost ~]# free -m
total used free shared buff/cache available
Mem: 3770 456 2423 14 891 3074
Swap: 3571 0 3571