View Single Post
Old 10-30-2011, 10:05 AM   #57
perldude69
Fun-ologist
perldude69 began at the beginning.
 
Posts: 41
Karma: 10
Join Date: Oct 2011
Device: Pocket Edge, Galaxy S
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!
perldude69 is offline   Reply With Quote