嵌入式Linux开发快速入门 迟思堂工作室 李迟 ssh服务器 samba服务器 telnet服务器 NFS服务器 交叉编译器 参阅: http://blog.csdn.net/subfate/article/details/74838251 http://www.latelee.org/embedded-linux/new-for-embeddedlinux-3-linuxserver.html
嵌入式Linux开发快速入门 迟思堂工作室 李迟 ssh服务器 安装: sudo apt-get install openssh-server 重启: sudo /etc/init.d/ssh restart 配置文件: /etc/ssh/sshd_config
嵌入式Linux开发快速入门 迟思堂工作室 李迟 samba服务器 安装: sudo apt-get install samba sudo apt-get install smbclient (客户端,可选) 配置文件:/etc/samba/smb.conf [home] # 用于显示在windows的名称 comment = samba home # 注释,不要也可以 path = /home/latelee # 共享目录路径 writable = yes # 可写 browseable = yes # 可看 guest ok = no # 不允许guest 注:格式如上,路径根据实际情况改
嵌入式Linux开发快速入门 迟思堂工作室 李迟 samba服务器 创建账号: sudo touch /etc/samba/smbpasswd (此步不要也行) sudo smbpasswd -a latelee(用户名) New SMB password:(此处密码,建议与登陆密码相同) Retype new SMB password:(此处密码,建议与登陆密码相同) 重启: sudo /etc/init.d/samba restart sudo /etc/init.d/smbd restart (此步可不要) 测试 (不要也行) smbclient -L //localhost/共享目录
嵌入式Linux开发快速入门 迟思堂工作室 李迟 telnet服务器 安装: sudo apt-get install xinetd telnetd 配置文件/etc/xinetd.conf : service telnet { disable = no flags = REUSE socket_type = stream wait = no user = root server = /usr/sbin/in.telnetd log_on_failure += USERID }
嵌入式Linux开发快速入门 迟思堂工作室 李迟 telnet服务器 重启 sudo /etc/init.d/xinetd restart 修改端口 修改/etc/services 将telnet的23改为其它的不冲突的端口号,如250。
嵌入式Linux开发快速入门 迟思堂工作室 李迟 NFS服务器 安装 sudo apt-get install nfs-kernel-server 配置 编辑文件/etc/exports 加入下列语句: [共享目录绝对路径] *(rw,no_root_squash,no_all_squash,sync) 示例: /opt *(rw,no_root_squash,no_all_squash,sync) 重启 sudo /etc/init.d/nfs-kernel-server restart ARM-Linux挂载测试示例 mount -t nfs -o nolock 172.18.18.18:/opt /mnt/nfs
嵌入式Linux开发快速入门 迟思堂工作室 李迟 交叉编译器 安装 tar jxf arm-linux-gcc-4.3.2.tgz -C /opt/arm-linux-4.3.2 配置 编辑文件~/.bashrc PATH="/opt/arm-linux-gcc-4.3.2/usr/local/arm/4.3.2/bin:$PATH“ 更新: source ~/.bashrc 测试 arm-linux-gcc -v
THANKS 欢迎赞助(您的支持是我坚持的动力) 课件地址:https://github.com/latelee/learning-embedded-linux.git 欢迎赞助(您的支持是我坚持的动力) 方式一:小店购买商品:https://shop243991695.taobao.com/ 方式二:金钱捐赠(微信or支付宝) 个人主页:www.latelee.org CSDN博客:http://blog.csdn.net/subfate 代码仓库:https://github.com/latelee 淘宝店: https://shop243991695.taobao.com/ 电子邮件:latelee@163.com CST嵌入式Linux技术交流群: 312621627 (注:加入需要注明CSDN)