-
acme.sh with lighttpd on pihole
# 20220718 – updated with some things I’ve learned since I wrote the original post. # 20240527 – I’m reinstalling pihole from scratch and finding a few things have changed… like lighthttpd not automatically loading mod_openssl and external.conf is not a thing anymore. Updating these instructions as I go along. I’m going to assume you’ve…
-
ssd trim on raspberry pi
-
timedatectl on rpi
-
Open Live Writer
-
Subsonic on FreeNAS
-
hostname and ip from ipconfig files
i’m currently working on a wireless deployment with a requirement to use mac filtering. There are over 600 laptops being deployed to a unique location per laptop. Part of the imaging process doesan ipconfig and dumps the output to a text file which I can then use to copy/paste the hostname and mac into the…
-
AD authentication on Ubuntu 12.04
1) Get the latest PBIS Open Edition from BeyondTrust (formerly Likewise): http://download1.beyondtrust.com/Technical-Support/Downloads/PowerBroker-Identity-Services-Open-Edition/?Pass=True 2) chmod 755 the file, execute it, then install it. chmod 755 pbis-open-7.1.0.1203.linux.x86_64.deb.sh ./pbis-open-7.1.0.1203.linux.x86_64.deb.sh cd pbis-open-7.1.0.1203.linux.x86_64.deb ./install.sh 3) Join the domain sudo domainjoin-cli join guammie.com administrator 4) Add domain group to sudoers sudo visudo %GUAMMIE\\domain^admins ALL=(ALL) ALL 5) Make domain logins use Bash…
-
resolv.conf in Ubuntu
I always forget this when I need it most and there are 10000 entries on Google with the wrong info. To add an DNS server in Ubuntu server, edit the following file as you would a resolv.conf file: /etc/resolvconf/resolv.conf.d/base. Any entries manually added to /etc/resolv.conf get erased when networking is restarted.
-
Transparent Squid 3.1.19 on CentOS 6.2 VM
-
ventrilo startup script
I made a post over at http://ubuntuforums.org/showthread.php?t=1609521&highlight=ventrilo, but here’s a startup script I put together for Ventrilo 3.0. #!/bin/sh#### BEGIN INIT INFO# Provides: ventrilo_srv# Required-Start: $network $remote_fs $syslog# Required-Stop: $network $remote_fs $syslog# Should-Start: $named# Should-Stop: $named# Default-Start: 2 3 4 5# Default-Stop: 0 1 6# Short-Description: Ventrilo version 3.0### END INIT INFO NAME=ventrilo_srvDESC=”Ventrilo 3.0″DAEMON=/usr/local/ventrilo/ventrilo_srvPIDFILE=/usr/local/ventrilo/$NAME.pidDAEMON_ARGS=”-f/usr/local/ventrilo/ventrilo_srv -d”VENT_USER=ventrilo…
-
Squid 3.1.8 on Ubuntu 10.04
I find Squid to be very useful and have been disappointed that 3.1 is still not in any repositories. I googled a little to see if anyone has already done this, since reinventing the wheel is not really my thing. There are a couple tutorials/howtos, but I didn’t really like either approach. One approach uses…