在Bash中尝试别名,无法看到它与cd命令一起工作
[0s][/nobackup/sumikum7]> sjc-tftp
-bash: /auto/tftp-xeinfra/sumikum7/: Is a directory
[0s][/nobackup/sumikum7]> cd sjc-tftp
-bash: cd: sjc-tftp: No such file or directory
[0s][/nobackup/sumikum7]> cd /auto/tftp-xeinfra/sumikum7/
[0s][/auto/tftp-xeinfra/sumikum7]&g
我知道有关这件事的多个问题,但这个问题似乎不同。这是PXE引导服务器提供的Grub配置:
net_ls_addr
sleep -i 5
set retcode=$?
clear
if [ $retcode == 1 ]; then
quit
fi
if [ $retcode == 0 ]; then
quit
fi
if [ $retcode == 3 ]; then
terminal_output gfxterm
set gfxmode="800x600;640x480;auto"
set theme=theme.txt
fi
menuentry '
我能够以本地主机的身份在我的机器上执行tftp,并且可以获取该文件。
但是,当我试图从连接到相同交换机的其他计算机上执行相同的操作时,这些计算机位于相同的网络中。我的传输超时了。
[root@Nagra rchakena]# tftp 10.12.129.75
tftp> get test
Transfer timed out.
tftp> status
Connected to 10.12.129.75.
Mode: netascii Verbose: off Tracing: off Literal: off
Rexmt-interval: 5 seconds, Max-t
我的目标是:只允许在这个linux机器上进行一个与iptable相关的操作。这使得它能够从任何服务器下载tftp。这是我的规则,但它们似乎行不通。要强调的是,这并不是说我的linux盒是服务器。我的盒子是客户端,试图从tftp服务器下载。
#iptables -S
-P INPUT DROP
-P FORWARD ACCEPT
-P OUTPUT ACCEPT
-A INPUT -p udp -m state --state ESTABLISHED -j ACCEPT
-A INPUT -p udp -m state --state RELATED -j ACCEPT
-A INPUT -p
我想要一个dd图像,并使用tftp将其保存到远程,例如,我正在尝试这样做
"dd if=/dev/mtd2" | save it to tftp server.
我在代码中使用的文件的方向是错误的--我正在尽力学习它是如何实现的,这是我自己做错的代码--我指的是其中的一半
"dd if=/dev/mtd2" | tftp -l -p RootFS.bin 10.10.233.238 | dd of=File.bin
`
另外,如果可以传输多个文件夹,并将其保存为tftp上的一个文件,例如,我希望复制下面给出的
/ #
或者这些目录
bin dev et
我在VxWorks上编写了一些代码来使用tftpLib从TFTP服务器下载一个文件,但是get给了我一个超时:
ERR [TFTP] tftpSend:479: Transfer Timed Out.
ERR [TFTP] tftpGet:1077: File transfer error.
Error has occurred: 4915207
这是不对的,因为主机是可访问的:
ping("3.94.213.53",3)
Pinging 3.94.213.53 (3.94.213.53) with 64 bytes of data:
Reply from 3.94.213.
我使用minicom on Kali Linux native ( Linux 4.6.0-kali1-amd64 x86_64 )在stm32f746g-Disco上安装嵌入式linux。
在设置tftp协议、与主板的以太网连接、构建内核并将镜像放入适当的文件夹( \tftpboot\stm32f7\uImage是镜像的路径和名称)之后,我将启动minicom与主板通信。
与主板的通信工作正常,但问题是主板在某种程度上无法读取内核的映像,即使路径是正确的:
STM32F746-DISCO> reset