Chinaunix首页 | 论坛 | 博客
  • 博客访问: 139390
  • 博文数量: 19
  • 博客积分: 501
  • 博客等级: 下士
  • 技术积分: 261
  • 用 户 组: 普通用户
  • 注册时间: 2010-10-04 20:15
文章分类
文章存档

2015年(1)

2013年(1)

2012年(2)

2011年(15)

我的朋友

分类: LINUX

2011-03-25 13:13:43

一、虚拟机ubuntu与windows xp使用bridge桥接
首先,配置/etc/network/interfaces

auto eth0
iface eth0 inet static
address 192.168.0.5
gateway 192.168.0.1
netmask 255.255.255.0

auto lo
iface lo inet loopback

然后,配置/etc/resolv.conf
nameserver 192.168.0.1
domain router
search router

然后,最后使用命令 /etc/init.d/networking restart 重启网络服务。

然后,要关闭windows xp下的防火墙。


一.安装 tftp 服务器

sudo apt-get install tftp-hpa tftpd-hpa
这是安装tftp服务器的命令。

二.配置 tftp 服务器
tftp服务器的配置文件为 /etc/default/tftpd-hpa

vim /etc/default/tftpd-hpa
编辑配置文件。

  1 # /etc/default/tftpd-hpa
  2
  3 TFTP_USERNAME="tftp"
  4 TFTP_DIRECTORY="/tftpboot"
  5 TFTP_ADDRESS="0.0.0.0:69"
  6 TFTP_OPTIONS="--secure"

第四行 TFTP_DIRECTORY = "/tftpboot" 是我修改后的/tftpboot目录。


三.busybox tftp 指令的使用

先看看tftp --help的解释:

Usage: tftp [OPTION]... HOST [PORT]

Transfer a file from/to tftp server using "octet" mode

Options:
-l FILE Local FILE
-r FILE Remote FILE
-g      Get file
-p      Put file
-b SIZE Transfer blocks of SIZE octets

再来实践一下:

进入可以读写的tmp目录,执行

/tmp # tftp -g -r uImage 192.168.0.1

就可以收到了uImage文件


阅读(2938) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~