首页
关于
Search
1
:Uptime Kuma网站监控搭建教程
177 阅读
2
甲骨文ARM搭建云手机
177 阅读
3
甲骨文DD系统
166 阅读
4
常用脚本
157 阅读
5
linuxdeploy开机自启
143 阅读
默认分类
登录
Search
标签搜索
linux
linuxdeploy
EUSERV
aria2
alist
DDNS
python
IPV6
HAX
宝塔
ssh
甲骨文
DD
微软E5
Microsoft 365 E5 Renew X
FRP
安卓
nginx
Cloudflare
紫鼠
累计撰写
26
篇文章
累计收到
1
条评论
首页
栏目
默认分类
页面
关于
搜索到
2
篇与
的结果
2023-02-14
常用脚本
自用脚本备份1.来自stilleshan大佬的FRP脚本FRPS Linux 服务器 一键脚本安装本脚本目前同时支持 Linux X86 和 ARM 架构安装wget https://raw.githubusercontent.com/xiayikechun/jiaoben/frp/azfrpc.sh && chmod +x azfrpc.sh && ./azfrpc.sh以下为国内镜像wget https://jb.puguying.cn/frp/azfrpc.sh && chmod +x azfrpc.sh && ./azfrpc.sh使用vi /usr/local/frp/frpc.ini # 修改 frpc.ini 配置 sudo systemctl restart frpc # 重启 frpc 服务即可生效卸载wget https://raw.githubusercontent.com/xiayikechun/jiaoben/frp/xzfrpc.sh && chmod +x xzfrpc.sh && ./xzfrpc.sh以下为国内镜像wget https://jb.puguying.cn/frp/xzfrpc.sh && chmod +x xzfrpc.sh && ./xzfrpc.shFRPS安装wget https://raw.githubusercontent.com/xiayikechun/frp/azfrps.sh && chmod +x azfrps.sh && ./azfrps.sh以下为国内镜像wget https://jb.puguying.cn/frp/azfrps.sh && chmod +x azfrps.sh && ./azfrps.sh使用vi /usr/local/frp/frps.ini # 修改 frps.ini 配置 sudo systemctl restart frps # 重启 frps 服务即可生效卸载wget https://raw.githubusercontent.com/xiayikechun/frp/xzfrps.sh && chmod +x xzfrps.sh && ./xzfrps.sh以下为国内镜像wget https://jb.puguying.cn/frp/xzfrps.sh && chmod +x xzfrps.sh && ./xzfrps.shfrps相关命令sudo systemctl start frps # 启动服务 sudo systemctl enable frps # 开机自启 sudo systemctl status frps # 状态查询 sudo systemctl restart frps # 重启服务 sudo systemctl stop frps # 停止服务2.一键修改服务器秘钥登录bash <(curl -fsSL jb.puguying.cn/sshmy/key.sh) -g xiayikechun -dbash <(curl -fsSL https://raw.githubusercontent.com/xiayikechun/jiaoben/sshmy/key.sh) -g xiayikechun -d-o - 覆盖模式,必须写在最前面才会生效-g - 从 GitHub 获取公钥,参数为 GitHub 用户名-u - 从 URL 获取公钥,参数为 URL-f - 从本地文件获取公钥,参数为本地文件路径-p - 修改 SSH 端口,参数为端口号-d - 禁用密码登录3.DDNS-GOwget https://raw.githubusercontent.com/xiayikechun/ddns/ddns && chmod +x ddns && ./ddns -s install以下为国内镜像wget https://jb.puguying.cn/ddns/ddns && chmod +x ddns && ./ddns -s install
2023年02月14日
157 阅读
0 评论
0 点赞
2022-12-16
搭建alist配合aria2实现离线下载
1.aria2搭建apt install wget curl ca-certificates wget -N git.io/aria2.sh && chmod +x aria2.sh ./aria2.sh按照提示选择就可以了2.安装alist一键安装参考官网我目前使用的是手机搭建的不能使用systemd只能使用init.d代替了下载程序下载地址wget 文件链接 tar -zxvf 文件名 chmod +x alist ./alist server #记录用户密码后,按ctrl➕c退出在etc/init.d目录创建文件alist,填入下边的代码#!/bin/sh # For RedHat and cousins: # chkconfig: - 99 01 # alist # processname: /root/alist ### BEGIN INIT INFO # Provides: /root/alist # Required-Start: # Required-Stop: # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: alist # Description: alist ### END INIT INFO cmd="/root/alist "server"" name=$(basename $(readlink -f $0)) pid_file="/var/run/$name.pid" stdout_log="/var/log/$name.log" stderr_log="/var/log/$name.err" [ -e /etc/sysconfig/$name ] && . /etc/sysconfig/$name get_pid() { cat "$pid_file" } is_running() { [ -f "$pid_file" ] && ps $(get_pid) > /dev/null 2>&1 } case "$1" in start) if is_running; then echo "Already started" else echo "Starting $name" $cmd >> "$stdout_log" 2>> "$stderr_log" & echo $! > "$pid_file" if ! is_running; then echo "Unable to start, see $stdout_log and $stderr_log" exit 1 fi fi ;; stop) if is_running; then echo -n "Stopping $name.." kill $(get_pid) for i in $(seq 1 10) do if ! is_running; then break fi echo -n "." sleep 1 done echo if is_running; then echo "Not stopped; may still be shutting down or shutdown may have failed" exit 1 else echo "Stopped" if [ -f "$pid_file" ]; then rm "$pid_file" fi fi else echo "Not running" fi ;; restart) $0 stop if is_running; then echo "Unable to stop, will not attempt to start" exit 1 fi $0 start ;; status) if is_running; then echo "Running" else echo "Stopped" exit 1 fi ;; *) echo "Usage: $0 {start|stop|restart|status}" exit 1 ;; esac exit 0如果文件不在root目录,记得修改里边的路径然后执行cd /etc/init.d sudo update-rc.d alist defaults可以参考这个文章 CSDN
2022年12月16日
104 阅读
0 评论
0 点赞