美文网首页
【CLI】VPS CentOS 初步安装流程(Mac)

【CLI】VPS CentOS 初步安装流程(Mac)

作者: 刘大帅 | 来源:发表于2019-06-11 18:40 被阅读0次

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

相关文章

网友评论

      本文标题:【CLI】VPS CentOS 初步安装流程(Mac)

      本文链接:https://www.haomeiwen.com/subject/slrcfctx.html