Increase Swap in Ubuntu 18.04 Under Lvm and Encrypted File System

24,277

Solution 1

The easiest solution would be to add a swap file. If you are already encrypting your root file system, I would not bother with an encrypted swap file, which is only a little more difficult, but it is slower. The advantage of a swap file is that you can remove it later to regain the disk space. And the disk is already encrypted!

The steps are straightforward. First, make the file. For example, this would make 1GB of new swap:

sudo dd if=/dev/zero of=/swapfile bs=1024 count=1024k

The of=/swapfile tells dd to put the new swap file in /swapfile. You can call it anything you want. You can add multiple swap files, too. For recent Linux kernels, the speed is the same as a swap partition.

Then, you need to format the swap file as swap space, like so:

sudo mkswap /swapfile

This command will give you some output like:

Setting up swapspace version 1, size = 1048576 KiB

no label, UUID=83352590-ef57-49f5-84c4-7fb847e4e4e0

And that's your new swap file. Finally, you need to activate the swap on your machine using the following command:

sudo swapon /swapfile

Now, sudo swapon -s should show you both the swap partition and the swap file.

I then recommend adding some security by changing permissions as follows:

sudo chown root:root /swapfile
sudo chmod 0600 /swapfile

If all seems good so far, you can add the swap file permanently by adding the the following line to /etc/fstab using your favorite editor:

/swapfile       none    swap    sw      0       0

You can add multiple swap files, of course. And you can remove the swap file by using sudo swapoff /swapfile.

Hope this helps.

Solution 2

Adding to the top answer. Since I do not have the reputation to comment. Apologies.

In case you are trying to increase swap space and already have swap space allocated.

Warning: Close applications that use swap space.

First, do this or else you will get a Error:

sudo swapoff -a

And then proceed as instructed above.

Also, the above process will erase the previous swap space, so if you have 2 Gigs of swap and want an additional 6 Gigs, you will have to allocate a fresh 9 Gigs of swap space. Or name the swap file to something different from the other swap file(s).

sudo dd if=/dev/zero of=/swapfile2 bs=1024 count=6144k

Error:

~ $sudo dd if=/dev/zero of=/swapfile bs=1024 count=6144k                     
dd: failed to open '/swapfile': Text file busy

NOTE: This is a suggested Extension to @Martin W's answer

Solution 3

Note that if your installation uses LVM, you may already have a swap volume. Check using kvpm. If that's not the case, here are concise steps to create a new 4GB swap file. First close any applications using swap space (or restart your machine). Then:

sudo swapoff -a                                    # Turn off all swap space.
sudo rm /swapfile                                  # Delete current swap file.
sudo dd if=/dev/zero of=/swapfile bs=1G count=4    # Make a new 4GB swap file.
sudo chown root:root /swapfile                     # Set owner to root, group root
sudo chmod 0600 /swapfile                          # Set permission to root
sudo mkswap /swapfile                              # Convert file to swap format
sudo swapon /swapfile                              # Enable swap space

Run htop or another system monitor to check that the new swap is in effect. If all looks good, make the swap file permanent by adding the following line to /etc/fstab:

/swapfile       none    swap    sw      0       0

Solution 4

It used by default LVM and created a partition for the swap instead of the file.

That is not actually a partition; rather, it's an LVM (Logical Volume Management) volume. You can see LVM volumes using kvpm:

kpvm screenshot with swap volume

Thus the correct answer to your question is not to create another swap destination (a swap file), but to resize the swap volume using kvpm: right click on the swap volume, and choose Extend logical volume.

If that option is not available, you may need to reduce the size of another volume first.

Share:
24,277

Related videos on Youtube

leviatan89
Author by

leviatan89

Updated on September 18, 2022

