Gestor de arranque gráfico

0

Atualmente estou no Ubuntu 17.10 e quero mudar o carregador de boot GRUB com uma GUI mais agradável. Eu procurei por isso e achei burg mas isso é impossível de instalar com o ppa original:

sudo add-apt-repository ppa:n-muench/burg
sudo apt-get update
sudo apt-get install burg burg-themes

Quando eu adiciono o ppa eu recebo esta mensagem que é muito antiga ...

Burg (Maverick packaging) has been copied from the original repo (https://launchpad.net/~bean123ch/+archive/burg), and rebuilt for Natty. Nothing has been changed, just a basic copy and rebuild. This should hold you until that repo is update for Natty (if there ever is one).

The packaging has known to work well, so I won't push the newest revision (which is currently at 1844).

This repo was made specifically made so you can use Natty-built burg and not Maverick-built burg.

===========================================================================

I will be doing a rebuild of both packages for Oneiric. The changes are as follows:

  • Append existing entry.
  • Adjust the versioning
  • To get rid of "+maverick" (for the main package)
  • Up the revision to "-2"
  • Add line to debian/rules so that it can build successfully with GCC-4.6 (LP: #775460). I've encountered this issue before, and I know how to fix it.

Soon (probably after the release of Oneiric), I am going to create a second Burg PPA. It will be used to try out the newest revision of the package (with Oneiric and maybe Natty). And to see if there were any new bugs added in the newer revisions. I have minimal programming skills, so I can't add anything new to the package.

This will occur somewhere around the official release of Oneiric. Plus d’info : https://launchpad.net/~n-muench/+archive/ubuntu/burg Appuyez sur [ENTRÉE] pour continuer ou sur Ctrl-c pour annuler l'ajout.

Então ... Quando eu quiser instalá-lo com

sudo apt-get update

Eu recebi este erro:

Err:7 http://ppa.launchpad.net/n-muench/burg/ubuntu artful Release
404 Not Found Lecture des listes de paquets... Fait
E: The repository 'http://ppa.launchpad.net/n-muench/burg/ubuntu artful Release' does not have a Release file. N: Updating from such a repository can't be done securely, and is therefore disabled by default. N: See apt-secure(8) manpage for repository creation and user configuration details.

Então eu não sei como proceder ou se há outro projeto para um gerenciador de inicialização gui ... Existe um gerenciador de inicialização gráfico estável para o Ubuntu atualmente?

    
por Eelke Johnson 21.04.2018 / 07:24

1 resposta

0

O bootloader da BURG é antigo e não-mantido, e pode ou não funcionar com novas versões do Ubuntu, mesmo que você tenha sucesso em instalá-lo. Sugiro que você aplique um tema ao Grub2 se você quiser uma GUI mais agradável, ou tente um gerenciador de inicialização gráfico moderno como rEFInd que promete trabalhar em máquinas baseadas em UEFI com diferentes sistemas operacionais.

sudo apt-add-repository ppa:rodsmith/refind
sudo apt update
sudo apt install refind

Aviso: o método indicado abaixo não é totalmente recomendado.

Se você, por algum motivo, insistir em usar o BURG, você pode editar manualmente seu repositório:

sudo nano /etc/apt/sources.list.d/n-muench-ubuntu-burg-bionic.list

e substitua artful por xenial

deb http://ppa.launchpad.net/n-muench/burg/ubuntu xenial main
# deb-src http://ppa.launchpad.net/n-muench/burg/ubuntu xenial main

e finalmente digite sudo apt update && sudo apt install burg para instalar o burg.

    
por Eskander Bejaoui 21.04.2018 / 11:13