GroundSeg is a software tool that helps users manage and access their multiple Urbit instances. It simplifies the process of getting onto the Urbit network and provides a range of additional services that enhance the functionality of the user's ship. With a StarTram subscription, users can also access their Urbit ship remotely.
docker
systemd
These are optional external packages for used wifi support:
hostapd
nmcli
Disclaimer: GroundSeg runs with sudo
privileges on your device. This is required for controlling various aspects of the device. For this reason, we recommend a dedicated device.
This installs docker
and the GroundSeg binary. Use this if you do not know what you're doing.
sudo wget -O - get.groundseg.app | bash
This downloads the appropriate service file for you init system and the groundseg binary. Docker has to already be installed.
sudo wget -O - only.groundseg.app | bash
edge
release channel (Unstable)/opt/nativeplanet/groundseg/settings/system.json
, set "updateBranch"
to "edge"
sudo systemctl restart groundseg
build.sh
This removes docker
, docker-compose
, GroundSeg related docker containers and images, and the GroundSeg system files.
This DOES NOT remove the docker volumes on the device.
mkdir -p /tmp/nativeplanet && \
sudo wget -O /tmp/nativeplanet/standard_uninstall.sh \
https://raw.githubusercontent.com/Native-Planet/GroundSeg/master/release/standard_uninstall.sh && \
sudo chmod +x /tmp/nativeplanet/standard_uninstall.sh && \
sudo /tmp/nativeplanet/standard_uninstall.sh
This removes GroundSeg related docker containers and images, and the GroundSeg system files.
mkdir -p /tmp/nativeplanet && \
sudo wget -O /tmp/nativeplanet/groundseg_uninstall.sh \
https://raw.githubusercontent.com/Native-Planet/GroundSeg/master/release/groundseg_uninstall.sh && \
sudo chmod +x /tmp/nativeplanet/groundseg_uninstall.sh && \
sudo /tmp/nativeplanet/groundseg_uninstall.sh
This removes docker
, docker-compose
, ALL docker images, containers and volumes, and the GroundSeg system files.
This wipes all docker and GroundSeg data. Make sure you have exported the data you want saved.
mkdir -p /tmp/nativeplanet && \
sudo wget -O /tmp/nativeplanet/complete_uninstall.sh \
https://raw.githubusercontent.com/Native-Planet/GroundSeg/master/release/complete_uninstall.sh && \
sudo chmod +x /tmp/nativeplanet/complete_uninstall.sh && \
sudo /tmp/nativeplanet/complete_uninstall.sh