首页
关于
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
条评论
首页
栏目
默认分类
页面
关于
搜索到
4
篇与
的结果
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-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 点赞
2022-12-16
安卓linuxdeploy使用DDNS
前言不知道为什么下载最新版的一直报错建议大家可以先使用3.1版安装下边3.1版github 3.1链接站长的镜像国内可下载wget https://github.com/jeessy2/ddns-go/releases/download/v3.1.0/ddns-go_3.1.0_Linux_arm64.tar.gz # 如果下载失败换成站长的镜像 wget https://wj.puguying.cn/ddns-go_3.1.0_Linux_arm64.tar.gz tar -zxvf ddns-go_3.1.0_Linux_arm64.tar.gz sudo ./ddns-go -s install访问 你的ip:9876 进行设置接下来就可以愉快的玩耍啦如果要修改端口和配置文件目录可以输入下边的命令cd /etc/init.d nano ddns-go 修改 cmd="/root/ddns "-l" ":4002" "-f" "300" "-c" "/home/ddns/ddns.yaml""这一段代码-l监听地址-f同步间隔时间(秒)-c自定义配置文件路径然后重启ddnsservice ddns-go restart
2022年12月16日
35 阅读
0 评论
0 点赞
2022-04-18
服务器开启秘钥登录
1:登录服务器:并执行以下命令生成密钥和公钥ssh-keygen -m PEM -t rsa -C "xiayikechun"2:配置 ssh 使用密钥进入 ssh 目录cd ~/.ssh 或者 cd /root/.ssh/然后安装公钥 authorized_keyscp id_rsa.pub authorized_keys注意,如果存在 authorized_keys 则采用写入方式cat id_rsa.pub >> authorized_keys设置公钥权限chmod 600 authorized_keys chmod 700 ~/.ssh3:修改 ssh 配置文件#打开修改 vi /etc/ssh/sshd_config 然后对应如下修改: StrictModes no #此项默认为注释关闭 PubkeyAuthentication yes RSAAuthentication yes #默认不存在,可放到上面一行的下边 AuthorizedKeysFile .ssh/authorized_keys #ssh文件位置,此项默认设置相同 PasswordAuthentication yes #使用密码 no为不使用密码 AuthenticationMethods publickey,password #如果密码和密钥都使用在末尾加上此行代码完成以上步骤设置后,重启 sshd 服务:systemctl restart sshd.service
2022年04月18日
24 阅读
0 评论
0 点赞