1.搭建SSR+BBR(可选)参见教程
a.sudo -i
(获取root权限)
b.yum -y install wget
(若未安装wget)
c.wget -N –no-check-certificate https://raw.githubusercontent.com/FunctionClub/YankeeBBR/master/bbr.sh && bash bbr.sh install
(获取BBR加速)
d.bash bbr.sh start
(运行BBR脚本)
e.wget –no-check-certificate https://raw.githubusercontent.com/teddysun/shadowsocks_install/master/shadowsocksR.sh && chmod +x shadowsocksR.sh
(获取SSR)
f.sh shadowsocksR.sh
(运行SSR脚本,设置端口,密码,加密方式等,设置完后,记得保存下来这些信息,以便客户端连接的时候匹配)
2.设置第三方SSH登录
a.vim /etc/ssh/sshd_config
,加入以下两个配置
PermitRootLogin yes
PasswordAuthentication yes
保存,reboot
重启VPS
b.passwd
设置登录密码
c.客户端生成公钥私钥
cd ~/.ssh
ssh-keygen -t rsa
生成公钥私钥的时候,要起名字,最好起个独特的名字,以防覆盖原有的钥匙,可以ls
提前看一下目录都有那些钥匙
d.将公钥上传VPSssh-copy-id root@34.120.110.119
,其中34.120.110.119
要替换成你的VPS外部IP
e.登录ssh root@34.120.110.119
,其中34.120.110.119
要替换成你的VPS外部IP
3.安装zsh和oh-my-zsh
a.echo $SHELL
查看系统当前shell
b.cat /etc/shells
查看shell种类,若没有,需安装
c.sudo yum install zsh -y
安装zsh
d.chsh -s /bin/zsh
切换shell至zsh
e.sudo reboot
重启VPS,然后重新登录
f.sudo yum install git -y
安装git
g.wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
安装oh-my-zsh
h.oh-my-zsh自带了一些插件,详见,首先,注册插件,vim ~/.zshrc
,编辑插件部分,plugins=(git autojump zsh-syntax-highlighting)
,其中,git
是默认注册的,autojump
不用下载安装,注册就好,zsh-syntax-highlighting
需要下载安装
i.git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
下载安装zsh-syntax-highlightin
,然后source ~/.zshrc
就好
4.安装vim插件全家桶spf13
a.curl https://j.mp/spf13-vim3 -L > spf13-vim.sh && sh spf13-vim.sh
网友评论