How to add PHP 8.1.24 to Ubuntu 22.04

Published on Author JFLeave a comment

You’re running the default PHP 8.1.22 on Ubuntu 22.04 and need to update to 8.1.24. Fortunately, the ondrej/php repository includes 8.1.22 so you can just remove the existing php, add ondrej/php and then install 8.1.24. Check version on Ubuntu Remove PHP Note: we are keeping /etc/…php.ini because we want to keep the config file —… Continue reading How to add PHP 8.1.24 to Ubuntu 22.04

How to manually install Adobe Acrobat in Firefox Windows

Published on Author JFLeave a comment

As usual, there are issues with installing Adobe products and then finding out how to re-install them. In this particular case, the Acrobat plugin disappeared from Firefox. Googling for the solution found hundreds of different solutions, going back to the mid 2000s, most utterly useless since Adobe refuses to prune their support threads. How to… Continue reading How to manually install Adobe Acrobat in Firefox Windows

Deploy Barracuda Network Access Client in Intune

Published on Author JFLeave a comment

Just a quick guide as a reference for installing the Barracuda client into Azure Intune. Does not include VPN profiles. Download new client, in this case NetworkAccessClient_5.3.3-17_x64.exe I create a folder in the C: drive because of short paths. CMD as Administrator put the .exe file in here Get ITW client with git so you… Continue reading Deploy Barracuda Network Access Client in Intune

How to export Barracuda F80 Firewall Rules to Excel/Sheets

Published on Author JFLeave a comment

Trying to get a list of your firewall rules out of your Barracuda F80 and into Excel or Google Sheets so can easily review them? If you use the standard “export to clipboard” in Barracuda Firewall Admin, then paste into a sheet you will get what I assume is JSON: All you need to do… Continue reading How to export Barracuda F80 Firewall Rules to Excel/Sheets

Add additional SSH user to Amazon Lightsail

Published on Author JFLeave a comment

Configuring Lightsail Network To make sure you can connect, make sure that Port 22 (default) is open. If you have a fixed IP address, make sure to check “Restrict to IP address” and add your address/es. Remotely Connecting Before we set up the server, let’s go over a couple key items: You’ve create the instance… Continue reading Add additional SSH user to Amazon Lightsail

Linux tail -f replacement on Windows

Published on Author JFLeave a comment

Use Get-Content and Get-Item in Powershell Looking for the tail command on Windows? Get-Content will do the trick. Here’s a link to the command page. Open PowerShell: Show the last line/s: Get-Content C:\inetpub\logs\LogFiles\W3SVC1\u_ex200711.log -Tail 1 Or use get-item Get-Item -Path .\LineNumbers.txt | Get-Content -Tail 1 Stream the file like tail -f Get-Content path-to-file -wait Example:… Continue reading Linux tail -f replacement on Windows

How to fix AWS Lightsail CLIENT_UNAUTHORIZED [769]

Published on Author JF9 Comments
amazon lighstail

There are two main reasons why you might get “Log in failed. If this instance has just started up, try again in a minute or two. CLIENT_UNAUTHORIZED [769]” in Amazon Lightsail browser based SSH login. You will need SSH login from Putty, etc. If you cannot remote in using SSH then you cannot fix this.… Continue reading How to fix AWS Lightsail CLIENT_UNAUTHORIZED [769]

How to install WKHTMLTOPDF 0.12.1.4 on Ubuntu 16 Xenial

Published on Author JFLeave a comment

This might work on Ubuntu 18, as well, but I have not tested it. Also, there is no official build release for it. You might need to compile it on your own. Note: if you are getting the “GLIBC_2.7′ not found” error, it could be that you need to uninstall and then reinstall a specific… Continue reading How to install WKHTMLTOPDF 0.12.1.4 on Ubuntu 16 Xenial

LetsEncrypt SSL on Amazon Lightsail Ubuntu 16.04.5 LTS

Published on Author JFLeave a comment

ProcessIO is now running SSL for free thanks to LetsEncrypt. It took about 5 minutes to get set up, so if you haven’t done it, do it. Ubuntu 16.04.5 LTS I used  Certbot, so I went to the site and selected my web server and OS, then followed the instructions. Important! Amazon Lightsail has a firewall… Continue reading LetsEncrypt SSL on Amazon Lightsail Ubuntu 16.04.5 LTS

Vagrant status is “running” but VirtualBox shows “Powered Off” Windows 10

Published on Author JFLeave a comment

You’ve installed Vagrant and run vagrant up and then vagrant ssh successfully. You then start VirtualBox Manager and it shows that it is powered off: In order to see the actual status, press SHIFT then right-click on the icon for Virtual Box, then click Run as Administrator You will see that it reports the VM… Continue reading Vagrant status is “running” but VirtualBox shows “Powered Off” Windows 10