# toy_linux **Repository Path**: my_flash/toy_linux ## Basic Information - **Project Name**: toy_linux - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-08-17 - **Last Updated**: 2025-08-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # linux_kernel_012 #### 打包镜像 ```bash as -o bootsect.o bootsect.S ld -m elf_x86_64 -Ttext 0x0 -s --oformat binary -o linux.img bootsect.o ``` #### linux 安装 qemu ```bash sudo apt install qemu-system-i386 ``` #### 运行命令[wsl也可以运行] ```bash qemu-system-i386 -boot a -fda linux.img ```