{"id":1146,"date":"2022-07-09T16:25:09","date_gmt":"2023-09-19T08:26:00","guid":{"rendered":"https:\/\/www.silicloud.com\/blog\/uncategorized\/what-steps-should-be-taken-following-the-installation-of-arch-linux\/"},"modified":"2024-03-04T15:04:21","modified_gmt":"2024-03-04T15:04:21","slug":"installation-of-arch-linux","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/blog\/installation-of-arch-linux\/","title":{"rendered":"Installation of Arch Linux"},"content":{"rendered":"<p>With a vanilla Arch Linux installation, you get the bare bones of an operating system without any pre-installed utilities. This empowers users to customize and dictate the behavior of their OS according to their preferences, giving them total control over their system.<\/p>\n<p>After installing Arch Linux, you will initially encounter a bare black screen that can be customized according to your preferences. This module will guide you through the necessary steps for setting up <a href=\"https:\/\/archlinux.org\/\">Arch Linux<\/a>.<\/p>\n<h2>1. Keep the System Up to Date<\/h2>\n<p>Before anything else, make sure to update the system using the pacman command.<\/p>\n<pre class=\"post-pre\"><code>$ <span class=\"token function\">sudo<\/span> pacman <span class=\"token parameter variable\">-Syyu<\/span>\r\n<\/code><\/pre>\n<p>We are now able to proceed with the installation of packages and other applications on our system!<\/p>\n<h2>2. Set up a Display Server<\/h2>\n<p>In order to obtain a graphical user interface, the initial step involves the installation of a Display Server. The most commonly used choice for this purpose is xorg, which happens to be one of the oldest and highly favored display servers available.<\/p>\n<pre class=\"post-pre\"><code>$ <span class=\"token function\">sudo<\/span> pacman <span class=\"token parameter variable\">-S<\/span> xorg\r\n<\/code><\/pre>\n<h2>Install a desktop environment on your computer.<\/h2>\n<p>After that, we will reuire a Desktop Environment for our distribution. Some well-liked options are:<\/p>\n<ul class=\"post-ul\">\n<li>Xfce4<\/li>\n<li>KDE Plasma<\/li>\n<li>Gnome<\/li>\n<li>Cinnamon<\/li>\n<li>MATE<\/li>\n<\/ul>\n<p>To initiate the installation of Xfce4:<\/p>\n<pre class=\"post-pre\"><code>$ <span class=\"token function\">sudo<\/span> pacman <span class=\"token parameter variable\">-S<\/span> xfce4 xfce4-goodies\r\n<\/code><\/pre>\n<p>To set up KDE Plasma:<\/p>\n<pre class=\"post-pre\"><code>$ <span class=\"token function\">sudo<\/span> pacman <span class=\"token parameter variable\">-S<\/span> plasma\r\n<\/code><\/pre>\n<p>To set up Gnome:<\/p>\n<pre class=\"post-pre\"><code>$ <span class=\"token function\">sudo<\/span> pacman <span class=\"token parameter variable\">-S<\/span> gnome gnome-extra\r\n<\/code><\/pre>\n<p>To set up Cinnamon:<\/p>\n<pre class=\"post-pre\"><code>$ <span class=\"token function\">sudo<\/span> pacman <span class=\"token parameter variable\">-S<\/span> cinnamon nemo-fileroller\r\n<\/code><\/pre>\n<p>To set up MATE:<\/p>\n<pre class=\"post-pre\"><code>$ <span class=\"token function\">sudo<\/span> pacman <span class=\"token parameter variable\">-S<\/span> mate mate-extra\r\n<\/code><\/pre>\n<h2>Install a display manager on your device.<\/h2>\n<p>Following that, we would reuire a Display Manager that allows us to access our Desktop Environments. Some popular options include:<\/p>\n<ul class=\"post-ul\">\n<li>LightDM<\/li>\n<li>LXDM<\/li>\n<li>SDDM<\/li>\n<\/ul>\n<p>To set up LightDM:<\/p>\n<pre class=\"post-pre\"><code>$ <span class=\"token function\">sudo<\/span> pacman <span class=\"token parameter variable\">-S<\/span> lightdm lightdm-gtk-greeter lightdm-gtk-greeter-settings\r\n<\/code><\/pre>\n<p>To activate lightdm, use the following command:<\/p>\n<pre class=\"post-pre\"><code>$ <span class=\"token function\">sudo<\/span> systemctl <span class=\"token builtin class-name\">enable<\/span> lightdm\r\n<\/code><\/pre>\n<p>To set up LXDM:<\/p>\n<pre class=\"post-pre\"><code>$ pacman <span class=\"token parameter variable\">-S<\/span> lxdm\r\n<\/code><\/pre>\n<p>To activate LXDM, use the following command:<\/p>\n<pre class=\"post-pre\"><code>$ <span class=\"token function\">sudo<\/span> systemctl <span class=\"token builtin class-name\">enable<\/span> lxdm.service\r\n<\/code><\/pre>\n<p>To set up SDDM, follow these steps:<\/p>\n<pre class=\"post-pre\"><code>$ <span class=\"token function\">sudo<\/span> pacman <span class=\"token parameter variable\">-S<\/span> sddm\r\n<\/code><\/pre>\n<p>To activate SDDM, use the following command:<\/p>\n<pre class=\"post-pre\"><code>$ <span class=\"token function\">sudo<\/span> systemctl <span class=\"token builtin class-name\">enable<\/span> sddm\r\n<\/code><\/pre>\n<h2>5. Get an AUR Helper installed.<\/h2>\n<p>Paru is the recommended AUR Helper due to its vast collection of packages and applications in the Arch User Repository (AUR). Although pacman cannot directly fetch these packages, specialized programs like paru are needed for this task. Numerous AUR Helpers exist, but paru is our top choice.<\/p>\n<p>To set up Paru on your device:<\/p>\n<pre class=\"post-pre\"><code>$ <span class=\"token function\">sudo<\/span> pacman <span class=\"token parameter variable\">-S<\/span> base-devel <span class=\"token function\">git<\/span> <span class=\"token parameter variable\">--needed<\/span> \r\n$ <span class=\"token builtin class-name\">cd<\/span> paru\r\n$ makepkg <span class=\"token parameter variable\">-si<\/span>\r\n<\/code><\/pre>\n<p>We can now retrieve packages from AUR using:<\/p>\n<pre class=\"post-pre\"><code>$ paru <span class=\"token parameter variable\">-S<\/span> <span class=\"token operator\">&lt;<\/span>PACAKGE-NAME<span class=\"token operator\">&gt;<\/span>\r\n<\/code><\/pre>\n<h2>6. Add more kernels to your system&#8217;s installation.<\/h2>\n<p>It is deemed advisable to have several kernels readily available in case the primary kernel encounters any problems.<\/p>\n<p>Some of the well-known kernels, aside from the mainline Linux Kernel, include:<\/p>\n<ul class=\"post-ul\">\n<li>Linux LTS Kernel<\/li>\n<li>Linux Hardened Kernel<\/li>\n<li>Linux Zen Kernel<\/li>\n<\/ul>\n<p>To install the long-term support kernel:<\/p>\n<pre class=\"post-pre\"><code>$ <span class=\"token function\">sudo<\/span> pacman <span class=\"token parameter variable\">-S<\/span> linux-lts linux-lts-headers\r\n<\/code><\/pre>\n<p>In order to setup the Hardened kernel:<\/p>\n<pre class=\"post-pre\"><code>$ <span class=\"token function\">sudo<\/span> pacman <span class=\"token parameter variable\">-S<\/span> linux-hardened linux-hardened-headers\r\n<\/code><\/pre>\n<p>To carry out the installation of the Zen kernel:<\/p>\n<pre class=\"post-pre\"><code>$ <span class=\"token function\">sudo<\/span> pacman <span class=\"token parameter variable\">-S<\/span> linux-zen linux-zen-headers\r\n<\/code><\/pre>\n<h2>7. Set up the Microcode.<\/h2>\n<p>After the installation of Arch, it is advisable to install stability and security updates for the processor microcode released by the manufacturers. These updates include necessary bug fixes that are important for the smooth functioning of your system. Neglecting them may result in random crashes or sudden system stops, making it challenging to identify the root cause. Therefore, it is highly recommended to prioritize the installation of these updates for the sake of ensuring stability.<\/p>\n<p>For processors made by Intel:<\/p>\n<pre class=\"post-pre\"><code>$ <span class=\"token function\">sudo<\/span> pacman <span class=\"token parameter variable\">-S<\/span> intel-ucode\r\n$ <span class=\"token function\">sudo<\/span> <span class=\"token function\">grub-mkconfig<\/span> <span class=\"token parameter variable\">-o<\/span> \/boot\/grub\/grub.cfg\r\n<\/code><\/pre>\n<p>For processors made by AMD:<\/p>\n<pre class=\"post-pre\"><code>$ <span class=\"token function\">sudo<\/span> pacman <span class=\"token parameter variable\">-S<\/span> linux-firmware\r\n$ <span class=\"token function\">sudo<\/span> <span class=\"token function\">grub-mkconfig<\/span> <span class=\"token parameter variable\">-o<\/span> \/boot\/grub\/grub.cfg\r\n<\/code><\/pre>\n<h2>8. Organize the lists of mirrors by their ranking.<\/h2>\n<p>To achieve faster updates, prioritize your mirrors based on their speed. Start by creating a backup of your existing mirrorlist.<\/p>\n<pre class=\"post-pre\"><code><span class=\"token comment\"># mv \/etc\/pacman.d\/mirrorlist \/etc\/pacman.d\/mirrorlist.bak<\/span>\r\n<\/code><\/pre>\n<p>Next, we will proceed to prioritize mirrors according to their speed.<\/p>\n<pre class=\"post-pre\"><code><span class=\"token comment\">#  rankmirrors \/etc\/pacman.d\/mirrorlist.bak &gt; \/etc\/pacman.d\/mirrorlist<\/span>\r\n<\/code><\/pre>\n<h2>In conclusion, to summarize<\/h2>\n<p>In this module, we discussed the necessary tasks to be performed after an Arch installation. There are still many things to be done, particularly related to installing crucial applications. However, we will let the reader decide which applications they prefer to work with!<\/p>\n<p>&nbsp;<\/p>\n<p>other Linux tutorial<\/p>\n<p><a class=\"LinkSuggestion__Link-sc-1gewdgc-4 cLBplk\" href=\"https:\/\/www.silicloud.com\/blog\/partition-in-linux\/\" target=\"_blank\" rel=\"noopener\">Partition in Linux Step-by-Step Guide<span class=\"sc-gswNZR eASTkv\">(Opens in a new browser tab)<\/span><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>With a vanilla Arch Linux installation, you get the bare bones of an operating system without any pre-installed utilities. This empowers users to customize and dictate the behavior of their OS according to their preferences, giving them total control over their system. After installing Arch Linux, you will initially encounter a bare black screen that [&hellip;]<\/p>\n","protected":false},"author":10,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","footnotes":""},"categories":[1],"tags":[],"class_list":["post-1146","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.5 (Yoast SEO v21.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Installation of Arch Linux - Blog - Silicon Cloud<\/title>\n<meta name=\"description\" content=\"With a vanilla Arch Linux installation, you get the bare bones of an operating system without any pre-installed utilities.\" \/>\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.silicloud.com\/blog\/installation-of-arch-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Installation of Arch Linux\" \/>\n<meta property=\"og:description\" content=\"With a vanilla Arch Linux installation, you get the bare bones of an operating system without any pre-installed utilities.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/blog\/installation-of-arch-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/SiliCloudGlobal\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-09-19T08:26:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-04T15:04:21+00:00\" \/>\n<meta name=\"author\" content=\"Jackson Davis\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@SiliCloudGlobal\" \/>\n<meta name=\"twitter:site\" content=\"@SiliCloudGlobal\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jackson Davis\" \/>\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.silicloud.com\/blog\/installation-of-arch-linux\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/installation-of-arch-linux\/\"},\"author\":{\"name\":\"Jackson Davis\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/55a10b8b0457c35884c25677889ad350\"},\"headline\":\"Installation of Arch Linux\",\"datePublished\":\"2023-09-19T08:26:00+00:00\",\"dateModified\":\"2024-03-04T15:04:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/installation-of-arch-linux\/\"},\"wordCount\":606,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\"},\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/installation-of-arch-linux\/\",\"url\":\"https:\/\/www.silicloud.com\/blog\/installation-of-arch-linux\/\",\"name\":\"Installation of Arch Linux - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#website\"},\"datePublished\":\"2023-09-19T08:26:00+00:00\",\"dateModified\":\"2024-03-04T15:04:21+00:00\",\"description\":\"With a vanilla Arch Linux installation, you get the bare bones of an operating system without any pre-installed utilities.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/installation-of-arch-linux\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/blog\/installation-of-arch-linux\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/installation-of-arch-linux\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.silicloud.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Installation of Arch Linux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#website\",\"url\":\"https:\/\/www.silicloud.com\/blog\/\",\"name\":\"Silicon Cloud Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\",\"name\":\"Silicon Cloud Blog\",\"url\":\"https:\/\/www.silicloud.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png\",\"contentUrl\":\"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png\",\"width\":1024,\"height\":1024,\"caption\":\"Silicon Cloud Blog\"},\"image\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/SiliCloudGlobal\/\",\"https:\/\/twitter.com\/SiliCloudGlobal\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/55a10b8b0457c35884c25677889ad350\",\"name\":\"Jackson Davis\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/2fdb47d6df1226e92380d96973782572a97b0675d098bb914410dec348eb5d29?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/2fdb47d6df1226e92380d96973782572a97b0675d098bb914410dec348eb5d29?s=96&d=mm&r=g\",\"caption\":\"Jackson Davis\"},\"url\":\"https:\/\/www.silicloud.com\/blog\/author\/jacksondavis\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Installation of Arch Linux - Blog - Silicon Cloud","description":"With a vanilla Arch Linux installation, you get the bare bones of an operating system without any pre-installed utilities.","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.silicloud.com\/blog\/installation-of-arch-linux\/","og_locale":"en_US","og_type":"article","og_title":"Installation of Arch Linux","og_description":"With a vanilla Arch Linux installation, you get the bare bones of an operating system without any pre-installed utilities.","og_url":"https:\/\/www.silicloud.com\/blog\/installation-of-arch-linux\/","og_site_name":"Blog - Silicon Cloud","article_publisher":"https:\/\/www.facebook.com\/SiliCloudGlobal\/","article_published_time":"2023-09-19T08:26:00+00:00","article_modified_time":"2024-03-04T15:04:21+00:00","author":"Jackson Davis","twitter_card":"summary_large_image","twitter_creator":"@SiliCloudGlobal","twitter_site":"@SiliCloudGlobal","twitter_misc":{"Written by":"Jackson Davis","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.silicloud.com\/blog\/installation-of-arch-linux\/#article","isPartOf":{"@id":"https:\/\/www.silicloud.com\/blog\/installation-of-arch-linux\/"},"author":{"name":"Jackson Davis","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/55a10b8b0457c35884c25677889ad350"},"headline":"Installation of Arch Linux","datePublished":"2023-09-19T08:26:00+00:00","dateModified":"2024-03-04T15:04:21+00:00","mainEntityOfPage":{"@id":"https:\/\/www.silicloud.com\/blog\/installation-of-arch-linux\/"},"wordCount":606,"commentCount":0,"publisher":{"@id":"https:\/\/www.silicloud.com\/blog\/#organization"},"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/blog\/installation-of-arch-linux\/","url":"https:\/\/www.silicloud.com\/blog\/installation-of-arch-linux\/","name":"Installation of Arch Linux - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/blog\/#website"},"datePublished":"2023-09-19T08:26:00+00:00","dateModified":"2024-03-04T15:04:21+00:00","description":"With a vanilla Arch Linux installation, you get the bare bones of an operating system without any pre-installed utilities.","breadcrumb":{"@id":"https:\/\/www.silicloud.com\/blog\/installation-of-arch-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/blog\/installation-of-arch-linux\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/blog\/installation-of-arch-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.silicloud.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Installation of Arch Linux"}]},{"@type":"WebSite","@id":"https:\/\/www.silicloud.com\/blog\/#website","url":"https:\/\/www.silicloud.com\/blog\/","name":"Silicon Cloud Blog","description":"","publisher":{"@id":"https:\/\/www.silicloud.com\/blog\/#organization"},"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.silicloud.com\/blog\/#organization","name":"Silicon Cloud Blog","url":"https:\/\/www.silicloud.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png","contentUrl":"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png","width":1024,"height":1024,"caption":"Silicon Cloud Blog"},"image":{"@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/SiliCloudGlobal\/","https:\/\/twitter.com\/SiliCloudGlobal"]},{"@type":"Person","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/55a10b8b0457c35884c25677889ad350","name":"Jackson Davis","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/2fdb47d6df1226e92380d96973782572a97b0675d098bb914410dec348eb5d29?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2fdb47d6df1226e92380d96973782572a97b0675d098bb914410dec348eb5d29?s=96&d=mm&r=g","caption":"Jackson Davis"},"url":"https:\/\/www.silicloud.com\/blog\/author\/jacksondavis\/"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/1146","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/comments?post=1146"}],"version-history":[{"count":2,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/1146\/revisions"}],"predecessor-version":[{"id":1650,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/1146\/revisions\/1650"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/media?parent=1146"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/categories?post=1146"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/tags?post=1146"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}