command to download & agree licensed software











up vote
0
down vote

favorite












I am writing a script that download this software, then install and run it on linux system.



Issue is when I do wget to download, my download doesn't initiate, it halts showing below line, because software web portal waiting user to accept license terms&conditions:



Connecting to software.intel.com


I can download this software from my windows system, since I can accept license agreement by clicking accept button. But how do I download this software and accept license agreement from my linux system in script?



Do I need to pass any parameter in wget command?










share|improve this question









New contributor




ghost204nit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • See this answer on Askubuntu , install Export cookies from here
    – GAD3R
    2 days ago

















up vote
0
down vote

favorite












I am writing a script that download this software, then install and run it on linux system.



Issue is when I do wget to download, my download doesn't initiate, it halts showing below line, because software web portal waiting user to accept license terms&conditions:



Connecting to software.intel.com


I can download this software from my windows system, since I can accept license agreement by clicking accept button. But how do I download this software and accept license agreement from my linux system in script?



Do I need to pass any parameter in wget command?










share|improve this question









New contributor




ghost204nit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • See this answer on Askubuntu , install Export cookies from here
    – GAD3R
    2 days ago















up vote
0
down vote

favorite









up vote
0
down vote

favorite











I am writing a script that download this software, then install and run it on linux system.



Issue is when I do wget to download, my download doesn't initiate, it halts showing below line, because software web portal waiting user to accept license terms&conditions:



Connecting to software.intel.com


I can download this software from my windows system, since I can accept license agreement by clicking accept button. But how do I download this software and accept license agreement from my linux system in script?



Do I need to pass any parameter in wget command?










share|improve this question









New contributor




ghost204nit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











I am writing a script that download this software, then install and run it on linux system.



Issue is when I do wget to download, my download doesn't initiate, it halts showing below line, because software web portal waiting user to accept license terms&conditions:



Connecting to software.intel.com


I can download this software from my windows system, since I can accept license agreement by clicking accept button. But how do I download this software and accept license agreement from my linux system in script?



Do I need to pass any parameter in wget command?







command-line wget






share|improve this question









New contributor




ghost204nit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




ghost204nit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 2 days ago









GAD3R

25k1749106




25k1749106






New contributor




ghost204nit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 2 days ago









ghost204nit

6




6




New contributor




ghost204nit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





ghost204nit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






ghost204nit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












  • See this answer on Askubuntu , install Export cookies from here
    – GAD3R
    2 days ago




















  • See this answer on Askubuntu , install Export cookies from here
    – GAD3R
    2 days ago


















See this answer on Askubuntu , install Export cookies from here
– GAD3R
2 days ago






See this answer on Askubuntu , install Export cookies from here
– GAD3R
2 days ago












1 Answer
1






active

oldest

votes

















up vote
0
down vote













wget is non-interactive. If you wish to interactively download via the shell you will need to use different software.



To get your package, the easiest course of action would be to accept the license and download it on a computer with a browser than using scp or sftp or any other method to transfer files from one computer to another.



In the end you cannot interactively download using only wget, you would have to wrap it in a interactive script or use a different method to obtain this package.






share|improve this answer























  • I am not able to wget even with the download link you shared. Reason you're able to do so, I am guessing, is that you already accept license agreement, and that is saved for your that session. If you simply open incongnito mode of any browser and try copy-pasting your link, it will not download file.
    – ghost204nit
    2 days ago












  • @ghost204nit I see what you mean. the file I downloaded was not a valid tarball. Is it at all possible to simply download this file on one computer with a browser and push the tarball over to the machine that needs it? Is there any other way that Intel distributes these kinds of files? I am going to edit the answer to remove that part as it is invalid.
    – kemotep
    yesterday










  • @kemotop: scp or sftp option I was already aware of, but was reluctant to use, as I wanted to have complete automation. I did not find any other way that Intel distributes this package. So now, for sake of simplicity and time efficiency, I am going with scp.
    – ghost204nit
    yesterday












  • @ghost204nit Part of the issue is that you have to navigate multiple pages and the download links are based on cookie sessions so you will need to contact Intel to see if they have API for this on their site. If you do not need to change packages very often you only need to get your hands on this package once manually and you could automate the deployment of it to many machines.
    – kemotep
    yesterday











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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',
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
});


}
});






ghost204nit is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f487414%2fcommand-to-download-agree-licensed-software%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








up vote
0
down vote













