I summarized the Linux boot sequence as a diagram. From power-on, the system boots in the following order: UEFI → GRUB → Linux Kernel → initramfs → systemd When investigating boot issues, understanding this flow can significantly speed up root cause analysis.
#Linux#boot
CPUがプログラムを実行する流れを簡単にまとめてみました。
① Fetch(命令を取得)
② Decode(命令を解読)
③ Execute(命令を実行)
④ Load(必要なデータをメモリから読込)
⑤ Store(結果をメモリへ保存)
Linuxやアプリケーションも、最終的にはこの繰り返しで動いています。
CPUとメモリの関係を理解すると、コンピュータの動作がぐっとイメージしやすくなります。
詳しくはこちら👇
eeengineer.com/how-cpu-use-m…#Linux#CPU#インフラエンジニア