Posts in 2022

  • Package Managers

    Monday, December 26, 2022 in Articles

    For linux, there are: apt, yum, dnf and pacman. For linux and macos, there is: brew. For windows, there are: choco, scoop and winget. For linux tools on windows, there are: wsl, Cygwin and MSYS2.

    Read more

  • Sealed Secrets

    Thursday, December 22, 2022 in Articles

    Sealed Secrets decrypts the secret server-side and consists of two components: A controller running in the cluster that decrypts SealedSecrets and creates the corresponding Secret A client-side tool that encrypts Secrets and stores them as …

    Read more

  • SQL Server: Free space occupied by log files

    Wednesday, November 23, 2022 in Articles

    It might happen to remain without free space on disk allocated to log files. One option is to try force shrink files for database. It might be benefic to try first on Synchronized ones. USE [shrink_test] GO DBCC SHRINKFILE …

    Read more

  • Linux Shell Troubleshooting

    Sunday, November 20, 2022 in Articles

    bad interpreter: No such file or directory When you encounter the error /bin/sh^M: bad interpreter: No such file or directory while trying to execute a script, it is likely caused by the script being created in Windows and then executed in Linux. …

    Read more

  • WSL2

    Sunday, November 20, 2022 in Articles

    Windows Subsystem for Linux 2 (WSL2) In this article, we’ll guide you through setting up and using WSL2 on your Windows machine. Enabling WSL First, enable the Windows Subsystem for Linux feature: Enable-WindowsOptionalFeature -Online …

    Read more