Update ssh for Kubuntu 14.4
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I am using Kubuntu 14.4 and have
$ ssh -V
OpenSSH_6.6.1p1 Ubuntu-2ubuntu2.8, OpenSSL 1.0.1f 6 Jan 2014
installed. I have trouble to log in into some servers I need to get into and the support thinks, it is because my ssh is too old. How can I upgrade my ssh version to the current version (openssh-7.5p1 if I am not mistaken) without destroying my OS? The support said it might be possible to install ssh 7.5 seperately using the environment variable LD_LIBRARY_PATH
.
ssh upgrade kubuntu
add a comment |Â
up vote
0
down vote
favorite
I am using Kubuntu 14.4 and have
$ ssh -V
OpenSSH_6.6.1p1 Ubuntu-2ubuntu2.8, OpenSSL 1.0.1f 6 Jan 2014
installed. I have trouble to log in into some servers I need to get into and the support thinks, it is because my ssh is too old. How can I upgrade my ssh version to the current version (openssh-7.5p1 if I am not mistaken) without destroying my OS? The support said it might be possible to install ssh 7.5 seperately using the environment variable LD_LIBRARY_PATH
.
ssh upgrade kubuntu
Use apt-get? Is your version of ssh package managed?
â Raman Sailopal
Oct 2 '17 at 13:25
@RamanSailopal: Kubuntu 14.4 is from 2014. So ssh in the repos is old (as old as mentioned in the question).
â Make42
Oct 2 '17 at 13:29
1
Best thing I would suggest would be to create a test environment, build the latest version of ssh from source and verify that everything works as expected.
â Raman Sailopal
Oct 2 '17 at 13:34
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am using Kubuntu 14.4 and have
$ ssh -V
OpenSSH_6.6.1p1 Ubuntu-2ubuntu2.8, OpenSSL 1.0.1f 6 Jan 2014
installed. I have trouble to log in into some servers I need to get into and the support thinks, it is because my ssh is too old. How can I upgrade my ssh version to the current version (openssh-7.5p1 if I am not mistaken) without destroying my OS? The support said it might be possible to install ssh 7.5 seperately using the environment variable LD_LIBRARY_PATH
.
ssh upgrade kubuntu
I am using Kubuntu 14.4 and have
$ ssh -V
OpenSSH_6.6.1p1 Ubuntu-2ubuntu2.8, OpenSSL 1.0.1f 6 Jan 2014
installed. I have trouble to log in into some servers I need to get into and the support thinks, it is because my ssh is too old. How can I upgrade my ssh version to the current version (openssh-7.5p1 if I am not mistaken) without destroying my OS? The support said it might be possible to install ssh 7.5 seperately using the environment variable LD_LIBRARY_PATH
.
ssh upgrade kubuntu
ssh upgrade kubuntu
asked Oct 2 '17 at 12:35
Make42
2211211
2211211
Use apt-get? Is your version of ssh package managed?
â Raman Sailopal
Oct 2 '17 at 13:25
@RamanSailopal: Kubuntu 14.4 is from 2014. So ssh in the repos is old (as old as mentioned in the question).
â Make42
Oct 2 '17 at 13:29
1
Best thing I would suggest would be to create a test environment, build the latest version of ssh from source and verify that everything works as expected.
â Raman Sailopal
Oct 2 '17 at 13:34
add a comment |Â
Use apt-get? Is your version of ssh package managed?
â Raman Sailopal
Oct 2 '17 at 13:25
@RamanSailopal: Kubuntu 14.4 is from 2014. So ssh in the repos is old (as old as mentioned in the question).
â Make42
Oct 2 '17 at 13:29
1
Best thing I would suggest would be to create a test environment, build the latest version of ssh from source and verify that everything works as expected.
â Raman Sailopal
Oct 2 '17 at 13:34
Use apt-get? Is your version of ssh package managed?
â Raman Sailopal
Oct 2 '17 at 13:25
Use apt-get? Is your version of ssh package managed?
â Raman Sailopal
Oct 2 '17 at 13:25
@RamanSailopal: Kubuntu 14.4 is from 2014. So ssh in the repos is old (as old as mentioned in the question).
â Make42
Oct 2 '17 at 13:29
@RamanSailopal: Kubuntu 14.4 is from 2014. So ssh in the repos is old (as old as mentioned in the question).
â Make42
Oct 2 '17 at 13:29
1
1
Best thing I would suggest would be to create a test environment, build the latest version of ssh from source and verify that everything works as expected.
â Raman Sailopal
Oct 2 '17 at 13:34
Best thing I would suggest would be to create a test environment, build the latest version of ssh from source and verify that everything works as expected.
â Raman Sailopal
Oct 2 '17 at 13:34
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
Like @RamanSailopal said, the best thing would be to create a test environment and build the latest from source.
cd /tmp
wget ftp://ftp3.usa.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-7.5p1.tar.gz
tar -zxvf openssh-7.5p1.tar.gz
cd openssh-7.5p1
./configure
make
make install
However, I suggest you upgrade from 14.4
to the latest version of Kubuntu
, not the best idea to use "End of life" OS's.
How do I build the test environment?
â Make42
Oct 2 '17 at 16:26
A virtual machine is one option.
â Hunter.S.Thompson
Oct 2 '17 at 16:34
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Like @RamanSailopal said, the best thing would be to create a test environment and build the latest from source.
cd /tmp
wget ftp://ftp3.usa.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-7.5p1.tar.gz
tar -zxvf openssh-7.5p1.tar.gz
cd openssh-7.5p1
./configure
make
make install
However, I suggest you upgrade from 14.4
to the latest version of Kubuntu
, not the best idea to use "End of life" OS's.
How do I build the test environment?
â Make42
Oct 2 '17 at 16:26
A virtual machine is one option.
â Hunter.S.Thompson
Oct 2 '17 at 16:34
add a comment |Â
up vote
0
down vote
Like @RamanSailopal said, the best thing would be to create a test environment and build the latest from source.
cd /tmp
wget ftp://ftp3.usa.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-7.5p1.tar.gz
tar -zxvf openssh-7.5p1.tar.gz
cd openssh-7.5p1
./configure
make
make install
However, I suggest you upgrade from 14.4
to the latest version of Kubuntu
, not the best idea to use "End of life" OS's.
How do I build the test environment?
â Make42
Oct 2 '17 at 16:26
A virtual machine is one option.
â Hunter.S.Thompson
Oct 2 '17 at 16:34
add a comment |Â
up vote
0
down vote
up vote
0
down vote
Like @RamanSailopal said, the best thing would be to create a test environment and build the latest from source.
cd /tmp
wget ftp://ftp3.usa.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-7.5p1.tar.gz
tar -zxvf openssh-7.5p1.tar.gz
cd openssh-7.5p1
./configure
make
make install
However, I suggest you upgrade from 14.4
to the latest version of Kubuntu
, not the best idea to use "End of life" OS's.
Like @RamanSailopal said, the best thing would be to create a test environment and build the latest from source.
cd /tmp
wget ftp://ftp3.usa.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-7.5p1.tar.gz
tar -zxvf openssh-7.5p1.tar.gz
cd openssh-7.5p1
./configure
make
make install
However, I suggest you upgrade from 14.4
to the latest version of Kubuntu
, not the best idea to use "End of life" OS's.
answered Oct 2 '17 at 14:11
Hunter.S.Thompson
4,57431334
4,57431334
How do I build the test environment?
â Make42
Oct 2 '17 at 16:26
A virtual machine is one option.
â Hunter.S.Thompson
Oct 2 '17 at 16:34
add a comment |Â
How do I build the test environment?
â Make42
Oct 2 '17 at 16:26
A virtual machine is one option.
â Hunter.S.Thompson
Oct 2 '17 at 16:34
How do I build the test environment?
â Make42
Oct 2 '17 at 16:26
How do I build the test environment?
â Make42
Oct 2 '17 at 16:26
A virtual machine is one option.
â Hunter.S.Thompson
Oct 2 '17 at 16:34
A virtual machine is one option.
â Hunter.S.Thompson
Oct 2 '17 at 16:34
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f395637%2fupdate-ssh-for-kubuntu-14-4%23new-answer', 'question_page');
);
Post as a guest
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
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
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
Use apt-get? Is your version of ssh package managed?
â Raman Sailopal
Oct 2 '17 at 13:25
@RamanSailopal: Kubuntu 14.4 is from 2014. So ssh in the repos is old (as old as mentioned in the question).
â Make42
Oct 2 '17 at 13:29
1
Best thing I would suggest would be to create a test environment, build the latest version of ssh from source and verify that everything works as expected.
â Raman Sailopal
Oct 2 '17 at 13:34