4889

Centos终端下显示图片

安装caca-utils

yum install caca-utils -y

查看图片

cacaview 1.jpg
638

docker访问宿主机

host模式,容器内共享宿主机的网络

--network host
4433

Centos用Certbot安装ssl证书

安装certbot

yum install certbot python2-certbot-nginx

1. 使用nginx插件自动配置

certbot --nginx
4481

Centos常用操作命令

只修改文件夹的权限,代码:

chmod 755 `find ./ -type d `

只修改文件的权限,代码:

chmod 644 `find ./ -type f`

修改主机名

vi /etc/sysconfig/network

#添加
HOSTNAME=your-name

vi /etc/hosts

#修改
192.168.x.x your-name your-name

#终端执行
hostname your-name
3179

Centos7安装shadowsocks、v2ray

2023-03-09更新

推荐使用Trojan-go,参考本站 Centos7安装配置Trojan-go + Nginx

2021-11-13安装v2ray

安装v2ray服务端

下载安装脚本

wget https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh  --user-agent="Mozilla/5.0"

执行安装脚本

./install-release.sh

如果报错 Unable to establish SSL connection. 安装openssl

yum install openssl