apt install gcc g++ cmake git clone https://github.com/raspberrypi/userland.git ./buildme –aarch64 echo “/opt/vc/lib” >> /etc/ld.so.conf.d/vclib.conf ln -s /opt/vc/bin/vcgencmd /usr/bin/vcgencmd <OR> Add to path ldconfig Hits: 5
MariaDB + iSCSI
Running MariaDB on iscsi LUNs normally results in it not starting automatically at boot since, by default, it’s not configured to start after (or wait for) the iscsi daemons. /usr/lib/systemd/system/mariadb.service Original: After=network.target Changed: After=network.target open-iscsi.service iscsid.service iscsid.socket systemctl daemon-reload Hits: 3
Ubiquiti Rebranding
“On one hand, it’s silly to complain about free software that comes with low-priced networking equipment. On the other hand, UISP isn’t the feature-packed all-in-one network management and configuration solution that Ubiquiti claims it to be. What concerns me the most is Ubiquiti’s stated goals, and their history of releasing […]
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 […]