Elavarasan Afoss.guru·Dec 20, 2024Linux Boot process: SimplifiedThe Linux boot process is a sequence of events that starts when the computer is turned on and ends when the Linux operating system is fully loaded and ready to use. Here’s a simplified overview: BIOS/UEFI: The system’s firmware initializes the hardwa...Linux
Tuanhdotnettuanhnet.hashnode.dev·Nov 2, 2024Essential Techniques for Optimizing Your Java Code with Static BlocksSource: Essential Techniques for Optimizing Your Java Code with Static Blocks 1. Understanding Static Blocks Static blocks are blocks of code in a Java class that are executed when the class is first loaded into memory. They are used to initia...Java
kintsugikintsugicodes.hashnode.dev·Sep 8, 2024Creating a Multi-Bootable USB Drive with Ventoy on LinuxFor those who frequently work with various operating systems or need a versatile tool for system recovery, Ventoy offers a robust solution. With Ventoy, you can easily create a bootable USB drive that supports multiple ISO/WIM/IMG/VHD(x)/EFI files wi...26 readsVentoy Bootable USB Linux System Recovery ISO Files Multi-Boot USB Tech Guide IT Tools USB Drive Setup Open Source Tools Linux Tutorials Boot Menu Operating Systems System Deployment IT Professionals
Devapraveendevpishon.hashnode.dev·Jul 21, 2024Easy OS Booting Through the Linux TerminalCreating a bootable USB drive is a crucial step for installing or running a Linux operating system. This guide will walk you through the process using the Linux terminal. Step 1: Format Your USB Drive Before you begin, ensure your USB drive is proper...Linux
Rohit NagmotiforInfraspecinfraspec.hashnode.dev·Apr 30, 2024Streamlining Raspberry Pi Deployment: A Guide to Automated NetbootingIn this blog, we'll delve into automating the netbooting process using a bash script (pxeService.sh) and an address list (addresslist.txt) to enhance the deployment and management of Raspberry Pi devices. If you haven't already, you can catch up on t...10 likes·89 readsnetworking
Rohit NagmotiforInfraspecinfraspec.hashnode.dev·Apr 30, 2024Streamlining Raspberry Pi deployment: A deep dive into PXE boot sequenceUnderstanding PXE Boot What is PXE Boot? The Preboot Execution Environment (PXE) specification describes a standardized client–server environment that boots a software assembly retrieved from a network on PXE-enabled clients. Why PXE Boot? Simplify ...33 readsnetworking
David Carrdcblog.dev·Nov 5, 2022Laravel use multiple boot in traitsLet's say you want to use multiple traits in your models to reuse common code such as applying UUIDs and settings global query scopes like this: use HasUuid; use HasTenant; Each of these traits has a boot method: HasUuid: trait HasUuid { public f...77 readstraits