sudheer pithanichaoticcontainers.hashnode.dev·Oct 16, 2024Detailed Explanation of the Linux Boot ProcessThe Linux boot process is a fascinating journey that turns a powered-off computer into a fully operational system. To understand this process, it's important to know what "booting" means. Booting is the process of starting a computer and loading the ...1 like·65 readslinux for beginners
Dhruv Rajvanshidhruv-blogs.hashnode.dev·Aug 3, 2024Day 5 | Git & GitHub FundamentalsIn the world of software development, version control is crucial for tracking changes, collaborating with others, and maintaining the integrity of codebases. Git, a distributed version control system, and GitHub, a platform for hosting Git repositori...1 likeGitHub
Ankita Lunawatcloudhub2295.hashnode.dev·Aug 1, 2024Provision EC2 Instance with EBS Volume using TerraformTerraform is an open-source infrastructure as code (IaC) tool developed by HashiCorp. It is used to define and provision infrastructure resources in a safe, repeatable, and automated way. Here’s a more detailed breakdown of what Terraform does and it...Terraform
Karlygash Yakiyayevakarlygash-yakiyayeva.dev·Apr 15, 2024Understanding Systemd ServicesThe init system is the very first process that starts on the system and its job is to schedule and manage all other processes on the system. It is also referred to as PID 1 short for process id 1. When a process such as Apache or Nginx is started on ...39 readsLinuxLinux
Maxat Akbanovmaxat-akbanov.com·Apr 10, 2024Get started with SysVinit init system in LinuxSysVinit, or System V init, is the traditional initialization system that Linux distributions used to adopt to bootstrap the user space and manage system processes after the Linux kernel has been booted. Named after the Unix System V style of initial...28 readsbash-and-linuxsysvinit
Zohrab Haroyanblog.superzorik.com·Mar 16, 2024blog.init()Hello reader! Something new is amidst, and that something is this blog! So here's a little bit about me and what kind of articles I'll be writing. I am a creative thinker, even if that creative thinking ends up with more of a headache than benefit. I...superzorik
Abdullah Bin Altafdevopswithabdullah.hashnode.dev·Feb 14, 2024Lecture # 30 - Init, Systemd, Runlevels, and Target UnitsInit and Systemd: Init and Systemd are both process management systems used in Unix-like operating systems to manage the startup, execution, and termination of prosses. However, they have significant differences in terms of design, features, and func...Devops
Namya Shahbigsmoke.hashnode.dev·Dec 30, 2023Python Interview Questions Part 1Basic Python Concepts What is Python? Explain the difference between Python 2 and Python 3. What are the advantages of using Python? Describe Python's memory management. What are the differences between lists and tuples in Python? Explain the c...python2 vs python3
Victor Langatvlogs.hashnode.dev·Aug 2, 2023Daemons. Silent Guardians that Power Your SystemIn the world of computer systems, daemons (pronounced "dae-mons") are essential but often invisible entities. These unassuming background processes are responsible for handling critical system-level tasks, providing crucial services, and quietly supp...3 likes·40 readsdaemon
Stephin Rejiblog.stephinreji.com·Jun 15, 2023Getting Started with Git CommandsGit is a popular and highly useful version control system that allows you to track changes made to your code and collaborate with others on the same project. It can be intimidating to get started with Git at first, but with a few basic commands, you ...GitHub