dmesg 输出可读时间
dmesg 默认输出的是开机时长,不同意阅读,如果想要比较友好的时间戳,需要使用 dmesg -T
这个命令.
当然对于已经输出的 log,那就只能编写脚本去转换了。
参考: https://blog.csdn.net/zhanghaiyang9999/article/details/82260231 https://blog.csdn.net/lemontree1945/article/details/82877777
dmesg 默认输出的是开机时长,不同意阅读,如果想要比较友好的时间戳,需要使用 dmesg -T
这个命令.
当然对于已经输出的 log,那就只能编写脚本去转换了。
参考: https://blog.csdn.net/zhanghaiyang9999/article/details/82260231 https://blog.csdn.net/lemontree1945/article/details/82877777
scp 使用 -P
参数来指定 ssh 端口,传输文件。
类似这样:
scp -P 2222 dmesg.log xyz@10.15.5.30:/home/xyz
https://stackoverflow.com/questions/10341032/scp-with-port-number-specified
首先安装 tftp 服务, sudo apt install tftpd-hpa
,然后检查服务是否启动,sudo systemctl status tftpd-hpa
,这个需要等待一会才能返回信息。
然后配置 tftp 服务, sudo vim /etc/default/tftpd-hpa
,username 这一项要和 tftp 目录的 owner 相对应,address 是对应的端口号, options 中的 secure 是自动更新目录,create 是可以创建和上传文件。
修改如下:
TFTP_DIRECTORY="/tftpboot"
然后是配置 tftp 目录:
sudo mkdir /tftp
sudo chown tftp:tftp /tftp
接着是重启并检查状态:
sudo systemctl restart tftpd-hpa
sudo systemctl status tftpd-hpa
首先安装 tftp 客户端 sudo apt install tftp-hpa
, 然后再服务器端使用 ifconfig
或者 ip -a
来获取服务器地址,然后再客户端使用 tftp 192.168.0.10
类似的命令来连接上服务器端的 tftp 服务。
在 tftp 的环境下,输入 verbose
开启 verbose 模式,然后可以通过 get xxx.txt
来下载文件,通过 put xxx.txt
来上传文件。 都是从当前目录进行上传和下载,最后使用 quit
来退出 tftp 模式。
可以使用 ?
或者 help
来查询命令。
https://linuxhint.com/install_tftp_server_ubuntu/ https://wangchujiang.com/linux-command/c/tftp.html
首先安装nfs,sudo apt install nfs-kernel-server
.
然后创建 nfs 文件夹, sudo mkdir -p /nfs/rootfs/
, 然后因为 nfs 传输 root 属性的文件时会改为 nobody:nogroup
,所以需要修改文件夹的 owner,sudo chown nobody:nogroup /nfs/rootfs/
。
然后修改 exports,sudo vim /etc/exports
,内容增加 /nfs/rootfs *(rw,sync,no_root_squash)
。
然后重启 nfs 服务,sudo systemctl restart nfs-kernel-server
。
然后检查 ufw 状况, sudo ufw status
,如果启动,那么需要 sudo ufw allow from 203.0.113.24 to any port nfs
类似这样的来放行。
首先安装 nfs, sudo apt install nfs-common
.
然后新建测试文件夹,mkdir nfs_test
挂载nfs,sudo mount 192.168.0.10:/nfs/rootfs /home/xyz/nfs_test/
使用 df -h
可以查看挂载的情况,使用 du -sh ./nfs_test/
可以查看文件夹内部使用情况。
在客户端上创建一个文件,在客户端上就能够查看到,使用 ll
命令可以查看 owner,如果在服务器端配置 exports 里面的 no_root_squash
,那么就是 root,否则就是 nobody:nogroup
https://www.digitalocean.com/community/tutorials/how-to-set-up-an-nfs-mount-on-ubuntu-18-04 https://blog.csdn.net/flfihpv259/article/details/53926871?utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromMachineLearnPai2%7Edefault-8.control&dist_request_id=1332042.22423.16193225079781727&depth_1-utm_source=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromMachineLearnPai2%7Edefault-8.control https://blog.csdn.net/qq_36357820/article/details/78488077
File systems --->
[*] Network File Systems --->
<*> NFS client support
<*> NFS client support for NFS version 2
<*> NFS client support for NFS version 3
[*] Root file system on NFS
General setup --->
[N] Initial RAM filesystem and RAM disk (initramfs/initrd) support
复制 boot.img 和 dtb.img 到 tftp 目录
setenv nfsfile boot.img
setenv rootpath /nfs/rootfs/
setenv ipaddr 10.15.5.3
setenv serverip 10.15.5.30
setenv nfsargs 'set bootargs root=/dev/nfs rw nfsroot=${serverip}:${rootpath} proto=tcp nfsvers=3 clkin_hz=(25000000) earlyprintk=serial,uart0,115200 console=ttySC0,115200 mem=224M'
setenv nfsboot 'tftp ${loadaddr} ${nfsfile};tftp ${dtbaddr} ${dtbfile};run nfsargs;run addip;bootm ${loadaddr} - ${dtbaddr}'
setenv bootcmd run nfsboot
使用 ping
来测试和服务器之间通不通。
tftp
https://docs.khadas.com/zh-cn/vim3/LoadImagesWithUBootViaTFTP.html https://blog.csdn.net/Slade99X/article/details/104774142
增加头文件 #include <asm/ptrace.h>
dump_stack();
kernel 通过 drm 向 hdmi 设备进行显示,资料可以参考: https://zhuanlan.zhihu.com/p/59784377 https://zhuanlan.zhihu.com/p/60504398 https://dri.freedesktop.org/docs/drm/gpu/drm-kms.html?highlight=writeback https://www.kernel.org/doc/html/v4.17/gpu/drm-kms.html https://blog.csdn.net/u014674293/article/details/105774238 https://www.cnblogs.com/mao0504/p/5619107.html https://blog.csdn.net/hexiaolong2009/article/details/89810355
调整 hdmi 分辨率: https://forum.khadas.com/t/hdmi-resolutions-testing/618/6
buildroot 英文手册 nightly: http://nightly.buildroot.org/manual.html#getting-buildroot stable: https://buildroot.org/downloads/manual/manual.html#_getting_started
中文: https://blog.csdn.net/haimo_free/article/details/107677695 http://www.cxyzjd.com/article/haimo_free/107677695
驱动开发: https://blog.csdn.net/a568713197/article/details/103069325
最全资料:https://github.com/Mikoto10032/DeepLearning
https://github.com/zhanggyb/nndl
CNN学习资料: https://ujjwalkarn.me/2016/08/09/quick-intro-neural-networks/ https://ujjwalkarn.me/2016/08/11/intuitive-explanation-convnets/ https://zhuanlan.zhihu.com/p/26954569?utm_source=qq&utm_medium=social https://cs231n.github.io/assets/conv-demo/index.html?tdsourcetag=s_pcqq_aiomsg https://blog.csdn.net/zouxy09/article/details/9993371 https://zhuanlan.zhihu.com/p/28173972 https://zhuanlan.zhihu.com/p/27908027 https://zhuanlan.zhihu.com/p/37878381 https://www.zhihu.com/question/22298352/answer/228543288
张量的维度可以从0维度到无数维度,但是矩阵只有二维,所以矩阵可以看作是一个二维的张量。 向量可以看作是一维的张量。
参考: https://medium.com/@quantumsteinke/whats-the-difference-between-a-matrix-and-a-tensor-4505fbdc576c https://my.oschina.net/u/4392455/blog/4053054 https://blog.csdn.net/weixin_40013463/article/details/81025760
比较好的3个 app: 扇贝,不背单词,墨墨背单词。 可以考虑在 pc 端安装模拟器运行。
比较推荐的词典: https://www.merriam-webster.com/
参考: https://www.zhihu.com/question/28709439/answer/772084122 https://www.zhihu.com/question/40729955/answer/727581631