wget is non-interactive. If you wish to interactively download via the shell you will need to use different software.



To get your package, the easiest course of action would be to accept the license and download it on a computer with a browser than using scp or sftp or any other method to transfer files from one computer to another.



In the end you cannot interactively download using only wget, you would have to wrap it in a interactive script or use a different method to obtain this package.






share|improve this answer























  • I am not able to wget even with the download link you shared. Reason you're able to do so, I am guessing, is that you already accept license agreement, and that is saved for your that session. If you simply open incongnito mode of any browser and try copy-pasting your link, it will not download file.
    – ghost204nit
    2 days ago












  • @ghost204nit I see what you mean. the file I downloaded was not a valid tarball. Is it at all possible to simply download this file on one computer with a browser and push the tarball over to the machine that needs it? Is there any other way that Intel distributes these kinds of files? I am going to edit the answer to remove that part as it is invalid.
    – kemotep
    yesterday










  • @kemotop: scp or sftp option I was already aware of, but was reluctant to use, as I wanted to have complete automation. I did not find any other way that Intel distributes this package. So now, for sake of simplicity and time efficiency, I am going with scp.
    – ghost204nit
    yesterday












  • @ghost204nit Part of the issue is that you have to navigate multiple pages and the download links are based on cookie sessions so you will need to contact Intel to see if they have API for this on their site. If you do not need to change packages very often you only need to get your hands on this package once manually and you could automate the deployment of it to many machines.
    – kemotep
    yesterday















up vote
0
down vote













wget is non-interactive. If you wish to interactively download via the shell you will need to use different software.



To get your package, the easiest course of action would be to accept the license and download it on a computer with a browser than using scp or sftp or any other method to transfer files from one computer to another.



In the end you cannot interactively download using only wget, you would have to wrap it in a interactive script or use a different method to obtain this package.






share|improve this answer























  • I am not able to wget even with the download link you shared. Reason you're able to do so, I am guessing, is that you already accept license agreement, and that is saved for your that session. If you simply open incongnito mode of any browser and try copy-pasting your link, it will not download file.
    – ghost204nit
    2 days ago












  • @ghost204nit I see what you mean. the file I downloaded was not a valid tarball. Is it at all possible to simply download this file on one computer with a browser and push the tarball over to the machine that needs it? Is there any other way that Intel distributes these kinds of files? I am going to edit the answer to remove that part as it is invalid.
    – kemotep
    yesterday










  • @kemotop: scp or sftp option I was already aware of, but was reluctant to use, as I wanted to have complete automation. I did not find any other way that Intel distributes this package. So now, for sake of simplicity and time efficiency, I am going with scp.
    – ghost204nit
    yesterday












  • @ghost204nit Part of the issue is that you have to navigate multiple pages and the download links are based on cookie sessions so you will need to contact Intel to see if they have API for this on their site. If you do not need to change packages very often you only need to get your hands on this package once manually and you could automate the deployment of it to many machines.
    – kemotep
    yesterday













up vote
0
down vote










up vote
0
down vote









wget is non-interactive. If you wish to interactively download via the shell you will need to use different software.



To get your package, the easiest course of action would be to accept the license and download it on a computer with a browser than using scp or sftp or any other method to transfer files from one computer to another.



In the end you cannot interactively download using only wget, you would have to wrap it in a interactive script or use a different method to obtain this package.






share|improve this answer














wget is non-interactive. If you wish to interactively download via the shell you will need to use different software.



To get your package, the easiest course of action would be to accept the license and download it on a computer with a browser than using scp or sftp or any other method to transfer files from one computer to another.



In the end you cannot interactively download using only wget, you would have to wrap it in a interactive script or use a different method to obtain this package.







share|improve this answer














share|improve this answer



share|improve this answer








edited yesterday

























answered 2 days ago









kemotep

1,9513618




