Dynamic DNS

By | May 14, 2022

I’ve decided to drop Spectrum Business as my internet provider at home and move to AT&T Fiber. The only negative was that I would lose my static IP, but gain an Internet connection that is 5 times faster for the same price. Since I am no longer running a mail server from my home, I can accept this as long as I find a dynamic DNS service that would work with my domain name. I found NO-IP offered exactly what I needed with their Plus Managed DNS service. I am impressed with the amount of options available and the ease to set up my DNS records on NO-IP.

If interested, check them out HERE.

Basecamp and me

By | December 24, 2021

At my previous job, Basecamp was implemented for project management and a journal of what we worked on. For the majority of the time myself and one other co-worker were the only two adding daily entries. Sometimes we had a little fun with them. Below is a screenshot I found that I had saved from one of those days.

Teams login with new email address

By | December 21, 2021

Several months ago, I switched companies that I work for. This morning, I am working from home and wanted to start Microsoft Teams flatpak on my Pop-Os! desktop and found it would not let me sign in with my new email address.

The application is set for a single user and I could not find a way to, “sign-out”. My solution was to go into the /home/.var/app directory and rename the existing com.microsoft.Teams directory to something else, then restart Teams. This worked. A new config directory was created, I was able to sign in with my new credentials and all is good.

I renamed the existing folder to XXcom.microsoft.Teams andeverything is good now.

My favorite Windows management tool

By | December 17, 2021

When I first started at my current job I needed to find a solution that would help me get an inventory of all my assets, assist me in managing and patching as well as some kind of remote access. One of my needs was to find something that would be cost-effective for my organization while providing a great toolset to help me lasso all my endpoints together. I discovered Action1.

Action1 has turned out to be a great tool in gathering information about my endpoints, being able to finally have a managed patching solution where I can specify what patches to approve and when to let them be installed, and allows me to do a whole set of other functions such as remote script executions, custom package deployments, scheduled actions based on conditions, and nice remote desktop access.

The price for Action1 is great. It is free for 100 endpoints. Since I am using quite a bit more than that, I have a paid subscription that is extremely affordable. I now have all my endpoints being patched consistently, supported all via the same method, and software deployments and reporting all handled from the same place. Action1 is a lifesaver.

Give Action1 a try for yourself by CLICKING HERE.

Trouble changing Timezone -Server 2019

By | December 3, 2021

I was having problems changing the timezone on a new domain controller today. I am the admin, but I still could not change the timezone region. I kept getting the following message “Unable to continue. You do not have permission to perform this task. Please contact your computer administrator for help.” But again, I am the administrator.

Seriously? I cannot change the timezone?

My fix was to use Powershell using the Set-Timezone command. I ran the command

Set-Timezone -Name “Central Standard Time”

And now the correct timezone is set. I chalk this up to some goofy windows thing.

Correct timezone is now set.

I did later find out I could also run timedate.cpl as Administrator and be able to change the timezone via the GUI I was blocked from originally. Microsoft Windows can be so frustrating at times.

Running timedate.cpl as Administrator.

Firefox Touchscreen Scrolling

By | August 28, 2021

When using Firefox on a touchscreen enabled laptop, I noticed that scrolling only worked using the scroll bar and I could not zoom or scroll like is done with mobile devices. I discovered a fix for this by editing the /etc/security/pam_env.conf file and adding a new environment variable.

MOZ_USE_XINPUT2 DEFAULT=1

Save, then reboot. Zoom and scrolling now work as expected on the laptop touchscreen.

Configure FOG to PXE boot with Asus RT-AC86U router

By | January 20, 2021

I have been wanting to stand up a FOG Imaging server for quite some time on my home network. I have an Asus RT-AC86U router at home with the AsusWRT-Merlin firmware installed. If you have an Asus router, the Merlin firmware is a must regardless since an improved version of the default firmware the Asus routers come with.

To learn how to install a FOG Server VM, I follow the tutorials on the Practical IT Youtube channel. These videos have been my favorite reference for setting up and using FOG.

You can watch the first video in the series HERE.

During the FOG setup, you will see a summary of your FOG-Master setup. It is important to note the FOG Server IP addressed you have assigned and the bootfile name as seen in the example below.

On my setup, the bootfile is name: udionly.kpxe and the IP address is 192.168.1.29

Now, you will need to sign into the Asus router to enable and configure DNSMASQ. Once signed into the Asus router, go to LAN / DHCP Server. Make sure that DNS Server 1 is set to the IP address of your Asus router (In my case it is 192.168.1.1).

Now go into ADMINISTRATION / SYSTEM . Look for, “Enable JFFS custom scripts and configs“. Enable this option.

You will need to enable SSH on the router so that you can configure DNSMASQ. These settings are on the same page as the JFFS setting.

Now SSH into your Asus router. go to the /jffs/configs directory. I then run nano to create a file dnsmasq.conf.add

Enter the following line in the dnsmasq.conf.add. Be sure to use replace the IP address to your router and use the bootfile name you saw in the fog setup screen that I noted earlier. For my setup, I entered the line:

dhcp-boot=undionly.kpxe,,192.168.1.29

Save the file and exit nano. Now restart the DNSMasq service on the router using the command: service restart_dnsmasq.

Now, I booted a PC and had it boot from the network adapter (PXE), and the FOG boot menu appeared. Everything is working!

Check out the other videos on the Practical IT with Jeremy Leik channel for further configuring and using FOG to create and restore FOG images.

Installing HPlip on Pop! OS

By | January 4, 2021
My HP CM2320nf MFP

Usually when I need to install my HP color laser printer onto one of my desktops, I have to go the HP Linux Imaging and Printing website and download and install HPLIP. But downloading the files and making the installer work has been a royal pain for Pop OS. Luckily, the System 76 Pop OS website has an article HERE to show how easy it is to install using apt install.

Piece of advice before running: set the password for user root if you have not done so already. The hp-setup tool will ask for a user and password of an account with root capabilities to install. In Ubuntu and Pop OS this is not set normally, and using my credentials would fail. So, run the command: sudo passwd root and set a password for root.

Setting password for root user.

Now, when you run hp-setup and are prompted for root user and password, the install can continue successfully after you enter root and the password you assigned.

SMB Shares in Pop! OS

By | December 26, 2020

I recently switched from Ubuntu 20.10 to Pop! OS. One of the challenges I had was configuring shared folders I want mapped on my Pop! OS machine. I copied the lines from my previous /etc/fstab file that mounted the shares previously.

  1. Install Samba: sudo apt install samba.
  2. Set SMB pasword: smbpassword -a <Username>

But when I when I ran the command mount -a, I received the following error: bad option; for several filesystems (e.g. nfs, cifs) you might need a /sbin/mount. helper program.

After a few minutes, I figured it out, I needed to install cifs-utils: apt install cifs-utils

Now when I ran the mount -a command, no errors and the mapped shares now work.

Webcam for Linux

By | December 6, 2020

I found a nice webcam that works well with my Linux desktop. The Adesso CYBERTRACK H4. I was able to connect to a USB port and within seconds able to use the webcam for Teams and Webex without issue (Have not tried Zoom/Ringcentral yet). Cheese worked perfect too. I was able to pick one up at my local Altex location. And at $50, I’d say it was a decent price.