ubuntu 执行定时任务
临时执行定时任务 at 精度只有一分钟 安装 sudo apt install at 执行定时合集 echo "sudo systemctl suspend" | at 23:00 2025-04-05 echo "sudo systemctl suspend" | at 23:00 echo 'e…
|
39
|
|
78 字
|
几秒读完
AxCrypt 文件加密工具免费的新版本
下载地址 (有 1.x r 版本) https://www.axantum.com/download-xecrets 或是直接下载开源的命令行版本 https://github.com/xecrets/xecrets-cli # 加密 XecretsCli -p pass -e file file .axx # 加密 ,输出时间戳 XecretsC…
|
124
|
|
50 字
|
1 分钟内
Ubuntu 下运行 wps 提示缺少字体
提示缺少 Symbol, Wingdings, Wingdings 2, Wingdings 3, MT Extra 等字体 从 https://github.com/udoyen/wps-fonts 下载字体 创建字体目录 mkdir -p ~/.fonts 复制字体 cp *ttf ~/.fonts/ 刷新字体缓存 fc-cache -fv 再…
|
153
|
|
63 字
|
几秒读完
ubuntu ps1 设置网卡参数
cat /opt/bin/NetworkParamUpdater.ps1 # NetworkParamUpdater.ps1' -Auto 将当前连接设置为自动分配 ip # NetworkParamUpdater.ps1' -Ip '192.168.1.1' 将当前连接设置为指定 ip [CmdletBin…
|
209
|
|
151 字
|
8 分钟
mitmproxy 使用
手册 https://docs.mitmproxy.org 下载 https://mitmproxy.org/, 并解压缩 运行 mitmweb 将浏览器的代理设置为 127.0.0.1:8080 我使用 firefox + ZeroOmega + auto switch (指定规则) 浏览器访问 http://127.0.0.1:8081 安装证…
|
264
|
|
148 字
|
1 分钟内
ubuntu 下独立显示运行 firefox
本指南适用于使用 snap 安装的 Firefox,并希望通过 prime-run 强制使用 NVIDIA 显卡运行的用户。 ✅ 目标 将 Firefox 配置为默认通过 NVIDIA 显卡渲染 在桌面环境中正常显示并固定快捷方式 确保 GPU 加速功能正常启用 🔧 操作步骤 1. 获取 Firefox 快捷方式文件 Firefox 的 .desk…
|
249
|
|
587 字
|
3 分钟
ssh 连接 git
github 上的手册: https://docs.github.com/en/authentication/connecting-to-github-with-ssh 创建 ssh key # 先检查一下 ~/.ssh 文件夹下是否有 ssh key, 建议使用 ed25519, 默认使用的 rsa 有一些服务器可能不支持 ssh-keygen …
|
232
|
|
79 字
|
2 分钟
ubuntu 下安装 typora
# 原来用 MarkText , 稍稍大一点的文件打开很卡 https://download.typora.io/linux/typora_1.9.3_amd64.deb https://github.com/hazukieq/Yporaject # 克隆或是下载代码,只针对 1.10 之前的版本 sudo ./inject.sh
|
270
|
|
9 字
|
1 分钟内
ibus 的五笔拼音输入法
Fcitx 5 中可以找到搜狗五笔抖音输入法。但是 ibus 没有。可以安装 rime 然后使用三方的输入法配置方案 安装 rime sudo apt-get install ibus-rime https://rime.im/ 下载输入配置方案 https://github.com/KyleBing/rime-wubi86-jidian 解压缩配…
|
211
|
|
124 字
|
1 分钟内
linux 写入配置到文件
cat << \EOF >> ~/.bash_profile # 添加 .NET Core SDK 工具 export PATH="$PATH:/root/.dotnet/tools" # 添加自定义工具 export PATH="$PATH:/opt/bin" EOF
|
155
|
|
9 字
|
1 分钟内