A energia falhou durante o upgrade de 16.04 LTS para 17.10 após o download bem-sucedido dos arquivos [duplicado]

1

Download de arquivos bem-sucedidos. O poder falhou na metade da construção. Ter usado as ferramentas no grub, por exemplo, fsck sem sucesso. Existe um comando root que irá reiniciar a compilação dos novos arquivos? Não consigo acessar login, rede, etc. Eu posso entrar como root no menu de restauração do grub. Norma 13

    
por norm13 09.05.2018 / 20:42

1 resposta

0

Parece que algo foi quebrado devido à falta de energia no meio da atualização. Aqui estão alguns passos para tentar:

Executar fsck

A primeira coisa a tentar é inicializar em /bin/bash , você pode fazer isso por:

  1. reboot
  2. edit grub:

edit the grub entry by pressing 'e' edit the kernel line by pressing 'e'

add the following at the end of the kernel line: init=/bin/bash

press enter to save and 'b' to boot

  1. The init=/bin/bash statement boots straight into a shell, so no password is required.

Em aqui

Depois de obter o shell de root, execute:

fdisk -l

para obter uma lista de todos os discos e tamanhos. Encontre aquele em que a sua instalação está instalada (provavelmente /dev/sda1 ) e execute:

fsck /dev/sda1

ou substitua /dev/sda1 pelo seu local de instalação.

Se você já está aqui, também pode tentar:

mount -o remount,rw /
dpkg --configure -a

Se tiver sorte e na rede, você pode tentar:

ifconfig eth0 up
apt update
apt install -f
apt upgrade

Use um kernel antigo

É provável que o kernel tenha sido atualizado durante o processo de atualização do Ubuntu. Nesse caso, tente inicializar em um kernel antigo. Você pode fazer isso por:

While booting when GRUB appears with entries select the second entry i.e., Advanced options for Ubuntu there you can see different older kernel versions which was installed previously, you can select one among them which works good for you.

esta resposta Se isso corrigir o problema, retome a atualização. Eu recomendaria executar o seguinte primeiro:

sudo apt update
sudo dpkg --configure -a
sudo apt install -f
sudo apt upgrade
sudo update-grub

alguma ajuda de aqui

CD ao vivo

Se tudo mais falhar, inicialize a partir de um Live CD e copie seus arquivos ( /home/usernamehere ) para uma unidade externa. Em seguida, reinstale e copie todos os seus arquivos de volta. Você pode obter ajuda aqui , mas os pontos principais são:

You have to find your hard disk, which is listed on the left side of any file browser window, near the top. Mount that (or if there's more than one volume listed, mount the one for your Ubuntu system, or if you're not sure, mount them all and go through them to see). As Mark Rooney commented, you can just click on it to mount it. Then find the home folder in there.

That will probably be sufficient to enable you to copy your files out. Remember that copying them, say, to the desktop of the live CD system would be useless, as they would go away when you reboot. Instead you must:

  • copy them to an external drive or USB flash drive (but if you're booted from a USB flash drive, not that one, unless it has a persistent area and you really know what you're doing), or
  • put them on another machine on the network, or email them to yourself, or otherwise store them on an Internet server (for example, with a service like Ubuntu One), or
  • burn them to a CD/DVD.
    
por NerdOfLinux 10.05.2018 / 02:46