Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Ver el uso de memoria en Ubuntu y liberar memoria
- * Memoria en uso, cuánta está libre y cuánta está ocupada por el caché,
- free -m
- watch n -l free -m
- sudo sync
- sudo sysctl -w vm.drop_caches=3
- sudo sync && sudo sysctl -w vm.drop_caches=3
- sudo sync && sudo sysctl -w vm.drop_caches=3
- * Limpiar la swap (memoria de intercambio)
- sudo swapoff -a
- sudo swapon -a
- sudo swapoff -a && sudo swapon -a
- * Limpiar Clipboard
- sudo apt-get install xsel
- xsel -bc
- * Ver memoria Swap
- free -m | sed -n -e '3p' | grep -Po "\d+$"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement