Problemas ao instalar o Ubuntu personalizado após atualizações do apt

0

Eu tenho tentado construir um ambiente padrão que usa o Ubuntu 14.04 junto com alguns pacotes adicionais e criei um script rápido para atualizar o apt e instalar os pacotes que eu necessito. Usando o Cubic, eu carrego o iso mais recente e entro no ambiente chroot.

Se eu apenas copiar meu script de atualização para o chroot (sob pasta / compartilhamento), não mude mais nada e use o unetbootin para colocar o iso em um pen drive, assim que eu instalar no laptop tudo funcionará como pretendido. Se eu rodar meu script que modifica o arquivo sources.list, atualiza o apt e instala vários pacotes, então eu começo a ter problemas.

Meu primeiro problema com o Ubuntu 16.04.3 estava na instalação. Eu recebia um erro dizendo que o grub-efi-amd64-signed não podia ser instalado em / target /. O reparo de inicialização não funcionaria para corrigir esse problema.

Eu atualizei minha iso original para o Ubuntu 16.04.4 e, novamente, se não fizesse nenhuma alteração, ela funcionaria como planejado, se eu atualizasse o apt e instalasse os pacotes adicionais, ele pareceria instalar corretamente, mas ao reiniciar, para o GNU GRUB version2.02 ~ beta2-36ubuntu3.17 (edição de linha semelhante a BASH).

Como meus sistemas estarão offline, não consigo me conectar à Internet para fazer o download durante a instalação e poder usar o CUBIC para pré-instalar os pacotes adicionais é uma dádiva.

Não tenho certeza se há algo errado ou se as atualizações aplicadas estão quebrando alguma coisa no ambiente chroot que está sendo transferido para o ambiente instalado.

Meu script contém o seguinte:

    #!/bin/bash

    set -eu -o pipefail # fail on error, debug all lines

    # update the sources.list file

    cat <<EOF > /etc/apt/sources.list

    # deb cdrom:[Ubuntu 16.04.3 LTS _Xenial Xerus_ - Release amd64 (20170801)]/ xenial main restricted

    # See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
    # newer versions of the distribution.
    deb http://au.archive.ubuntu.com/ubuntu/ xenial main restricted
    # deb-src http://au.archive.ubuntu.com/ubuntu/ xenial main restricted

    ## Major bug fix updates produced after the final release of the
    ## distribution.
    deb http://au.archive.ubuntu.com/ubuntu/ xenial-updates main restricted
    # deb-src http://au.archive.ubuntu.com/ubuntu/ xenial-updates main restricted

    ## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
    ## team. Also, please note that software in universe WILL NOT receive any
    ## review or updates from the Ubuntu security team.
    deb http://au.archive.ubuntu.com/ubuntu/ xenial universe
    # deb-src http://au.archive.ubuntu.com/ubuntu/ xenial universe
    deb http://au.archive.ubuntu.com/ubuntu/ xenial-updates universe
    # deb-src http://au.archive.ubuntu.com/ubuntu/ xenial-updates universe

    ## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
    ## team, and may not be under a free licence. Please satisfy yourself as to
    ## your rights to use the software. Also, please note that software in
    ## multiverse WILL NOT receive any review or updates from the Ubuntu
    ## security team.
    deb http://au.archive.ubuntu.com/ubuntu/ xenial multiverse
    # deb-src http://au.archive.ubuntu.com/ubuntu/ xenial multiverse
    deb http://au.archive.ubuntu.com/ubuntu/ xenial-updates multiverse
    # deb-src http://au.archive.ubuntu.com/ubuntu/ xenial-updates multiverse

    ## N.B. software from this repository may not have been tested as
    ## extensively as that contained in the main release, although it includes
    ## newer versions of some applications which may provide useful features.
    ## Also, please note that software in backports WILL NOT receive any review
    ## or updates from the Ubuntu security team.
    deb http://au.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse
    # deb-src http://au.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse

    ## Uncomment the following two lines to add software from Canonical's
    ## 'partner' repository.
    ## This software is not part of Ubuntu, but is offered by Canonical and the
    ## respective vendors as a service to Ubuntu users.
    # deb http://archive.canonical.com/ubuntu xenial partner
    # deb-src http://archive.canonical.com/ubuntu xenial partner

    deb http://security.ubuntu.com/ubuntu xenial-security main restricted
    # deb-src http://security.ubuntu.com/ubuntu xenial-security main restricted
    deb http://security.ubuntu.com/ubuntu xenial-security universe
    # deb-src http://security.ubuntu.com/ubuntu xenial-security universe
    deb http://security.ubuntu.com/ubuntu xenial-security multiverse
    # deb-src http://security.ubuntu.com/ubuntu xenial-security multiverse
    EOF

    # Update APT and upgrade all packages
    apt update && apt upgrade -y

    # Install pre-determined software
    apt install aptitude k3b dc3dd dcfldd minicom samba virt-manager virtualbox p7zip-full p7zip-rar filezilla bless gcp tree pv grub-efi-amd64 grub-efi-amd64-bin grub-efi-amd64-signed shim shim-signed -y

    # Remove guest login
    cat <<EOF > /etc/lightdm/lightdm.conf
    [SeatDefaults]
    user-session=ubuntu
    greeter-session=unity-greeter
    allow-guest=false
    EOF

    # Change user libvirt-qemu (virt-manager user) show it doesn't show in greeter
    usermod -u 499 libvirt-qemu

    # Download aptitude packages to enable operation on generic hardware profiles
    aptitude install --download-only initramfs-tools initramfs-tools-core linux-firmware linux-generic-hwe-16.04 linux-signed-image-4.10.0-40-generic init-system-helpers intltool-debian linux-base linux-headers-4.10.0-28 linux-headers-4.10.0-40 linux-headers-generic-hwe-16.04 linux-image-4.10.0-40-generic linux-image-extra-4.10.0-40-generic linux-image-generic-hwe-16.04 linux-signed-generic-hwe-16.04 linux-signed-image-4.10.0-28-generic linux-signed-image-4.10.0-40-generic linux-signed-image-generic-hwe-16.04 usb-modeswitch-data

Os pacotes aptitude estão disponíveis para suportar vários perfis de hardware nos quais esta iso pode ser instalada.

Espero que seja algo simples que eu tenha perdido ou precise remover para que isso funcione.

Obrigado por toda sua ajuda.

John

    
por John Walker 18.04.2018 / 00:39

1 resposta

0

Tudo corrigido, demorou para dividir o script e executá-lo manualmente, depois testado com um script ligeiramente modificado e tudo parece estar funcionando. Não tenho certeza qual foi a causa raiz, mas suspeito que a modificação do arquivo lightdm.conf, juntamente com a remoção dos pacotes shim e efi-grub, corrigiu o problema.

    
por John Walker 20.04.2018 / 00:47