Linux安装shellclash

标准linux设备 使用curl安装: 1 2 #jsdelivrCDN源 export url='https://fastly.jsdelivr.net/gh/juewuy/ShellClash@master' && sh -c "$(curl -kfsSl $url/install.sh)" && source /etc/profile &> /dev/null 或者 1 export url='https://gh.jwsc.eu.org/master' && bash -c "$(curl -kfsSl $url/install.sh)" && source /etc/profile &> /dev/null 使用wget安装: 1 2 #Release版本-jsdelivrCDN源 export url='https://fastly.jsdelivr.net/gh/juewuy/ShellClash@master' && wget

搭建linux服务器网页测速

1 2 3 4 5 6 7 8 9 10 docker run -d \ --name=librespeed \ -e PUID=1000 \ -e PGID=1000 \ -e TZ=Etc/UTC \ -e PASSWORD="password" \ -p 80:80 \ -v ~/librespeed/config:/config \ --restart unless-stopped \ lscr.io/linuxserver/librespeed:latest

搭建chatgpt微信机器人

fuergaosi233/wechat-chatgpt方案 拉docker 1 2 3 4 5 6 7 8 9 10 11 12 13 14 # pull image docker pull holegots/wechat-chatgpt # run container docker run -d --name wechat-chatgpt \ -e OPENAI_API_KEY="" \ -e MODEL="gpt-3.5-turbo" \ -e DISABLE_GROUP_MESSAGE="false" \ -e CHAT_PRIVATE_TRIGGER_KEYW