摘要:
红色(VCC) 白色(D-[ DM ]) 绿色(D+[ DP ]) 黑色(GND) 阅读全文
摘要:
docker-compose.yml services: db: image: mariadb:10.11 container_name: seafile-mysql environment: - MYSQL_ROOT_PASSWORD=12345678 # Requested, set the r 阅读全文
摘要:
can't find package Expect while executing "package require Expect" (file "unbuffer"" line 6) 原因是/usr/lib/缺少了/usr/lib/expect5.45/libexpect5.45.so 找到这个文 阅读全文
摘要:
临时保存密码 git config --global credential.helper cache 保存密码 git config --global credential.helper store 取消最近一次条件 git reset HEAD~1 git branch -vv 删除远端分支 gi 阅读全文
摘要:
#PC Linux X86 / X86_64 编译mkdir buildcd buildcmake ..make #嵌入式Linux aarch64mkdir buildcd buildCC=aarch64-linux-gnu-gcc CXX=aarch64-linux-gnu-g++ cmake 阅读全文
摘要:
update-alternatives --config gcc 选择编号 gcc --version测试 gcc库目录 ls /usr/lib/gcc/x86_64-linux-gnu/ 阅读全文
摘要:
# Name, Type, SubType, Offset, Size, Flags # Note: if you have increased the bootloader size, make sure to update the offsets to avoid overlap,,,, nvs 阅读全文
摘要:
#!/usr/local/bin/python3 import datetime, bisect def parse_timestamp(raw_str): tokens = raw_str.split() if len(tokens) == 1: if tokens[0].lower() == ' 阅读全文
摘要:
export QT_DIR=/userdata/bin/qtlibexport QT_QPA_PLATFORM=eglfsexport QT_QPA_EGLFS_INTEGRATION=eglfs_kmsexport QT_QPA_EGLFS_KMS_PLANE_INDEX=1export QT_Q 阅读全文
摘要:
[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x412fd050] [ 0.000000] Linux version 4.19.161AIMY-RK3568 (jenkins@jenkins-seafile-gitlab-60) 阅读全文
摘要:
[ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Initializing cgroup subsys cpuset [ 0.000000] Initializing cgroup subsys cpu [ 0.000000] Ini 阅读全文
摘要:
#include <iostream> #include <list> #include <thread> #include <mutex> #include <condition_variable> #include <unistd.h> std::list<int> my_list; std:: 阅读全文
摘要:
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simplepip config set install.trusted-host pypi.tuna.tsinghua.edu.cn 阅读全文
摘要:
asound.conf允许对声卡或者设备进行更高级的控制,提供访问alsa-lib中的pcm插件方法,允许你做更多的复杂的控制,比如可以把声卡组合成一个或者多声卡访问多个I/O。 Default plugin pcm.!default { type hw card 0 } ctl.!default 阅读全文
摘要:
esphome安装 pip3 install esphome esphome dashboard esphome_config/ http://ip:6052 docker安装homeassistant docker pull homeassistant/home-assistant docker 阅读全文