sh 在Ubuntu上创建1GB的交换文件,具有15%的swappiness
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 在Ubuntu上创建1GB的交换文件,具有15%的swappiness相关的知识,希望对你有一定的参考价值。
#!/bin/bash
# Creating a 1G swap file
sudo dd if=/dev/zero of=/swapfile bs=1M count=1024
# Changing the file permission
sudo chmod 600 /swapfile
sudo chown root:root /swapfile
# Formatting the file as a swap type
sudo mkswap /swapfile
# Adding the swap file to the system initialization
sudo echo /swapfile none swap defaults 0 0 | sudo tee -a /etc/fstab
# Adjusting swappiness to 15%
sudo bash -c "echo 'vm.swappiness = 15' >> /etc/sysctl.conf"
# Activating the swap file
sudo swapon -a
以上是关于sh 在Ubuntu上创建1GB的交换文件,具有15%的swappiness的主要内容,如果未能解决你的问题,请参考以下文章
sh 通过SSH进行Rsync - (1GB网卡上的40MB / s)
sh 通过SSH进行Rsync - (1GB网卡上的40MB / s)
sh 交换Debian Ubuntu
sh 添加交换到Ubuntu 16.04
sh 清除交换ubuntu
sh [linux:mkswap]在linux上创建交换内存。 #linux