FRP配置

跳板机

# frps.ini 配置
[common]
bind_port = 7000 #frps服务监听的端口
token = 123 # 链接口令
./frps -c frps.ini # 启动frps

服务器

# frpc.ini
[common]
server_addr = x.x.x.x # 此处为 跳板机 的公网ip
server_port = 7000 # 跳板机上frps服务监听的端口
token = 123 # 链接口令

[ssh]
type = tcp
local_ip = 127.0.0.1 
local_port = 22 # 需要暴露的内网机器的端口
remote_port = 6000 # 暴露的内网机器的端口在vps上的端口

SSH连接

ssh -p 6000 swimmingliu@server.ip # 普通ssh 连接
ssh swimmingliu@server.ip 6000	  # xshell ssh连接

用户管理

添加用户

sudo adduser xxx

删除用户

sudo deluser xxx

Magic Network

export http_proxy=http://127.0.0.1:7890
export https_proxy=http://127.0.0.1:7890

Anaconda3 安装和配置

安装Anaconda3

wget --user-agent="Mozilla" https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-2023.07-1-Linux-x86_64.sh
bash Anaconda3-2023.07-1-Linux-x86_64.sh
# https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive 清华源

配置之前的envs

cp -r old_envs_path anaconda/envs/		#迁移之前的envs环境

完结撒花❀❀❀