I have an embedded VxWorks target that needs to boot its kernel from my Ubuntu computer.
|
You can install When you install the package with
it will use Debconf to prompt you for some choices. You can set many choices(server timeout may be useful), especially the basepath. You can also adjust the multicast range. |
|||||||
|
|
I got TFTP service working great by using: sudo apt-get install xinetd tftpd tftp Here is where the solution came from: http://mohammadthalif.wordpress.com/2010/03/05/installing-and-testing-tftpd-in-ubuntudebian/ And here is what's there: 1. Install following packages. $ sudo apt-get install xinetd tftpd tftp
service tftp { protocol = udp port = 69 socket_type = dgram wait = yes user = nobody server = /usr/sbin/in.tftpd server_args = /tftpboot disable = no }
$ sudo mkdir /tftpboot sudo chmod -R 777 /tftpboot sudo chown -R nobody /tftpboot
sudo /etc/init.d/xinetd stop sudo /etc/init.d/xinetd start Now our tftp server is up and running. Testing our tftp server
Obtain the ip address of the tftp server using ifconfig command, in
tftp> quit cat test |
|||
|
|