摘要: 环境:ubuntu 软件 配置zsh终端界面 #安装zsh git sudo apt-get install zsh git #切换到用户目录 cd ~/ #下载主题配置文件 git clone https://github.com/ohmyzsh/ohmyzsh.git ~/.oh-my-zsh 阅读全文
posted @ 2024-10-19 22:22 dysonnnn 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 问题集合 The TLS connection was non-properly terminated 执行git clone 指令的时候报错 dysonnnn@dysonnnn-KPRC-WX0:~$ git clone https://github.com/ohmyzsh/ohmyzsh.git 阅读全文
posted @ 2024-10-19 22:05 dysonnnn 阅读(8) 评论(0) 推荐(0) 编辑
摘要: linux 初学入门 阅读全文
posted @ 2023-08-30 14:17 dysonnnn 阅读(90) 评论(0) 推荐(0) 编辑
摘要: root@MaixLinux:/mnt/SDCARD# wpa_cli -i wlan0 scan_result bssid / frequency / signal level / flags / ssid 3c:cd:57:7b:2c:cc 2467 -26 [WPA2-PSK-CCMP][ES 阅读全文
posted @ 2023-07-25 09:40 dysonnnn 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 虚拟机报错提示 “一个键加速配置页中已启动硬件虚拟化,但主机并不支持。需要警用硬件虚拟化才能启动虚拟机” “虚拟电脑草藏系统提示设为64位。64位系统需要硬件虚拟。若设置则更改时自动选择” 解决方法: 关闭系统的虚拟化设置 控制面板启用Hyper-V功能 找回Virtual Box 的菜单栏 快捷键 阅读全文
posted @ 2023-04-01 18:07 dysonnnn 阅读(494) 评论(0) 推荐(0) 编辑
摘要: 原文来自: 首页» 全志 SOC» 使用mainline中最新的buildroot编译生成Lichee RV Dock系统镜像 by xkrisc buildroot上游已经支持了D1 Nezha开发板,我为Lichee RV Dock做了如下适配开发: A.uboot、opensbi使用了上游li 阅读全文
posted @ 2023-03-22 23:04 dysonnnn 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 以下内容来自: wiki.sipeed.com Lichee RV Dock 基础上手 为了方便用户自行开发,矽速整理发布了 LicheeRV 的bsp开发docker镜像,大家使用该镜像可以快速开始D1的系统级开发。 国内用户:百度网盘 提取码:wbef 镜像文件名称: licheerv_d1_c 阅读全文
posted @ 2023-03-22 19:57 dysonnnn 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 基于chatGPT答案 RFC 2217协议 RFC 2217 是一种远程串行端口协议,也称为 "COM port control protocol"。它定义了在客户端和服务器之间通过网络连接访问串行端口设备的标准通信协议。该协议可以允许客户端通过网络连接来访问串行设备,就像直接连接到本地串行端口一 阅读全文
posted @ 2023-03-21 01:11 dysonnnn 阅读(1230) 评论(0) 推荐(0) 编辑
摘要: uvc摄像头调试 改分辨率: 源码中 v412fmt.fmt.pix.width 图像宽度 v412fmt.fmt.pix.height 图像高度 /* * capturing from UVC * platform: rk3568 */ #include <stdint.h> #include < 阅读全文
posted @ 2023-03-18 15:38 dysonnnn 阅读(388) 评论(0) 推荐(0) 编辑
摘要: YUV格式编码的图片,在Linux下需要安装ffmpeg。 #安装ffmpeg $sudo apt install ffmpeg #查看图片,需要注意的是YUV图像的信息中并没有存储宽和高,所以在打开时需要指定图像的宽和高。 $ ffplay [-f rawvideo] -video_size Wi 阅读全文
posted @ 2023-03-18 15:38 dysonnnn 阅读(280) 评论(0) 推荐(0) 编辑