欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

实训一授课笔记-实战扩展swap分区

程序员文章站 2022-05-30 16:29:27
...

swap 分区

Swap分区在系统的物理内存不够用的时候,把硬盘空间中的一部分空间释放出来,以供当前运行的程序使用。

基础命令:

mkswap /devices : 格式化成swap格式
swapon /devices : **swap ,加入到swap分区中
开机自动启动新添加的swap分区: /etc/fstab /devices swap swap defaults 0 0

实验步骤:

  1. 建立分区
    [[email protected] ~]# 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

2) 查看是否分区成功

[[email protected] ~]# 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

  1. 格式化
[[email protected] ~]# mkswap /dev/sdb2
正在设置交换空间版本 1,大小 = 1048572 KiB
无标签,UUID=bf1788b2-c1f5-4f89-bb62-cd91617ee8dc

对比( **swap空间之前的对比)

[[email protected] ~]# free -m
              total        used        free      shared  buff/cache   available
Mem:           3770         454        2938          14         378        3082
Swap:          2047           0        2047
[[email protected] ~]# swapon /dev/sdb2 
[[email protected] ~]# 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大小的文件
[[email protected] ~]# dd  if=/dev/zero of=swap_file bs=1M count=500
记录了500+0 的读入
记录了500+0 的写出
524288000字节(524 MB)已复制,12.2954 秒,42.6 MB/秒
[[email protected] ~]# ll -h swap_file 
-rw-r--r--. 1 root root 500M 2月  26 15:46 swap_file
[[email protected] ~]# chmod 0600 swap_file 
2) 把500M的文件格式化成swap 
[[email protected] ~]# mkswap -f swap_file 
正在设置交换空间版本 1,大小 = 511996 KiB
无标签,UUID=def65bf9-7143-4734-9801-d3d8bb583061
[[email protected] ~]# free -m
              total        used        free      shared  buff/cache   available
Mem:           3770         455        2423          14         891        3075
Swap:          3071           0        3071
3) **swap空间
[[email protected] ~]# swapon /root/swap_file

4) 查看是否被**
[[email protected] ~]# free -m
              total        used        free      shared  buff/cache   available
Mem:           3770         456        2423          14         891        3074
Swap:          3571           0        3571
[[email protected] ~]# 

相关标签: linux运维教学