bash

All posts tagged bash by Linux Bash
  • Posted on
    Featured Image
    Learn how to host multiple websites on a single Linux server by running multiple Apache instances with distinct configurations using Bash. This approach offers improved application isolation, enhanced security, and tailored resource allocation, facilitating efficient server management. Follow a step-by-step guide covering Apache installation, configuration duplication, service file creation, and final validation for effective multi-instance management.
  • Posted on
    Featured Image
    Learn how to create a password-protected directory in Linux using the Apache server, `.htaccess`, and `.htpasswd`. This tutorial guides you from installing Apache and necessary utilities, through setting up directories and password files, to configuring server settings and testing your configuration for secure data access.
  • Posted on
    Featured Image
    This guide explores optimizing WordPress performance on a Linux server using Apache. Key approaches include enabling compression and browser caching, tuning WordPress configurations, and optimizing the MySQL database. Additionally, it covers automating maintenance with Bash scripts, all aimed at enhancing site speed, user experience, and SEO rankings.
  • Posted on
    Featured Image
    This article guides Linux developers on enabling CORS (Cross-Origin Resource Sharing) on their servers using Bash scripting. It details CORS configuration steps for Apache and Nginx, including editing server files and adding necessary headers. Additionally, it covers testing CORS settings with tools like curl and automating configurations through Bash scripts, ensuring smooth functionality for web applications accessing resources across different domains.
  • Posted on
    Featured Image
    This article explains how to accurately log client IP addresses from the `X-Forwarded-For` header in environments using proxies, utilizing Linux Bash. It covers the basics of the header, parsing methods using Bash, and addresses challenges such as IP spoofing and multi-IP headers to enhance security and user privacy in web development and system administration.
  • Posted on
    Featured Image
    This article provides a detailed guide on creating and configuring self-signed SSL certificates in Linux using Bash. It covers why self-signed certificates are beneficial for development and testing environments, and outlines essential steps including generating a private key, creating the SSL certificate with OpenSSL, and configuring web servers like Apache and Nginx to use these certificates. Practical command-line examples are provided to help users set up and secure their server communications.
  • Posted on
    Featured Image
    The article discusses the use of the `` directive in Apache to improve server security by restricting HTTP methods like POST, PUT, and DELETE. By setting limits on these methods, administrators can prevent unauthorized actions and optimize server performance. It outlines how to implement these configurations using Bash, highlights common use cases, and suggests best practices for security enhancements in server setups.
  • Posted on
    Featured Image
    The article examines the versatile roles of the hyphen "-" in Linux Bash, illustrating its use in command options, file handling, and data redirection. It explains how hyphens modify command behaviors, represent standard input/output in redirection, and act as placeholders in file descriptors and data streams. Examples and a Bash script highlight its practical applications in enhancing command functionality and script efficiency in Linux.
  • Posted on
    Featured Image
    This blog post explores the Shellshock vulnerability (CVE-2014-6271) in Bash, used extensively in Unix-based systems. It demonstrates how attackers can execute arbitrary commands via Bash's environment variables and provides a script for safe, controlled exploitation. The article emphasizes the importance of updating Bash for security.
  • Posted on
    Featured Image
    The article explores using Bash co-processes and netcat (nc) to set up a real-time, bidirectional chat system. It details how co-processes facilitate asynchronous command execution that interacts seamlessly with the main script. By using `nc`, it explains setting up connection points for the chat, and employing the `coproc` command to manage simultaneous message exchanges effectively, enhancing scripting capabilities in Linux.
  • Posted on
    Featured Image
    The blog article describes using the Bash command `yes | tr \n x` to generate an infinite string until memory overload. It breaks down the `yes` command which repetitively outputs 'y', and the `tr` command which replaces newlines with 'x', forming a continuous 'yx' output. It emphasizes understanding the impact on system resources and includes a sample script for safely demonstrating the command without crashing the system.
  • Posted on
    Featured Image
    The blog delves into controlling GPIO pins in Linux via the `sysfs` interface, explaining its use in user space for simple file operations on pins. Steps covered include exporting the pin, setting its direction, and manipulating its state. The guide includes examples like LED control and a script for blinking an LED, highlighting the ease and effectiveness of `sysfs` for basic hardware interfacing.
  • Posted on
    Featured Image
    This blog article explains how to intentionally trigger a segmentation fault in Bash to test signal handling capabilities. It details creating a simple C program that accesses forbidden memory to cause a segfault, which is then compiled and executed from a Bash script. The script uses `trap` to manage the `SIGSEGV` signal, illustrating how to handle errors gracefully and improve software robustness by using Bash in conjunction with lower-level operations.
  • Posted on
    Featured Image
    The blog post explores the `FUNCNAME` array in Bash, highlighting its importance in debugging by tracing function call sequences. It shows how `FUNCNAME` aids in understanding script execution paths and function hierarchies, enhancing script management and error diagnosis for both novice and experienced scripters. Various examples demonstrate its practical applications in real-world scripting scenarios.
  • Posted on
    Featured Image
    The blog explores Bash's `compopt` builtin which allows dynamic modification of autocomplete options on the command line. By detailing features that enable the tailoring of behaviors, such as limiting file completions to `.txt` files and controlling spaces after completions, `compopt` is shown to significantly enhance user efficiency. Examples and script implementation advice offer practical insights for power users and system administrators.
  • Posted on
    Featured Image
    The article explains side effects in Bash arithmetic expressions, particularly how pre-increment (`++i`) and post-increment (`i++`) operators affect a variable's value and the outcome of expressions. It highlights the importance of understanding these effects for efficient script writing in Bash, offering a detailed example and a script to demonstrate these concepts in action.
  • Posted on
    Featured Image
    In Bash scripting, memory allocation plays a crucial role in script performance and reliability. Normally, Bash uses `mmap()` for large memory blocks, but it can be configured to use `malloc()`, which helps reduce virtual memory fragmentation and may enhance performance on some systems. Setting the `MALLOC_MMAP_THRESHOLD_` environment variable to 0 directs `malloc()` to never utilize `mmap()` for memory allocation. This adjustment is demonstrated through a sample script that showcases memory allocation in varied operations.
  • Posted on
    Featured Image
    The article delves into advanced Bash debugging with `shopt -s extdebug` and `declare -ft`, tools that enhance script debugging by enabling detailed function tracing and execution flow tracking. It includes practical examples showing how these tools help in troubleshooting and improving script performance, making them indispensable for Bash developers.
  • Posted on
    Featured Image
    The article details how to use `bash` scripts for real-time monitoring of `sudo` command usage by parsing the `/var/log/secure` file on Linux. It highlights the use of `tail` and `awk` to dynamically track and respond to `sudo` invocations, enhancing security and user accountability. A sample script is provided to demonstrate instant notification of `sudo` activities.
  • Posted on
    Featured Image
    Discover how to create a basic port scanner using Linux's `/dev/tcp` and the `timeout` command in this blog post. The `/dev/tcp` pseudo-device facilitates direct TCP socket interactions from the Bash shell, enabling users to assess port availability. The post showcases how to manage connection timeouts with the `timeout` command to make scanning efficient and provides a script that demonstrates detecting open ports on specified host and port range.
  • Posted on
    Featured Image
    This article details how to generate a Time-based One-Time Password (TOTP) token using Bash, `openssl`, and `date +%s`. It clarifies TOTP's role in two-factor authentication by combining a secret key and the current time to produce a constantly updating password. Step-by-step, the article demonstrates creating a TOTP token with a Bash script and accentuates the importance of secure key management.
  • Posted on
    Featured Image
    This blog explores using `iconv` for transliterating accented characters to ASCII in Linux Bash, focusing on text processing pipelines. `iconv` converts text to various encodings, simplifying tasks like sorting or searching in ASCII-only systems. Examples include transliterating French text in the terminal or via scripts, enhancing text compatibility and handling diversity in characters and languages.
