manipulation

All posts tagged manipulation by Linux Bash
  • Posted on
    Featured Image
    Understanding and manipulating binary and hexadecimal numbers are fundamental skills in many areas of computing, from system programming and debugging to network configuration. In Linux, Bash provides powerful tools and commands to handle these types of data efficiently. This article will guide you through the basics of binary and hexadecimal manipulation in Bash, including how to install necessary tools and utilize them effectively. Before diving into binary and hexadecimal operations, ensure that your system is equipped with a few essential tools such as xxd and bc. These utilities facilitate conversion and arithmetic operations in various numeral systems.
  • Posted on
    Featured Image
    The Linux kernel is like the central core of the operating system, managing system resources and communicating between your computer's hardware and software. Given its importance, Linux administrators often need to tweak kernel parameters to optimise system performance or enhance security. One of the primary tools for configuring these parameters is sysctl. sysctl is a utility under Linux that allows reading and writing kernel parameters at runtime. Kernel parameters control everything from the maximum size of a message queue to the maximum size of the various types of inter-process communication (IPC). These configurations are available under /proc/sys/.
  • Posted on
    Featured Image
    Handling dates and times is a common requirement for many bash scripting tasks. Whether you need to automate backups, schedule tasks, or log time-stamped events, Bash provides powerful tools to manage dates and time effectively. In this blog, we'll explore the different utilities and techniques to handle dates and times in Bash, ensuring broad compatibility across various Linux distributions by covering package managers including apt for Debian/Ubuntu, dnf for Fedora, and zypper for openSUSE. The primary tool for dealing with dates and times in Bash is the date command. It's versatile, supporting different formats and calculations. Here’s a primer on some basic but powerful uses of the date command. 1.