Technical Posts

A collection of mostly IT centric posts from the last ~20 years

Articles

Latest

Access

Blog History

Script to run the MacOS Built-in DHCP Server

For info on how to configure http://www.jacquesf.com/2011/04/mac-os-x-dhcp-server/ DHCP Server Start Stop Script #!/bin/bash # /usr/local/bin/dhcpmgmt.sh function start { sudo /bin/launchctl load -w /System/Library/LaunchDaemons/bootps.plist } function stop { sudo...

Change the display scale on Brave Browser on Arch Linux

I have a 4K screen. The default Brave font display is tiny So to change the display to make it a little bigger first copy the .desktop file to the Desktop cp /var/lib/flatpak/exports/share/applications/com.brave.Browser.desktop ~/Desktop/ then edit the Exec line in...

Add customized certs to XRDP

This replaces the www.xrdp.org cert and adds the ability to connect via DNS Name or IP using Subject Alternative Names. Example of adding subjectAltName so you can connect via mstsc.exe to multiple DNS names and IP Address or Addresses openssl req -x509 -newkey...

CakePHP quickly install pre-reqs

https://toggen.com.au/it-tips/install-node-in-usr-local/ Install the basic pre-req's for PHP and CakePHP sudo apt install zip unzip curl php php-cli php-{bz2,curl,mbstring,intl,xml} -y