桌面# GNOME 系应用的缩放,如 Charlesgsettings set org.gnome.desktop.interface scaling-factor 2# KDE SDDM# 查看当前分辨率xdpyinfo | grep -B 2 resolution# -dpi = 当前分辨率
日前从闲鱼购得一块 RK3399 的广告机主板,板子接口较为丰富,同比相同配置的开发板其价格较为低廉。当然了,它价格低自然是有原因的。。。则板子的是没有电路图等资料的,目前只能盲测试了,相关折腾进展及讨论在此 https://www.right.com.cn/forum/thread-4033942-1-1.html 整理的资料 https://github.com/lanseyujie/tn3399_v3折腾这种板子自然少不了与各种镜像文件打交道,但是镜像的修改需
# 生成 gpg 密钥gpg --gen-key# 生成吊销证书gpg --gen-revoke 695C8981B2442634# 列出所有 gpg 公钥gpg --list-keys# 列出所有 gpg 私钥gpg --list-secret-keys# 删除 gpg 
# 本地转发,正向代理,使用本地端口访问远程端口# <user>@<hostname> 为跳板机,不一定要和 <remote host> 一致ssh -L <local host>:<local port>:<remote host>:<remote port> <use
为 ssh 配置多路复用后,可以在指定的时间段内连接相同的 ssh 可复用之前的会话而无需重新登录,对于某段时间内频繁使用相同 ssh 连接时特别有用,主要配置如下:~/.ssh/configHost *    Protocol 2    ServerAliveInterval 60 # 心跳周期,单位秒    Se

sed (Stream Editor, 文本流编辑器) 可谓是 shell 中必不可少一款文本处理工具了。我们经常会使用 sed -i 参数来对一些配置文件做自动化修改,但是此次在 docker 这样做中却遇到了问题....

    如果 adb 是通过 sdkmanager 下载的 platform-tools 获取的,在运行 adb 命令时会遇到如下错误:$ adb devicesList of devices attached9a7ada42        no permissions (user in plugde
本文最后更新于 2020/07/03 23:32:28 。
软件源的创建# 安装软件包sudo apt install -y gnupg reprepro# 创建 GPG 密钥gpg --full-gen# 列出系统中的 GPG 密钥gpg --list-keys# 创建站点目录mkdir -p /data/wwwroot/ppa/key 
配置相关# 查看配置git config --list# 配置全局用户名git config --global user.name "Your Name"# 配置全局用户邮箱git config --global user.email "your@example.com"#