在ubuntu 中使用的 tftp 时可能会出现以下错误:
- cyx-Aspire-4743 Qemu # tftp localhost
- tftp> get ucos.bin
- Error code 0: Permission denied
- tftp> quit
同样的错误也会在给嵌入式开发板uboot传输文件时发生:
- TFTP from server 222.197.201.246; our IP address is 222.197.201.12
- Filename 'ucos.bin'.
- Load address: 0x31000000
- Loading: *
- TFTP error: 'Permission denied' (0)
- Starting again
发生这些错误的原因就如那个错误所说的是属于权限问题:
改正方法就是修改/etc/default/tftpd-hpa 或是 /etc/xinetd.d/tftp 之中你所指定的 tftp服务器文件夹TFTP_DIRECTORY="/var/lib/tftpboot" 或者 server_args = -s /home/lqm/tftpboot -c
里面tftpboot 文件夹的权限, 即 chmod 777 tftpboot
还有一个就是所需传送文件的权限:
chmod 777 xxx
阅读(7431) | 评论(0) | 转发(0) |