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/raspberry-pi/raspian-lite.md
+1-2
Original file line number
Diff line number
Diff line change
@@ -24,8 +24,7 @@ Download the newest copy of Raspbian Lite from the [Raspberry Pi website](https:
24
24
After downloading, the file needs to be trasferred to a microSD card for installation.
25
25
I used [Etcher](https://www.balena.io/etcher/) to write the `.zip` file to the card.
26
26
27
-
**IMPORTANT** Create a file in the root directory of the `boot` folder with the name `ssh`.
28
-
This will allow you to log into the Pi for the rest of the installation steps.
27
+
**Create a file in the root directory of the `boot` folder with the name `ssh`. This will allow you to log into the Pi for the rest of the installation steps.**
WARNING_MESSAGE = "WARNING: Unauthorized access to this system is forbidden and will be prosecuted by law. By accessing this system, you agree that your actions may be monitored if unauthorized usage is suspected."
9
+
10
+
# Helpers
11
+
functionadd_variable () {
12
+
stringToAdd = $1
13
+
inputFile = $2
14
+
15
+
echo"$stringToAdd">>$inputFile
16
+
}
17
+
18
+
functionadd_or_change_variable () {
19
+
searchString = $1
20
+
replacementString = $2
21
+
inputFile = $3
22
+
23
+
if grep -q $searchString$inputFile;then
24
+
sed -i "/$searchString/s/.*/$replacementString/"$inputFile
25
+
else
26
+
add_variable $replacementString$inputFile
27
+
fi
28
+
}
29
+
30
+
functionreplace_file_contents () {
31
+
content = $1
32
+
inputFileName = $2
33
+
inputFile = $3
34
+
35
+
echo$content| sudo tee $inputFileName>$inputFile
36
+
}
37
+
38
+
# -- On host system --
39
+
# Login pi@ip
40
+
# tip: Add ssh folder to boot drive to enable ssh
41
+
42
+
# Add ip of your raspberry-pi
43
+
# vi /etc/resolvconf/resolv.conf.d/head
44
+
# 192.168.0.2
45
+
# Log out and back in
46
+
# In the router, set the DNS server to your raspberry pi
0 commit comments