摘要: static void uart_loopback_test(){ uint8_t tx_data[8] = {0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00}; uint8_t tx_dataRelease[8] = {0x00,0x00,0x00,0x00,0x0 阅读全文
posted @ 2021-08-29 08:07 wblade 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 前言:本教程适用于将ESXI安装在U盘内(也可以是USB的SSD),并且在此基础上将U盘的剩余空间用做ESXI数据存储器,这样做的好处是可以解放板载SATA,后期可以将整个板载SATA直通给黑群晖,对于入门级用户来说这样可以省掉一张HBA卡,同时也可以避免使用RDM直通看不到SMART信息的问题,总 阅读全文
posted @ 2020-06-26 21:24 wblade 阅读(951) 评论(0) 推荐(0) 编辑
摘要: fdisk -l # 这里先输出系统分区之类的不用管,外置设备一般在最后 Disk /dev/sda: 30.7 GB, 30752000000 bytes 64 heads, 32 sectors/track, 29327 cylinders Units = cylinders of 2048 * 阅读全文
posted @ 2020-05-29 21:37 wblade 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 在Mac上连接 打开safari输入smb://ip,回车后出现输入用户名密码对话框,若是匿名则选择作为“客人”选项 或 打开Finder(或在桌面),CMD + k,可以得到以下页面: 在smb://后面,输入你的服务器地址或域名 输入前面的USER_NAME和刚设置的密码 然后,就可以在Mac的 阅读全文
posted @ 2020-05-28 22:46 wblade 阅读(396) 评论(0) 推荐(0) 编辑
摘要: 调试配置,这个比较简单了,来张LAN和WAN的图来结束好了<ignore_js_op> Screen Shot 2020-05-26 at 下午9.44.55.png (78.83 KB, 下载次数: 0) 下载附件 保存到相册 2020-5-26 21:45 上传 RT:LAN-USB网卡对应ne 阅读全文
posted @ 2020-05-26 23:20 wblade 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 分享一下安装软路由的乐趣软件包, 就用这个论坛里面的就行 openwrt-x86-64-combined-squashfs.img前言,试过多次mac装了win7以后硬盘写不了IMG,只能识别0硬盘, 以前是Mac 命令来解决u盘方式1) 进去Mac 终端,run 下面命令(sudo) dd if= 阅读全文
posted @ 2020-05-26 23:19 wblade 阅读(2680) 评论(0) 推荐(0) 编辑
摘要: Mac OS X Command Line Interface Download the desired .img file Open a Terminal (in /Applications/Utilities/) Run diskutil list to get the current list 阅读全文
posted @ 2020-05-24 16:22 wblade 阅读(143) 评论(0) 推荐(0) 编辑
摘要: find . -xdev -type f -size +100M 阅读全文
posted @ 2020-05-04 09:50 wblade 阅读(146) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Data Flow Diagram</title> <script src="../release/go.js"></script> <script id="code"> function init() { var $ = go.GraphObject.make; myDiagr 阅读全文
posted @ 2020-01-21 09:46 wblade 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 校验数字的表达式 数字:^[0-9]*$ n位的数字:^d{n}$ 至少n位的数字:^d{n,}$ m-n位的数字:^d{m,n}$ 零和非零开头的数字:^(0|[1-9][0-9]*)$ 非零开头的最多带两位小数的数字:^([1-9][0-9]*)+(.[0-9]{1,2})?$ 带1-2位小数的 阅读全文
posted @ 2019-12-15 20:52 wblade 阅读(151) 评论(0) 推荐(0) 编辑