@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及路徑。