当前位置:网站首页>使用 tftp 无法向服务器上传文件问题解决
使用 tftp 无法向服务器上传文件问题解决
2022-07-24 18:33:00 【Li-Yongjun】
问题描述
在 ubuntu 上启动了 tftpd,作为 tftp 服务器为嵌入式开发板提供文件下载服务。今天想用 tftp 将开发板上的一个文件上传到 ubuntu,结果报错了
# ls
core
# tftp -pr core 192.168.31.223
tftp: server error: (1) File not found
平时下载都是好好的,怎么上传就不行了呢?
解决
经过一番搜索,了解到 tftpd 启动参数要加 -c 选项,该选项表示允许创建文件
原本命令
/usr/sbin/in.tftpd --listen --user tftp --address :69 --secure /home/liyongjun/tftp
修改为
/usr/sbin/in.tftpd --listen --user tftp --address :69 -c --secure /home/liyongjun/tftp
注意,要使用 root 权限执行
再次尝试,又报了如下错误
# tftp -pr core 192.168.31.223
tftp: server error: (0) Permission denied
原来是目录权限不够,修改
sudo chmod 777 ~/tftp/
再次在开发板上执行
# tftp -pr core 192.168.31.223
#
就成功了!
边栏推荐
猜你喜欢
随机推荐
middleware
【TkInter】布局管理和事件系统
Techempower web framework performance test 21st round results release --asp Net core continue to move forward
Revocable search board
JS array method sort() collation parsing
undefined reference to H5PTopen
Encapsulate function basedata.js
微信小程序逆向
缺失值处理
Ionic4 learning notes 13 - Classification List of an East Project
ORM introduction and database operation
无关的表进行关联查询及null=null条件
Example of single table query in ORM student management system
JMeter -- prometheus+grafana server performance visualization
可撤销并查集板子
Web penetration experience summary ing
Flatten array.Flat (infinity)
Typora 它依然是我心中的YYDS 最优美也是颜值最高的文档编辑神器 相信你永远不会抛弃它
6. How to add an array in Es5?
MySQL - bufferpool related information







