You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/posts/arch-beginner-setup/index.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ Use your arrow keys to select the first option as shown in the this screenshot.
77
77
78
78
## Arch Installation
79
79
<divstyle="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.
81
81
</div>
82
82
83
83
### Connecting To Internet
@@ -90,15 +90,15 @@ ping google.com
90
90
```
91
91
92
92
<divstyle="text-align: justify">
93
-
If you start receiving data packets then it means you have an internet connection established so skip to <ahref="#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 <ahref="#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:
94
94
</div>
95
95
96
96
```bash
97
97
iwctl
98
98
```
99
99
100
100
<divstyle="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:
102
102
</div>
103
103
104
104
```bash
@@ -114,23 +114,23 @@ device wlan0 show
114
114
```
115
115
116
116
<divstyle="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):
118
118
</div>
119
119
120
120
```bash
121
121
station wlan0 get-networks
122
122
```
123
123
124
124
<divstyle="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):
126
126
</div>
127
127
128
128
```bash
129
129
station wlan0 connect HUAWEI-4bxW
130
130
```
131
131
132
132
<divstyle="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):
134
134
</div>
135
135
136
136
```bash
@@ -146,12 +146,12 @@ exit
146
146
```
147
147
148
148
<divstyle="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.
150
150
</div>
151
151
152
152
### Sync System Packages
153
153
<divstyle="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:
155
155
</div>
156
156
157
157
```bash
@@ -172,7 +172,7 @@ By the time this command completes, your system packages should be synchronized.
172
172
173
173
### Format Disk
174
174
<divstyle="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:
176
176
</div>
177
177
178
178
```bash
@@ -195,7 +195,7 @@ Now when it asks for "Command(? for help):", press "x" and hit enter. Then it wi
195
195
196
196
### Setup Arch Install Script
197
197
<divstyle="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:
0 commit comments