Linux Open Source Operating System

Type the following in terminal commands to remove Thunderbird:

 

sudo apt-get remove –purge ‘thunderbird*’

sudo apt-get autoremove

sudo apt-get clean

 

The SUDO command stands for Super User DO which gives root authorization to your currently logged in account.

The APT command stands for Advanced Packaging Tool which manages installing, upgrading and removing software from Ubuntu.

 

Read more

Linux Open Source Operating System

Type the following in terminal commands to remove libreoffice:

 

sudo apt-get remove –purge ‘libreoffice*’

sudo apt-get autoremove

sudo apt-get clean

 

The SUDO command stands for Super User DO which gives root authorization to your currently logged in account.

The APT command stands for Advanced Packaging Tool which manages installing, upgrading and removing software from Ubuntu.

 

Read more

Raspberry Pi Logo

Let’s talk about how to properly shut down your Raspberry Pi 4, when it isn’t frozen.

 

Read more

Raspberry Pi Logo

It is recommended to utilize the latest bootloader firmware for your Raspberry Pi 4.  These updates may include important security, bug fixes and enhancements to improve your Pi computing experience. This article will show you how to check for and update your Raspberry Pi 4 bootloader firmware.

 

Read more

Windows Logo

The Windows Subsystem for Linux lets developers run a GNU/Linux environment — including most command-line tools, utilities, and applications — directly on Windows, unmodified, without the overhead of a traditional virtual machine or dualboot setup.

 

Read more

Sage Timeslips Logo

Sage Timeslips offers a Scheduled Backup feature which will help automate the Timeslips database backup process. However, the current Scheduled Backup feature uses the Windows Task Scheduler to execute a Windows batch file which does not include any code limiting the number of backups it creates. I tried contacting Sage support about this but they have no solution at the present moment. Perhaps by the time you are reading this they have one.

In this article I cover what I did to limit the number of Sage Timeslips database backup copies stored within the Backups directory of my client’s computer. Note that I do not work for nor am I in any way affiliated with the Sage company. The information herein is for my personal use only so that I can recall what I did should the need arise. You can hire me to assist you with your Timeslips database backups remotely by contacting me.

If you do not know what you are doing with Windows batch files you may inadvertently and permanently delete important system files or lose vital data. Especially if you fail to properly backup your data and computer. You’ve been warned!

 

Read more

Raspberry Pi Logo

If you forget your user password on your Ubuntu or Raspberry Pi OS, don’t worry. You can reset your password without having to login quickly and easily. This article will walk you through several ways for changing the root password on your PC. Note, these methods may also be applicable to other Linux distributions.

The method mentioned here works for resetting an Ubuntu password in VMware, dual boot or single install. All you need is a little bit of patience and to run a couple of commands. You’ll be able to reset the root password within minutes.

 

Read more

Raspberry Pi Logo

Recently purchased a new combo wireless and Bluetooth multimedia keyboard for use with my Raspberry Pi 4.

Love the new keyboard, but sadly, even after adjusting the mouse pointer speed to the Max Speed under Preferences / Keyboard and Mouse it is still too slow for my sanity.

Luckily, their is another way to increase the mouse speed.

 

 

Read more

Raspberry Pi Logo

The following Terminal command will show you what software packages are currently installed on your Raspberry Pi 4.

dpkg -l

Read the Debian manual on Listing Installed Packages to learn more.

 

Read more

Raspberry Pi Logo

For those serious about security on their Raspberry Pi 4 computers, regularly clearing the terminal history or bash history is advisable.

A chronological history of your entered terminal commands is automatically retained, which is great when you need to repeat or lookup a prior command. However, this can also become a security concern. What if someone gains access to your machine, opens a terminal window, and browses through your terminal history? If you are human, no doubt you will have (at some point) accidentally entered a password in a non-password field.

This article will show you how to quickly and easily clear the history of your terminal window.

 

Read more