사용자 정의 버전의 Ubuntu의 EFI 부팅 가능 ISO를 어떻게 만듭니 까? 배포를 만들었습니다. Ubuntu 웹 사이트에서 표준

MAC에서 (USB로) 부팅하려는 고유 한 Ubuntu 배포를 만들었습니다.

Ubuntu 웹 사이트에서 표준 64 비트 -Ubuntu-iso를 사용하면 부팅됩니다. 그러나 내 배포판이 포함 된 iso 파일로 똑같은 작업을 수행하면 작동하지 않으며 레거시 부팅 만 지원하는 것으로 보입니다. 그러나 OS에는 / sys / firmware / efi 폴더가 있으므로 EFI를 지원한다는 것을 알고 있습니다. 나는 Relinux를 사용하여 iso를 만들었다.

두 ISO 파일의 차이점을 살펴본 결과 표준 우분투에는 grubx64.efi 및 BOOTx64.EFI가 포함 된 EFI / BOOT 폴더가 있고 다른 폴더에는없는 부트 폴더가 있음을 알았습니다. 이 두 디렉토리 인 EFI 및 부팅 폴더를 다른 USB로 복사하려고했지만 작동하지 않습니다.

내 질문은 :

  • 이 두 폴더를 현재 ISO 파일로 가져 오려면 어떻게해야합니까?
  • EFI 부팅을 지원하도록 배포의 ISO를 만들려면 어떻게해야합니까?


답변

EFI 및 MBR을 부팅하려면 이중 부팅 카탈로그 ISO를 만들어야합니다. 표준 Ubuntu 14.04 x64 ISO 파일은이 방식으로 작동하지만 EFI 시스템에 대해 새로운 14.04 부팅 가능 ISO를 만드는 데 사용할 수있는 지침은 없습니다. ISO를 만들려면 올바른 단계를 함께 수행 할 수있었습니다.

이 지침을 통해 EFI 및 MBR을 부팅 할 수있는 사용자 지정 Ubuntu 14.04 서버 ISO를 만들 수 있습니다. 초기화되지 않은 빈 디스크 (예 : Hyper-V의 새로운 Generation 2 VM)가있는 시스템에서 EFI 부팅을 수행하면 설치가 자동으로 시작된 다음 자동으로 디스크를 지우고 기본 우분투 서버 패키지 및 OpenSSH를 설치합니다. LVM 및 자동 파티션을 사용하여 Ubuntu 14.04를 사용하여 새 시스템을 자동으로 프로비저닝하도록 설계되었습니다. 기존 Linux 시스템에서이 ISO를 사용하는 경우 기존 디스크를 감지하고 입력을 기다릴 때 설치 관리자가 중지됩니다. 비 EFI 시스템 (예 : Generation 1 Hyper-V VM)에서이 ISO를 사용하는 경우 그래픽 설치 프로그램 시작 화면에서 대기하고 자동 설치 프로그램을 계속하기 전에 입력이 필요합니다.

결과는 ubuntu-server 및 openssh-server 만 사용하는 기본 Ubuntu Server 설치입니다.

EFI 부팅 가능 ISO를 생성하는 단계는 다음과 같습니다.

14.04 ISO를 얻으십시오 :

wget http://releases.ubuntu.com/14.04/ubuntu-14.04-server-amd64.iso

마운트하고 내용을 새 폴더로 추출하십시오.

sudo mkdir -p ~/iso
sudo mount -o loop ubuntu-14.04-server-amd64.iso.iso ~/iso
sudo mkdir ~/ubuntu
sudo cp -rT ~/iso ~/ubuntu

작업을 수행 할 디렉토리로 변경하십시오.

cd ~/ubuntu

언어를 영어로 설정하십시오.

sudo -i
echo en >/home/user/ubuntu/isolinux/lang
exit

사용 가능한 모든 공간을 사용하여 LVM을 사용하여 디스크를 자동 분할하는 미리 설정 파일을 만듭니다.

sudo nano ~/ubuntu/ks.preseed

파일 내용을 다음과 같이 바꾸십시오.

d-i partman-auto/method string lvm
d-i partman-auto-lvm/guided_size string max
d-i partman-auto/choose_recipe select atomic
d-i partman-partitioning/confirm_write_new_label boolean true
d-i partman/confirm_write_new_label     boolean true
d-i partman/choose_partition            select  finish
d-i partman/confirm_nooverwrite         boolean true
d-i partman/confirm                     boolean true
d-i partman-auto/purge_lvm_from_device  boolean true
d-i partman-lvm/device_remove_lvm       boolean true
d-i partman-lvm/confirm                 boolean true
d-i partman-lvm/confirm_nooverwrite     boolean true
d-i partman-auto/init_automatically_partition       select      Guided - use entire disk and set up LVM
d-i partman/choose_partition                select      Finish partitioning and write changes to disk
d-i partman-auto-lvm/no_boot            boolean true
d-i partman-md/device_remove_md         boolean true
d-i partman-md/confirm                  boolean true
d-i partman-md/confirm_nooverwrite      boolean true

설치하는 동안 Ubuntu를 구성 할 킥 스타트 파일을 만듭니다 : (사용자 이름 부분을 변경하고 암호화 된 암호를 사용해야합니다)

sudo nano ~/ubuntu/ks.cfg

파일 내용을 다음과 같이 바꾸십시오.

lang en_US
langsupport en_US
keyboard us
mouse
timezone America/Los_Angeles
rootpw --disabled
user USERNAME --fullname "USERNAME" --password "PASSWORD"
reboot
text
install
cdrom
auth  --useshadow  --enablemd5
network --bootproto=dhcp --device=eth0
firewall --disabled
skipx
%packages
@ ubuntu-server
openssh-server

ISO가 EFI 부팅을 수행 할 때 부트 로더가 올바른 옵션을 사용하여 사전 설정 및 구성 파일을 사용하도록 grub 구성 파일을 편집하십시오.

sudo nano ~/ubuntu/boot/grub/grub.cfg

파일 내용을 다음과 같이 바꾸십시오.

if loadfont /boot/grub/font.pf2 ; then
    set gfxmode=auto
    insmod efi_gop
    insmod efi_uga
    insmod gfxterm
    terminal_output gfxterm
fi

set menu_color_normal=white/light-blue
set menu_color_highlight=light-blue/light-gray
set timeout=10
set default=0

menuentry "Automatically Install Ubuntu Server with Custom Config" {
    set gfxpayload=keep
    linux   /install/vmlinuz  file=/cdrom/preseed/ubuntu-server.seed quiet ks=cdrom:/ks.cfg preseed/file=/cdrom/ks.preseed --
    initrd  /install/initrd.gz
}
menuentry "OEM install (for manufacturers)" {
    set gfxpayload=keep
    linux   /install/vmlinuz  file=/cdrom/preseed/ubuntu-server.seed quiet oem-config/enable=true --
    initrd  /install/initrd.gz
}
menuentry "Multiple server install with MAAS" {
    set gfxpayload=keep
    linux   /install/vmlinuz  modules=maas-enlist-udeb vga=788 initrd=/install/initrd.gz quiet --
    initrd  /install/initrd.gz
}
menuentry "Check disc for defects" {
    set gfxpayload=keep
    linux   /install/vmlinuz  MENU=/bin/cdrom-checker-menu quiet --
    initrd  /install/initrd.gz
}
menuentry "Rescue a broken system" {
    set gfxpayload=keep
    linux   /install/vmlinuz  rescue/enable=true --
    initrd  /install/initrd.gz
}

EFI가 아닌 부팅 (MBR 부팅)에 대한 isolinux 부팅 메뉴를 편집하여 사용자 정의 구성 및 사용자 정의 사전 설정을 사용하십시오.

sudo nano ~/ubuntu/isolinux/txt.cfg

파일 내용을 다음과 같이 바꾸십시오.

default install
label install
  menu label ^Install Ubuntu Server with Custom Config
  kernel /install/vmlinuz
  append file=/cdrom/preseed/ubuntu-server.seed initrd=/install/initrd.gz ks=cdrom:/ks.cfg preseed/file=/cdrom/ks.preseed --
label cloud
  menu label ^Multiple server install with MAAS
  kernel /install/vmlinuz
  append   modules=maas-enlist-udeb vga=788 initrd=/install/initrd.gz quiet --
label check
  menu label ^Check disc for defects
  kernel /install/vmlinuz
  append   MENU=/bin/cdrom-checker-menu vga=788 initrd=/install/initrd.gz quiet --
label memtest
  menu label Test ^memory
  kernel /install/mt86plus
label hd
  menu label ^Boot from first hard disk
  localboot 0x80

ISO를 작성하십시오.

이 명령은 http://petersmithphotog.no-ip.biz/wiki/index.php/Unattended_Install에 표시된 명령의 수정 된 버전입니다 . 이 지침은 efi.img 파일의 잘못된 위치를 가리 키기 때문에 Ubuntu 14.04에서는 작동하지 않습니다. (ISO의 ./boot/grub/에 있어야 함)

