知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

Linux设置代理

发布时间:2014-09-05 14:04:25作者:知识屋

Linux设置代理
 
Linux系统设置yum,wget,rpm命令使用代理:
 
1.Using yum with a proxyserver
---------------------------------------
To enable yum operations to use aproxy server you should first add the following parameter to /etc/yum.conf          
 
proxy=http://yourproxy:8080/  
 
where yourproxy is the name of the proxy server you want to access and 8080 isthe proxy port. If the server requires authentication you can specify the logincredentials like:
 
proxy=http://username:password@yourproxy:8080/ 
 
---------------------------------------
 
2. The rpm package manager makesuse of the proxy environment variable. This can be set system wide in /etc/profile or user specific in ~/.bash_profile:
 
export http_proxy=http://yourproxy:8080/ 
export ftp_proxy=http://yourproxy:8080/ 
 
---------------------------------------
 
3. To use wget throug a proxy serveradd the following lines to /etc/wgetrc     
http_proxy = http://yourproxy:8080/  
ftp_proxy = http://yourproxy:8080/
 
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