web-dev-qa-db-ja.com

USBでのubuntu 16.04 isoインストールのsyslinux.cfgファイルがない

インストールを使用した後ubuntu-16.04-server-AMD64.iso USBスティックに( lili を使用)、syslinux.cfgファイルが空であるため、 ここで説明 のように「boot:」コンソールが表示されます。

Ubuntu 16.04のsyslinux.cfgファイルの例はどこにありますか?

1
kevlarjacket

Pen Drive Linux インストーラーを使用して、USBにisoを正常にインストールできました。

0
kevlarjacket

同じ問題が発生したため、USBフラッシュドライブのインストールを再作成し、再試行しました。これが正しいテキストです。以下のすべてをsyslinux(拡張子なしのcfgファイル)内にコピーして貼り付けます。

default menu.c32
Prompt 0
menu title UNetbootin
timeout 100

label unetbootindefault
menu label Default
kernel /ubnkern
append initrd=/ubninit file=/cdrom/preseed/ubuntu.seed boot=casper quiet splash ---

label ubnentry0
menu label ^Help
kernel /ubnkern
append initrd=/ubninit 

label ubnentry1
menu label ^Try Ubuntu without installing
kernel /casper/vmlinuz.efi
append initrd=/casper/initrd.lz file=/cdrom/preseed/ubuntu.seed boot=casper  quiet splash ---

label ubnentry2
menu label ^Install Ubuntu
kernel /casper/vmlinuz.efi
append initrd=/casper/initrd.lz file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity  quiet splash ---

label ubnentry3
menu label ^Check disc for defects
kernel /casper/vmlinuz.efi
append initrd=/casper/initrd.lz boot=casper integrity-check  quiet splash ---

label ubnentry4
menu label Test ^memory
kernel /install/mt86plus
append initrd=/ubninit 

label ubnentry5
menu label ^Boot from first hard disk
kernel /ubnkern
append initrd=/ubninit 

label ubnentry6
menu label Try Ubuntu without installing
kernel /casper/vmlinuz.efi
append initrd=/casper/initrd.lz file=/cdrom/preseed/ubuntu.seed boot=casper quiet splash ---

label ubnentry7
menu label Install Ubuntu
kernel /casper/vmlinuz.efi
append initrd=/casper/initrd.lz file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity quiet splash ---

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

label ubnentry9
menu label Check disc for defects
kernel /casper/vmlinuz.efi
append initrd=/casper/initrd.lz boot=casper integrity-check quiet splash ---

Cfgファイルがない場合は、Ubuntuインストールメディアからコピーしてください。ワードパッドで開き、テキストを貼り付けます。 Cfgファイルはメディアルート(たとえば、K:/、K-はUSBフラッシュ文字)フォルダーになければなりません。少なくとも2つのブータブルUbuntuメディアを用意することを強くお勧めします。

0
Dimushka