@font-face{ font-family:"Times New Roman"; } @font-face{ font-family:"宋体"; } @font-face{ font-family:"等线"; } @font-face{ font-family:"Consolas"; } p.MsoNormal{ mso-style-name:正文; mso-style-parent:""; margin:0pt; margin-bottom:.0001pt; mso-pagination:none; text-align:justify; text-justify:inter-ideograph; font-family:等线; mso-bidi-font-family:'Times New Roman'; font-size:10.5000pt; mso-font-kerning:1.0000pt; } span.msoIns{ mso-style-type:export-only; mso-style-name:""; text-decoration:underline; text-underline:single; color:blue; } span.msoDel{ mso-style-type:export-only; mso-style-name:""; text-decoration:line-through; color:red; } @page{mso-page-border-surround-header:no; mso-page-border-surround-footer:no;}@page Section0{ } div.Section0{page:Section0;}
3.)nfs 使用方法:
nfs在调试时,可以避免频繁拷贝文件到板上,方便板子使用PC机的文件。
在PC端的linux (Ubuntu)执行以下操作:
sudo apt install nfs-kernel-server
sudo vi /etc/exports 添加:
/yourhome/yourpath 192.168.1.0/24(rw,sync)
注:上面一句 根据实际情况修改ip及路径。
sudo exportfs -a
sudo systemctl restart nfs-kernel-server
板端:
mkdir -p /data/nfs
mount \-t nfs -o nolock 192.168.3.113://home/kc/work/data/nfs
注: 上面一句 根据实际情况修改ip及路径。