ubuntu 搭建ss

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu 搭建ss相关的知识,希望对你有一定的参考价值。

1.装ss

apt-get install python-pip python-m2crypto
pip install shadowsocks

2.配置文件

{
"server":"your_server_ip",
"server_port":8000,
"local_port":1080,
"password":"your_passwd",
"timeout":600,
"method":"aes-256-cfb"
}

Explanation of each field:

  • server:  your hostname or server IP (IPv4/IPv6).
  • server_port:  server port number.
  • local_port:  local port number.
  • password:  a password used to encrypt transfer.
  • timeout:  connections timeout in seconds.
  • method:  encryption method, “bf-cfb”, “aes-256-cfb”, “des-cfb”, “rc4”, etc. Default is table, which is not secure. “aes-256-cfb” is recommended.

3.启动

ssserver -c /etc/shadowsocks.json -d restart

 

附:

ubuntu装远程桌面:

1.装xrdp:

apt-get install xrdp

2.装vnc4server

apt-get install vnc4server

3.装xfce4

apt-get install xubuntu-desktop
echo "xfce4-session" >~/.xsession

 

以上是关于ubuntu 搭建ss的主要内容,如果未能解决你的问题,请参考以下文章

记录C#常用的代码片段

python 一个终端代码片段,在mac上生成可启动的usb live CD,以运行类似ubuntu或debian的内容。

续:纠正:ubuntu7.04可以安装,而且完美的安装 ! for《Oracle-10.2.0.1,打补丁10.2.0.5:在 debian 版本4不含4以上,及 ubuntu 7.04不含(代码片段

Ubuntu 16.04 安装ss客户端

ubuntu16.04 yum报错:There are no enabled repos. Run “yum repolist all“ to see the repos you have.(代码片段

在Linux下搭建Git服务器的方法是什么样?