mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 02:11:53 +00:00
21 lines
423 B
Bash
21 lines
423 B
Bash
#!/bin/bash
|
|
apt update
|
|
apt install -y libsecp256k1-0
|
|
apt install -y tor
|
|
apt install -y docker.io
|
|
apt install -y iotop
|
|
apt install -y bmon
|
|
apt autoremove -y
|
|
mkdir -p /root/volumes
|
|
mkdir -p /root/tmp/appmgr
|
|
mkdir -p /root/agent
|
|
mkdir -p /root/appmgr/tor
|
|
systemctl enable lifeline
|
|
systemctl enable agent
|
|
systemctl enable ssh
|
|
systemctl enable avahi-daemon
|
|
passwd -l root
|
|
passwd -l pi
|
|
sync
|
|
systemctl disable setup.service
|
|
reboot |