From 17f5ca3cb059912b902e4ffb3143ab0522d92f24 Mon Sep 17 00:00:00 2001 From: Wesley Blake Date: Tue, 11 Jun 2024 04:16:54 -0700 Subject: [PATCH] Add resources for swap (#5850) I thought these two were the most interesting articles on the subject. Also provides examples on how to do it. --- .../roadmaps/linux/content/110-disks-filesystems/104-swap.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/linux/content/110-disks-filesystems/104-swap.md b/src/data/roadmaps/linux/content/110-disks-filesystems/104-swap.md index e856a828b..df07710a1 100644 --- a/src/data/roadmaps/linux/content/110-disks-filesystems/104-swap.md +++ b/src/data/roadmaps/linux/content/110-disks-filesystems/104-swap.md @@ -18,4 +18,7 @@ mkswap /swapfile # sets up the Linux swap area swapon /swapfile # enables the file for swapping ``` -Remember that the decision of where to place your swap space, how much swap space to have, and how to utilize swap space are all important considerations in optimizing your system's performance. \ No newline at end of file +Remember that the decision of where to place your swap space, how much swap space to have, and how to utilize swap space are all important considerations in optimizing your system's performance. + +- [@article@ Swap - Arch Wiki](https://wiki.archlinux.org/title/Swap) +- [@article@ zram (alternative) - Arch Wiki](https://wiki.archlinux.org/title/Zram)