Tela preta após atualização do ubuntu16.04

0

Olá a todos,                      Eu atualizei meu Ubuntu 16,04 hoje e após a atualização bem-sucedida, quando eu reiniciei o meu sistema está mostrando apenas uma tela preta.Eu tenho dados cruciais no meu sistema e não posso apagá-lo.Muito deprimido.Eu não tenho idéia do que fazer como eu não sou capaz de acessar o sistema.Por favor, por favor me ajude! A tela após o reinício é: link E o log de erro quando eu pressiono a tecla F4 é: link

    
por user3652697 16.07.2016 / 06:50

1 resposta

1

Quando o seu computador inicializar, depois que o BIOS carregar, pressione a tecla Esc , para ver todas as opções de inicialização disponíveis do Ubuntu.

Escolha Advanced options for Ubuntu e escolha o Ubuntu, with Linux ... (recovery mode) , de preferência aquele com a versão mais antiga do kernel.

Se você puder fazer login com segurança no Ubuntu, faça backup de todos os seus arquivos. Se tudo isso for necessário, você poderá reinstalar o Ubuntu. Caso contrário, depois de fazer o backup de seus arquivos, avise-nos para que possamos verificar se podemos diagnosticar o problema do seu sistema e corrigi-lo.

Atualização 1

Ótimo, agora que você conseguiu fazer o login, pressione Alt + Ctrl + F2 , isso deve mostrar uma tela do terminal. Em seguida, usando o cp command , faça backup de todos os seus arquivos importantes.

Por exemplo, se o seu disco rígido externo estiver montado em /run/media/my-hdd , primeiro crie um diretório chamado backup-2016-07-17 :

$ cd /run/media/my-hdd
$ mkdir backup-2016-07-17

Em seguida, execute o seguinte comando:

$ cp -R /home/your-username /run/media/my-hdd/backup-2016-07-17

Atualização 2

Além disso, por favor, execute o seguinte comando para listar todos os erros que ocorreram nesta sessão de inicialização:

journalctl -b -p err..emerg

Depois, adicione-os à sua pergunta. Por exemplo, para mim, mostra a seguinte saída:

Jul 16 16:58:40 localhost kernel: tpm_tis 00:0a: A TPM error (6) occurred attempting to read a pcr value
Jul 16 16:58:40 localhost systemd[1]: Failed to start LSB: QEMU KVM module loading script.
Jul 16 16:58:40 localhost kernel: iwlwifi 0000:01:00.0: Unsupported splx structure
Jul 16 16:58:40 localhost systemd[1]: Failed to start LSB: QEMU KVM module loading script.
Jul 16 16:58:41 localhost kernel: Bluetooth: hci0: Failed to send firmware data (-38)
Jul 16 16:58:41 localhost NetworkManager[898]: nm_device_get_device_type: assertion 'NM_IS_DEVICE (self)' failed
Jul 16 16:58:41 localhost wpa_supplicant[1227]: dbus: wpa_dbus_get_object_properties: failed to get object properties: (none) none
Jul 16 16:58:41 localhost wpa_supplicant[1227]: dbus: Failed to construct signal
Jul 16 16:58:41 localhost wpa_supplicant[1227]: Could not read interface p2p-dev-wls2 flags: No such device
Jul 16 16:58:43 localhost kernel: Bluetooth: hci0 command 0xfc05 tx timeout
Jul 16 16:58:47 localhost kernel: Bluetooth: hci0: Reading Intel version information failed (-19)
Jul 16 16:58:50 localhost kernel: Bluetooth: hci0: Setting Intel event mask failed (-16)
Jul 16 16:58:50 localhost bluetoothd[1482]: Failed to obtain handles for "Service Changed" characteristic
Jul 16 16:58:50 localhost bluetoothd[1482]: Not enough free handles to register service
Jul 16 16:58:50 localhost bluetoothd[1482]: Error adding Link Loss service
Jul 16 16:58:50 localhost bluetoothd[1482]: Not enough free handles to register service
Jul 16 16:58:50 localhost bluetoothd[1482]: Not enough free handles to register service
Jul 16 16:58:50 localhost bluetoothd[1482]: Not enough free handles to register service
Jul 16 16:58:50 localhost bluetoothd[1482]: Current Time Service could not be registered
Jul 16 16:58:50 localhost bluetoothd[1482]: gatt-time-server: Input/output error (5)
Jul 16 16:58:50 localhost bluetoothd[1482]: Not enough free handles to register service
Jul 16 16:58:50 localhost bluetoothd[1482]: Not enough free handles to register service
Jul 16 16:58:50 localhost bluetoothd[1482]: Sap driver initialization failed.
Jul 16 16:58:50 localhost bluetoothd[1482]: sap-server: Operation not permitted (1)
Jul 16 16:58:59 localhost pulseaudio[1940]: [pulseaudio] pid.c: Daemon already running.
    
por Behrang 16.07.2016 / 08:20