Skip to content

Commit 802f9ee

Browse files
committed
Fixed Typos in Arch Linux Beginner Setup
1 parent b3f36bc commit 802f9ee

3 files changed

Lines changed: 22 additions & 22 deletions

File tree

content/posts/arch-beginner-setup/index.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Use your arrow keys to select the first option as shown in the this screenshot.
7777

7878
## Arch Installation
7979
<div style="text-align: justify">
80-
Now we are going to dive into the actual installation process of Arch Linux on our system. By now you should be on a command line interface and the system should be waiting for you to start entering the commands. First of all lets clear the screen to not be disturbed by all the pre-existing text, for this press "Ctrl + L", this will clear the terminal anytime of all the text. Now follow each command precisely to not face any difficulties during the installation.
80+
Now we are going to dive into the actual installation process of Arch Linux on our system. By now you should be on a command line interface and the system should be waiting for you to start entering the commands. First of all let's clear the screen to not be disturbed by all the pre-existing text, for this press "Ctrl + L", this will clear the terminal anytime of all the text. Now follow each command precisely to not face any difficulties during the installation.
8181
</div>
8282

8383
### Connecting To Internet
@@ -90,15 +90,15 @@ ping google.com
9090
```
9191

9292
<div style="text-align: justify">
93-
If you start receiving data packets then it means you have an internet connection established so skip to <a href="#sync-system-packages">Sync System Packages</a>, but if you receive an error message "Temporary Failure in name resolution" then type in the following command:
93+
If you start receiving data packets then it means you have an internet connection established so skip to <a href="#sync-system-packages">Sync System Packages</a>, but if you receive an error message "Temporary Failure in name resolution", then type in the following command:
9494
</div>
9595

9696
```bash
9797
iwctl
9898
```
9999

100100
<div style="text-align: justify">
101-
This command is basically is our gateway to the internet, after running this command we will enter the iwctl CLI (command line interface), then we need to check our NIC (Network Interface Card). So now type the following:
101+
This command is basically is our gateway to the internet. After running this command, we will enter the iwctl CLI (command line interface). Then we need to check our NIC (Network Interface Card). So now type the following:
102102
</div>
103103

104104
```bash
@@ -114,23 +114,23 @@ device wlan0 show
114114
```
115115

116116
<div style="text-align: justify">
117-
You will get some additional info about you NIC. After this we need to run our next command, so type the following command to get a list of all the networks on our NIC, (replace wlan0 with your own NIC name):
117+
You will get some additional info about you NIC. After this, we need to run our next command. So type the following command to get a list of all the networks on our NIC, (replace wlan0 with your own NIC name):
118118
</div>
119119

120120
```bash
121121
station wlan0 get-networks
122122
```
123123

124124
<div style="text-align: justify">
125-
This will give us the list of the wifi networks that are detected by out NIC, now my wifi is called "HUAWEI-4bxW" so I will type the connect command next, (replace wlan0 and the wifi name with your own):
125+
This will give us the list of the wifi networks that are detected by our NIC. Now my wifi is called "HUAWEI-4bxW", so I will type the connect command next, (replace wlan0 and the wifi name with your own):
126126
</div>
127127

128128
```bash
129129
station wlan0 connect HUAWEI-4bxW
130130
```
131131

132132
<div style="text-align: justify">
133-
Terminal will prompt you to enter your wifi password so enter your password (it will appear as *s on the screen like):
133+
Terminal will prompt you to enter your wifi password, so enter your password (it will appear as *s on the screen like):
134134
</div>
135135

136136
```bash
@@ -146,12 +146,12 @@ exit
146146
```
147147

148148
<div style="text-align: justify">
149-
Now try the "ping google.com" command again to check if internet is connected correctly, this time you will start receiving data packets perfectly, upnext is the syncronization of system pakages.
149+
Now try the "ping google.com" command again to check if internet is connected correctly, this time you will start receiving data packets perfectly. Upnext is the syncronization of system pakages.
150150
</div>
151151

152152
### Sync System Packages
153153
<div style="text-align: justify">
154-
Now we need to synchronize system packages, for this we will run the following command:
154+
Now we need to synchronize system packages. For this, we will run the following command:
155155
</div>
156156

157157
```bash
@@ -172,7 +172,7 @@ By the time this command completes, your system packages should be synchronized.
172172

173173
### Format Disk
174174
<div style="text-align: justify">
175-
Clear the screen using "Ctrl+L", now let's start formatting the disk. Type the following command to display the list of your disk partitions:
175+
Clear the screen using "Ctrl+L". Now let's start formatting the disk. Type the following command to display the list of your disk partitions:
176176
</div>
177177

178178
```bash
@@ -195,7 +195,7 @@ Now when it asks for "Command(? for help):", press "x" and hit enter. Then it wi
195195

196196
### Setup Arch Install Script
197197
<div style="text-align: justify">
198-
Now after all this, type in the following command to check the authenticity and integrity of the Arch Linux packages, this command makes sure that the packages are trusted before installation:
198+
Now after all this, type in the following command to check the authenticity and integrity of the Arch Linux packages, this command makes sure that the packages are from trusted sources before installation:
199199
</div>
200200

201201
```bash

0 commit comments

Comments
 (0)