
Boost 1.60 RPM packages for CentOS 7.x linux distro
Boost 1.60 RPM packages for CentOS 7.x linux distro. Packages have been built from a source package downloaded from Springdale Institute for Advanced Study Required packages to install: – python-devel – python3-devel – bzip2-devel – libquadmath-devel – environment-modules You can easily install them using:
1 | yum -y install python-devel python3-devel bzip2-devel libquadmath-devel environment-modules |
You can find…

glibc-debug missing on CentOS 8 latest version
glibc-debug While trying to figure out a specific challange to ctflearn website, I had to run gdb on a binary file to try to get some debug info from there. My CentOS 8.x said I need to install the glibc-debug package in order to get access to all…

CentOS Stream 8 – how to easily migrate from CentOS 8
CentOS Stream You have probably heard the news that CentOS era is gone the way you knew it. CentOS 8 will continue though as a CentOS Stream version you should upgrade to before the end of 2021.I did that, out of curiousity, the upgrade went just fine but…

fd-find amazing tool – simple, fast and friendly alternative to find
fd-find fd-find is a simple, fast and friendly alternative to the classic linux find comand. Please take into consideration that this tool is a not a find replacement and it might be missing some of the features linux find has but it’s pretty close to it so it…

Magento2 eCommerce Varnish template for CWP hosting panel
Magento Varnish CWP template For one of my projects I had to configure a server with a hosting panel (preferrably a free one) and an online store. The only mandatory request was to use varnish as a caching mechanism. I’ve decided to use CWP since it provides an…

Bash script – run same command on multiple servers
Bash scripting is fun and can help you automate a lot of things on your linux servers. There are a lot of ways to run the same command on multiple servers. You can use pssh for example, bash scripts, python scripts, automation tools etc. Here’s a simple bash…

USB passthrough to KVM guest instance
USB passthrough to a KVM guest instance: Main server running: CentOS 7.7 x64 latest version. KVM guest machine running RHEL-7.4 (Maipo) but it can be any linux flavor. USB flash drive attached to the main server USB port. I tried all the guides that I could find on…

Iptables port forwarding requests to localhost
Iptables port forwarding requests to localhost Iptables is a user-space utility program that allows a system administrator to configure the IP packet filter rules of the Linux kernel firewall, implemented as different Netfilter modules. Let’s take this scenario. You have an app which binds locally on 127.0.0.1 on…