GNU/Linux >> LINUX-Kenntnisse >  >> Ubuntu

DVD mit 32-Bit- und 64-Bit-Ubuntu?

Gibt es solche Images, die es mir ermöglichen, 64-Bit-Ubuntu zu installieren, falls unterstützt, oder ansonsten auf 32-Bit zurückzugreifen?

Ich nehme an einem Installfest eines neuen und inoffiziellen LoCo teil, und ein solcher Installer wäre ziemlich praktisch, ohne zusätzliche DVDs für verschiedene Architekturen zu verschwenden.

Beste Antwort

Sie können eine DVD erstellen, die beide Versionen der Live-CD enthält:

  1. Laden Sie ubuntu-13.04-desktop-i386.iso und ubuntu-13.04-desktop-amd64.iso herunter.
  2. Erstellen Sie eine Ordnerstruktur für die 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/
    
  3. Speichern Sie Folgendes als 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
    }
    
  4. Generieren Sie ein ISO-Image (möglicherweise müssen Sie xorriso installieren.):

    $ grub-mkrescue --output ubuntu-13.04-desktop-i386-amd64.iso ubuntu-13.04-desktop-i386-amd64
    

Sie können jetzt ubuntu-13.04-desktop-i386-amd64.iso brennen (1,6 GB) auf eine DVD und wählen Sie beim Booten entweder 32-Bit- oder 64-Bit-Optionen.

Hinweis:Dies hat bei mir in einer virtuellen Maschine funktioniert. Ich empfehle dringend, es mit einer DVD zu testen, bevor Sie mehrere Kopien brennen.


Ubuntu
  1. Laden Sie Ubuntu 16.04 LTS – DVD-ISO-Images herunter

  2. Laden Sie Ubuntu 18.04 LTS – DVD-ISO-Images herunter

  3. Laden Sie Ubuntu 20.04 LTS – DVD-ISO-Images herunter

  4. Fehler mit Vagrant und Ubuntu 12.10 mit Rvm?

  5. Probleme mit Nvidia GPU und Ubuntu 16.04?

Virtuelles Hosting mit vsftpd und MySQL auf Ubuntu 12.04

Virtuelles Hosting mit vsftpd und MySQL auf Ubuntu 12.10

Installieren von Nginx mit PHP5- und MySQL-Unterstützung auf Ubuntu 8.10

Ist Ihr Ubuntu ein 32-Bit- oder ein 64-Bit-Betriebssystem?

So spielen Sie DVDs in Ubuntu 20.04, 18.04 und 16.04 ab

Ist Ihr Ubuntu ein 32-Bit- oder ein 64-Bit-Betriebssystem? [GUI + Terminal]