Skip to content

Instantly share code, notes, and snippets.

View Akagi201's full-sized avatar
🎯
Focusing

Bob Liu Akagi201

🎯
Focusing
View GitHub Profile

elink

VCC | GND | TXD | RXD
灯
复位键
  • Arm system developer guide designing and optimizing system
  • ARM嵌入式系统开发 - 软件设计与优化
  • 射频理论 《微波工程》
  • 射频工程实践 《射频电路设计》, 作者李缉熙
  • 修改默认参数
  • oem, luci的logo, ssh的ascii art和链接还有联系方式
  • 单线多拨, 多wan
  • nas, 共享
  • 端口映射, ddns
  • 802.1x认证
@Akagi201
Akagi201 / screencast-script.md
Created February 22, 2014 09:14
录屏前准备的剧本模板
Product Date Author
screencast 2014/02/22 Akagi201
Timeline Action on Screen Audio
00:00:00 open xxx welcome
11:11:11 close xxx Thanks for watching
  • 眼镜盒
  • USB3.0 U盘 32G
  • 32G SD卡
  • 小米手机
  • ipad air
  • wifi硬盘盒/无线NAS
  • time capsule
  • 手机电池

win8 共享目录给mac

  1. 网络 -> 更改高级共享设置
  2. 控制面板 -> 管理工具 -> 本地安全策略 -> 安全设置 -> 本地策略 -> 安全选项 -> 账户: 使用空密码的本地账户只允许进行控制台登陆 -> 已禁用
  3. smb连接 -> 用户名 + 密码为空
  4. http://benyouhui.it168.com/thread-4716574-1-1.html

最简单配置

在SecureCRT中做make menuconfig ,乱码解决方法

以前只能在tty0-tty6中做make menuconfig,不能在SecureCRT中做(显示为乱码): 1、先设置终端为xterm模式,并选中ANSI颜色: 2、置字符编码为无 3、可以做make menuconfig了

  1. 大多数出错是因为网络问题, 下载超时导致的, 可以自己根据打印信息, 下载下载失败的软件包, 放到dl目录即可.
  2. 在后台进行编译,使用空闲的I/O资源和CPU性能,可使用(例如使用双核处理器) onice -c 3 nice -n 20 make -j 2
  3. 编译一个单独的软件包(例如在cups软件包): make package/cups/compile V=99
  4. 如果特殊原因需要分析编译报错信息: make V=99 2>&1 |tee build.log |grep -i error 说明:将编译的所有输出信息保存在build.log中,将error信息打印在屏幕上。
  5. 一个复杂指令的应用 $ ionice -c 3 nice -n 20 make -j 2 V=99 CONFIG_DEBUG_SECTION_MISMATCH=y 2>&1 \|tee build.log |egrep -i '(warn|error)'