Dec 4 2017
Configuring proxychain with viber on linux
I wanted to use viber on ubuntu linux but couldn’t connect due to being behind a proxy.
I had to do two things:
- Install proxychains and configure my proxy information in the proxychains configuration file.
- Run viber using proxychains. Finally make a special sh file to do this.
root@mbak1-VirtualBox:~/Desktop# nano /etc/proxychains.conf [ProxyList] # add proxy here ... # meanwile # defaults set to "tor" http xxx.xxx.xx.xx 8012 user password https xxx.xxx.xx.xx 8012 user password
Created the following SH file to run viber with the proxy:
#!/bin/bash proxychains /opt/viber/Viber %u
Jan 29, 2020 @ 12:38:18
MOO