回答:
ライブCDの両方のバージョンを含むDVDを作成できます。
DVDのフォルダー構造を作成します。
$ mkdir -p ubuntu-13.04-desktop-i386-amd64/boot/{grub,iso}
$ mv ubuntu-13.04-desktop-{i386,amd64}.iso ubuntu-13.04-desktop-i386-amd64/boot/iso/
次の名前を付けて保存しますubuntu-13.04-desktop-i386-amd64/boot/grub/grub.cfg
。
# Derived from /boot/grub/loopback.cfg from ubuntu-13.04-desktop-i386.iso and ubuntu-13.04-desktop-amd64.iso.
menuentry "Try Ubuntu without installing (32-bit)" {
loopback iso /boot/iso/ubuntu-13.04-desktop-i386.iso
linux (iso)/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed boot=casper iso-scan/filename=/boot/iso/ubuntu-13.04-desktop-i386.iso quiet splash --
initrd (iso)/casper/initrd.lz
}
menuentry "Try Ubuntu without installing (64-bit)" {
set gfxpayload=keep
loopback iso /boot/iso/ubuntu-13.04-desktop-amd64.iso
linux (iso)/casper/vmlinuz.efi file=/cdrom/preseed/ubuntu.seed boot=casper iso-scan/filename=/boot/iso/ubuntu-13.04-desktop-amd64.iso quiet splash --
initrd (iso)/casper/initrd.lz
}
menuentry "Install Ubuntu (32-bit)" {
loopback iso /boot/iso/ubuntu-13.04-desktop-i386.iso
linux (iso)/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity iso-scan/filename=/boot/iso/ubuntu-13.04-desktop-i386.iso quiet splash --
initrd (iso)/casper/initrd.lz
}
menuentry "Install Ubuntu (64-bit)" {
loopback iso /boot/iso/ubuntu-13.04-desktop-amd64.iso
linux (iso)/casper/vmlinuz.efi file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity iso-scan/filename=/boot/iso/ubuntu-13.04-desktop-amd64.iso quiet splash --
initrd (iso)/casper/initrd.lz
}
menuentry "Check disc for defects (32-bit)" {
loopback iso /boot/iso/ubuntu-13.04-desktop-i386.iso
linux (iso)/casper/vmlinuz boot=casper integrity-check iso-scan/filename=/boot/iso/ubuntu-13.04-desktop-i386.iso quiet splash --
initrd (iso)/casper/initrd.lz
}
menuentry "Check disc for defects (64-bit)" {
loopback iso /boot/iso/ubuntu-13.04-desktop-amd64.iso
linux (iso)/casper/vmlinuz.efi boot=casper integrity-check iso-scan/filename=/boot/iso/ubuntu-13.04-desktop-amd64.iso quiet splash --
initrd (iso)/casper/initrd.lz
}
menuentry "Test memory" {
loopback iso /boot/iso/ubuntu-13.04-desktop-i386.iso
linux16 (iso)/install/mt86plus
}
ISOイメージを生成します(xorrisoをインストールする必要がある場合があります)。
$ grub-mkrescue --output ubuntu-13.04-desktop-i386-amd64.iso ubuntu-13.04-desktop-i386-amd64
これでubuntu-13.04-desktop-i386-amd64.iso
(1.6 GB)をDVDに書き込み、起動時に32ビットまたは64ビットのオプションを選択できます。
注:これは、仮想マシンで機能しました。複数のコピーを書き込む前に、1枚のDVDを使用してテストすることを強くお勧めします。
grub.cfg
。しかし、UEFI
モードは機能しませんでした。
私の知る限り、ありません。DVDを節約したい場合は、USBスティックを使用できます(1つ(または複数)があり、コンピューターがUSBスティックからの起動をサポートしている場合)。
でUbuntuのダウンロードページ、Linuxでは、WindowsやMacのOS Xの起動可能なUbuntuのUSBスティックを作成するためのステップバイステップの手順があります
利用可能な公式の32/64ビットイメージはありません。あなたが望むものをコンパイルすることができるかどうかは疑問です。
32ビットと64ビットの違いはハードウェアベースであるため、32ビット版と64ビット版のUbuntuを搭載した2つのcdキーまたはusbキーが最適です。
1つのcdまたはusbにしかアクセスできない場合は、32ビットインストールを作成します-両方のタイプのアーキテクチャで使用できます。