首页
关于
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
条评论
首页
栏目
默认分类
页面
关于
搜索到
26
篇与
的结果
2023-02-01
FRP搭建教程半自动
自用脚本备份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 # 停止服务修改frpc.ini和frps.ini的方法参考rm -rf /usr/local/frp/frpc.ini cat >/usr/local/frp/frpc.ini <<EOF [common] server_addr = frps地址 server_port = frps端口 log_file = /usr/local/frp/al.log #日志文件目录 log_level = info log_max_days = 3 token = 密码 login_fail_exit = false [web-ssh] #自定义,不能重复 type = tcp local_ip = 127.0.0.1 local_port = 22 remote_port = 22 EOF systemctl restart frpc 如有不足可以留言哈
2023年02月01日
125 阅读
0 评论
0 点赞
2023-01-04
linux修改时区
liunx修改服务器时区首先查看服务器时区date如果不是中国时区输入命令tzselect选择 4Asia 亚洲 在选择 9China 然后选择北京回车确认复制文件到/etc目录下 cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime在次查看时间date修改root密码passwd
2023年01月04日
50 阅读
0 评论
0 点赞
2023-01-01
安装python3
安装python3更新源sudo apt update && sudo apt upgrade安装依赖sudo apt install wget build-essential libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev libffi-dev zlib1g-dev下载源码cd ~ wget https://www.python.org/ftp/python/3.10.0/Python-3.10.0.tgz解压源码tar xzf Python-3.10.0.tgz编译源码cd Python-3.10.0 ./configure --enable-optimizations安装make altinstall软连接sudo ln -s /usr/local/bin/python3.10 /usr/bin/python3 sudo ln -s /usr/local/bin/pip3.10 /usr/bin/pip3
2023年01月01日
25 阅读
0 评论
0 点赞
2022-12-24
安卓linuxdeploy使用supervisor代替systemd
使用linuxdeploy搭建linux后,无法使用systemd,导致很多程序无法部署,研究后决定使用supervisor代替。安装我用的是debian,可以直接命令安装apt-get install supervisor然后回自动配置好开机自启在init.d目录里边,安装结束开始配置需要的程序启动supervisord进程supervisord -c /etc/supervisor/supervisord.conf修改自己的内容[inet_http_server] port=0.0.0.0:4001 ;默认配置只能本地访问,配置成0.0.0.0可以通过外部查看监控界面 username= 用户名 password= 密码 [supervisord] logfile=/root/jianguo/log/supervisord.log ; (main log file;default $CWD/supervisord.log) logfile_maxbytes=10KB ; (max main logfile bytes b4 rotation;default 50MB) logfile_backups=10 ; (num of main logfile rotation backups;default 10) loglevel=info ; (log level;default info; others: debug,warn,trace) pidfile=/run/supervisord.pid ; (supervisord pidfile;default supervisord.pid) nodaemon=false ; (start in foreground if true;default false) minfds=1024 ; (min. avail startup file descriptors;default 1024) minprocs=200 ; (min. avail process descriptors;default 200) [rpcinterface:supervisor] supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface [supervisorctl] serverurl=unix:///run/supervisor/supervisor.sock ; use a unix:// URL for a unix socket serverurl=http://127.0.0.1:4001 username=用户名 ; should be same as http_username if set password=密码 ; should be same as http_password if set [program:frp] ;进程名 command = /root/jianguo/frp/frpc -c /root/jianguo/frp/frpc.ini ;运行的命令 directory = /root/jianguo/frp/ ;运行命令所在的文件夹 stdout_logfile = /root/jianguo/log/x_ui.log ;日志打印文件位置 autostart = true ;是否设置启动后自动启进程 startsecs = 5 ;设置启动后几秒开始启进程 autorestart = true ;是否自动重启 startretries = 9999999 ;重启次数 stdout_logfile_maxbytes = 10KB ;日志最大容量,达到后新建一个日志文件然后重启主进程supervisord:supervisorctl reload另外几个常用命令service supervisor start #开启服务 service supervisor stop #结束服务 service supervisor restart #重启服务 service supervisor status #查看状态
2022年12月24日
78 阅读
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 点赞
1
2
3
...
6