Linux系统配置交换分区

简介: Linux系统配置交换分区

一、交换分区理解

交换分区:内核使用交换分区,保存内存中暂不活动的数据,当内核重新需要访问这部分数据,将会把这部分重新写入内存中读取。

二、交换分区调整大小建议

内存 交换分区
2G或者以下 两倍的内存
2G~8G 同等内存
8~64G 至少4G
64G以上 至少4G

三、配置交换分区

1.磁盘分区

[root@node1 ~]# fdisk /dev/sdb

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


Command (m for help): print
Disk /dev/sdb: 20 GiB, 21474836480 bytes, 41943040 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
Disklabel type: gpt
Disk identifier: 054D4516-ACE2-4C1A-BB38-1B93407B26A9

Device     Start      End  Sectors Size Type
/dev/sdb1   2048 12584959 12582912   6G Linux filesystem

Command (m for help): n
Partition number (2-128, default 2): 
First sector (12584960-41943006, default 12584960): 
Last sector, +sectors or +size{K,M,G,T,P} (12584960-41943006, default 41943006): +2G

Created a new partition 2 of type 'Linux filesystem' and of size 2 GiB.

Command (m for help): w

The partition table has been altered.
Calling ioctl() to re-read partition table.
Syncing disks.

2.格式化swap分区

[root@node1 ~]# mkswap /dev/sdb2
Setting up swapspace version 1, size = 2 GiB (2147479552 bytes)
no label, UUID=7b7937af-408b-4370-9bd9-baa0cb5d1c6b

3.永久挂载swap分区

# vim /etc/fstab
UUID=b7190d80-906f-4b9d-9ab4-5a503ecaea2c /                       xfs     defaults        0 0
UUID=525a30a7-d484-4ed5-9f38-f827f54e29ff /boot                   xfs     defaults        0 0
UUID=e6cf8733-5eec-4942-9429-c3e9087b6ff0 swap                    swap    defaults        0 0
UUID="deff8218-3389-4245-a6bf-1716010fd6d4" /mnt/lv01 xfs   defaults        0 0
UUID=7b7937af-408b-4370-9bd9-baa0cb5d1c6b swap swap defaults 0 0 
[root@node1 ~]# swapon -a
[root@node1 ~]# swapon -s
Filename                Type        Size    Used    Priority
/dev/nvme0n1p2                             partition    2097148    0    -2
/dev/sdb2                                  partition    2097148    0    -3
[root@node1 ~]# 

四、查看swap分区

[root@node1 ~]# swapon -s
Filename                Type        Size    Used    Priority
/dev/nvme0n1p2                             partition    2097148    0    -2
/dev/sdb2                                  partition    2097148    0    -3
[root@node1 ~]# 
[root@node1 ~]# free -m
              total        used        free      shared  buff/cache   available
Mem:           1966         648         831           9         485        1142
Swap:          4095           0        4095
[root@node1 ~]# 
相关文章
|
8月前
|
Linux Shell C语言
【Shell 命令集合 磁盘维护 】Linux 分区管理的工具 sfdisk命令使用教程
【Shell 命令集合 磁盘维护 】Linux 分区管理的工具 sfdisk命令使用教程
85 1
|
8月前
|
监控 Linux Shell
【Shell 命令集合 磁盘维护 】Linux 交换分区的特殊文件或设备 swapon命令使用指南
【Shell 命令集合 磁盘维护 】Linux 交换分区的特殊文件或设备 swapon命令使用指南
97 1
|
8月前
|
Linux
Linux操作系统调优相关工具(三)查看IO运行状态相关工具 查看哪个磁盘或分区最繁忙?
Linux操作系统调优相关工具(三)查看IO运行状态相关工具 查看哪个磁盘或分区最繁忙?
164 0
|
5月前
|
存储 监控 安全
在Linux中,⼀个EXT3的文件分区,当使用touch test.file命令创建⼀个新文件时报错,报错的信息是提示磁盘已满,但是采用df -h命令查看磁盘大小时,只使用了,60%的磁盘空间,为什么会出现这个情况?
在Linux中,⼀个EXT3的文件分区,当使用touch test.file命令创建⼀个新文件时报错,报错的信息是提示磁盘已满,但是采用df -h命令查看磁盘大小时,只使用了,60%的磁盘空间,为什么会出现这个情况?
|
3月前
|
网络协议 Linux 开发工具
linux系统配置固定地址
linux系统配置固定地址
|
8月前
|
Linux 开发工具
Linux E325: 注意 发现交换文件 “*.swp“
Linux E325: 注意 发现交换文件 “*.swp“
165 0
|
5月前
|
安全 Linux Shell
在Linux中,如何使用脚本进行系统配置和部署?
在Linux中,如何使用脚本进行系统配置和部署?
|
5月前
|
存储 Linux 5G
linux操作系统初始化后,再也不用手动分区了
linux操作系统初始化后,再也不用手动分区了
37 0
|
5月前
|
Linux
在Linux中,如何创建一个分区?
在Linux中,如何创建一个分区?
|
5月前
|
Linux 开发工具
在Linux中,如何创建一个新的分区并格式化为EXT4文件系统?
在Linux中,如何创建一个新的分区并格式化为EXT4文件系统?