Category

Linux

All things *nix.

82 articles in this category

Wireguard Setup on Debian 13

February 20, 2026 5 min read

Clean, minimal, self-hosted WireGuard setup with: Full tunnel support NAT for internet access Multi-user capability Per-user access control via firewall 0. Assumptions Public interface: eth0 VPN subnet: 10.10.10.0/24 Server is…

ISPConfig3 – DNSSEC ERROR: We are low on entropy.

July 20, 2022 2 min read

It seems that ISPConfig3 checks for entropy availability to be below 200 and also 400 per the following file, /usr/local/ispconfig/server/bind_plugin.inc.php. Line 93 and line 210 check for entropy…

How to remove a systemd service

May 4, 2022 1 min read

I'm not sure why systemd doesn't remove the service, but to do so you can run through the following commands. Also check /etc/init.d/[servicename] as there may be a…

Cacti Server

April 20, 2022 2 min read

Input Validation Whitelist Protection Cacti Data Input methods that call a script can be exploited in ways that a non-administrator can perform damage to either files owned by…

Test SMTP Auth and StartTLS

April 13, 2022 1 min read

To test SMTP auth with StartTLS, I used the following method. Base64 encode the username and password. echo -ne "yourpassword" | base64 eW91cnBhc3N3b3Jk echo -ne "your@email.com" | base64…

Installing Debian 11.3 on my Lenovo Yoga 2

April 12, 2022 1 min read

I have an old Lenovo Yoga 2 (i5-5400u, 4GB RAM, 128GB SSD). This 2-in-1 system does not have an ethernet port and during Debian installation using the netinstall…

Disable User’s Home Folder Creation in Zentyal

March 31, 2022 2 min read

By default, Zentyal creates a Home Folder for each user created through the web interface and not through Active Directory Users & Computers (dsa.msc). To disable this action,…

Increase LVM Partition in Linux

June 20, 2018 3 min read

Some notes on increasing LVM partition in Linux. Terminology Physical Volume (PV): This can be created on a whole physical disk (think /dev/sda) or a Linux partition. Volume Group…

A start job is running for dev-disk-byuuid-

May 7, 2017 1 min read

I recently used GParted to delete a Swap partition on my Linux server so I could extend my primary partition. In doing so, the UUID changed of the…

SMBus Host Controller Not Enabled!

May 6, 2017 1 min read

To fix the error message SMBus Host Controller not enabled! message, you can blacklist the module from loading. I use Debian 9; check with your distribution for specifics,…