mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-04 22:38:34 +02:00
Improved swap2ram
This commit is contained in:
parent
58dfa1412b
commit
c209ce3ab6
@ -1,12 +1,11 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
mem=$(LC_ALL=C free | awk '/Mem:/ {print $4}')
|
RAMsize=$(LC_ALL=C free | awk '/Mem:/ {print $2}')
|
||||||
swap=$(LC_ALL=C free | awk '/Swap:/ {print $3}')
|
RAMfree=$(LC_ALL=C free | awk '/Mem:/ {print $4}')
|
||||||
|
SwapUsed=$(LC_ALL=C free | awk '/Swap:/ {print $3}')
|
||||||
if [ $mem -lt $swap ]; then
|
|
||||||
echo "ERROR: not enough RAM to write swap back, nothing done" >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
echo "Swapping $SwapUsed bytes back to $RAMsize bytes RAM ($RAMfree bytes free) ..."
|
||||||
swapoff -a && swapon -a
|
swapoff -a && swapon -a
|
||||||
|
|
||||||
|
echo "Done."
|
||||||
exit 0
|
exit 0
|
||||||
|
Loading…
Reference in New Issue
Block a user