Não é possível localizar o pacote steamcmd

6

Estou tentando instalar o steamcmd em um servidor LTS do Ubuntu 16.04, mas ao executar sudo apt-get install steamcmd ele comete erros

Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package steamcmd

Eu já atualizei e atualizei. Como posso resolver este problema?

    
por Looki 07.08.2017 / 19:01

2 respostas

8

Ok, eu mesmo encontrei a resposta.

Primeiro, eu precisava adicionar multiverse ao meu /etc/apt/sources.list :

deb http://archive.ubuntu.com/ubuntu xenial main universe multiverse
deb http://archive.ubuntu.com/ubuntu xenial-updates main universe multiverse
deb http://archive.ubuntu.com/ubuntu xenial-security main universe multiverse

depois eu adicionei a arquitetura i386:

sudo dpkg --add-architecture i386

agora, depois de um apt-get update , posso instalá-lo.

sudo apt-get install steamcmd
    
por Looki 07.08.2017 / 19:26
0

Execute estes comandos:

sudo add-apt-repository multiverse 
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install lib32gcc1 steamcmd

Espero que isso ajude. Ou você pode conferir a fonte aqui:

por RakeshKhushwaha 03.10.2017 / 13:03