Wget for puppet installation
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I'm going to install puppet (puppet master) in a CentOs v7 Server which is running on google cloud. I am facing a issue with downloading the puppet tarball into my server.
Once I use below command,
wget https://pm.puppet.com/cgi-bin/download.cgi?arch=x86_64&dist=el&rel=7&ver=latest
It is downloding the .CGI file. not the Tar ball. But once I hit the url it download the respective tar file
wget
add a comment |Â
up vote
0
down vote
favorite
I'm going to install puppet (puppet master) in a CentOs v7 Server which is running on google cloud. I am facing a issue with downloading the puppet tarball into my server.
Once I use below command,
wget https://pm.puppet.com/cgi-bin/download.cgi?arch=x86_64&dist=el&rel=7&ver=latest
It is downloding the .CGI file. not the Tar ball. But once I hit the url it download the respective tar file
wget
It does not work because ? and & are special characters to the shell, and need to be escaped. Keep it in mind for future similar problems
â Rui F Ribeiro
yesterday
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm going to install puppet (puppet master) in a CentOs v7 Server which is running on google cloud. I am facing a issue with downloading the puppet tarball into my server.
Once I use below command,
wget https://pm.puppet.com/cgi-bin/download.cgi?arch=x86_64&dist=el&rel=7&ver=latest
It is downloding the .CGI file. not the Tar ball. But once I hit the url it download the respective tar file
wget
I'm going to install puppet (puppet master) in a CentOs v7 Server which is running on google cloud. I am facing a issue with downloading the puppet tarball into my server.
Once I use below command,
wget https://pm.puppet.com/cgi-bin/download.cgi?arch=x86_64&dist=el&rel=7&ver=latest
It is downloding the .CGI file. not the Tar ball. But once I hit the url it download the respective tar file
wget
wget
edited yesterday
Rui F Ribeiro
37k1273117
37k1273117
asked yesterday
Ishara Kularatna
51
51
It does not work because ? and & are special characters to the shell, and need to be escaped. Keep it in mind for future similar problems
â Rui F Ribeiro
yesterday
add a comment |Â
It does not work because ? and & are special characters to the shell, and need to be escaped. Keep it in mind for future similar problems
â Rui F Ribeiro
yesterday
It does not work because ? and & are special characters to the shell, and need to be escaped. Keep it in mind for future similar problems
â Rui F Ribeiro
yesterday
It does not work because ? and & are special characters to the shell, and need to be escaped. Keep it in mind for future similar problems
â Rui F Ribeiro
yesterday
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
Did you try quotes on the URL?
For me this command starts to download 472MB of puppet-enterprise-2018.1.4-el-7-x86_64.tar.gz
wget -O puppet-enterprise-2018.1.4-el-7-x86_64.tar.gz 'https://pm.puppet.com/cgi-bin/download.cgi?arch=x86_64&dist=el&rel=7&ver=latest'
If that doesn't help, then there are probably some cookies needed. If you have SSH access to the machine, download the file to your local machine and use scp
to copy it to the remote machine.
Thanks, It worked after adding quotes on the URL. And I was thinking to do it in second way with SCP option. How ever it worked with quotes, Somehow I missed to add, Thanks !!
â Ishara Kularatna
yesterday
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
Did you try quotes on the URL?
For me this command starts to download 472MB of puppet-enterprise-2018.1.4-el-7-x86_64.tar.gz
wget -O puppet-enterprise-2018.1.4-el-7-x86_64.tar.gz 'https://pm.puppet.com/cgi-bin/download.cgi?arch=x86_64&dist=el&rel=7&ver=latest'
If that doesn't help, then there are probably some cookies needed. If you have SSH access to the machine, download the file to your local machine and use scp
to copy it to the remote machine.
Thanks, It worked after adding quotes on the URL. And I was thinking to do it in second way with SCP option. How ever it worked with quotes, Somehow I missed to add, Thanks !!
â Ishara Kularatna
yesterday
add a comment |Â
up vote
1
down vote
accepted
Did you try quotes on the URL?
For me this command starts to download 472MB of puppet-enterprise-2018.1.4-el-7-x86_64.tar.gz
wget -O puppet-enterprise-2018.1.4-el-7-x86_64.tar.gz 'https://pm.puppet.com/cgi-bin/download.cgi?arch=x86_64&dist=el&rel=7&ver=latest'
If that doesn't help, then there are probably some cookies needed. If you have SSH access to the machine, download the file to your local machine and use scp
to copy it to the remote machine.
Thanks, It worked after adding quotes on the URL. And I was thinking to do it in second way with SCP option. How ever it worked with quotes, Somehow I missed to add, Thanks !!
â Ishara Kularatna
yesterday
add a comment |Â
up vote
1
down vote
accepted
up vote
1
down vote
accepted
Did you try quotes on the URL?
For me this command starts to download 472MB of puppet-enterprise-2018.1.4-el-7-x86_64.tar.gz
wget -O puppet-enterprise-2018.1.4-el-7-x86_64.tar.gz 'https://pm.puppet.com/cgi-bin/download.cgi?arch=x86_64&dist=el&rel=7&ver=latest'
If that doesn't help, then there are probably some cookies needed. If you have SSH access to the machine, download the file to your local machine and use scp
to copy it to the remote machine.
Did you try quotes on the URL?
For me this command starts to download 472MB of puppet-enterprise-2018.1.4-el-7-x86_64.tar.gz
wget -O puppet-enterprise-2018.1.4-el-7-x86_64.tar.gz 'https://pm.puppet.com/cgi-bin/download.cgi?arch=x86_64&dist=el&rel=7&ver=latest'
If that doesn't help, then there are probably some cookies needed. If you have SSH access to the machine, download the file to your local machine and use scp
to copy it to the remote machine.
answered yesterday
RalfFriedl
4,2981725
4,2981725
Thanks, It worked after adding quotes on the URL. And I was thinking to do it in second way with SCP option. How ever it worked with quotes, Somehow I missed to add, Thanks !!
â Ishara Kularatna
yesterday
add a comment |Â
Thanks, It worked after adding quotes on the URL. And I was thinking to do it in second way with SCP option. How ever it worked with quotes, Somehow I missed to add, Thanks !!
â Ishara Kularatna
yesterday
Thanks, It worked after adding quotes on the URL. And I was thinking to do it in second way with SCP option. How ever it worked with quotes, Somehow I missed to add, Thanks !!
â Ishara Kularatna
yesterday
Thanks, It worked after adding quotes on the URL. And I was thinking to do it in second way with SCP option. How ever it worked with quotes, Somehow I missed to add, Thanks !!
â Ishara Kularatna
yesterday
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%2f473744%2fwget-for-puppet-installation%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
It does not work because ? and & are special characters to the shell, and need to be escaped. Keep it in mind for future similar problems
â Rui F Ribeiro
yesterday