Twitter: @riku

Pino : Ubuntu 上最好的 Twitter 客户端之一

介绍

Pino 应该说是 Ubuntu 上最好的 Twitter 客户端之一,最主要是因为他支持 Twitter API Proxy 。另外,还支持多帐号,网址缩短等功能。

主页:http://pino-app.appspot.com/

安装

下载:http://pino-app.appspot.com/downloads

Ubuntu 上安装

sudo add-apt-repository ppa:vala-team/ppa
sudo add-apt-repository ppa:troorl/pino
sudo apt-get update
sudo apt-get install pino

截图:

结合 proxychains 及 SSH tunneling 翻墙

虽然 pino 支持 API proxy ,但我发现它的这个功能并不是很好,有时没法更新。但问题是 pino 并不提供 socket5 代理功能,所以只能借助于第三方工具来实现,这个工具就是 proxychains ,这是一个类似于之前介绍过的 windows 下 freecap 的软件,结合 ssh tunneling 功能来实现翻墙。

安装

sudo apt-get install proxychains

配置,修改 /etc/proxychains.conf

# proxychains.conf  VER 2.0
#
#        HTTP, SOCKS4, SOCKS5 tunneling proxifier.
#

# The option below identifies how the ProxyList is treated.
# only one option should be uncommented at time,
# otherwise the last appearing option will be accepted
#
# Dynamic - Each connection will be done via chained proxies
# all proxies chained in the order as they appear in the list
# at least one proxy must be online to play in chain
# (dead proxies are skipped)
# otherwise EINTR is returned to the app
#
# Strict - Each connection will be done via chained proxies
# all proxies chained in the order as they appear in the list
# all proxies must be online to play in chain
# otherwise EINTR is returned to the app
#
# Random - Each connection will be done via random proxy
# (or proxy chain, see  chain_len) from the list
# this option is good for scans

dynamic_chain
#strict_chain
#random_chain

# Make sense only if random_chain
chain_len = 2

# Quiet mode (no output)
#quiet_mode

# Write stats about good proxies to proxychains.stats
#write_stats

#Some timeouts in milliseconds
#
tcp_read_time_out 15000
tcp_connect_time_out 10000

[ProxyList]
# ProxyList format
#       type  host  port [user pass]
#       (values separated by 'tab' or 'blank')
#
#
#        Examples:
#
#                socks5    192.168.67.78    1080    lamer  secret
#        http    192.168.89.3    8080    justu    hidden
#         socks4    192.168.1.49    1080
#            http    192.168.39.93    8080
#
#
#       proxy types: http, socks4, socks5
#        ( auth types supported: "basic"-http  "user/pass"-socks )
#
#http     10.0.0.5 3128
socks5 127.0.0.1 7070

注意选 dynamic_chain

运行 proxychains

proxychains pino &

或者修改 main menu 中的配置,如图。

这样就可以通过菜单来直接启动了。

参考

http://sprayfly.com/2009/07/09/用-tsocks-使-linux-下所有软件能够翻墙/

Discussion

Auston Jary, 2010/05/26 13:07

刚又把卸载了的pino装回来了 还是不习惯 每个消息都提醒出来….

Enter your comment