摘要: * vi 命令下的常用操作 正常模式下: dd 删除 yy 复制(没有任何现象),配合小写 p,把复制的整合贴在下方。大写P是贴于上方 * 按照时间排序: t 修改时间 u 访问时间 c 状态更改时间 ll -t 倒叙(默认倒叙)【ll -sh -t 可以自由组合,使用人性化方式展示】 ll -tr 阅读全文
posted @ 2019-11-01 19:26 雪化山河 阅读(273) 评论(0) 推荐(0)
摘要: xx #!/bin/bash ############################################# # ✅ 服务器 & 应用基础配置 ############################################# # 应用信息 APP_NAME="app" JAR_ 阅读全文
posted @ 2026-06-15 13:41 雪化山河 阅读(2) 评论(0) 推荐(0)
摘要: 启用 Undertow 替换 tomcat <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions> <exclusio 阅读全文
posted @ 2026-06-15 12:00 雪化山河 阅读(1) 评论(0) 推荐(0)
摘要: * 完整的 skill 组成 阅读全文
posted @ 2026-06-14 10:44 雪化山河 阅读(5) 评论(0) 推荐(0)
摘要: * 显卡高到低排名:H > A > L > RTX > T * 模型:推理,微调,训练 * 小、中、大企业推荐 * 显卡核心参数 阅读全文
posted @ 2026-06-07 10:12 雪化山河 阅读(3) 评论(0) 推荐(0)
摘要: 打开 cmd 窗口,输入: reg add HKCU\Software\Microsoft\InputMethod\Settings\CHS /v UserDefinedDoublePinyinScheme0 /t REG_SZ /d "小鹤双拼*2*^*iuvdjhcwfg^xmlnpbksqsz 阅读全文
posted @ 2025-11-02 12:26 雪化山河 阅读(2129) 评论(0) 推荐(0)
摘要: * 安装必要的工具 yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm * 移除可能冲突的默认 PostgreSQL 阅读全文
posted @ 2025-09-14 11:36 雪化山河 阅读(175) 评论(0) 推荐(0)
摘要: package cn.newstrength.common.config; import com.google.code.kaptcha.impl.DefaultKaptcha; import com.google.code.kaptcha.util.Config; import org.apach 阅读全文
posted @ 2025-08-22 10:39 雪化山河 阅读(16) 评论(0) 推荐(0)
摘要: * 创建普通用户 useradd -m -s /bin/bash admin * 设置密码(执行后按提示输入密码) passwd admin * 将用户加入sudoers组(允许sudo提权) usermod -aG wheel admin # OpenCloudOS 默认使用wheel组 * 测试 阅读全文
posted @ 2025-07-17 00:48 雪化山河 阅读(36) 评论(0) 推荐(0)
摘要: * 安装 npm install -g pm2 npm install -g pm2 * 构建 Next.js 生产环境代码​(如果构建失败,需要检查目录下是否有 page或者app目录,两者二选一,不可同时存在) npm run build【生成 .next 目录】 * 如果构建失败,需要检查目录 阅读全文
posted @ 2025-07-12 17:06 雪化山河 阅读(132) 评论(0) 推荐(0)
摘要: * 安装 nvm curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash或者:wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.3 阅读全文
posted @ 2025-07-12 16:32 雪化山河 阅读(39) 评论(0) 推荐(0)