1,9513618












  • I am not able to wget even with the download link you shared. Reason you're able to do so, I am guessing, is that you already accept license agreement, and that is saved for your that session. If you simply open incongnito mode of any browser and try copy-pasting your link, it will not download file.
    – ghost204nit
    2 days ago












  • @ghost204nit I see what you mean. the file I downloaded was not a valid tarball. Is it at all possible to simply download this file on one computer with a browser and push the tarball over to the machine that needs it? Is there any other way that Intel distributes these kinds of files? I am going to edit the answer to remove that part as it is invalid.
    – kemotep
    yesterday










  • @kemotop: scp or sftp option I was already aware of, but was reluctant to use, as I wanted to have complete automation. I did not find any other way that Intel distributes this package. So now, for sake of simplicity and time efficiency, I am going with scp.
    – ghost204nit
    yesterday












  • @ghost204nit Part of the issue is that you have to navigate multiple pages and the download links are based on cookie sessions so you will need to contact Intel to see if they have API for this on their site. If you do not need to change packages very often you only need to get your hands on this package once manually and you could automate the deployment of it to many machines.
    – kemotep
    yesterday


















  • I am not able to wget even with the download link you shared. Reason you're able to do so, I am guessing, is that you already accept license agreement, and that is saved for your that session. If you simply open incongnito mode of any browser and try copy-pasting your link, it will not download file.
    – ghost204nit
    2 days ago












  • @ghost204nit I see what you mean. the file I downloaded was not a valid tarball. Is it at all possible to simply download this file on one computer with a browser and push the tarball over to the machine that needs it? Is there any other way that Intel distributes these kinds of files? I am going to edit the answer to remove that part as it is invalid.
    – kemotep
    yesterday










  • @kemotop: scp or sftp option I was already aware of, but was reluctant to use, as I wanted to have complete automation. I did not find any other way that Intel distributes this package. So now, for sake of simplicity and time efficiency, I am going with scp.
    – ghost204nit
    yesterday












  • @ghost204nit Part of the issue is that you have to navigate multiple pages and the download links are based on cookie sessions so you will need to contact Intel to see if they have API for this on their site. If you do not need to change packages very often you only need to get your hands on this package once manually and you could automate the deployment of it to many machines.
    – kemotep
    yesterday
















I am not able to wget even with the download link you shared. Reason you're able to do so, I am guessing, is that you already accept license agreement, and that is saved for your that session. If you simply open incongnito mode of any browser and try copy-pasting your link, it will not download file.
– ghost204nit
2 days ago






I am not able to wget even with the download link you shared. Reason you're able to do so, I am guessing, is that you already accept license agreement, and that is saved for your that session. If you simply open incongnito mode of any browser and try copy-pasting your link, it will not download file.
– ghost204nit
2 days ago














@ghost204nit I see what you mean. the file I downloaded was not a valid tarball. Is it at all possible to simply download this file on one computer with a browser and push the tarball over to the machine that needs it? Is there any other way that Intel distributes these kinds of files? I am going to edit the answer to remove that part as it is invalid.
– kemotep
yesterday




@ghost204nit I see what you mean. the file I downloaded was not a valid tarball. Is it at all possible to simply download this file on one computer with a browser and push the tarball over to the machine that needs it? Is there any other way that Intel distributes these kinds of files? I am going to edit the answer to remove that part as it is invalid.
– kemotep
yesterday












@kemotop: scp or sftp option I was already aware of, but was reluctant to use, as I wanted to have complete automation. I did not find any other way that Intel distributes this package. So now, for sake of simplicity and time efficiency, I am going with scp.
– ghost204nit
yesterday






@kemotop: scp or sftp option I was already aware of, but was reluctant to use, as I wanted to have complete automation. I did not find any other way that Intel distributes this package. So now, for sake of simplicity and time efficiency, I am going with scp.
– ghost204nit
yesterday














@ghost204nit Part of the issue is that you have to navigate multiple pages and the download links are based on cookie sessions so you will need to contact Intel to see if they have API for this on their site. If you do not need to change packages very often you only need to get your hands on this package once manually and you could automate the deployment of it to many machines.
– kemotep
yesterday




@ghost204nit Part of the issue is that you have to navigate multiple pages and the download links are based on cookie sessions so you will need to contact Intel to see if they have API for this on their site. If you do not need to change packages very often you only need to get your hands on this package once manually and you could automate the deployment of it to many machines.
– kemotep
yesterday










ghost204nit is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















ghost204nit is a new contributor. Be nice, and check out our Code of Conduct.













ghost204nit is a new contributor. Be nice, and check out our Code of Conduct.












ghost204nit is a new contributor. Be nice, and check out our Code of Conduct.
















Thanks for contributing an answer to Unix & Linux Stack Exchange!


  • 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.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • 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%2funix.stackexchange.com%2fquestions%2f487414%2fcommand-to-download-agree-licensed-software%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

Entries order in /etc/network/interfaces

新発田市

Grub takes very long (several minutes) to open Menu (in Multi-Boot-System)