はじめに
Rspberry Piでswapを有効化/無効化する手順について記載する。
swapを無効化
-
現在の状況を確認する。
$ free
total used free shared buff/cache available Mem: 378160 55372 231080 2736 91708 270744 Swap: 102396 0 102396
-
swapを無効化する。
$ sudo swapoff --all $ sudo systemctl stop dphys-swapfile $ sudo systemctl disable dphys-swapfile $ systemctl status dphys-swapfile
-
設定変更されたことを確認する。
$ free
total used free shared buff/cache available Mem: 378160 64748 207916 2736 105496 261168 Swap: 0 0 0
swapを有効化
-
現在の状況を確認する。
$ free
-
swapを有効化する。
$ sudo systemctl start dphys-swapfile $ sudo systemctl enable dphys-swapfile $ systemctl status dphys-swapfile
-
設定変更されたことを確認する。
$ free