루프백 장치에 Debian()을 설치하고 싶습니다 /dev/loop0
.
DVD에서 부팅하고 셸을 요청하면 명령 프롬프트에 쉽게 액세스할 수 있으며 /
.
내가 모르는 부분은 설치 후 설치 프로그램을 수동으로 어떻게 실행합니까 /
?
답변1
데비안은 기본적으로 /target에 설치됩니다. 일부 설치 단계를 건너뛰고 루프백 설치를 위한 파일을 준비해야 합니다. -o 루프를 설치하기 전에 파일에서 mkfs.ext2(또는 유사한)를 실행하십시오.
mkdir /target
mount /path/to/file /target -o loop
일반적으로 특수 목적 설치의 경우 debian 설치 프로그램을 건너뛰고 debootstrap 및 apt를 사용합니다.
debootstrap wheezy /target http://debmirror/debian
mount -bind /dev /target/dev
'' '' /proc ''
'' '' /sys ''
'' '' /dev/pts /target/dev/pts
chroot /target
apt-get install linux-image grub
... the remainder depends on how you want to deploy the image
(setup grub and linux with debconf)(remember no mbr on fs image)
(edit /etc/fstab)