排序
L02※配置网站
1> 添加虚拟主机 以root用户登录 cd oneinstack ./vhost.sh 1.系统会询问是否开启ssl,输入3键可以自动配置;2.输入域名:默认输入www:example.com;3.输入一个指定的目录;4.系统会询问是否...
L01※快速搭建网站运行环境
1> 更新软件 yum -y install gcc-c++ pcre pcre-devel zlib zlib-devel openssl openssl-devel libxml2-devel # 对于Centos或者Redhat系统 apt-get -y install openssl # 对于Debian/Ubuntu...
L23※vps编译 openwrt 系统固件
1> 注意 1. 不要用 root 用户进行编译2. 默认登陆IP 192.168.1.1 密码 password 2> 编译命令 ① 首先装好 Linux 系统,推荐 Debian 11 或 Ubuntu LTS ② 安装编译依赖 sudo apt update -y...
L44※Ubuntu搭建mqtt服务器
1> 引入库 sudo apt-add-repository ppa:mosquitto-dev/mosquitto-ppa sudo apt-get update 2> 安装库文件 sudo apt-get install mosquitto sudo apt-get install mosquitto-dev sudo apt...
L04※vps搭建moon#为Zerotier传输加速
1> 配置服务器端 ① 安装配置ZeroTier客户端 curl -s https://install.zerotier.com/ | sudo bash wget https://mirrors.condor.vip/zerotier/zerotier-install.sh && bash zer...
L28※vps搭建http代理
1> 软件安装 sudo apt-get install open-ssl sudo apt-get install squid 2> 配置用户名和密码 sudo yum install httpd-tools -y # centos 用于生成密码 sudo apt-get install apache2-ut...
L33※镜像源
1> python 国内镜像源 ① 手动配置 vim /root/.pip/pip.conf [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple [install] trusted-host = https://pypi.tuna.tsinghu...
L52※VPS搭建rustdesk
1> 下载rustdesk mkdir /usr/local/rustdesk & cd /usr/local/rustdesk wget https://mirrors.condor.vip/rustdesk/v1.1.14/rustdesk-server-linux-amd64.zip unzip rustdesk-server-lin...
L51※好玩儿的docker项目
0> 私有镜像 docker login --username=condor369 registry.cn-hangzhou.aliyuncs.com docker tag [ImageId] registry.cn-hangzhou.aliyuncs.com/slx-docker/[命名空间]:[镜像版...
L12※通过bind自建doh服务
1> 安装bind ① 安装软件 apt-get install bind9 bind9utils dnsutils ② 编辑主配置文件 # vi /etc/bind/named.conf.options options { directory '/var/cache/bind'; // If there is a fir...
L29※ubuntu搭建NTP Server
1> 寻找NTP SERVER http://www.pool.ntp.org是NTP的官方网站,这里可以查询最近的NTP Server。 ntp1.aliyun.com ntp.tencent.com ntp.ntsc.ac.cn # 中国NTPserver server 0.cn.pool.ntp.org s...
L11※linux安装docker
官方网站 1> ubuntu ① 卸载旧版本 for pkg in docker.io docker-doc docker-compose docker-compose-v2 podman-docker containerd runc; do sudo apt-get remove $pkg; done ② 安装 apt 依...