Horje
how to change swap space on ubuntu Code Example
how to change swap space on ubuntu
# Disable Swap
sudo swapoff /swapfile
# Edit Swapfile to desired size, 2G, 4G etc
sudo fallocate -l 2G /swapfile
# Enable Swap again
sudo swapon /swapfile
# You can check your new swap with
sudo swapon --show




Shell

Related
flush dns linux Code Example flush dns linux Code Example
bash hide command output Code Example bash hide command output Code Example
jupyter notebook venv Code Example jupyter notebook venv Code Example
add kernel to jupyter Code Example add kernel to jupyter Code Example
subprocess.CalledProcessError: Command '('lsb_release', '-a')' returned non-zero exit status 1. Code Example subprocess.CalledProcessError: Command '('lsb_release', '-a')' returned non-zero exit status 1. Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12