Skip to content

Commit d5efce8

Browse files
committed
Small improvements of instructions for Raspberry Pi 4 Model B
1 parent f125a76 commit d5efce8

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

Raspberry_Pi_4_Model_B/As_WiFi_AP/01_Write_OS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
- Select your SD Card
1111
- Click gear icon (advanced settings menu)
1212
- Check ON: Set hostname: raspberrypi.local
13-
- ** Check ON: Enable SSH **
14-
- ** Check OFF: Configure WiFi **
13+
- **Check ON: Enable SSH**
14+
- **Check OFF: Configure WiFi**
1515
- Check ON: Set locale settings
1616
- Enter your Time zone and Keyboard layout
1717
- WRITE

Raspberry_Pi_4_Model_B/As_WiFi_AP/02_SSH_to_Pi.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
- Insert Micro SD Card to your Raspberry Pi
44
- Connect the USB-C power adapter to your Raspberry Pi
5+
- Connect the Network cable to your Raspberry Pi
56

67
### SSH Log in to your Raspberry Pi
78

Raspberry_Pi_4_Model_B/As_WiFi_AP/03_Setup_hostapd.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Edit `/etc/dhcpcd.conf`
66

77
- `sudo vim /etc/dhcpcd.conf`
8+
- To enter the insert mode of vim, press `i`
89
- ADD following lines to the END of file:
910

1011
```
@@ -13,10 +14,13 @@ interface wlan0
1314
nohook wpa_supplicant
1415
```
1516

17+
- To Save and Exit vim, press `Esc`, then input `:wq!`
18+
1619
### Add `/etc/hostapd/hostapd.conf`
1720

1821
- `sudo vim /etc/hostapd/hostapd.conf`
19-
- Create a new file with the following contents
22+
- To enter the insert mode of vim, press `i`
23+
- Create a new file with the following contents:
2024

2125
```
2226
country_code=JP
@@ -31,6 +35,8 @@ wpa_pairwise=TKIP
3135
rsn_pairwise=CCMP
3236
```
3337

38+
- To Save and Exit vim, press `Esc`, then input `:wq!`
39+
3440
### Star up `hostapd`
3541

3642
- Unblock WiFi

Raspberry_Pi_4_Model_B/As_WiFi_AP/04_Setup_dnsmasq.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
### Edit `/etc/dnsmasq.conf`
66

77
- `sudo mv /etc/dnsmasq.conf /etc/dnsmasq.conf.orig`
8-
- `sudo vim /etc/dnsmasq.conf` and rewrite as following:
8+
- `sudo vim /etc/dnsmasq.conf`
9+
- To enter the insert mode of vim, press `i`
10+
- Rewrite all as following:
911

1012
```
1113
# Listening interface
@@ -22,6 +24,8 @@ domain=local
2224
expand-hosts
2325
```
2426

27+
- To Save and Exit vim, press `Esc`, then input `:wq!`
28+
2529
### Start up `dnsmasq`
2630

2731
- Start up `dnsmasq`

0 commit comments

Comments
 (0)