{"id":12234,"date":"2024-04-04T12:55:58","date_gmt":"2024-04-04T07:25:58","guid":{"rendered":"https:\/\/www.skynats.com\/?p=12234"},"modified":"2025-01-08T20:36:53","modified_gmt":"2025-01-08T15:06:53","slug":"how-to-add-swap-space-on-alma-linux-8","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-add-swap-space-on-alma-linux-8\/","title":{"rendered":"How To Add Swap Space on Alma Linux 8"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full is-resized\"><img fetchpriority=\"high\" decoding=\"async\" width=\"509\" height=\"99\" sizes=\"(max-width: 509px) 100vw, 509px\" src=\"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/04\/images-1.png\" alt=\"\" class=\"wp-image-12253\" style=\"width:313px;height:auto\" srcset=\"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/04\/images-1.png 509w, https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/04\/images-1-300x58.png 300w\" \/><\/figure>\n\n\n\n<p class=\"has-small-font-size\">Swap space is an important part of memory management since it protects the server from memory overloads and increases system stability. Here is how to set up swap space on an Almalinux8 server<a href=\"https:\/\/almalinux.org\/\">.<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-steps-for-setting-up-swap-space-on-almalinux-8\">Steps for setting up Swap Space on AlmaLinux 8 :<\/h3>\n\n\n\n<p class=\"has-small-font-size\">To do this, we need to check the information on currently active swap spaces. The swapon command gives a list of active swap devices or files, with their sizes and utilisation.<\/p>\n\n\n\n<pre class=\"wp-block-code has-small-font-size\"><code>#swapon -s<\/code><\/pre>\n\n\n\n<p class=\"has-small-font-size\">To check the system&#8217;s current memory and swap utilisation, run the <strong>\u201cfree\u201d<\/strong> command:<\/p>\n\n\n\n<pre class=\"wp-block-code has-small-font-size\"><code>#free -g<\/code><\/pre>\n\n\n\n<h5 class=\"wp-block-heading has-small-font-size\" id=\"h-output\"><strong>Output :<\/strong><\/h5>\n\n\n\n<figure style=\"font-size:15px\" class=\"wp-block-table\"><table><tbody><tr><td><\/td><td>total<\/td><td>used<\/td><td>free<\/td><td>shared<\/td><td>buff\/cache<\/td><td>available<\/td><\/tr><tr><td>Mem<\/td><td>251<\/td><td>196<\/td><td>30<\/td><td>0<\/td><td>25<\/td><td>58<\/td><\/tr><tr><td>Swap<\/td><td>4<\/td><td>3<\/td><td>1<\/td><td><\/td><td><\/td><td><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"has-small-font-size\">Also check the disk usage and availability using df -h command<\/p>\n\n\n\n<pre class=\"wp-block-code has-small-font-size\"><code>#df -h<\/code><\/pre>\n\n\n\n<p class=\"has-small-font-size\">Now, Create a new swap file of 8GB using the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code has-small-font-size\"><code>#dd if=\/dev\/zero of=\/swap bs=1M count=8192<\/code><\/pre>\n\n\n\n<p class=\"has-small-font-size\">In this command, <strong>\u2018of\u2019<\/strong> specifies the output file. ie, the partition or disk name where you want to write the data, here I am using the partition name \/swap.<\/p>\n\n\n\n<p class=\"has-small-font-size\"><strong>\u2018Bs\u2019<\/strong> is the block size (bs) for both reading and writing data. In this command, 1M sets the block size to 1 megabyte. And <strong>\u2018count\u2019<\/strong> is the number of blocks to copy. In this command, 8192 is the count of blocks. Since the block size is set to 1 megabyte, this will create a swap file of 8GB.<\/p>\n\n\n\n<p class=\"has-small-font-size\">We can use the ls -lh command to view and verify the space reserved for the swap<\/p>\n\n\n\n<pre class=\"wp-block-code has-small-font-size\"><code>#ls -lh \/swap<\/code><\/pre>\n\n\n\n<p class=\"has-small-font-size\">Also, specify the correct permissions for the swap file for improved security.<\/p>\n\n\n\n<pre class=\"wp-block-code has-small-font-size\"><code>#chmod 600 \/swap<\/code><\/pre>\n\n\n\n<p class=\"has-small-font-size\">The next step is to format it as a swap space using the mkswap command.<\/p>\n\n\n\n<pre class=\"wp-block-code has-small-font-size\"><code>#mkswap \/swap<\/code><\/pre>\n\n\n\n<p class=\"has-small-font-size\">Then activate the swap space located at \/swap using the \u2018swapon\u2019 command<\/p>\n\n\n\n<pre class=\"wp-block-code has-small-font-size\"><code>#swapon \/swap<\/code><\/pre>\n\n\n\n<p class=\"has-small-font-size\">Now, use the \u2018swapon -s\u2019 command to check that the swap space is active<\/p>\n\n\n\n<pre class=\"wp-block-code has-small-font-size\"><code>#swapon -s<\/code><\/pre>\n\n\n\n<p class=\"has-small-font-size\">Always remember to configure the partition to mount at boot time. This can be accomplished by configuring the fstab file.<\/p>\n\n\n\n<p>Obtain the UUID of the filesystem \/swap using the blkid command:<\/p>\n\n\n\n<pre class=\"wp-block-code has-small-font-size\"><code>#blkid \/swap<\/code><\/pre>\n\n\n\n<p class=\"has-small-font-size\"><strong>\/swap: UUID=&#8221;7e00b266-887a-49f8-a2ca-e0b417899c1a&#8221; TYPE=&#8221;swap&#8221;<\/strong><\/p>\n\n\n\n<p class=\"has-small-font-size\">Now edit the fstab file to define how filesystems should be mounted at boot time.<\/p>\n\n\n\n<pre class=\"wp-block-code has-small-font-size\"><code>#vim \/etc\/fstab<\/code><\/pre>\n\n\n\n<p style=\"font-size:15px\"><strong>UUID=364e9b36-4d85-46a2-91fe-25443efaea87e9 &nbsp; &nbsp; \/ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; xfs &nbsp; &nbsp; &nbsp; defaults &nbsp; &nbsp; 0&nbsp; &nbsp; &nbsp; 1<\/strong><\/p>\n\n\n\n<p style=\"font-size:15px\"><strong>UUID=6f11dd66-bfa0-40c7-8e5b-a1b39e567d72&nbsp; &nbsp; &nbsp; &nbsp; \/boot&nbsp; &nbsp; xfs &nbsp; &nbsp; &nbsp; defaults &nbsp; &nbsp; 0&nbsp; &nbsp; &nbsp; 0<\/strong><\/p>\n\n\n\n<p style=\"font-size:15px\"><strong>UUID=512e47f5-3d6a-48f4-8eaf-dfccefec109e &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; swap &nbsp; swap&nbsp; &nbsp; defaults &nbsp; &nbsp; 0&nbsp; &nbsp; &nbsp; 0<\/strong><\/p>\n\n\n\n<p style=\"font-size:15px\"><strong>UUID=7e00b266-887a-49f8-a2ca-e0b417899c1a&nbsp; &nbsp; &nbsp; &nbsp; swap &nbsp; swap&nbsp; &nbsp; defaults &nbsp; &nbsp; 0&nbsp; &nbsp; &nbsp; 0<\/strong><\/p>\n\n\n\n<p class=\"has-small-font-size\">At last, run the \u2018free\u2019 command to verify that the changes made to the swap space configurations were applied correctly.<\/p>\n\n\n\n<pre class=\"wp-block-code has-small-font-size\"><code>#free -g<\/code><\/pre>\n\n\n\n<h5 class=\"wp-block-heading has-small-font-size\" id=\"h-output-0\">Output :<\/h5>\n\n\n\n<figure class=\"wp-block-table is-style-regular\" style=\"font-size:15px\"><table><tbody><tr><td><\/td><td>total<\/td><td>used<\/td><td>free<\/td><td>shared<\/td><td>buff\/cache<\/td><td>available<\/td><\/tr><tr><td>Mem<\/td><td>251<\/td><td>190<\/td><td>36<\/td><td>0<\/td><td>25<\/td><td>58<\/td><\/tr><tr><td>Swap<\/td><td>12<\/td><td>4<\/td><td>8<\/td><td><\/td><td><\/td><td><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"has-small-font-size\">This is how we can add swap space to an Almalinux8 server. The expanded swap space setup will allow the server to meet the needs of your workload, ensuring an efficient and uninterrupted computing experience.<\/p>\n\n\n\n<p class=\"has-small-font-size\">The members of our&nbsp;<a href=\"https:\/\/www.skynats.com\/blog\/\">Support Team<\/a>&nbsp;are available to help you with &#8220;How To Add Swap Space on Alma Linux 8&#8221; in case you experience any problems or glitches.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Swap space is an important part of memory management since it protects the server from memory overloads and increases system stability. Here is how to set up swap space on an Almalinux8 server. Steps for setting up Swap Space on AlmaLinux 8 : To do this, we need to check the information on currently active [&hellip;]<\/p>\n","protected":false},"author":13,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[766,778,5],"tags":[841,840],"class_list":["post-12234","post","type-post","status-publish","format-standard","hentry","category-almalinux-8","category-almalinux-server","category-blog","tag-almalinux8","tag-swap-space"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Adding Swap Space on AlmaLinux 9: A Step-by-Step Guide<\/title>\n<meta name=\"description\" content=\"Learn how to efficiently add swap space on AlmaLinux 9 with our step-by-step guide. Optimize your system&#039;s performance today!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.skynats.com\/blog\/how-to-add-swap-space-on-alma-linux-8\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Add Swap Space on Alma Linux 8\" \/>\n<meta property=\"og:description\" content=\"Learn how to efficiently add swap space on AlmaLinux 9 with our step-by-step guide. Optimize your system&#039;s performance today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-add-swap-space-on-alma-linux-8\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2024-04-04T07:25:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-01-08T15:06:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/04\/images-1.png\" \/>\n<meta name=\"author\" content=\"Sourav AJ\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sourav AJ\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-add-swap-space-on-alma-linux-8\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-add-swap-space-on-alma-linux-8\\\/\"},\"author\":{\"name\":\"Sourav AJ\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/255d12fc66a62db365022ecbb5846276\"},\"headline\":\"How To Add Swap Space on Alma Linux 8\",\"datePublished\":\"2024-04-04T07:25:58+00:00\",\"dateModified\":\"2025-01-08T15:06:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-add-swap-space-on-alma-linux-8\\\/\"},\"wordCount\":545,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-add-swap-space-on-alma-linux-8\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/images-1.png\",\"keywords\":[\"Almalinux8\",\"Swap space\"],\"articleSection\":[\"Almalinux 8\",\"Almalinux Server\",\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-add-swap-space-on-alma-linux-8\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-add-swap-space-on-alma-linux-8\\\/\",\"name\":\"Adding Swap Space on AlmaLinux 9: A Step-by-Step Guide\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-add-swap-space-on-alma-linux-8\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-add-swap-space-on-alma-linux-8\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/images-1.png\",\"datePublished\":\"2024-04-04T07:25:58+00:00\",\"dateModified\":\"2025-01-08T15:06:53+00:00\",\"description\":\"Learn how to efficiently add swap space on AlmaLinux 9 with our step-by-step guide. Optimize your system's performance today!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-add-swap-space-on-alma-linux-8\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-add-swap-space-on-alma-linux-8\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-add-swap-space-on-alma-linux-8\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/images-1.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/images-1.png\",\"width\":509,\"height\":99},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-add-swap-space-on-alma-linux-8\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Add Swap Space on Alma Linux 8\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/255d12fc66a62db365022ecbb5846276\",\"name\":\"Sourav AJ\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"caption\":\"Sourav AJ\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Adding Swap Space on AlmaLinux 9: A Step-by-Step Guide","description":"Learn how to efficiently add swap space on AlmaLinux 9 with our step-by-step guide. Optimize your system's performance today!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.skynats.com\/blog\/how-to-add-swap-space-on-alma-linux-8\/","og_locale":"en_US","og_type":"article","og_title":"How To Add Swap Space on Alma Linux 8","og_description":"Learn how to efficiently add swap space on AlmaLinux 9 with our step-by-step guide. Optimize your system's performance today!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-add-swap-space-on-alma-linux-8\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2024-04-04T07:25:58+00:00","article_modified_time":"2025-01-08T15:06:53+00:00","og_image":[{"url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/04\/images-1.png","type":"","width":"","height":""}],"author":"Sourav AJ","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Sourav AJ","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-add-swap-space-on-alma-linux-8\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-add-swap-space-on-alma-linux-8\/"},"author":{"name":"Sourav AJ","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/255d12fc66a62db365022ecbb5846276"},"headline":"How To Add Swap Space on Alma Linux 8","datePublished":"2024-04-04T07:25:58+00:00","dateModified":"2025-01-08T15:06:53+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-add-swap-space-on-alma-linux-8\/"},"wordCount":545,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-add-swap-space-on-alma-linux-8\/#primaryimage"},"thumbnailUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/04\/images-1.png","keywords":["Almalinux8","Swap space"],"articleSection":["Almalinux 8","Almalinux Server","Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-add-swap-space-on-alma-linux-8\/","url":"https:\/\/www.skynats.com\/blog\/how-to-add-swap-space-on-alma-linux-8\/","name":"Adding Swap Space on AlmaLinux 9: A Step-by-Step Guide","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-add-swap-space-on-alma-linux-8\/#primaryimage"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-add-swap-space-on-alma-linux-8\/#primaryimage"},"thumbnailUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/04\/images-1.png","datePublished":"2024-04-04T07:25:58+00:00","dateModified":"2025-01-08T15:06:53+00:00","description":"Learn how to efficiently add swap space on AlmaLinux 9 with our step-by-step guide. Optimize your system's performance today!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-add-swap-space-on-alma-linux-8\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-add-swap-space-on-alma-linux-8\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/how-to-add-swap-space-on-alma-linux-8\/#primaryimage","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/04\/images-1.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/04\/images-1.png","width":509,"height":99},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-add-swap-space-on-alma-linux-8\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Add Swap Space on Alma Linux 8"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/255d12fc66a62db365022ecbb5846276","name":"Sourav AJ","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","caption":"Sourav AJ"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/12234","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=12234"}],"version-history":[{"count":0,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/12234\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=12234"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=12234"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=12234"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}