使用宝塔安装WordPress搭建网站
使用宝塔安装WordPress搭建网站感谢Rick大佬的指点,让我学习搭建个人的小网站小博客
一、准备一台VPS和一个域名,并将域名解析到此VPS的IP上。我用的VPS是racknerd。二、安装宝塔面板宝塔面板是一款服务器管理软件,可以通过Web端轻松管理服务器,安装/卸载软件、监控服务器状态非常方便,提升运维效率。根据不同的系统,只需要一条命令就可以完成安装了。
Centos安装脚本yum install -y wget && wget -O install.sh https://download.bt.cn/install/install_6.0.sh && sh install.sh ed8484bec
Ubuntu/Deepin安装脚本wget -O install.sh https://download.bt.cn/install/install-ubuntu_6.0.sh && sudo bash install.sh ed8484bec
Debian安装脚本wget -O install.sh ht ...
Ubuntu VM安装sing-box tun
感谢O大佬的天书秘籍和一对一地指导,让我用上了sing-box tun,我现在记录一下过程
全新ubuntu23.10安装
123456789101112131415apt updateapt upgrade -y apt -y install curl git build-essential libssl-dev libevent-dev zlib1g-dev gcc-mingw-w64curl -L https://go.dev/dl/go1.20.10.linux-amd64.tar.gz -o go1.20.10.linux-amd64.tar.gztar -C /usr/local -xzf go1.20.10.linux-amd64.tar.gzecho 'export PATH=$PATH:/usr/local/go/bin' > /etc/profile.d/golang.shsource /etc/profile.d/golang.shgo install -v -tags with_quic,with_grpc,with_dhcp,with ...
debian安装DNS转发器mosdns-cn
感谢O大佬的天书秘籍和一对一地指导,让我用上了dns转发器,我现在记录一下过程
在PVE中创建虚拟机并安装全新debian系统,在控制台运行以下命令更新软件源
apt update && apt upgrade -y
开启root远端登录和22端口,编辑/etc/ssh/sshd_config文件
12su -nano /etc/ssh/sshd_config
找到配置参数:Port 22,将前面的#删掉;找到参数:PermitRootLogin,将该参数后面的值修改为yes即可
12Port 22PermitRootLogin yes
退出保存并重启
12ctrl+xreboot
以下在SSH工具中进行。config.yaml;domain.txt;geoip.dat;geosite.dat;LICENSE;mosdns-cn;mosdns-cn.service;README.md,这些所有拉的文件都要给权限0777
mosdns-cn 拉到 /usr/bin (0777)
添加权限
chmod 77 ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment