wget 1.20 package for bionic beaver












1















i am quite new to linux



i am looking for the wget 1.20 package for bionic beaver



according to wiki wget 1.20 was released on November 2018 , however i cannot seem to find the .deb file for bionic , i only found the version for disco but i got libpcre2-8-0 dependency issue (requires version 10.32 & that version is not updated for bionic yet)



the main reason for upgrading to wget 1.20 is for the new "--retry-on-host-error" option



so from where can i get the package?










share|improve this question




















  • 1





    It won't be 'updated for bionic'. Ubuntu 18.04 shipped with wget 1.19, and it will have 1.19 (suitably patched for security updates) for it's entire life. wget 1.20 is in Ubuntu 19.04, which will be released in April 2019. 19.04 packages are NOT designed to run on an 18.04 system - you can try, but doing so is not supported and it might break your system quite horribly.

    – user535733
    Feb 11 at 14:58













  • You could try to compile wget from source, but this requires quite some libraries.

    – koni_raid
    Feb 11 at 15:39
















1















i am quite new to linux



i am looking for the wget 1.20 package for bionic beaver



according to wiki wget 1.20 was released on November 2018 , however i cannot seem to find the .deb file for bionic , i only found the version for disco but i got libpcre2-8-0 dependency issue (requires version 10.32 & that version is not updated for bionic yet)



the main reason for upgrading to wget 1.20 is for the new "--retry-on-host-error" option



so from where can i get the package?










share|improve this question




















  • 1





    It won't be 'updated for bionic'. Ubuntu 18.04 shipped with wget 1.19, and it will have 1.19 (suitably patched for security updates) for it's entire life. wget 1.20 is in Ubuntu 19.04, which will be released in April 2019. 19.04 packages are NOT designed to run on an 18.04 system - you can try, but doing so is not supported and it might break your system quite horribly.

    – user535733
    Feb 11 at 14:58













  • You could try to compile wget from source, but this requires quite some libraries.

    – koni_raid
    Feb 11 at 15:39














1












1








1


1






i am quite new to linux



i am looking for the wget 1.20 package for bionic beaver



according to wiki wget 1.20 was released on November 2018 , however i cannot seem to find the .deb file for bionic , i only found the version for disco but i got libpcre2-8-0 dependency issue (requires version 10.32 & that version is not updated for bionic yet)



the main reason for upgrading to wget 1.20 is for the new "--retry-on-host-error" option



so from where can i get the package?










share|improve this question
















i am quite new to linux



i am looking for the wget 1.20 package for bionic beaver



according to wiki wget 1.20 was released on November 2018 , however i cannot seem to find the .deb file for bionic , i only found the version for disco but i got libpcre2-8-0 dependency issue (requires version 10.32 & that version is not updated for bionic yet)



the main reason for upgrading to wget 1.20 is for the new "--retry-on-host-error" option



so from where can i get the package?







18.04 wget






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Feb 12 at 7:10







Nice3456

















asked Feb 11 at 14:01









Nice3456Nice3456

83




83








  • 1





    It won't be 'updated for bionic'. Ubuntu 18.04 shipped with wget 1.19, and it will have 1.19 (suitably patched for security updates) for it's entire life. wget 1.20 is in Ubuntu 19.04, which will be released in April 2019. 19.04 packages are NOT designed to run on an 18.04 system - you can try, but doing so is not supported and it might break your system quite horribly.

    – user535733
    Feb 11 at 14:58













  • You could try to compile wget from source, but this requires quite some libraries.

    – koni_raid
    Feb 11 at 15:39














  • 1





    It won't be 'updated for bionic'. Ubuntu 18.04 shipped with wget 1.19, and it will have 1.19 (suitably patched for security updates) for it's entire life. wget 1.20 is in Ubuntu 19.04, which will be released in April 2019. 19.04 packages are NOT designed to run on an 18.04 system - you can try, but doing so is not supported and it might break your system quite horribly.

    – user535733
    Feb 11 at 14:58













  • You could try to compile wget from source, but this requires quite some libraries.

    – koni_raid
    Feb 11 at 15:39








1




1





It won't be 'updated for bionic'. Ubuntu 18.04 shipped with wget 1.19, and it will have 1.19 (suitably patched for security updates) for it's entire life. wget 1.20 is in Ubuntu 19.04, which will be released in April 2019. 19.04 packages are NOT designed to run on an 18.04 system - you can try, but doing so is not supported and it might break your system quite horribly.

– user535733
Feb 11 at 14:58







It won't be 'updated for bionic'. Ubuntu 18.04 shipped with wget 1.19, and it will have 1.19 (suitably patched for security updates) for it's entire life. wget 1.20 is in Ubuntu 19.04, which will be released in April 2019. 19.04 packages are NOT designed to run on an 18.04 system - you can try, but doing so is not supported and it might break your system quite horribly.

– user535733
Feb 11 at 14:58















You could try to compile wget from source, but this requires quite some libraries.

– koni_raid
Feb 11 at 15:39





You could try to compile wget from source, but this requires quite some libraries.

– koni_raid
Feb 11 at 15:39










1 Answer
1






active

oldest

votes


















2














Please mention it as wget 1.20 and not wget 1.2 since they would refer to very different package versions.



As someone else has commented, you're probably out of luck with it comes to getting the newer package on your old distro. As you've mentioned, using the file from the new distro won't work well since it was compiled with newer libraries.



However, you could consider getting the tarball for Wget and compiling it locally, yourself. Just do:



$ wget https://ftp.gnu.org/gnu/wget/wget-latest.tar.gz
$ mkdir wget-latest && tar xzf wget-latest.tar.gz --strip-components 1 -C wget-latest
$ cd wget-latest
$ ./configure
$ make


You can then use the wget executable from src/wget. You could also install it as a local user if you like.






share|improve this answer



















  • 1





    You might need some extra libs: sudo apt-get install build-essential pkg-config libssl-dev libpsl-dev libghc-gnutls-dev

    – koni_raid
    Feb 11 at 15:48











  • or apt-get build-dep wget would be enough.

    – N0rbert
    Feb 11 at 20:22











  • thank you , after installing the extra libs wget was successfully compiled

    – Nice3456
    Feb 12 at 7:02











  • You don't need both libssl-dev and gnutls-dev. Either one is enough.

    – darnir
    Feb 12 at 8:25











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1117377%2fwget-1-20-package-for-bionic-beaver%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









2














Please mention it as wget 1.20 and not wget 1.2 since they would refer to very different package versions.



As someone else has commented, you're probably out of luck with it comes to getting the newer package on your old distro. As you've mentioned, using the file from the new distro won't work well since it was compiled with newer libraries.



However, you could consider getting the tarball for Wget and compiling it locally, yourself. Just do:



$ wget https://ftp.gnu.org/gnu/wget/wget-latest.tar.gz
$ mkdir wget-latest && tar xzf wget-latest.tar.gz --strip-components 1 -C wget-latest
$ cd wget-latest
$ ./configure
$ make


You can then use the wget executable from src/wget. You could also install it as a local user if you like.






share|improve this answer



















  • 1





    You might need some extra libs: sudo apt-get install build-essential pkg-config libssl-dev libpsl-dev libghc-gnutls-dev

    – koni_raid
    Feb 11 at 15:48











  • or apt-get build-dep wget would be enough.

    – N0rbert
    Feb 11 at 20:22











  • thank you , after installing the extra libs wget was successfully compiled

    – Nice3456
    Feb 12 at 7:02











  • You don't need both libssl-dev and gnutls-dev. Either one is enough.

    – darnir
    Feb 12 at 8:25
















2














Please mention it as wget 1.20 and not wget 1.2 since they would refer to very different package versions.



As someone else has commented, you're probably out of luck with it comes to getting the newer package on your old distro. As you've mentioned, using the file from the new distro won't work well since it was compiled with newer libraries.



However, you could consider getting the tarball for Wget and compiling it locally, yourself. Just do:



$ wget https://ftp.gnu.org/gnu/wget/wget-latest.tar.gz
$ mkdir wget-latest && tar xzf wget-latest.tar.gz --strip-components 1 -C wget-latest
$ cd wget-latest
$ ./configure
$ make


You can then use the wget executable from src/wget. You could also install it as a local user if you like.