Comments

  • leviatan89
    leviatan89 over 1 year

    I did a clean install of Ubuntu 18.04 Desktop.

    I used the graphical installer and chose "Encrypt the new Ubuntu installation for security".

    It used by default LVM and created a partition for the swap instead of the file. Here is sudo swapon -s result:

    eviatan89@leviatan89-K55VD:~$ sudo swapon -s
    Filename                Type        Size    Used    Priority
    /dev/dm-2                               partition   1003516 999448  -2
    

    I need to increase the size as I am having lots of problems running low on RAM.

    As curiosity, problems come when using Cassandra and Firefox with several open tabs (including YouTube). My system got 6GB of RAM.

    Thanks a lot for your help!

    • olejorgenb
      olejorgenb almost 6 years
      centos.org/docs/5/html/5.1/Deployment_Guide/… worked for me (18.04 full disk encryption)
    • AlikElzin-kilaka
      AlikElzin-kilaka almost 5 years
      I'm wandering if we can just make the partition bigger. LVM should make it easy, right? Has anyone tried it? Couldn't find any answer with this option.
    • AlikElzin-kilaka
      AlikElzin-kilaka almost 5 years
      I tried resizing the partition using the disks app but the option wasn't available. Not even after I "stopped" it. I tried also to boot from a thumb drive, which doesn't mount anything on the hard drive, but the resize option wasn't available for non of the LVM partition. Might this be because the "main" partition is locked? After unlocking it, the option was still unavailable.
    • Dan Dascalescu
      Dan Dascalescu over 4 years
      @AlikElzin-kilaka: yes, you need to use kpvm to resize the swap volume, and indeed, it's very easy.
    • Bojan P.
      Bojan P. over 4 years
      @DanDascalescu Extend logical volume... is disabled for my swap_1 partition, so is Reduce logical volume... for root. What to do?
    • Dragon warrior
      Dragon warrior over 4 years
      @BojanP. are you running kpvm as a superuser?
    • Bojan P.
      Bojan P. over 4 years
      Yes I did, other options were enabled (e.g. Reduce for swap and Extend for root). Later I solved the classic way by creating the swap file.
  • leviatan89
    leviatan89 about 6 years
    Thanks! It worked. This is the dd command I used for adding 4G swap file: sudo dd if=/dev/zero of=/swapfile bs=1024 count=4096k
  • grofte
    grofte over 5 years
    Why is it 1024k? My intuition would say that that was 1 megabyte, not a gig.
  • Martin W
    Martin W over 5 years
    The block size parameter 'bs' is in bytes. So a count of 1024k or 1 million blocks of 1KB each is 1 GB.
  • user_6396
    user_6396 about 5 years
    If I need 12gb of swap do I need to just change count = 12288 right?
  • Alexis Paques
    Alexis Paques over 4 years
    Indeed, 4096*3=12288
  • Dan Dascalescu
    Dan Dascalescu over 4 years
    Since the OP uses LVM, it would be even easier to simply resize the swap volume using kpvm.
  • Dan Dascalescu
    Dan Dascalescu over 4 years
    With LVM, you don't need a swap file. You can very easily resize the swap volume using kpvm.
  • Dan Dascalescu
    Dan Dascalescu over 4 years
    With LVM, you don't need a swap file. LVM makes it easy to resize the swap volume using kpvm.
  • AlikElzin-kilaka
    AlikElzin-kilaka over 4 years
    Will it work when using zfs on ubuntu 19.10?
  • Bojan P.
    Bojan P. over 4 years
    Extend logical volume... is disabled for my swap_1 partition, so is Reduce logical volume... for root. What to do?
  • Dragon warrior
    Dragon warrior over 4 years
    @DanDascalescu …easier unless OP prefers not to install KDE libs for this issue alone
  • user3757405
    user3757405 over 3 years
    Can kvpm reduce the size of other volumes?
  • thelastshadow
    thelastshadow about 3 years
    Be careful with the dd command. The count param is a multiplier of the block size (bs) so if you type bs=1G count=32G it will try to allocate 32,000 1GB blocks.