Ubuntu:
1. sudo apt-get install xinetd tftpd tftp xinetd
2. Create /etc/xinetd.d/tftp and put this entry:
service tftp
{
protocol = udp
port = 69
socket_type = dgram
wait = yes
user = nobody
server = /usr/sbin/in.tftpd
server_args = /tftpboot
disable = no
}
3. Make /tftpboot directory
sudo mkdir /tftpboot
sudo chmod -R 777 /tftpboot
sudo chown -R nobody /tftpboot
4. Start tftpd through xinetd
sudo /etc/init.d/xinetd start
Extract the update.zip and copy the files ramdisk.maint.gz.crc and ramdisk.android.gz.crc into the /tftpboot folder
execute the commands above.
For Windows, here is a TFTP server to dpwnload:
http://tftpd32.jounin.net/tftpd32_download.html
- Good luck!