====== ntripserver ====== From: https://simeononsecurity.com/other/onocoy-gps-gnss-reciever-basestation-on-a-budget/#option-1-ntrip-server On debian-based systems - Clone repo ''sudo git clone https://github.com/simeononsecurity/ntripserver'' - Install dependencies ''sudo apt install -y socat git make build-essential'' - Build & install ''cd ntripserver ; make ; sudo cp ntripserver /bin/.'' - Create systemd unit file - ''sudo micro /etc/systemd/system/ntripserver.service'' - [Unit] Description=NTRIP Server Service After=network.target Wants=network-online.target After=network-online.target [Service] ExecStart=/usr/ntripserver -M 1 -i /dev/ttyUSB0 -b 921600 -O 1 -a server.org -p 2101 -m mountpoint -n username -c password Restart=always RestartSec=120 TimeoutStartSec=300 User=root [Install] WantedBy=default.target - ''sudo systemctl daemon-reload'' - ''sudo systemctl enable --now ntripserver''