LINUX LITE 7.2 FINAL RELEASED - SEE RELEASE ANNOUNCEMENTS SECTION FOR DETAILS


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Swap file ?
#6
To make swap file, this is the drill that works for me - I copied these instructions from a popular website, most probably the AskUbuntu, do not remember the exact location though:

Quote:From Ubuntu 18.04 onwards, a swapfile rather than a dedicated swap partition is used. The swap file is named "swapfile". To change the size of this swap file:

1. Disable the swap file and delete it (not really needed as you will overwrite it)
sudo swapoff /swapfile
sudo rm /swapfile

2. Create a new swap file of the desired size.
Determine the size of your swap file. If you want to make a 4 GB swap file, you will need to write 4 * 1024 blocks of 10242 bytes (= 1 MiB). That will make your count equal to 4 * 1024 = 4096. Create the file of this size with the command:
sudo dd if=/dev/zero of=/swapfile bs=1M count=4096

3. Assign it read/write permissions for root only (not strictly needed, but it tightens security)
sudo chmod 600 /swapfile

4. Format the file as swap:
sudo mkswap /swapfile

5. The file will be activated on the next reboot. If you want to activate it for the current session:
sudo swapon /swapfile

EDIT:

Generally it is better to have at least some swap space than none, albeit with tight hard drive, I know it could be painful, myself I have a 256GB SSD, with swap matching 75% of the RAM, only due to playing with V-Box every now and then in high RAM consumption. Otherwise than that, also in your case, maybe 25% of the RAM could suffice. Basic recommendation is 150~200% of RAM to be assigned, but as you see, it depends.
Reply


Messages In This Thread
Swap file ? - by arky217 - 10-09-2019, 04:04 PM
Re: Swap file ? - by minesheep - 10-09-2019, 07:29 PM
Re: Swap file ? - by Moltke - 10-09-2019, 11:57 PM
Re: Swap file ? - by arky217 - 10-10-2019, 02:42 AM
Re: Swap file ? - by Moltke - 10-10-2019, 04:01 AM
Re: Swap file ? - by MS - 10-10-2019, 05:10 AM

Forum Jump:


Users browsing this thread: 2 Guest(s)