This article delves into the functions of `/mnt` and `/media` directories in Linux, explaining their roles as mount points for managing storage devices. The `/mnt` directory is utilized for temporary, manual mounts by system administrators, while `/media` is designed for automatic mounting of removable media like USB drives and external hard disks. Best practices in managing these directories to maintain an organized and efficient filesystem are also discussed.
This technical blog post introduces Glow, a terminal-based tool for rendering Markdown files within the Linux terminal. It highlights key features like stylized reading, pager support, responsiveness, and search integration. The article includes detailed installation instructions for different Linux distributions using package managers like `apt`, `dnf`, and `zypper’, along with practical usage examples and further reading links for those looking to enhance their terminal experience with Markdown.
Discover how to use `losetup` for managing loopback devices in Linux. This guide covers the essentials, from setting up and attaching disk images with `losetup` to manipulating these virtual disks for tasks like system recovery and software testing. Learn to adjust settings for specific segments of disk images and effectively manage mounted file systems. Ideal for enhancing your skills in Linux system administration.
This article provides an in-depth look at the system requirements for several popular Linux distributions, including Ubuntu, Fedora, Debian, Arch Linux, Linux Mint, and Raspberry Pi OS. It is designed to help users match their hardware with the appropriate Linux distro, ensuring optimal performance. The guide covers CPU, RAM, and storage needs for each distribution and offers additional resources for further information.
Discover the capabilities of `systemd.automount` in Linux, which efficiently manages filesystems by mounting them only when needed. This guide provides a detailed tutorial on creating `.mount` and `.automount` unit files, particularly for network systems, reducing boot times and enhancing system performance and reliability. Ideal for system administrators looking to optimize Linux systems through advanced service management techniques.
Learn essential DNS troubleshooting with the `dnsutils` package, featuring tools `dig` and `nslookup` for Linux users. This guide explains their installation across various distributions and provides basic usage examples to efficiently diagnose and resolve DNS issues, ensuring network reliability. Further resources offer advanced techniques and best practices for deepening your DNS knowledge.
Learn about `tmpfs`, a speedy, volatile filesystem in Linux that uses RAM and swap for temporary data storage. `tmpfs` improves performance for frequent read/write operations, enhances security by clearing data on reboot, and reduces SSD wear. Our guide outlines easy mounting steps, size configuration, and making `tmpfs` persistent with `/etc/fstab`, plus best practices for memory and data management. Ideal for scenarios requiring quick temporary storage access.
This blog post on LinuxBash.sh is a comprehensive guide to trapping and handling signals in Bash scripts, crucial for ensuring script reliability. It details signal trapping, covers common signals like SIGINT and SIGTERM, and provides examples of the `trap` command for setting up handlers. The article is valuable for those looking to improve script safety and includes sections on package installations for handling tools across various Linux package managers. Further reading links are also provided.
This blog details how to use Live USB and Rescue Mode for system recovery, essential tools for diagnosing and fixing corrupted systems. It covers creating a Live USB with tools like Rufus, booting in Rescue Mode, and step-by-step troubleshooting, making it invaluable for both IT professionals and casual users seeking to prevent data loss and manage system crises effectively.
Explore the Linux `watch` command's functionalities and applications in real-time command monitoring, ideal for system administrators and developers. Learn how to install `watch`, customize intervals, and apply it to efficiently track dynamic outputs like system logs and process states through practical examples. This guide is an essential resource for anyone looking to enhance real-time monitoring and system analysis in Linux.
This guide details how to set filesystem quotas in Linux, providing system administrators with essential steps to manage disk space by limiting storage for users or groups. From installing the `quota` tool via different package managers to creating databases and assigning quotas, it covers all necessary aspects to ensure system stability and fair resource distribution.
This article explores the use of `jq`, a powerful command-line tool for JSON parsing and processing in Linux Bash. It covers how to install `jq` on various Linux distributions, basic usage examples, and advanced techniques for handling JSON data from APIs, configuration files, and more. The guide aims to aid developers, system administrators, or tech enthusiasts in effectively using `jq` to parse, filter, map, and transform JSON structures, enhancing data manipulation capabilities.
This article provides a comprehensive guide on using GNU Parallel, a command-line tool for executing multiple shell commands concurrently across different computers. It outlines the benefits of parallel processing in Bash, installation steps for various Linux distributions, and practical usage examples. Additionally, advanced tips such as job control, maintaining output order, and progress tracking are discussed, making GNU Parallel a valuable tool for enhancing efficiency in tasks like data processing and backups.