摘要:
主要的几个操作 查看已有会话:tmux ls 新建会话:tmux new -s 接入会话:tmux attach -t 或 tmux a 杀死会话:tmux kill-session -t 或 tmux kill-session -t 0 进入 tmux 后 ctrl+b d 脱离会话 ctrl+b 阅读全文
摘要:
Drone 相对于常见的 Jenkins,选中 Drone 的原因在于它非常简洁,不像 Jenkins 那样复杂,同时它拥有可以满足基本需求的能力,并且提供了许多实用的插件。 而且 Jenkins 包含了大量的图形化界面,虽然大而全,但是在有时候只想简单的做一个 CI 的容器时就显得有些笨重,本文简 阅读全文
摘要:
https://p3terx.com/archives/docker-aria2-pro.html sudo docker run -d \ --name aria2-pro \ --restart unless-stopped \ --log-opt max-size=1m \ --network 阅读全文
摘要:
安装并设置root密码 ## apt 安装 sudo apt install mariadb-server ## 开机启动,启动服务 sudo systemctl enable mariadb.service sudo systemctl start mariadb.service ## 允许数据库 阅读全文
摘要:
Watchtower 是一款实现自动化更新 Docker 镜像与容器的实用工具.它监控着所有正在运行的容器以及相关镜像,当检测本地镜像与镜像仓库中的镜像有差异时,会自动拉取最新镜像并使用最初部署时的参数重新启动相应的容器. 每天凌晨1点更新(北京时间)并清理旧镜像 docker run -d \ - 阅读全文
摘要:
异步任务工具类 一个异步任务工具类,可以使用 AsyncManager.me.XXX() 方法开启一个异步任务,底层可以使用 TimerTask 或者 CompletableFuture 或其他异步方式执行方法。 import cn.hutool.log.Log; import cn.hutool. 阅读全文
摘要:
在/usr/share/applications这个目录,其中存放的全部是所有用户可见的快捷方式。在该目录创建xxx.desktop文件即可。具体操作步骤为: 命令行操作内容: cd /usr/share/applications sudo gedit xxx.desktop 打开需要编辑的文本内容 阅读全文
摘要:
JS 方法 <style> .no-print { cursor:pointer; } @media print { .no-print, .no-print * { display: none !important; } } </style> <script> function printHtml 阅读全文
摘要:
常用 shell 脚本记录 判断输入参数是否是合理参数 #!/bin/bash port= read -p "请输入 8184|8185: " port echo -e '\n' case $port in '8184' | '8185') echo $port;; *) echo "请输入 818 阅读全文
摘要:
安装 code-server github code-server 下载 deb 包 deb 安装包 sudo dpkg -i code-server.deb 修改 ~/.config/code-server 中 config.yaml 中 code-server 访问的 bind-addr pas 阅读全文