text 如何在Ubuntu 16.04上添加交换空间

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 如何在Ubuntu 16.04上添加交换空间相关的知识,希望对你有一定的参考价值。

Check the System for Swap Information:
sudo swapon --show

free -h

Check Available Space on the Hard Drive Partition:
df -h

Create a Swap File:
sudo fallocate -l 1G /swapfile
ls -lh /swapfile
-rw-r--r-- 1 root root 1.0G Apr 25 11:14 /swapfile

Enabling the Swap File:
sudo chmod 600 /swapfile
ls -lh /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo swapon --show
free -h

Make the Swap File Permanent:
sudo cp /etc/fstab /etc/fstab.bak
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab

Tweak your Swap Settings:
Adjusting the Swappiness Property
cat /proc/sys/vm/swappiness
sudo sysctl vm.swappiness=10

sudo nano /etc/sysctl.conf
  > vm.swappiness=10
  
Adjusting the Cache Pressure Setting:
cat /proc/sys/vm/vfs_cache_pressure
sudo sysctl vm.vfs_cache_pressure=50

sudo nano /etc/sysctl.conf
  > vm.vfs_cache_pressure=50
  
  
  
  

以上是关于text 如何在Ubuntu 16.04上添加交换空间的主要内容,如果未能解决你的问题,请参考以下文章

sh 添加交换到Ubuntu 16.04

text 如何在Ubuntu LTS上安装最新的gcc(12.04,14.04,16.04)

text 在Ubuntu 16.04上使用lua安装vim 7.4

Ubuntu16.04 下安装Sublime Text 3

Ubuntu16.04下安装sublime text3并配置anaconda插件

Ubuntu16.04安装sublime text 3并配置Python开发环境