Unable to locate package steamcmd
up vote
8
down vote
favorite
I'm trying to install steamcmd on a Ubuntu 16.04 LTS server, but when running sudo apt-get install steamcmd
it errors out with
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package steamcmd
I've already updated and upgraded. How can I resolve this problem?
16.04 server steam
add a comment |
up vote
8
down vote
favorite
I'm trying to install steamcmd on a Ubuntu 16.04 LTS server, but when running sudo apt-get install steamcmd
it errors out with
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package steamcmd
I've already updated and upgraded. How can I resolve this problem?
16.04 server steam
add a comment |
up vote
8
down vote
favorite
up vote
8
down vote
favorite
I'm trying to install steamcmd on a Ubuntu 16.04 LTS server, but when running sudo apt-get install steamcmd
it errors out with
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package steamcmd
I've already updated and upgraded. How can I resolve this problem?
16.04 server steam
I'm trying to install steamcmd on a Ubuntu 16.04 LTS server, but when running sudo apt-get install steamcmd
it errors out with
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package steamcmd
I've already updated and upgraded. How can I resolve this problem?
16.04 server steam
16.04 server steam
edited Aug 7 '17 at 17:42
Zanna
49.1k13123234
49.1k13123234
asked Aug 7 '17 at 17:01
Looki
13117
13117
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
up vote
9
down vote
accepted
Ok, I found the answer myself.
First I needed to add multiverse
to my /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
afterwards I added the i386 architecture:
sudo dpkg --add-architecture i386
now after an apt-get update
I am able to install it.
sudo apt-get install steamcmd
add a comment |
up vote
1
down vote
Run these commands:
sudo add-apt-repository multiverse
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install lib32gcc1 steamcmd
Hope this will help. Or you can check source here:
- How to Install Steamcmd on Ubuntu Server 16.04 LTS | Xenial Xerus
I'm not sure what people think is wrong with this post. It's not really the same method as that answer, though it should have the same effect. When running several commands withsudo
already, enablingmultiverse
withadd-apt-repository
as shown here is handy, as is the link to a blog post with more details (unless some of the info there is wrong, but then I would've expected people to comment about it rather than just downvoting this and voting to delete it). If there's something wrong with this post that I haven't noticed, I hope someone comments.
– Eliah Kagan
Oct 3 '17 at 12:20
add a comment |
up vote
1
down vote
Dealing with this for awhile. Used GUI to download the Steam Client. Once I did that it installed a bunch of missing dependencies. Once I tried sudo apt-get install steamcmd
again it worked flawlessly.
add a comment |
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
9
down vote
accepted
Ok, I found the answer myself.
First I needed to add multiverse
to my /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
afterwards I added the i386 architecture:
sudo dpkg --add-architecture i386
now after an apt-get update
I am able to install it.
sudo apt-get install steamcmd
add a comment |
up vote
9
down vote
accepted
Ok, I found the answer myself.
First I needed to add multiverse
to my /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
afterwards I added the i386 architecture:
sudo dpkg --add-architecture i386
now after an apt-get update
I am able to install it.
sudo apt-get install steamcmd
add a comment |
up vote
9
down vote
accepted
up vote
9
down vote
accepted
Ok, I found the answer myself.
First I needed to add multiverse
to my /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
afterwards I added the i386 architecture:
sudo dpkg --add-architecture i386
now after an apt-get update
I am able to install it.
sudo apt-get install steamcmd
Ok, I found the answer myself.
First I needed to add multiverse
to my /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
afterwards I added the i386 architecture:
sudo dpkg --add-architecture i386
now after an apt-get update
I am able to install it.
sudo apt-get install steamcmd
edited Aug 7 '17 at 18:45
answered Aug 7 '17 at 17:26
Looki
13117
13117
add a comment |
add a comment |
up vote
1
down vote
Run these commands:
sudo add-apt-repository multiverse
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install lib32gcc1 steamcmd
Hope this will help. Or you can check source here:
- How to Install Steamcmd on Ubuntu Server 16.04 LTS | Xenial Xerus
I'm not sure what people think is wrong with this post. It's not really the same method as that answer, though it should have the same effect. When running several commands withsudo
already, enablingmultiverse
withadd-apt-repository
as shown here is handy, as is the link to a blog post with more details (unless some of the info there is wrong, but then I would've expected people to comment about it rather than just downvoting this and voting to delete it). If there's something wrong with this post that I haven't noticed, I hope someone comments.
– Eliah Kagan
Oct 3 '17 at 12:20
add a comment |
up vote
1
down vote
Run these commands:
sudo add-apt-repository multiverse
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install lib32gcc1 steamcmd
Hope this will help. Or you can check source here:
- How to Install Steamcmd on Ubuntu Server 16.04 LTS | Xenial Xerus
I'm not sure what people think is wrong with this post. It's not really the same method as that answer, though it should have the same effect. When running several commands withsudo
already, enablingmultiverse
withadd-apt-repository
as shown here is handy, as is the link to a blog post with more details (unless some of the info there is wrong, but then I would've expected people to comment about it rather than just downvoting this and voting to delete it). If there's something wrong with this post that I haven't noticed, I hope someone comments.
– Eliah Kagan
Oct 3 '17 at 12:20
add a comment |
up vote
1
down vote
up vote
1
down vote
Run these commands:
sudo add-apt-repository multiverse
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install lib32gcc1 steamcmd
Hope this will help. Or you can check source here:
- How to Install Steamcmd on Ubuntu Server 16.04 LTS | Xenial Xerus
Run these commands:
sudo add-apt-repository multiverse
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install lib32gcc1 steamcmd
Hope this will help. Or you can check source here:
- How to Install Steamcmd on Ubuntu Server 16.04 LTS | Xenial Xerus
edited Oct 11 '17 at 3:49
muru
134k19282483
134k19282483
answered Oct 3 '17 at 11:03
RakeshKhushwaha
291
291
I'm not sure what people think is wrong with this post. It's not really the same method as that answer, though it should have the same effect. When running several commands withsudo
already, enablingmultiverse
withadd-apt-repository
as shown here is handy, as is the link to a blog post with more details (unless some of the info there is wrong, but then I would've expected people to comment about it rather than just downvoting this and voting to delete it). If there's something wrong with this post that I haven't noticed, I hope someone comments.
– Eliah Kagan
Oct 3 '17 at 12:20
add a comment |
I'm not sure what people think is wrong with this post. It's not really the same method as that answer, though it should have the same effect. When running several commands withsudo
already, enablingmultiverse
withadd-apt-repository
as shown here is handy, as is the link to a blog post with more details (unless some of the info there is wrong, but then I would've expected people to comment about it rather than just downvoting this and voting to delete it). If there's something wrong with this post that I haven't noticed, I hope someone comments.
– Eliah Kagan
Oct 3 '17 at 12:20
I'm not sure what people think is wrong with this post. It's not really the same method as that answer, though it should have the same effect. When running several commands with
sudo
already, enabling multiverse
with add-apt-repository
as shown here is handy, as is the link to a blog post with more details (unless some of the info there is wrong, but then I would've expected people to comment about it rather than just downvoting this and voting to delete it). If there's something wrong with this post that I haven't noticed, I hope someone comments.– Eliah Kagan
Oct 3 '17 at 12:20
I'm not sure what people think is wrong with this post. It's not really the same method as that answer, though it should have the same effect. When running several commands with
sudo
already, enabling multiverse
with add-apt-repository
as shown here is handy, as is the link to a blog post with more details (unless some of the info there is wrong, but then I would've expected people to comment about it rather than just downvoting this and voting to delete it). If there's something wrong with this post that I haven't noticed, I hope someone comments.– Eliah Kagan
Oct 3 '17 at 12:20
add a comment |
up vote
1
down vote
Dealing with this for awhile. Used GUI to download the Steam Client. Once I did that it installed a bunch of missing dependencies. Once I tried sudo apt-get install steamcmd
again it worked flawlessly.
add a comment |
up vote
1
down vote
Dealing with this for awhile. Used GUI to download the Steam Client. Once I did that it installed a bunch of missing dependencies. Once I tried sudo apt-get install steamcmd
again it worked flawlessly.
add a comment |
up vote
1
down vote
up vote
1
down vote
Dealing with this for awhile. Used GUI to download the Steam Client. Once I did that it installed a bunch of missing dependencies. Once I tried sudo apt-get install steamcmd
again it worked flawlessly.
Dealing with this for awhile. Used GUI to download the Steam Client. Once I did that it installed a bunch of missing dependencies. Once I tried sudo apt-get install steamcmd
again it worked flawlessly.
edited Sep 1 at 16:52
Thomas
3,45081427
3,45081427
answered Sep 1 at 16:33
Jesse
111
111
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f943929%2funable-to-locate-package-steamcmd%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown