摘要:
一:linux配置ssh方式git clone 1. ssh 生成证书 ssh-keygen -t rsa -C "【user.email】" 命令,生成公钥和私钥,在~/.ssh文件夹下(生成过程,一致按回车,默认路径,默认无密码); 2. 将公钥内容复制下,然后打开gitee或gitlab仓库下 阅读全文
摘要:
现在笔记本上很少带有串口了,而串口又是做电子设计必备的通讯接口之一,好在USB转串口比较方便,市面上常用的USB转串口芯片有很多,最常见的有FT232、PL2303、CH340三种,这三种我分别说一下,同时整理一下他们的驱动程序,网上找驱动程序的很多,也有很多人发布,找驱动程序当然要去官网找了,这样 阅读全文
摘要:
如何只编译qemu arm,请参考下面的操作步骤。 How to build qemu-system-arm in Linux Most (all?) Linux distributions have a binary package for qemu-system (including qemu- 阅读全文
摘要:
First, you have to clone the repo: git clone https://github.com/axboe/liburing.git Then you can build: make -C ./liburing After that, you can compile 阅读全文
摘要:
Linux 命令 使用 find命令删除指定修改时间前的文件夹, find / -name "name_pattern" -type f -mtime 15 -exec rm -rf {} \; find / -maxdepth 1 -name "name_pattern" -type d -mti 阅读全文