最新发布第4页
排序
L23※vps编译 openwrt 系统固件
1> 注意 1. 不要用 root 用户进行编译2. 默认登陆IP 192.168.1.1 密码 password 2> 编译命令 ① 首先装好 Linux 系统,推荐 Debian 11 或 Ubuntu LTS ② 安装编译依赖 sudo apt update -y...
L36※docker ubuntu 设置ssh开机启动
正常在 linux 操作系统内设置服务自启动的方法一般都是使用 systemctl,但是 Docker 容器没有 systemctl 权限,这里使用脚本设置开机启动 1> 编写启动脚本 vim /root/start_ssh.sh LOGTIME=$(da...
L10※centos用Dnsmasq搭建dns服务器
1> 安装Dnsmasq yum -y install dnsmasq 2> 备份默认的Dnsmasq的配置文件 cp /etc/dnsmasq.conf /etc/dnsmasq.conf.bak 3> 配置上游DNS文件的路径 vim /etc/dnsmasq.conf ① Vim中搜索...
L24※Centos 升级gcc版本
1> 卸载原来的旧版本 ① 查看当前的版本号 rpm -q gcc ② 卸载掉旧版本 rpm -e [上一步查到的版本号] ③ 如果上一步报错 error: Failed dependencies: gcc = 4.8.5-44.el7 is needed by ...
L37※Dockerfile
docker build -t docker_name . 1> ubuntu FROM ubuntu:20.04 # 更换镜像源 RUN sed -i 's@http://.*archive.ubuntu.com@http://mirrors.tuna.tsinghua.edu.cn@g' /etc/apt/sources.list RUN...
L13※centos 搭建ftp服务器
1> 安装vsftpd yum install -y vsftpd systemctl start vsftpd systemctl enable vsftpd 2> 为ftp创建用户 useradd ftpuser passwd ftpuser 3> 创建ftp文件目录 mkdir /home/ftpuser/d...
N16※删除设备和驱动器中不常用的图标
在注册表中找到下述位置,删除不常用的文件夹即可 计算机\HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace
N24※绕过CloudFlare五秒盾
1> 安装docker docker run -d \ --name=flaresolverr \ -p 8191:8191 \ -e LOG_LEVEL=info \ --restart unless-stopped \ ghcr.io/flaresolverr/flaresolverr:latest 2> 转发请求 import reques...
N26※微软语音库实现文字转音频
1> 安装库 pip3 install edge-tts 2> 段落文字转语音 edge-tts --text '微软语音测试库!' --write-media d:\output.mp3 --voice zh-CN-YunxiNeural edge-tts -f 'd:\input.txt' --write-...