mirror of https://github.com/CIRCL/Circlean
Update image setup docs - disabling services
parent
624796190b
commit
c93941079e
|
@ -38,6 +38,7 @@
|
||||||
* Symlink /proc/mounts to /etc/mtab
|
* Symlink /proc/mounts to /etc/mtab
|
||||||
* Turn on rc-local.service `systemctl enable rc-local.service`
|
* Turn on rc-local.service `systemctl enable rc-local.service`
|
||||||
- If it doesn't work, read these instructions: https://www.linuxbabe.com/linux-server/how-to-enable-etcrc-local-with-systemd
|
- If it doesn't work, read these instructions: https://www.linuxbabe.com/linux-server/how-to-enable-etcrc-local-with-systemd
|
||||||
|
* Disable networking.service, bluetooth.service, and dchpcd.service
|
||||||
* apt-get autoclean
|
* apt-get autoclean
|
||||||
* apt-get autoremove
|
* apt-get autoremove
|
||||||
* Exit from proot
|
* Exit from proot
|
||||||
|
|
|
@ -185,6 +185,13 @@ This is what triggers CIRCLean to run.
|
||||||
```
|
```
|
||||||
systemctl enable rc-local.service
|
systemctl enable rc-local.service
|
||||||
```
|
```
|
||||||
|
* Turn off several networking related services. This speeds up boot and reduces the
|
||||||
|
attack surface:
|
||||||
|
```
|
||||||
|
systemctl disable networking.service
|
||||||
|
systemctl disable bluetooth.service
|
||||||
|
systemctl disable dhcpcd.service
|
||||||
|
```
|
||||||
* Clean up:
|
* Clean up:
|
||||||
```
|
```
|
||||||
apt-get clean
|
apt-get clean
|
||||||
|
|
Loading…
Reference in New Issue