Linux Loader. [[리눅스]] [[부팅]]을 해 준다. 예전에 널리 쓰였고, 현재는 거의 쓰이지 않으며 [[GRUB,grand_unified_bootloader]]이 쓰인다. = LILO 부트 [[프롬프트]] = {{{ boot: }}} 설정 파일 /etc/lilo.conf (어떤 시스템에서는 /boot/lilo.conf나 /etc/lilo/config일 수 있다.) {{{ boot = /dev/hda compact install = /boot/boot.b map = /boot/map image = /boot/vmlinuz # kernel image file label = linux root = /dev/hda2 # Linux root partition vga = ask # ask for VGA text mode at boot time # 아래와 같은 식으로 다른 운영체제 추가 가능. other = /dev/hda1 table = /dev/hda # location of partition table label = windows }}} vga에 쓸 수 있는 값으로는 normal (80x25) extended (132x44, 132x60 같은 확장 [[텍스트_모드,text_mode]]) ask (부팅할 때 묻기. 모드들을 보여주고 번호를 입력하여 선택한다.) 1, 2, 3 같은 정수 (ask를 썼을 때 나오는 모드 번호) /etc/lilo.conf 설정이 준비되었다면 적용하는 명령은 (root 사용자로) /sbin/lilo이다. 다음과 같이 출력된다. {{{ # /sbin/lilo Added linux Added windows # }}} ---- 참조: 러닝 리눅스