Unable to install openssl-libs
up vote
0
down vote
favorite
I'm trying to install dotnet-sdk-2.1
but it's failing due to that fact that openssl-libs isn't found. I've tried manually installing it using yum, but to no avail.
yum repolist
centos software-installation openssl .net
New contributor
|
show 1 more comment
up vote
0
down vote
favorite
I'm trying to install dotnet-sdk-2.1
but it's failing due to that fact that openssl-libs isn't found. I've tried manually installing it using yum, but to no avail.
yum repolist
centos software-installation openssl .net
New contributor
Have you checked for issues related to version conflicts?openssl-libs
is probably already installed on your system. What is the output ofyum list openssl-libs
?
– fra-san
Nov 21 at 18:29
@fra-san No packages matching to list.
– DireDoesGames
Nov 21 at 18:31
No listed packages, neither installed nor available, sounds like a problem with cache/mirrors. Have you triedyum clean all
?
– fra-san
Nov 21 at 18:39
@fra-san Yup, Still not found.
– DireDoesGames
Nov 21 at 18:45
1
openssl-libs
does not appear to be packaged for CentOS 6, though it is available in CentOS 7. Isdotnet-sdk-2.1
compatible with CentOS 6?
– GracefulRestart
Nov 21 at 19:38
|
show 1 more comment
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm trying to install dotnet-sdk-2.1
but it's failing due to that fact that openssl-libs isn't found. I've tried manually installing it using yum, but to no avail.
yum repolist
centos software-installation openssl .net
New contributor
I'm trying to install dotnet-sdk-2.1
but it's failing due to that fact that openssl-libs isn't found. I've tried manually installing it using yum, but to no avail.
yum repolist
centos software-installation openssl .net
centos software-installation openssl .net
New contributor
New contributor
edited Nov 21 at 18:54
Rui F Ribeiro
38.3k1475126
38.3k1475126
New contributor
asked Nov 21 at 17:56
DireDoesGames
12
12
New contributor
New contributor
Have you checked for issues related to version conflicts?openssl-libs
is probably already installed on your system. What is the output ofyum list openssl-libs
?
– fra-san
Nov 21 at 18:29
@fra-san No packages matching to list.
– DireDoesGames
Nov 21 at 18:31
No listed packages, neither installed nor available, sounds like a problem with cache/mirrors. Have you triedyum clean all
?
– fra-san
Nov 21 at 18:39
@fra-san Yup, Still not found.
– DireDoesGames
Nov 21 at 18:45
1
openssl-libs
does not appear to be packaged for CentOS 6, though it is available in CentOS 7. Isdotnet-sdk-2.1
compatible with CentOS 6?
– GracefulRestart
Nov 21 at 19:38
|
show 1 more comment
Have you checked for issues related to version conflicts?openssl-libs
is probably already installed on your system. What is the output ofyum list openssl-libs
?
– fra-san
Nov 21 at 18:29
@fra-san No packages matching to list.
– DireDoesGames
Nov 21 at 18:31
No listed packages, neither installed nor available, sounds like a problem with cache/mirrors. Have you triedyum clean all
?
– fra-san
Nov 21 at 18:39
@fra-san Yup, Still not found.
– DireDoesGames
Nov 21 at 18:45
1
openssl-libs
does not appear to be packaged for CentOS 6, though it is available in CentOS 7. Isdotnet-sdk-2.1
compatible with CentOS 6?
– GracefulRestart
Nov 21 at 19:38
Have you checked for issues related to version conflicts?
openssl-libs
is probably already installed on your system. What is the output of yum list openssl-libs
?– fra-san
Nov 21 at 18:29
Have you checked for issues related to version conflicts?
openssl-libs
is probably already installed on your system. What is the output of yum list openssl-libs
?– fra-san
Nov 21 at 18:29
@fra-san No packages matching to list.
– DireDoesGames
Nov 21 at 18:31
@fra-san No packages matching to list.
– DireDoesGames
Nov 21 at 18:31
No listed packages, neither installed nor available, sounds like a problem with cache/mirrors. Have you tried
yum clean all
?– fra-san
Nov 21 at 18:39
No listed packages, neither installed nor available, sounds like a problem with cache/mirrors. Have you tried
yum clean all
?– fra-san
Nov 21 at 18:39
@fra-san Yup, Still not found.
– DireDoesGames
Nov 21 at 18:45
@fra-san Yup, Still not found.
– DireDoesGames
Nov 21 at 18:45
1
1
openssl-libs
does not appear to be packaged for CentOS 6, though it is available in CentOS 7. Is dotnet-sdk-2.1
compatible with CentOS 6?– GracefulRestart
Nov 21 at 19:38
openssl-libs
does not appear to be packaged for CentOS 6, though it is available in CentOS 7. Is dotnet-sdk-2.1
compatible with CentOS 6?– GracefulRestart
Nov 21 at 19:38
|
show 1 more comment
2 Answers
2
active
oldest
votes
up vote
0
down vote
Install the library by hand and then try again
yum install openssl-libs
To avoid problems disable all repos but base and try again
Also you can try to clean all yum cache before try again
which library? "No package openssl-libs available."
– DireDoesGames
Nov 21 at 18:01
@DireDoesGames, please check my updated answer
– Romeo Ninov
Nov 21 at 18:01
This didn't help. The package still isn't found.
– DireDoesGames
Nov 21 at 18:04
@DireDoesGames, you can try to change the base repo. What is the result ofyum repolist
? (add it to question, as text, not image)
– Romeo Ninov
Nov 21 at 18:09
I added it as an image, I didn't notice you asked not to add as text.
– DireDoesGames
Nov 21 at 18:13
|
show 4 more comments
up vote
0
down vote
Looking at the installation documentation for dotnet-sdk-2.1
, I can only find references for installing on CentOS 7.
Though I did find that they provide a CentOS 6 package repo.
You should first undo anything you have previously tried to solve this, then slightly alter the official instructions to attempt to install the CentOS/RHEL 6 version:
sudo rpm -Uvh https://packages.microsoft.com/config/rhel/6/packages-microsoft-prod.rpm
sudo yum update
sudo yum install dotnet-sdk-2.1
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Install the library by hand and then try again
yum install openssl-libs
To avoid problems disable all repos but base and try again
Also you can try to clean all yum cache before try again
which library? "No package openssl-libs available."
– DireDoesGames
Nov 21 at 18:01
@DireDoesGames, please check my updated answer
– Romeo Ninov
Nov 21 at 18:01
This didn't help. The package still isn't found.
– DireDoesGames
Nov 21 at 18:04
@DireDoesGames, you can try to change the base repo. What is the result ofyum repolist
? (add it to question, as text, not image)
– Romeo Ninov
Nov 21 at 18:09
I added it as an image, I didn't notice you asked not to add as text.
– DireDoesGames
Nov 21 at 18:13
|
show 4 more comments
up vote
0
down vote
Install the library by hand and then try again
yum install openssl-libs
To avoid problems disable all repos but base and try again
Also you can try to clean all yum cache before try again
which library? "No package openssl-libs available."
– DireDoesGames
Nov 21 at 18:01
@DireDoesGames, please check my updated answer
– Romeo Ninov
Nov 21 at 18:01
This didn't help. The package still isn't found.
– DireDoesGames
Nov 21 at 18:04
@DireDoesGames, you can try to change the base repo. What is the result ofyum repolist
? (add it to question, as text, not image)
– Romeo Ninov
Nov 21 at 18:09
I added it as an image, I didn't notice you asked not to add as text.
– DireDoesGames
Nov 21 at 18:13
|
show 4 more comments
up vote
0
down vote
up vote
0
down vote
Install the library by hand and then try again
yum install openssl-libs
To avoid problems disable all repos but base and try again
Also you can try to clean all yum cache before try again
Install the library by hand and then try again
yum install openssl-libs
To avoid problems disable all repos but base and try again
Also you can try to clean all yum cache before try again
edited Nov 21 at 18:02
answered Nov 21 at 17:59
Romeo Ninov
4,98431627
4,98431627
which library? "No package openssl-libs available."
– DireDoesGames
Nov 21 at 18:01
@DireDoesGames, please check my updated answer
– Romeo Ninov
Nov 21 at 18:01
This didn't help. The package still isn't found.
– DireDoesGames
Nov 21 at 18:04
@DireDoesGames, you can try to change the base repo. What is the result ofyum repolist
? (add it to question, as text, not image)
– Romeo Ninov
Nov 21 at 18:09
I added it as an image, I didn't notice you asked not to add as text.
– DireDoesGames
Nov 21 at 18:13
|
show 4 more comments
which library? "No package openssl-libs available."
– DireDoesGames
Nov 21 at 18:01
@DireDoesGames, please check my updated answer
– Romeo Ninov
Nov 21 at 18:01
This didn't help. The package still isn't found.
– DireDoesGames
Nov 21 at 18:04
@DireDoesGames, you can try to change the base repo. What is the result ofyum repolist
? (add it to question, as text, not image)
– Romeo Ninov
Nov 21 at 18:09
I added it as an image, I didn't notice you asked not to add as text.
– DireDoesGames
Nov 21 at 18:13
which library? "No package openssl-libs available."
– DireDoesGames
Nov 21 at 18:01
which library? "No package openssl-libs available."
– DireDoesGames
Nov 21 at 18:01
@DireDoesGames, please check my updated answer
– Romeo Ninov
Nov 21 at 18:01
@DireDoesGames, please check my updated answer
– Romeo Ninov
Nov 21 at 18:01
This didn't help. The package still isn't found.
– DireDoesGames
Nov 21 at 18:04
This didn't help. The package still isn't found.
– DireDoesGames
Nov 21 at 18:04
@DireDoesGames, you can try to change the base repo. What is the result of
yum repolist
? (add it to question, as text, not image)– Romeo Ninov
Nov 21 at 18:09
@DireDoesGames, you can try to change the base repo. What is the result of
yum repolist
? (add it to question, as text, not image)– Romeo Ninov
Nov 21 at 18:09
I added it as an image, I didn't notice you asked not to add as text.
– DireDoesGames
Nov 21 at 18:13
I added it as an image, I didn't notice you asked not to add as text.
– DireDoesGames
Nov 21 at 18:13
|
show 4 more comments
up vote
0
down vote
Looking at the installation documentation for dotnet-sdk-2.1
, I can only find references for installing on CentOS 7.
Though I did find that they provide a CentOS 6 package repo.
You should first undo anything you have previously tried to solve this, then slightly alter the official instructions to attempt to install the CentOS/RHEL 6 version:
sudo rpm -Uvh https://packages.microsoft.com/config/rhel/6/packages-microsoft-prod.rpm
sudo yum update
sudo yum install dotnet-sdk-2.1
add a comment |
up vote
0
down vote
Looking at the installation documentation for dotnet-sdk-2.1
, I can only find references for installing on CentOS 7.
Though I did find that they provide a CentOS 6 package repo.
You should first undo anything you have previously tried to solve this, then slightly alter the official instructions to attempt to install the CentOS/RHEL 6 version:
sudo rpm -Uvh https://packages.microsoft.com/config/rhel/6/packages-microsoft-prod.rpm
sudo yum update
sudo yum install dotnet-sdk-2.1
add a comment |
up vote
0
down vote
up vote
0
down vote
Looking at the installation documentation for dotnet-sdk-2.1
, I can only find references for installing on CentOS 7.
Though I did find that they provide a CentOS 6 package repo.
You should first undo anything you have previously tried to solve this, then slightly alter the official instructions to attempt to install the CentOS/RHEL 6 version:
sudo rpm -Uvh https://packages.microsoft.com/config/rhel/6/packages-microsoft-prod.rpm
sudo yum update
sudo yum install dotnet-sdk-2.1
Looking at the installation documentation for dotnet-sdk-2.1
, I can only find references for installing on CentOS 7.
Though I did find that they provide a CentOS 6 package repo.
You should first undo anything you have previously tried to solve this, then slightly alter the official instructions to attempt to install the CentOS/RHEL 6 version:
sudo rpm -Uvh https://packages.microsoft.com/config/rhel/6/packages-microsoft-prod.rpm
sudo yum update
sudo yum install dotnet-sdk-2.1
answered Nov 23 at 19:25
GracefulRestart
97927
97927
add a comment |
add a comment |
DireDoesGames is a new contributor. Be nice, and check out our Code of Conduct.
DireDoesGames is a new contributor. Be nice, and check out our Code of Conduct.
DireDoesGames is a new contributor. Be nice, and check out our Code of Conduct.
DireDoesGames is a new contributor. Be nice, and check out our Code of Conduct.
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%2funix.stackexchange.com%2fquestions%2f483271%2funable-to-install-openssl-libs%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
Have you checked for issues related to version conflicts?
openssl-libs
is probably already installed on your system. What is the output ofyum list openssl-libs
?– fra-san
Nov 21 at 18:29
@fra-san No packages matching to list.
– DireDoesGames
Nov 21 at 18:31
No listed packages, neither installed nor available, sounds like a problem with cache/mirrors. Have you tried
yum clean all
?– fra-san
Nov 21 at 18:39
@fra-san Yup, Still not found.
– DireDoesGames
Nov 21 at 18:45
1
openssl-libs
does not appear to be packaged for CentOS 6, though it is available in CentOS 7. Isdotnet-sdk-2.1
compatible with CentOS 6?– GracefulRestart
Nov 21 at 19:38