sudo mkisofs -U -A "Custom1404" -V "Custom1404" -volset "Custom1404" -J -joliet-long -r -v -T -o ../Custom1404.iso -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -eltorito-alt-boot -e boot/grub/efi.img -no-emul-boot .

ISO에 올바른 스타일 부트 카탈로그가 있는지 확인하십시오.

Ubuntu에서 다운로드 한 원본 ISO :

dumpet -i ~/ubuntu-14.04-server-amd64.iso

산출:

Validation Entry:
    Header Indicator: 0x01 (Validation Entry)
    PlatformId: 0x00 (80x86)
    ID: ""
    Checksum: 0x55aa
    Key bytes: 0x55aa
Boot Catalog Default Entry:
    Entry is bootable
    Boot Media emulation type: no emulation
    Media load segment: 0x0 (0000:7c00)
    System type: 0 (0x00)
    Load Sectors: 4 (0x0004)
    Load LBA: 8446 (0x000020fe)
Section Header Entry:
    Header Indicator: 0x91 (Final Section Header Entry)
    PlatformId: 0xef (EFI)
    Section Entries: 1
    ID: ""
Boot Catalog Section Entry:
    Entry is bootable
    Boot Media emulation type: no emulation
    Media load address: 0 (0x0000)
    System type: 0 (0x00)
    Load Sectors: 4672 (0x1240)
    Load LBA: 24754 (0x000060b2)

새로 만든 ISO :

dumpet -i ~/Custom1404.iso

산출:

Validation Entry:
    Header Indicator: 0x01 (Validation Entry)
    PlatformId: 0x00 (80x86)
    ID: ""
    Checksum: 0x55aa
    Key bytes: 0x55aa
Boot Catalog Default Entry:
    Entry is bootable
    Boot Media emulation type: no emulation
    Media load segment: 0x0 (0000:7c00)
    System type: 0 (0x00)
    Load Sectors: 4 (0x0004)
    Load LBA: 3100 (0x00000c1c)
Section Header Entry:
    Header Indicator: 0x91 (Final Section Header Entry)
    PlatformId: 0xef (EFI)
    Section Entries: 1
    ID: ""
Boot Catalog Section Entry:
    Entry is bootable
    Boot Media emulation type: no emulation
    Media load address: 0 (0x0000)
    System type: 0 (0x00)
    Load Sectors: 4672 (0x1240)
    Load LBA: 1932 (0x0000078c)

이 출력을 Ubuntu를 완전히 무인 설치하려면 어떻게합니까? : (이중 부트 카탈로그 ISO가 아닌 MBR 만 ISO를 만듭니다)

sudo mkisofs -D -r -V "non-efi-ubuntu" -cache-inodes -J -l -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -o ../non-efi-ubuntu.iso .

ISO 정보 얻기 :

dumpet -i ~/non-efi-ubuntu.iso

산출:

Validation Entry:
    Header Indicator: 0x01 (Validation Entry)
    PlatformId: 0x00 (80x86)
    ID: ""
    Checksum: 0x55aa
    Key bytes: 0x55aa
Boot Catalog Default Entry:
    Entry is bootable
    Boot Media emulation type: no emulation
    Media load segment: 0x0 (0000:7c00)
    System type: 0 (0x00)
    Load Sectors: 4 (0x0004)
    Load LBA: 1925 (0x00000785)


답변

UEFI 지원 USB 드라이브

USB 매체에서 설치하려는 경우 먼저 사용자 정의 된 ISO를 만들 필요가 없습니다.

UEFI 전용 부팅 USB 라이브 미디어를 만드는 것은 매우 간단합니다. 파일을 FAT32 형식의 USB 드라이브에 복사하십시오 . 그게 다야!
유효한 UEFI 부팅 매체로 감지됩니다.

그런 다음 USB 드라이브에서 직접 파일을 수정할 수 있습니다.

출처 및 세부 정보 : UEFI 전용 부팅 가능한 USB 라이브 미디어를 만드는 방법은 무엇입니까?


답변

나에게 가장 좋은 방법은 다음과 같습니다.

1) 시스템 백 라이브 ISO 생성

sudo apt-get install systemback
sudo apt-get install live-boot
sudo apt-get autoremove --purge casper

2) 이런 식으로 uefi 파티션을 iso에 추가하십시오 :

cd /home
cat `ls -1 -t syst*.iso|head -1` efi.img >/tmp/live.iso
echo -e "n\np\n2\n\n\nt\n2\nef\nw\n"|fdisk /tmp/live.iso

3) iso를 미디어에 복사하십시오 (이 경우 내 pendrive는 / dev / sdb에 있습니다)

pv /tmp/live.iso | dd of=/dev/sdb conv=notrunc,noerror


답변