摘要: 一、证书 创建证书 ssh-keygen -t rsa -C 'xxxx@126.com' 获取 RSA 公钥内容,并配置到 SSH公钥 中 cat ~/.ssh/id_rsa_gitee.pub 配置免密登录 touch ~/.ssh/config 内容如下 Host gitee.com Host 阅读全文
posted @ 2025-02-27 13:54 windlog 阅读(23) 评论(0) 推荐(0)
摘要: 一、编辑、查看 crontab -u root -e crontab -l systemctl status crontab 二、配置 0 2 * * * /usr/bin/backup_script.sh #!/bin/bash * * * * * /opt/backup_script.sh 0 阅读全文
posted @ 2025-02-11 15:11 windlog 阅读(78) 评论(0) 推荐(0)
摘要: 一、安装 npx sv create svelte-app npm run dev -- --open 二、参考文档 https://kit.svelte.js.cn/docs/introduction 三、ollama大模型服务管理界面 https://github.com/ollama-webu 阅读全文
posted @ 2024-12-27 17:34 windlog 阅读(29) 评论(0) 推荐(0)
摘要: 将GPS坐标转换为BIM(Building Information Modeling)坐标通常涉及几个步骤,因为这两种坐标系统服务于不同的目的并具有不同的参考框架。GPS坐标是基于全球定位系统(WGS 84)的地理坐标,而BIM坐标通常是基于项目特定的局部坐标系统。以下是一个基本的转换流程: 一、理 阅读全文
posted @ 2024-04-07 14:00 windlog 阅读(116) 评论(0) 推荐(0)
摘要: commit --entrypoint测试 替换原来镜像中的ENTRYPOINT["/bin/bash"] docker run -it --entrypoint ./hello --name testgo3 centosgo:v1 docker run -it --entrypoint /bin/ 阅读全文
posted @ 2024-03-03 16:24 windlog 阅读(201) 评论(0) 推荐(0)
摘要: 1、df -Th 2、fdisk -l 3、lsblk [root@xxx /]# lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 512G 0 disk ├─sda1 8:1 0 1G 0 part /boot └─sda2 8:2 阅读全文
posted @ 2024-02-29 14:06 windlog 阅读(760) 评论(0) 推荐(0)
摘要: firewall-cmd --zone=public --add-port=7001/tcp --permanent firewall-cmd --reload docker run -p 9000:8000 casbin/casdoor-all-in-one docker pull casbin/ 阅读全文
posted @ 2024-02-24 16:17 windlog 阅读(244) 评论(0) 推荐(0)
摘要: 安装tomcat 9 docker pull tomcat:9.0.56-jdk8-temurin-focal docker run -d -p 8082:8080 --name my-tomcat 6b16c2a1d213 docker exec -it my-tomcat /bin/bash c 阅读全文
posted @ 2024-02-22 13:17 windlog 阅读(45) 评论(0) 推荐(0)
摘要: idea中编辑器 提示内部 继承数量、调用数量、问题数量、代码作者 阅读全文
posted @ 2024-01-19 11:27 windlog 阅读(196) 评论(0) 推荐(0)
摘要: Koala Form是一个表单页面的低代码解决方案,以 Vue3 为基础,围绕中后台产品的表单场景进行抽象,帮助开发者进行配置化的开发 表头按钮“新增”如何修改? 平台使用vite进行管理 koala安装编译后后在.vite\deps目录位置如下 方法一、从源码修改 打开ui-element桥接插件 阅读全文
posted @ 2024-01-06 17:49 windlog 阅读(88) 评论(0) 推荐(0)