Linux-Swap =========== Falls keine Swap Partition vorhanden ist kann (wie unter Windows) ein Swapfile (Auslagerungsdatei) erstellt werden. #Swapfile erstellen (in diesem Beispiel mit 8GB) fallocate -l 8G /swapfile #Kontrolle der Größe ls -lh /swapfile -rw-r--r-- 1 root root 8.0G Aug 17 14:43 /swapfile #Berechtigung setzen chmod 600 /swapfile #Formatieren mkswap /swapfile Setting up swapspace version 1, size = 8 GiB (8589930496 bytes) no label, UUID=9a452125-d4d2-4326-9302-f13e63fa92cd #Swapfile aktivieren swapon /swapfile #Ist Swap auch aktiv? free -m total used free shared buff/cache available Mem: 7978 4003 93 74 3882 4111 Swap: 8191 0 8191 #Anpassung /etc/fstab, so das das Swapfile auch nach Reboot aktiv ist nano /etc/fstab #~~ begin # Swap /swapfile none swap sw 0 0 #~~ end and save #Mount-Test mount -a