Ubuntu de repente quebrou o áudio, apt-get e flash

2

Eu estava usando meu computador normalmente até perceber que algo não estava certo e reiniciei. Então eu não consegui navegar em webs com flash com chrome, não consegui carregar um vídeo em HTML5 do youtube. Quando tento abrir o VLC, diz:

martin@martin-HP:~$ vlc
VLC media player 2.2.2 Weatherwax (revision 2.2.2-0-g6259d80)
[00000000016dd028] pulse audio output error: PulseAudio server connection failure: Connection refused

E o som não funciona.

Quando tento atualizar o apt-get:

** (appstreamcli:2530): WARNING **: No origin found for file fr.archive.ubuntu.com_ubuntu_dists_xenial-updates_universe_dep11_Components-amd64.yml.gz
Segmentation fault (core dumped)
Reading package lists... Error!
E: Failed to fetch store:/var/lib/apt/lists/partial/fr.archive.ubuntu.com_ubuntu_dists_xenial_main_dep11_Components-amd64.yml.gz  Hash Sum mismatch
E: Failed to fetch store:/var/lib/apt/lists/partial/fr.archive.ubuntu.com_ubuntu_dists_xenial-updates_main_dep11_Components-amd64.yml.gz  Hash Sum mismatch
E: Some index files failed to download. They have been ignored, or old ones used instead.
E: Problem executing scripts APT::Update::Post-Invoke-Success 'if /usr/bin/test -w /var/cache/app-info -a -e /usr/bin/appstreamcli; then appstreamcli refresh > /dev/null; fi'
E: Sub-process returned an error code
E: Encountered a section with no Package: header
E: Problem with MergeList /var/lib/apt/lists/fr.archive.ubuntu.com_ubuntu_dists_xenial_main_binary-amd64_Packages
E: The package lists or status file could not be parsed or opened.
Reading package lists... Error!
E: Encountered a section with no Package: header
E: Problem with MergeList /var/lib/apt/lists/fr.archive.ubuntu.com_ubuntu_dists_xenial_main_binary-amd64_Packages
E: The package lists or status file could not be parsed or opened.

Parece um problema de hardware, mas a instalação do Windows funciona bem. Eu suspeito que tenha algo a ver com o sistema de arquivos, mas não sei como verificá-lo.

Melhor!

    
por Martin Volpe 19.06.2016 / 23:47

2 respostas

4

Eu sei que isso é um pouco antigo, mas recebi o mesmo erro com o apt-get no Ubuntu GNOME 16.04.1 LTS. Eu encontrei uma antiga postagem no fórum que pareceu resolver os problemas apt para mim. Aqui estão os passos recomendados:

sudo -i
apt-get clean
cd /var/lib/apt
mv lists lists.old
mkdir -p lists/partial
apt-get clean
apt-get update
cd
exit
    
por desilvai 29.10.2016 / 15:59
0

Você o verifica por:

sudo fsck /dev/sdxx

É melhor executar isso em um live cd / usb. Nunca execute em /dev/sdxx . Isso destruirá seu sistema. Se você não pode obter um live cd / usb, use o modo de recuperação e solte em um shell de root (NÃO RECOMENDADO).

    
por ubashu 20.06.2016 / 00:33