RSS Feeds on an interactive webpages are bad, mmmkay? Hits: 31
Category: Daemons
Debian SNMPD Logging, Connection from UDP
If you are getting those useless “Connection from UDP” from the snmpd daemon, specifically on Debian this is the fix. None of that shit you read about editing /etc/default/snmpd works, you have to edit /lib/systemd/system/snmpd.service directly since it doesn’t use /etc/default/snmpd at all. Fucking developers, package maintainers. THIS IS HOW […]
Chrony Clients to the GPS Clocks
apt-get install chrony systemctl enable chrony systemctl start chrony systemctl status chrony /etc/chrony/chrony.conf # Source servers server gps1.my.side iburst server gps2.my.side iburst pool pool.ntp.org maxsources 3 # Act as an NTP server #allow # Only allow chronyc from the localhost cmdallow 127.0.0.1 # Record the rate at which the system […]
Chrony+GPSD (PPS+GPS) on Pi
apt-get update; apt-get -y dist-upgrade; apt -y autoremove; apt clean; apt autoclean root@gps1:~# cat /etc/apt/sources.list deb http://approx.my.side/raspbian/ bullseye main contrib non-free rpi apt clean; apt update; apt upgrade; apt dist-upgrade; apt autoremove reboot apt-get install snmpd apt-get install lsof Configure remote logging ln -s /usr/share/zoneinfo/US/Central /etc/localtime Set swap to 1G […]
Teamspeak Linux Setup
Download proper Teamspeak server for your architecture. Create teamspeak user. tar -xvf *.tar.bz2 vi /etc/systemd/system/teamspeak.service [Unit]Description=TeamSpeak 3 ServerAfter=network.target [Service]WorkingDirectory=/home/teamspeak/ts3s/User=teamspeakGroup=teamspeakType=forkingExecStart=/home/teamspeak/ts3s/ts3server_startscript.sh start inifile=ts3server.iniExecStop=/home/teamspeak/ts3s/ts3server_startscript.sh stopPIDFile=/home/teamspeak/ts3s/ts3server.pidRestartSec=15Restart=always [Install]WantedBy=multi-user.target 5. systemctl start teamspeak 6. cat /usr/local/teamspeak/logs/* | grep “token” 7. Login to Teamspeak using client and enter token to take ownership. Hits: 122