Posts in 2022
Package Managers
Monday, December 26, 2022 in Articles
Categories:
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.
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 …
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 …
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. …