linux-software

linux 环境下各种软件的安装

centos 安装 v2ray 服务端 ( 个人VPN搭建)

1
2
3
4
yum update -y && yum install curl -y   
bash <(curl -s -L https://git.io/v2ray.sh) ## 安装脚本
v2ray url ## 生成 vmess链接, 导入客户端
systemctl stop firewalld ## 关闭防火墙

安装zsh 和 oh-my-zsh

1
2
3
4
5
6
7
yum install zsh 
## 从gitee上获取安装脚本
wget https://gitee.com/mirrors/oh-my-zsh/raw/master/tools/install.sh

## 编辑 install.sh, 修改以下两行
REPO=${REPO:-mirrors/oh-my-zsh}
REMOTE=${REMOTE:-https://gitee.com/${REPO}.git}