diff --git a/devlog.html b/devlog.html index c85e07b..295dc2a 100644 --- a/devlog.html +++ b/devlog.html @@ -4,7 +4,7 @@ - Nirmal Kumar R - blog + Nirmal Kumar R - devlog diff --git a/devlog/how-to-install-arch-linux.html b/devlog/how-to-install-arch-linux.html index e69de29..26a6e9c 100644 --- a/devlog/how-to-install-arch-linux.html +++ b/devlog/how-to-install-arch-linux.html @@ -0,0 +1,92 @@ + + + + + + + Nirmal Kumar R - How to install Arch Linux + + + + + +

NIRMAL KUMAR R

+
+ + + +
+
How to install Arch Linux [2024-10-13]
+ +
+

+ This post emphises my way of installing Arch Linux. If you think, I + could improve upon something on this post, you can start shouting at + me via my email address which you can find in this website. +

+

+ The Arch Linux is my favorite flavor of Linux to use as my daily + driver. It's simplicity combined with a vast and detailed documentation + is splendid. The installation of Arch Linux on the official page is + minimal and intentionally kept this way to install only the packages + we require. +

+

+ You can find the ISO image download on the + Arch Linux website. I'll + keep the creating of a bootable disk to the exercise for the readers. +

+

+ These are the steps, I'm going to focus on writing here. +

+

+

+

# Connecting to the internet

+ Enter the command ip link on your terminal. + You will see the list of Ethernet or Wireless network interfaces. + Make sure, the network interface appears on the list. +

+

+ We are going to use and config wpa_supplicant. + First step is to open this file: +

+	    vim /etc/wpa_supplicant/wpa_supplicant.conf
+	  
+ and enter the network credentials (in my case, it is my mobile personal + hotspot): +
+	    network={
+   ssid="<your-hotspot-name>"
+   psk="<your-hostspot-password>"
+ } +
+ Save and close the editor. Now type in the below command with your + network interface name and enter: +
+	  wpa_supplicant -B -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant.conf
+	  
+

+
+
+ + + + diff --git a/style.css b/style.css index 5bacef9..b63c2b7 100644 --- a/style.css +++ b/style.css @@ -61,6 +61,21 @@ p { hyphens: auto; } +span.pre { + background: #DDD; + padding: 0.2em 0.4em; +} + +pre { + margin: 1em 0; + padding: 0.2em 0.4em; + background: #ddd; + white-space: nowrap; + display: block; + overflow-x: auto; + overflow-y: hidden; +} + .header { display: flex; align-items: center;