本文主要是介绍qemu中连接主机和使用tftp,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
[qemu中连接主机和使用tftp]
$ qemu-system-arm -M integratorcp -kernel XXX -initrd XXX -tftp /var/lib/tftpboot/ifconfig eth0 up # 启动网络设备eth0
ifconfig eth0 10.0.2.15 # 设置虚拟机ip
ping 10.0.2.2 # 尝试与主机连接
tftp -g -r hello.c 10.0.2.2 # 远程(-r) 下载(-g) 文件hello.c
[更改配置文件]
qemu里是ram存储,不能保存要想保存网络配置,应该更改/etc/network/interfaces,
文件原内容:
# Configure Loopback
auto lo
iface lo inet loopback
新增加内容(新增网络设备eth0):
auto eth0
iface eth0 inet static
address 10.0.2.15
netmask 255.255.255.0
gateway 10.0.2.1
[常见错误原因]
1. tftp:
这篇关于qemu中连接主机和使用tftp的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!