Categorii
General

Configurare fisier swap


# initializare
dd if=/dev/zero of=/swapfile count=1024 bs=1M
chown root:root /swapfile
chmod 600 /swapfile
# Make it into a swap file
mkswap /swapfile
# Mount swap file
swapon /swapfile
# configurare fstab pentru a pastra la reboot
cp -av /etc/fstab /etc/fstab.bckp
echo /swapfile swap swap defaults 0 0 >> /etc/fstab # Care!! '>>'

Lasă un răspuns

Adresa ta de email nu va fi publicată. Câmpurile obligatorii sunt marcate cu *