2021年4月
通玄小论dmesg 输出可读时间
dmesg 默认输出的是开机时长,不同意阅读,如果想要比较友好的时间戳,需要使用 dmesg -T 这个命令. 当然对于已经输出的 log,那就只能编写脚本去转换了。 参考: https://blog.csdn.net/zhanghaiyang9999/article/details/8226...
scp 指定端口传输文件
scp 使用 -P 参数来指定 ssh 端口,传输文件。 类似这样: scp -P 2222 dmesg.log xyz@10.15.5.30:/home/xyz 参考: https://stackoverflow.com/questions/10341032/scp-with-port-nu...
buildroot nfs 挂载
服务器开启 tftp 用来传输 dtb 和 kernel vmimage 配置 tftp 服务端 首先安装 tftp 服务, sudo apt install tftpd-hpa,然后检查服务是否启动,sudo systemctl status tftpd-hpa,这个需要等待一会才能返回信息...
[转] 卷积神经网络详解
转自: https://zhuanlan.zhihu.com/p/26954569?utm_source=qq&utm_medium=social https://ujjwalkarn.me/2016/08/11/intuitive-explanation-convnets/ 伊晓强 讲卷积神...
kernel 打印调用栈
增加头文件 #include <asm/ptrace.h> 在需要打印的地方增加语句 dump_stack(); 参考: https://blog.csdn.net/SweeNeil/article/details/88061381
kernel drm hdmi 学习资料
kernel 通过 drm 向 hdmi 设备进行显示,资料可以参考: https://zhuanlan.zhihu.com/p/59784377 https://zhuanlan.zhihu.com/p/60504398 https://dri.freedesktop.org/docs/dr...
buildroot 学习资料
buildroot 英文手册 nightly: http://nightly.buildroot.org/manual.html#getting-buildroot stable: https://buildroot.org/downloads/manual/manual.html#_gett...
深度学习资料收集
最全资料:https://github.com/Mikoto10032/DeepLearning https://github.com/zhanggyb/nndl CNN学习资料: https://ujjwalkarn.me/2016/08/09/quick-intro-neural-netw...
矩阵和张量的区别
张量的维度可以从0维度到无数维度,但是矩阵只有二维,所以矩阵可以看作是一个二维的张量。 向量可以看作是一维的张量。 参考: https://medium.com/@quantumsteinke/whats-the-difference-between-a-matrix-and-a-tensor...
最新回复