It seemed a nice idea to create a little site with tips about various things using the .tips top-level domain. Here it is! A collection of tips from the Grumpy Old Techie.

Please Consider

I run a few websites and used to make enough to keep them going with Adverts. Since Adblockers became popular that income is gone. If you like my content, please consider buying me a coffee. Thank you for your support!

Buy Me A Coffee

September 30, 2018

How to create a bootable installer for macOS

There is a new version of macOS out (at the time of writing 10.14 Mojave) and you want to upgrade. For the past few upgrades and this one Apple provided the update via the App store. This is all fine and well if you have a good unmetered(uncapped) internet connection to download the +- 5Gbyte installer. The big catch with the installer is if you follow the default install procedure the installer deletes itself after the install. This if of course a real problem if you want to update more than one Mac, especially if you pay per byte for your internet connection or if it is really slow. Read more

August 25, 2018

Collection of FreeBSD tips

This is a collection of FreeBSD tips that comes with the fortune programe included in the system. Many of these will work on any Unix system. Any user that is a member of the wheel group can use “su -” to simulate a root login. You can add a user to the wheel group by editing /etc/group. By pressing “Scroll Lock” you can use the arrow keys to scroll backwardthrough the console output. Press “Scroll Lock” again to turn it off. Read more

August 10, 2018

The Google Page That Google Haters Don’t Want You to Know About

There is a lot of false information around about the way Google stores information about you and how they use it. You can however have full control of your Google Account by visiting google.com/myactivity If you want to benefit from technology you need to learn how to manage it. This link was found on Lauren Weinstein’s Blog If you are interested in Internet Privacy and Security visit Lauren Weinstein’s Blog you will get lots of useful information. Read more

July 12, 2018

Outlook is rubbish!

Microsoft Outlook especially older versions is junk, but you probably knew that already. For some reason Outlook often sends out a message with incorrect syntax e.g. “[email protected]”. Mail servers like postfix will reject these messages but Outlook will not warn its user that there is a problem. Instead it will keep the message in the outbox and continously retry sending. If you are a postfix admin you can strip the apostrophes with a command filter. Read more

December 26, 2017

Creative Soap forms

I previously posted a tip about making your own soap. If you do make your own soap you will often have a problem with suitable forms for the soap. If you want to make round “bars” of soap instead of square or retangular, life often becomes difficult. You will find lots of ideas by searching for soap forms but the best I found was to use a pringles can. The only problem is that you can only use it once, but it is not a real problem if you like pringles. Read more

October 23, 2017

Change vim 8.0 .vimrc behaviour back to sanity

When a user doesn’t have a /.vimrc file in vim 8.0 (and possibly later) vim loads the default configuration file after the systemwide vimrc file created by the system administrator. This overides any settings the system administrator made. This is of course totally unexpected and frustrating especially when you upgrade from earlier versions. Some may even call it insane and it is definitely not expected behaviour. Anyway below is a way to prevent that from happening. Read more

August 26, 2017

UNIX - Use sed to edit files

sed is one of the commands that have been around forever on Unix systems. sed is a stream editor that you can use to perform basic text transformations on an input stream (a file or input from a pipeline). Want to use sed to edit a file in place? Well, to replace every ’e’ with an ‘o’, in a file named ‘foo’, you can do: sed -i.bak s/e/o/g foo And you’ll get a backup of the original in a file named ‘foo.bak’, but if you want no backup: Read more

August 26, 2017

FREEBSD - Show open sockets

Most people know the netstat command to show you everything about the state of the network on your machine. You can also use sockstat to list all the open sockets on your system. Below are the sockstat options. sockstat -4 Show AF_INET (IPv4) sockets. sockstat -6 Show AF_INET6 (IPv6) sockets. sockstat -c Show connected sockets. sockstat -j jid Show only sockets belonging to the specified jail ID. Read more

August 26, 2017

UNIX - Specify file and disk size output

If you want df, ls or du and other commands to display disk sizes in kilobytes instead of 512 byte blocks, set BLOCKSIZE in your environment to ‘K’. You can also use ‘M’ for Megabytes or ‘G’ for Gigabytes. If you want them to automatically select the best size then use df -h for example.

© Arnold Greyling 2025