运行 docker exec 报错 the input device is not a TTY
在使用 docker in docker 时,在容器内执行命令刷新 nginx: docker exec -it nginx-nginx-1 nginx -s reload 结果一直报错: the input device is not a TTY 查阅帮助文档: madray@pve:/mnt/core/app/nginx/conf.d$ doc…
Android 反射调用 SDK 隐藏方法抛错 NoSuchMethodError
参考文章:针对非 SDK 接口的限制 | Android 开发者 | Android Developers 最近在写 Android 系统应用的时候,因为某些特殊原因无法接触到 AOSP 开发环境,只能通过第三方应用 + 系统签名的方式调试。 其中一个功能是要通过 EthernetManager 获取到 configuration,于是乎首先用先前…
Symbol is declared in module X which does not export package X
前排提示,此方法适用于 Gradle + Kotlin 的项目。 在写 sgpublic/XXPreference: Manage SharedPreference with annotation! (github.com) 项目的时候,我需要使用 java.compiler 中的内容修改 Java 语法树,于是乎便遇到了以下报错: Symbol …
Ubuntu 22.04.1 安装 WordPress (Nginx+MariaDB+PHP)
参考文章 CentOS7安装Nextcloud13 使用(Nginx+MariaDB+PHP)_WolfBolin技术博客-CSDN博客 环境说明 WSL Ubuntu 22.04.1 基础初始化 新服务器中所有自带服务都需要更新 sudo apt update && sudu apt upgrade -y 安装 nginx 并添加…
WSL Ubuntu 22.04 systemctl 命令报错
参考文献:Advanced settings configuration in WSL | Microsoft Learn 在 WSL Ubuntu 22.04 下,systemctl 命令报错以下内容: System has not been booted with systemd as init system (PID 1). Can't op…
Lombok 插件与 Android Studio 不兼容解决方案
参考文章:sgpublic/lombok-plugin-repository: A repository for Lombok plugin incompatibility issues with Android Studio. (github.com) 从 IDEA 2020.2.* 开始,Lombok Plugin 开始内置,且无法在插件商城下…
WSL CentOS 7 安装 Python 3.10.0
参考文章- CentOs 7 下安装python3_猫腻的博客-CSDN博客- 在 CentOS 上编译安装 Python 3 - 知乎 (zhihu.com) CentOS 7 自带 Python 2.7.5,但我们需要的是 Python 3.10.0。我们需要先按安装依赖。 安装 yum-utils: yum install yum-utils…