markdown Ubuntu启用交换文件#linux

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown Ubuntu启用交换文件#linux相关的知识,希望对你有一定的参考价值。

Ubuntu 18.04 enable swap file

check Swap
```
swapon --show

```
Check free memory and disk
```
free -h
// or 
df -h
```

```
a) Make swap off
# swapoff /var/swapfile

b) Resize the swapfile (increase or decrease). Here let us increase to 2GB (assuming existing one has 1GB space as given in the article)
# dd if=/dev/zero of=/var/swapfile bs=1024k count=2000

c) Make swapfile usable
# mkswap /var/swapfile

d) Make swapon 
# swapon /var/swapfile

d-1) change permission to 0600
# chmod 0600 /var/swapfile

e) Verify the swapfile 
# swapon -show
```
Make swap file permanent
```
echo '/var/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab
```

以上是关于markdown Ubuntu启用交换文件#linux的主要内容,如果未能解决你的问题,请参考以下文章

markdown 在Ubuntu中安装MongoDB,启用访问控制,为MongoDB创建管理员用户和数据库用户

禁用ubuntu启用虚拟内存swap

ubuntu双网卡准备配置

ini “更新版本的fonts.conf文件在http://www.binarytides.com/gorgeous-looking-fonts-ubuntu-linux/中提到,以便摆脱

G006-OS-LIN-UBUN-02 Ubuntu Server 22.04 安装

G005-OS-LIN-UBUN-01 Ubuntu Desktop 22.04 安装