Example of Linux Packaging and Deployment Script

Example of Linux Packaging and Deployment Script

In Linux systems, we often need to create scripts, upload them to production servers, deploy the scripts, grant permissions, and then create jobs. If the company has deployed Ansible automation tools, batch deployment can be handled. If there are no automation tools like Ansible, we can package/install/deploy scripts through scripts to avoid manual handling on … Read more

Building C++ Projects: Creating Libraries with CMake

Building C++ Projects: Creating Libraries with CMake

This time, let’s take a look at how to create dynamic and static libraries using CMake. The technical details differ significantly between creating and using dynamic and static libraries, but for CMake, you only need to specify whether you need a static or dynamic library. This article contains a fair amount of code, mostly framework … Read more