Warning: session_start(): open(/tmp/sess_a07be54a9a85950caf9c4b9db593b8f6, O_RDWR) failed: No such file or directory (2) in /var/www/html/dokuwiki/inc/init.php on line 273
Warning: session_start(): Failed to read session data: files (path: ) in /var/www/html/dokuwiki/inc/init.php on line 273
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/dokuwiki/inc/init.php:273) in /var/www/html/dokuwiki/inc/auth.php on line 535
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/dokuwiki/inc/init.php:273) in /var/www/html/dokuwiki/inc/Action/Export.php on line 109
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/dokuwiki/inc/init.php:273) in /var/www/html/dokuwiki/inc/Action/Export.php on line 109
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/dokuwiki/inc/init.php:273) in /var/www/html/dokuwiki/inc/Action/Export.php on line 109
====== 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''