User Tools

Site Tools


wiki:use_curl_as_wget_replacement

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
wiki:use_curl_as_wget_replacement [2017/01/12 19:51] – created walkeradminwiki:use_curl_as_wget_replacement [2023/03/09 22:35] (current) – external edit 127.0.0.1
Line 4: Line 4:
  
 ---- ----
-By default, <color red>wget</color> is not installed on the MFEL. Even updating repositories (using EPEL) will not enable <color red>wget</color> installation. To overcome this you can use <>curl</color> as a drop in replacement for <color red>wget</color>.+By default, <color red>wget</color> is not installed on the MFEL. Even updating repositories (using EPEL) will not enable <color red>wget</color> installation. To overcome this you can use <color darkorange>curl</color> as a drop in replacement for <color red>wget</color>. 
 +\\  
 +\\  
 +    Where you would have used wget like so: 
 +     
 +    wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm 
 +\\  
 +    You can use: 
 +     
 +    curl -O https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm 
 +\\  
 +The <color darkorange>-O</color> is important, this tells <color darkorange>curl</color> to output to file, by default <color darkorange>curl</color> will output to the console (screen) and you will just see a mess. 
 +\\  
 +\\  
 +      
 +      
 +     
wiki/use_curl_as_wget_replacement.1484250676.txt.gz · Last modified: 2023/03/09 22:35 (external edit)