嵌入式linux 开发中常用工具安装笔记
Samba server \# apt install samba samba-common
# vim /etc/samba/smb.conf 添加:
security = user
\[shuji\]
comment = share dir
path = /srv/samba
browseable = yes
writable = yes
# useradd public (不要用adduser, 否则还要禁用shell)
# smbpasswd –a public # service smbd restart
Samba client smbclient -L //192.168.1.10 -U dev
smbclient //192.168.1.10 -U dev
nfs \# vim /etc/exports
/srv/nfs *(rw,sync,nosubtree_check)