share|improve this answer



















  • 1





    You might need some extra libs: sudo apt-get install build-essential pkg-config libssl-dev libpsl-dev libghc-gnutls-dev

    – koni_raid
    Feb 11 at 15:48











  • or apt-get build-dep wget would be enough.

    – N0rbert
    Feb 11 at 20:22











  • thank you , after installing the extra libs wget was successfully compiled

    – Nice3456
    Feb 12 at 7:02











  • You don't need both libssl-dev and gnutls-dev. Either one is enough.

    – darnir
    Feb 12 at 8:25














2












2








2







Please mention it as wget 1.20 and not wget 1.2 since they would refer to very different package versions.



As someone else has commented, you're probably out of luck with it comes to getting the newer package on your old distro. As you've mentioned, using the file from the new distro won't work well since it was compiled with newer libraries.



However, you could consider getting the tarball for Wget and compiling it locally, yourself. Just do:



$ wget https://ftp.gnu.org/gnu/wget/wget-latest.tar.gz
$ mkdir wget-latest && tar xzf wget-latest.tar.gz --strip-components 1 -C wget-latest
$ cd wget-latest
$ ./configure
$ make


You can then use the wget executable from src/wget. You could also install it as a local user if you like.






share|improve this answer













Please mention it as wget 1.20 and not wget 1.2 since they would refer to very different package versions.



As someone else has commented, you're probably out of luck with it comes to getting the newer package on your old distro. As you've mentioned, using the file from the new distro won't work well since it was compiled with newer libraries.



However, you could consider getting the tarball for Wget and compiling it locally, yourself. Just do:



$ wget https://ftp.gnu.org/gnu/wget/wget-latest.tar.gz
$ mkdir wget-latest && tar xzf wget-latest.tar.gz --strip-components 1 -C wget-latest
$ cd wget-latest
$ ./configure
$ make


You can then use the wget executable from src/wget. You could also install it as a local user if you like.







share|improve this answer












share|improve this answer



share|improve this answer










answered Feb 11 at 15:34









darnirdarnir

21112




21112








  • 1





    You might need some extra libs: sudo apt-get install build-essential pkg-config libssl-dev libpsl-dev libghc-gnutls-dev

    – koni_raid
    Feb 11 at 15:48











  • or apt-get build-dep wget would be enough.

    – N0rbert
    Feb 11 at 20:22











  • thank you , after installing the extra libs wget was successfully compiled

    – Nice3456
    Feb 12 at 7:02











  • You don't need both libssl-dev and gnutls-dev. Either one is enough.

    – darnir
    Feb 12 at 8:25














  • 1





    You might need some extra libs: sudo apt-get install build-essential pkg-config libssl-dev libpsl-dev libghc-gnutls-dev

    – koni_raid
    Feb 11 at 15:48











  • or apt-get build-dep wget would be enough.

    – N0rbert
    Feb 11 at 20:22











  • thank you , after installing the extra libs wget was successfully compiled

    – Nice3456
    Feb 12 at 7:02











  • You don't need both libssl-dev and gnutls-dev. Either one is enough.

    – darnir
    Feb 12 at 8:25








1




1





You might need some extra libs: sudo apt-get install build-essential pkg-config libssl-dev libpsl-dev libghc-gnutls-dev

– koni_raid
Feb 11 at 15:48





You might need some extra libs: sudo apt-get install build-essential pkg-config libssl-dev libpsl-dev libghc-gnutls-dev

– koni_raid
Feb 11 at 15:48













or apt-get build-dep wget would be enough.

– N0rbert
Feb 11 at 20:22





or apt-get build-dep wget would be enough.

– N0rbert
Feb 11 at 20:22













thank you , after installing the extra libs wget was successfully compiled

– Nice3456
Feb 12 at 7:02





thank you , after installing the extra libs wget was successfully compiled

– Nice3456
Feb 12 at 7:02













You don't need both libssl-dev and gnutls-dev. Either one is enough.

– darnir
Feb 12 at 8:25





You don't need both libssl-dev and gnutls-dev. Either one is enough.

– darnir
Feb 12 at 8:25


















draft saved

draft discarded




















































Thanks for contributing an answer to Ask Ubuntu!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1117377%2fwget-1-20-package-for-bionic-beaver%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

How to reconfigure Docker Trusted Registry 2.x.x to use CEPH FS mount instead of NFS and other traditional...

is 'sed' thread safe

How to make a Squid Proxy server?