一 SSH远程服务
1 Ubuntu安装SSH服务
1 2
| //修改root密码 # sudo paswd root
|
1 2 3 4 5 6 7 8 9
| //安装ssh服务 # sudo apt-get install openssh-server ##查询ssh进程是否启动成功 # ps -e | grep ssh ##重新启动ssh服务 # sudo /etc/init.d/ssh restart # sudo service ssh restart //查看IP ssh连接即可 # ifconfig
|
2 错误:ssh 服务器拒绝了密码
1 2 3 4 5
| //修改 vim /etc/ssh/sshd_config 被注释掉时,将注释全部释放就可以 LoginGraceTime 120 PermitRootLogin yes StrictModes yes PasswordAuthentication yes
|
- 更新配置
1
| # source /etc/ssh/sshd_config
|
- 修改密码
1 2
| //设置root密码 sudo passwd root
|
二 安装shadowsocks 服务
1 安装ss
1 2 3 4 5 6 7
| # sudo apt install shadowsocks ##安装ss
//python 版本 # sudo apt-get update # sudo apt-get install python-gevent python-pip # sudo pip install shadowsocks # apt-get install python-m2crypto
|
2 配置服务器参数
1 2 3 4 5 6 7 8 9
| # vim /etc/shadowsocks.json { "server":"0.0.0.0", #你的服务器IP "server_port":8388, "local_port":1080, "password":"YourPwdForSS", #你的服务器密码 "timeout":600, "method":"aes-256-cfb" }
|
3 启动/关闭服务
1 2 3 4
| //开启 # sudo ssserver -c /etc/shadowsocks.json -d start //关闭 # sudo ssserver -c /etc/shadowsocks.json -d stop
|
4 ss客户端 https://github.com/shadowsocks/shadowsocks-windows
填写信息:
服务器地址,端口号,密码,加密方式与代理端口默认即可。
右键任务栏图标,选择启用系统代理 Go
三 镜像源切换
1 备份官方源
1
| # cp /etc/apt/sources.list /etc/apt/sources.list.bak
|
添加镜像源
1 2 3
| ubuntu mirro: sudo sed -i "s@http://.*archive.ubuntu.com@http://repo.huaweicloud.com@g" /etc/apt/sources.list sudo sed -i "s@http://.*security.ubuntu.com@http://repo.huaweicloud.com@g" /etc/apt/sources.list
|
更新即可
四,关于ubunut 静态ip配置
1 ubuntu 18
1 2 3 4 5
| # sudo vim /etc/netplan/xx_config.yaml addresses: - x.x.x.x/24 //保存退出。应用 # sudo netplan apply
|
原内容
改后