Erro ao instalar o Steam

0

OS - Ubuntu Mate 16.04 Eu acho que mudei alguns caminhos de repositório ao instalar meu último software. O que devo fazer para redefini-las?

Durante a instalação através do Terminal:

user@user:~$ sudo apt-get install steam
[sudo] password for user: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libqt5opengl5 libqt5printsupport5 linux-headers-4.4.0-31 linux-headers-4.4.0-31-generic linux-image-4.4.0-31-generic linux-image-extra-4.4.0-31-generic
Use 'sudo apt autoremove' to remove them.
The following NEW packages will be installed:
  steam:i386
0 upgraded, 1 newly installed, 0 to remove and 1 not upgraded.
Need to get 0 B/874 kB of archives.
After this operation, 2,662 kB of additional disk space will be used.
Preconfiguring packages ...
Selecting previously unselected package steam:i386.
(Reading database ... 269250 files and directories currently installed.)
Preparing to unpack .../steam_1%3a1.0.0.48-1ubuntu3_i386.deb ...
dpkg: error processing archive /var/cache/apt/archives/steam_1%3a1.0.0.48-1ubuntu3_i386.deb (--unpack):
 subprocess new pre-installation script returned error exit status 30
Installation terminated: Steam License Agreement was DECLINED.
Errors were encountered while processing:
 /var/cache/apt/archives/steam_1%3a1.0.0.48-1ubuntu3_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

Durante a instalação através do Software Boutique

O seguinte aviso aparece

Falha ao baixar informações do repositório

details: W:The repository 'http://ppa.launchpad.net/ubuntu-x-swat/x-updates/ubuntu xenial Release' does not have a Release file.
W:Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
W:See apt-secure(8) manpage for repository creation and user configuration details.
E:Failed to fetch http://ppa.launchpad.net/ubuntu-x-swat/x-updates/ubuntu/dists/xenial/main/binary-amd64/Packages  404  Not Found,
E:Some index files failed to download. They have been ignored, or old ones used instead.
    
por Drayn 22.12.2016 / 10:26

1 resposta

0

A maneira mais fácil de instalar o STEAM no Ubuntu 16.04 Xenial Xerus é usando o comando apt-get para buscar o vapor instalado diretamente do repositório multiverse do Ubuntu:

sudo add-apt-repository multiverse && sudo apt-get update && sudo apt-get install steam

Se isso não funcionar:

sudo dpkg --add-architecture i386 && sudo apt-get update

sudo apt-get install wget gdebi libgl1-mesa-dri:i386 libgl1-mesa-glx:i386 libc6:i386

Faça o download do instalador:

wget http://media.steampowered.com/client/installer/steam.deb

Localize o instalador no local de download e instale o steam usando gdebi

Espero que isso ajude.

    
por Arijit Chatterjee 22.12.2016 / 13:36