Category Archives: Operating Systems

Recovering NTFS inheritance

      Comments Off on Recovering NTFS inheritance

A little time ago, my (admin) user in Windows 10 was so badly damaged, that I had to re-create it. While that was easily done, I found that the NTFS rights on my D: drive were a bit odd: Every folder had inherited an ACL right from D:\ for my… Read more »

Zabbix monitoring

      Comments Off on Zabbix monitoring

What is Zabbix monitoring? Zabbix is an enterprise-class open source distributed monitoring solution. Zabbix is software that monitors numerous parameters of a network and the health and integrity of servers. Zabbix uses a flexible notification mechanism that allows users to configure e-mail based alerts for virtually any event. This allows… Read more »

Managing Windows features using RSAT

      Comments Off on Managing Windows features using RSAT

One of the more useful Windows features for Windows administrators is the Remote Server Administration Tools pack (RSAT). Apart from allowing you to install GUI elements in the Administrative Tools menu, this can also install the command-line tools for querying and managing Active Directory: dsquery.exe, dsadd.exe, dsget.exe, dsmod.exe, dsmove.exe and… Read more »

Powershell: Get an indented process tree

      Comments Off on Powershell: Get an indented process tree
Process Tree

In PowerShell, there is the Get-Process cmdlet. However, this does not return the ParentProcessId property, so it is unsuitable for displaying an indented process tree, which you, for instance, could send by email. Luckily, there is the Get-WMIObject cmdlet that can return the ParentProcessId. How to get a Process Tree… Read more »

Reading the Windows Registry from PowerShell

      Comments Off on Reading the Windows Registry from PowerShell

Reading the Windows registry from PowerShell can be a bit cumbersome, when all you wanted to retrieve is the value of an item under a key, at least with PowerShell version before v5. The Get-ItemProperty can be used to enumerate the items and their values under a registry key, but… Read more »

Setting up a firewall in Ubuntu

      Comments Off on Setting up a firewall in Ubuntu
uncomplicated firewall logo

By far the most popular and easy to setup firewall for Ubuntu is UFW, which stands for the ‘Uncomplicated FireWall’. In this tutorial I’ll provide some examples for setups with UFW. I tested the following lines on a fresh Ubuntu 16.04 installation, but this should all work the same with… Read more »

Ubuntu 14.04 and up: Rename a volume group containing root

      Comments Off on Ubuntu 14.04 and up: Rename a volume group containing root

When checking my cloned Ubuntu 14.04 LTS VM, I noticed that it still contained the volume group name from the original, which is of course not desired. It seemed fairly simple, but I kept receiving an error with update-grub, reporting the old Volume Group name: /usr/sbin/grub-probe: error: failed to get… Read more »

Setting up a static IP address or Wifi on Raspberry PI 2 B

      Comments Off on Setting up a static IP address or Wifi on Raspberry PI 2 B
Setting up a static IP address or Wifi on Raspberry PI 2 B

Eth0 static IP address configuration On the latest version of Raspbian (in my case, Raspbian GNU/Linux 8), you should not use /etc/network/interfaces to set up your networks. All configuration has been offloaded to the dhcpcd client. For a static IP address on the eth0 interface, you’ll need to edit file /etc/dhcpcd.conf For… Read more »