@rubytech/taskmaster 1.0.72 → 1.0.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/build-info.json
CHANGED
package/package.json
CHANGED
|
@@ -1121,6 +1121,50 @@ You need the IP address to connect from another device on your network (e.g., SS
|
|
|
1121
1121
|
|
|
1122
1122
|
Once you have the IP, you can access the setup page at `http://<your-pi-ip>:18789/setup` or connect via SSH with `ssh admin@<your-pi-ip>`.
|
|
1123
1123
|
|
|
1124
|
+
### Enabling SSH on Your Pi
|
|
1125
|
+
|
|
1126
|
+
SSH lets you connect to your Pi from another computer on the same network — no monitor or keyboard needed. Raspberry Pi OS has SSH turned off by default. To enable it:
|
|
1127
|
+
|
|
1128
|
+
**Option 1: From the Pi desktop** (monitor + keyboard)
|
|
1129
|
+
|
|
1130
|
+
1. Click the **Raspberry Pi menu** (top-left corner of the desktop)
|
|
1131
|
+
2. Go to **Preferences** → **Raspberry Pi Configuration**
|
|
1132
|
+
3. Click the **Interfaces** tab
|
|
1133
|
+
4. Set **SSH** to **Enabled**
|
|
1134
|
+
5. Click **OK**
|
|
1135
|
+
|
|
1136
|
+
**Option 2: From the Pi terminal**
|
|
1137
|
+
|
|
1138
|
+
1. Open Terminal (taskbar or Ctrl+Alt+T)
|
|
1139
|
+
2. Run:
|
|
1140
|
+
```
|
|
1141
|
+
sudo systemctl enable --now ssh
|
|
1142
|
+
```
|
|
1143
|
+
|
|
1144
|
+
**Option 3: Before first boot** (headless setup — no monitor needed)
|
|
1145
|
+
|
|
1146
|
+
If you're setting up the Pi using Raspberry Pi Imager:
|
|
1147
|
+
|
|
1148
|
+
1. In Raspberry Pi Imager, click the **gear icon** (or press Ctrl+Shift+X) before writing the SD card
|
|
1149
|
+
2. Check **Enable SSH** and set a password
|
|
1150
|
+
3. Write the SD card and boot the Pi
|
|
1151
|
+
|
|
1152
|
+
Or, if the SD card is already written:
|
|
1153
|
+
|
|
1154
|
+
1. Insert the SD card into your computer
|
|
1155
|
+
2. Create an empty file called `ssh` (no extension) in the **boot** partition
|
|
1156
|
+
3. Eject the card and boot the Pi
|
|
1157
|
+
|
|
1158
|
+
**After enabling SSH**, connect from another computer:
|
|
1159
|
+
|
|
1160
|
+
```
|
|
1161
|
+
ssh admin@taskmaster.local
|
|
1162
|
+
```
|
|
1163
|
+
|
|
1164
|
+
Enter the password when prompted. The default password depends on how the Pi was set up — typically `taskmaster` for pre-installed devices, or whatever you chose during Raspberry Pi OS setup.
|
|
1165
|
+
|
|
1166
|
+
> **Security tip:** Change the default password after your first SSH login by running `passwd` on the Pi.
|
|
1167
|
+
|
|
1124
1168
|
---
|
|
1125
1169
|
|
|
1126
1170
|
## Public-Facing Messages (DM Policy)
|