|
发表于 2022-5-27 11:02:53
只看该作者
沙发
root@firefly:~# free -m
总计 已用 空闲 共享 缓冲/缓存 可用
内存: 1969 267 1353 5 347 1671
交换: 0 0 0
root@firefly:~# swapon -s
root@firefly:~# dd if=/dev/zero of=/swapfile count=2048 bs=1M
记录了2048+0 的读入
记录了2048+0 的写出
2147483648 bytes (2.1 GB, 2.0 GiB) copied, 14.1608 s, 152 MB/s
root@firefly:~# ls / | grep swapfile
swapfile
root@firefly:~#
root@firefly:~# chmod 600 /swapfile
root@firefly:~# ls -lh /swapfile
-rw------- 1 root root 2.0G 5月 27 02:47 /swapfile
root@firefly:~#
root@firefly:~# mkswap /swapfile
正在设置交换空间版本 1,大小 = 2 GiB (2147479552 个字节)
无标签, UUID=4d1599ed-68ee-4572-b6e8-ffd68bd34c98
root@firefly:~# swapon /swapfile
swapon: /swapfile:swapon 失败: 无效的参数
root@firefly:~#
root@firefly:~# free
总计 已用 空闲 共享 缓冲/缓存 可用
内存: 2016348 274728 20096 5200 1721524 1711360
交换: 0 0 0
|
|