Horje
how to change swap size Code Example
how to change swap size
# Turn swap off
# This moves stuff in swap to the main memory and might take several minutes
sudo swapoff -a

# Create an empty swapfile
# Note that "1G" is basically just the unit and count is an integer.
# Together, they define the size. In this case 8GB.
sudo dd if=/dev/zero of=/swapfile bs=1G count=8
# Set the correct permissions
sudo chmod 0600 /swapfile

sudo mkswap /swapfile  # Set up a Linux swap area
sudo swapon /swapfile  # Turn the swap on




Whatever

Related
installing metabase using docker Code Example installing metabase using docker Code Example
gpio input pull up pull down Code Example gpio input pull up pull down Code Example
sbghjxa Code Example sbghjxa Code Example
Call to undefined method Illuminate\Database\Query\Builder::getAuthIdentifierName() Code Example Call to undefined method Illuminate\Database\Query\Builder::getAuthIdentifierName() Code Example
How to compile and run C/C++ in a Unix console/Mac terminal? Code Example How to compile and run C/C++ in a Unix console/Mac terminal? Code Example

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