Today’s quick tip is actually a lesser-known way of keeping up your security updates, but doing so without the very buggy unattended-upgrades package for Ubuntu server. Here’s a lesser known way to patch your system …
Continue readingCategory: Quick Tips
Write Your Own CPU Meter in Bash
Here’s a fun little project that is a pretty good combination of array use and pattern manipulation. #!/bin/bash function get_mhz() { while read line; do if [[ $line =~ cpu\ MHz ]]; then local hunks=(${line}) …
Continue readingTeamViewer Alternatives for Linux
If you follow tech news at all, you’ve heard about “the happening” over at TeamViewer and of the “stuff” the victims of this exploit inadvertently purchased for the bad guys. Now, some of you might …
Continue readingTar vs Rsync
Files getting lost or corrupted? A most heinous challenge, dude! So when strange things are afoot at the Linux-workstation, we totally hit our backups. We need to get started…but what commands should we use? We …
Continue readingDude! Where’s My Data!
Little in life sucks more than moving to a new desktop environment or distro, only to realize your data for specific applications didn’t make it. This usually happens with stuff like desktop-specific note taking apps …
Continue readingHow to Verify the Integrity of a File with SHA-1
(Matt’s addendum to Eric’s video) There are other Secure Hash Algorithms available, however for the demonstration in this video, Eric will be using SHA-1. Raspbian for example, offers what you need to verify your download …
Continue readingBacking Up Only Recent Files
Gnarly Backup School Series Getting backups done is important. Sometimes what you have to backup and what you want to backup make quite the contrast. Consider I never want to back up my .mozilla/firefox//cache …
Continue readingMaking a Non-Spamming Alert using Diff
Being on pager duty is a downer. And it’s a big mistake that ruins the on-call or first-responder position when you allocate no-no time to actually invest in a useful reporting platform. Like many before …
Continue readingShazam Music Search Alternative For Linux
Growing up in a time of vinyl records and 8-track cassettes, it’s safe to say that I have an appreciation for music. Flash forward to today and we’re now able to enjoy any song we …
Continue readingTranscribe Speech To Text With Linux And Google
Sometimes in life, you run into situations where turning a voice recording into a text document is necessary. Perhaps this is from an interview for a news publication or perhaps you need to transcribe a …
Continue reading