Skip to content

Instantly share code, notes, and snippets.

@CrysoK
Last active April 19, 2023 00:45
Show Gist options
  • Save CrysoK/10e86b3513cbcbbfcc92bdf33e57bcaf to your computer and use it in GitHub Desktop.
Save CrysoK/10e86b3513cbcbbfcc92bdf33e57bcaf to your computer and use it in GitHub Desktop.
Actualizar Chrome en Ubuntu 16

Sigue los siguientes pasos o ejecuta (no probado):

bash <(wget -o /dev/null -nv -O - https://gist.githubusercontent.com/CrysoK/10e86b3513cbcbbfcc92bdf33e57bcaf/raw/actualiza_chrome.sh)

Reestablecer sources.list (opcional)

Recomendado si apt update da errores que no sabes cómo solucionar.

  • Backup del archivo actual
    sudo mv /etc/apt/sources.list  ~/Desktop
    sudo touch /etc/apt/sources.list
    
  • Ir a Software y actualizaciones
  • Marcar las 4 primeras casillas de Software de Ubuntu
  • Marcar las 2 primeras casillas de Actualización

Desinstalar Chrome

sudo apt remove google-chrome-stable

Dependencia libu2f-udev

wget http://archive.ubuntu.com/ubuntu/pool/main/libu/libu2f-host/libu2f-udev_1.1.4-1_all.deb
dpkg -i libu2f-udev_1.1.4-1_all.deb

Dependencia libvulkan1

wget -qO - http://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo apt-key add -
sudo wget -qO /etc/apt/sources.list.d/lunarg-vulkan-1.1.101-xenial.list http://packages.lunarg.com/vulkan/1.1.101/lunarg-vulkan-1.1.101-xenial.list
sudo apt update
sudo apt install libvulkan1

Instalar Chrome

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
#!/bin/sh
sudo apt remove google-chrome-stable
wget http://archive.ubuntu.com/ubuntu/pool/main/libu/libu2f-host/libu2f-udev_1.1.4-1_all.deb
dpkg -i libu2f-udev_1.1.4-1_all.deb
wget -qO - http://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo apt-key add -
sudo wget -qO /etc/apt/sources.list.d/lunarg-vulkan-1.1.101-xenial.list http://packages.lunarg.com/vulkan/1.1.101/lunarg-vulkan-1.1.101-xenial.list
sudo apt update
sudo apt install libvulkan1
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment