码迷,mamicode.com
首页 > 其他好文 > 详细

配置Odroid ubunutu 静态IP 并让PC 使用Ccproxy 做代理上网

时间:2015-07-02 15:21:17      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:

1.配置Odroid板卡

vi /etc/network/interfaces  配置静态IP 

#source-directory /etc/network/interfaces.d
auto eth0
iface eth0 inet static
address 192.168.1.11
gateway 192.168.1.0
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255

2.在PC启动ccproxy ,将PC ip设置为192.168.1.10  ,ccproxy 代理端口默认为808

3. 在Odroid板卡上设置代理

export http_proxy=192.168.1.10:808

export https_proxy=192.168.1.10:808

通用代理测试 wget www.baidu.com 

配置 apt 代理

vi  /etc/apt/apt.conf
Acquire::http::Proxy "http://192.168.1.10:808";

测试 apt-get update

4. sudo 命令默认忽略系统代理环境变量 ,可以 加参数-E 

sudo -E rosdep init 

 

配置Odroid ubunutu 静态IP 并让PC 使用Ccproxy 做代理上网

标签:

原文地址:http://www.cnblogs.com/fastwave2004/p/4615930.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!