Ubuntu 12.04使用goagent

至于下载goagent以及申请google帐号,获取AppID,修改配置 就不多说了。

 

至于goagent目录放哪里随便你,直接进入goagent/local/ 启动

python proxy.py

 或者在当前目录

python XXX/goagent/local/proxy.py

注意XXX路径

 

 

会提示

WARNING: python-gevent not installed. `curl -k -L http://git.io/I9B7RQ|sh`

 

根据提示下载安装gevent

 

不知为何,下载的包可能不正常,错误提示:

newgzip: stdin: not in gzip format

tar:Child returned status 1

tar:Error is not recoverable: exiting

 

根据网上的办法也不行

tar -xvf xxx.tar.gz

 

 

解决办法就是换种方式安装的。

sudo apt-get install python-dev libevent-1.4-2 libevent-dev
sudo apt-get install python-setuptools
sudo easy_install greenlet
sudo easy_install gevent

 

但是Ubuntu12.04 的gevent可能版本太新,会导致一个提示

Traceback (most recent call last):
  File "/home/aky/goagent2.1.9/local/proxy.py", line 1706, in <module>
    class DNSServer(gevent.server.DatagramServer):
AttributeError: 'module' object has no attribute 'DatagramServer'
Exception KeyError: KeyError(3066515580L,) in <module 'threading' from '/usr/lib/python2.7/threading.pyc'> ignored

 根据提示只要找到对应文件,对应行数,改为就可以解决了

class DNSServer(gevent.server.StreamServer)

 

至于 chrome请安装SwitchySharp 插件,firefox请安装AutoProxy,并导入证书CA.crt

具体设置那些可自行搜索了解~

你可能感兴趣的:(ubuntu 12.04)