From 7308b8859456ee7a7c80f6b13896c5c042b55345 Mon Sep 17 00:00:00 2001 From: ruslan Date: Sun, 12 Jan 2025 22:10:47 +0100 Subject: [PATCH] Create swap-create.md --- content/posts/swap-create.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 content/posts/swap-create.md diff --git a/content/posts/swap-create.md b/content/posts/swap-create.md new file mode 100644 index 0000000..c3f641d --- /dev/null +++ b/content/posts/swap-create.md @@ -0,0 +1,31 @@ +--- +title: Создание SWAP-файла +description: Файл подкачки в GNU/Linux +date: 2025-01-12T22:10:00+01:00 +tags: [linux] +--- +## Создания +Размер файла подкачки + +RAM `<= 2GB`, SWAP `x2`\ +RAM `2GB - 8GB`, SWAP `x1`\ +RAM `>= 8GB`, SWAP `>= 4GB` + +```shell +fallocate -l G /swap +chmod 600 /swap +mkswap /swap +swapon /swap +``` + +## Автомонтирование + +В конец `/etc/fstab` необходимо добавить следующую строку +```python +/swap none swap sw 0 0 +``` + +И проверим корректность записи +```shell +mount -a +```