Ubuntu OEM 12.04 install from USB - Precisa de ajuda para alterar as opções de inicialização ou adicionar a USB sem perder a opção OEM

2 respostas

0

Este é um exemplo de uma chave USB inicializável (baseada em Backtrack / Ubuntu) feita usando unetbootin

tree -L3

.
├── autorun.inf
├── boot
│   └── grub
│       ├── efi.img
│       ├── font.pf2
│       ├── grub.cfg
│       ├── loopback.cfg
│       └── x86_64-efi
├── casper
│   ├── filesystem.manifest
│   ├── filesystem.manifest-desktop
│   ├── filesystem.manifest-remove
│   ├── filesystem.size
│   ├── filesystem.squashfs
│   ├── initrdf.gz
│   ├── initrd.gz
│   ├── initrd.lz
│   ├── initrds.gz
│   ├── README.diskdefines
│   ├── vmlinuz
│   └── vmlinuz.efi
├── EFI
│   └── BOOT
│       ├── BOOTx64.EFI
│       └── grubx64.efi
├── install
│   └── mt86plus
├── isolinux
│   ├── adtxt.cfg
│   ├── chain.c32
│   ├── dtmenu.cfg
│   ├── exithelp.cfg
│   ├── f10.txt
│   ├── f1.txt
│   ├── f2.txt
│   ├── f3.txt
│   ├── f4.txt
│   ├── f5.txt
│   ├── f6.txt
│   ├── f7.txt
│   ├── f8.txt
│   ├── f9.txt
│   ├── gfxboot.c32
│   ├── gfxboot.cfg
│   ├── isolinux.bin
│   ├── isolinux.cfg
│   ├── memtest
│   ├── menu.cfg
│   ├── po4a.cfg
│   ├── prompt.cfg
│   ├── rqtxt.cfg
│   ├── splash.png
│   ├── stdmenu.cfg
│   ├── txt.cfg
│   └── vesamenu.c32
├── ldlinux.sys
├── md5sum.txt
├── menu.c32
├── preseed
│   ├── cli.seed
│   ├── custom.seed
│   ├── ltsp.seed
│   └── ubuntu.seed
├── syslinux.cfg
├── ubnfilel.txt
├── ubninit
├── ubnkern
├── ubnpathl.txt
├── ubuntu
└── wubi.exe

Existem 3 pastas de configuração de inicialização:

  • /boot/grub/grub.cfg: configuração inicial do live cd boot do Ubuntu (não usado)
  • /isolinux/isolinux.cfg: configuração de inicialização do CD ao vivo de Backtrack (usado pela ISO)
  • /syslinux.cfg: Configuração de inicialização usb do Unetbootin (Usada por USB, possui algumas entradas copiadas da configuração ISO por unetbootin)

Todos esses arquivos de configuração têm a mesma sintaxe. Podemos apenas copiar a entrada que queremos para syslinux.cfg

Como no seu caso, deve ser a entrada do OEM:

label oem
menu label OEM install (for manufacturers)
linux /casper/vmlinuz
append initrd=/casper/initrd.gz file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity quiet splash oem-config/enable=true --

Você pode aprender com o isolinux como fazer um menu avançado. Dê uma olhada em todos os arquivos de texto.

    
por user.dz 12.01.2014 / 20:47
0

Eu encontrei esse problema várias vezes.

Para resolver o problema, usei "Instalador USB universal" para criar flash inicializável.

    
por polarbear347 17.04.2014 / 20:51