TFTP not working (Fog 1.1.1 on Ubuntu 12.04 Server)
-
I tested PXE booting on a Dell Latitude D630 laptop (yes, very old, but it was the closest machine to me besides my workstation) and it worked with the undionly.kpxe boot image from [url]https://svn.code.sf.net/p/freeghost/code/trunk/packages/tftp/[/url] !
The PowerEdge 2900 server still doesn’t boot with it… I will test with a different 2900 tomorrow to see if it’s just something wrong with this particular box or what. If it’s not working on any 2900, then I don’t think Fog could serve as a replacement for Acronis in our environment, as 90% of the servers we deploy to buildings are 2900’s.
-
Glad to hear your PXE server is working! For the 2900 it might be worth double checking the network card settings in the BIOS or sticking the service tag into dell.com and looking for updated firmware.
-
[quote=“BBBBlaine, post: 30873, member: 24687”][CODE]root@PCI-FOG:~/fog_1.1.1/packages/tftp# cp undionly.kpxe /tftpboot/undionly.kpxe
root@PCI-FOG:~/fog_1.1.1/packages/tftp# chmod 644 /tftpboot/undionly.kpxe
root@PCI-FOG:~/fog_1.1.1/packages/tftp# ls -al /tftpboot/
total 2600
drwxr-xr-x 2 fog root 4096 Jun 19 14:39 .
drwxr-xr-x 25 root root 4096 Jun 18 08:11 …
-rw-r–r-- 1 fog root 840 Jun 17 13:35 boot.txt
-rw-r–r-- 1 root root 291 Jun 17 13:35 default.ipxe
-rw-r–r-- 1 fog root 389702 Jun 17 13:35 ipxe.kkpxe
-rw-r–r-- 1 fog root 389750 Jun 17 13:35 ipxe.kpxe
-rw-r–r-- 1 fog root 391231 Jun 17 13:35 ipxe.krn
-rw-r–r-- 1 fog root 389766 Jun 17 13:35 ipxe.pxe
-rw-r–r-- 1 fog root 25340 Jun 17 13:35 memdisk
-rw-r–r-- 1 fog root 16794 Jun 17 13:35 pxelinux.0.old
-rw-r–r-- 1 fog root 165088 Jun 17 13:35 snponly.efi
-rw-r–r-- 1 fog root 102777 Jun 17 13:35 undionly.kkpxe
-rw-r–r-- 1 root root 102825 Jun 19 14:39 undionly.kpxe
-rw-r–r-- 1 fog root 382650 Jun 17 13:35 undionly.kpxe.INTEL
-rw-r–r-- 1 fog root 102841 Jun 17 13:35 undionly.pxe
-rw-r–r-- 1 fog root 147728 Jun 17 13:35 vesamenu.c32
[/CODE]So now it looks like I have the same size pxe boot file as you, so I tried PXE booting the server again and…
[CODE]Could not configure console: Input/output error (http://ipxe.org/1d8c2139)
Could not boot: Input/output error (http://ipxe.org/1d8c2139)
Could not boot: Input/output error (http://ipxe.org/1d8c2139)[/CODE]After some testing I think, that this should be a vesa framebuffer problem. This can be resolved by deleting line 540 (background picture) from /var/www/fog/lib/fog/BootMenu.class.php
The link in the error message says that the error originated from vesafb.c (line 114)
[CODE]/**
103 * Convert VBE status code to iPXE status code
104 *
105 * @v status VBE status code
106 * @ret rc Return status code
107 */
108 static int vesafb_rc ( unsigned int status ) {
109 unsigned int code;
110
111 if ( ( status & 0xff ) != 0x4f )
112 return -ENOTSUP;
113 code = ( ( status >> 8 ) & 0xff );
114 return ( code ? -EIO_VBE ( code ) : 0 );[/CODE]I have no idea how to resolve this. Any ideas?[/quote]
So now it looks like I have the same size pxe boot file as you, so I tried PXE booting the server again and…
[CODE]Could not configure console: Input/output error (http://ipxe.org/1d8c2139)
Could not boot: Input/output error (http://ipxe.org/1d8c2139)
Could not boot: Input/output error (http://ipxe.org/1d8c2139)[/CODE]After some testing I think, that this should be a vesa framebuffer problem. This can be resolved by deleting line 540 (background picture) from /var/www/fog/lib/fog/BootMenu.class.php
-
I only added the console information because it’s prettier.
It works on most systems, but occasionally we see this message. I’m aware of the problem and if you don’t need to have the picture I can remove it to make it more usable.
-
[quote=“Michael Konz, post: 31327, member: 24796”]So now it looks like I have the same size pxe boot file as you, so I tried PXE booting the server again and…
[CODE]Could not configure console: Input/output error (http://ipxe.org/1d8c2139)
Could not boot: Input/output error (http://ipxe.org/1d8c2139)
Could not boot: Input/output error (http://ipxe.org/1d8c2139)[/CODE]After some testing I think, that this should be a vesa framebuffer problem. This can be resolved by deleting line 540 (background picture) from /var/www/fog/lib/fog/BootMenu.class.php[/quote]
Sorry about the delay since my last post here…
I commented out line 540 of /var/www/fog/lib/fog/BootMenu.class.php like you suggested and it worked! I got to the Fog menu! However… When I try to do Quick Registration or Full Registration, I get an error:
[IMG]http://i.imgur.com/HSWXzOd.jpg[/IMG]
It continues until I see this:
[IMG]http://i.imgur.com/YDcuyv5.jpg[/IMG]After that, it keeps scrolling down until I see nothing but a blank screen, and nothing appears in the Fog host inventory.
-
I’m currently building a 64 and 32 bit kernel with this firmware added. Thank you.
-
Kernels are now updated and available in svn or from my website.
[url]https://svn.code.sf.net/p/freeghost/code/trunk/packages/web/service/ipxe/bzImage[/url] (64bit)
[url]https://svn.code.sf.net/p/freeghost/code/trunk/packages/web/service/ipxe/bzImage32[/url] (32bit) -
[quote=“Tom Elliott, post: 35659, member: 7271”]Kernels are now updated and available in svn or from my website.
[url]https://svn.code.sf.net/p/freeghost/code/trunk/packages/web/service/ipxe/bzImage[/url] (64bit)
[url]https://svn.code.sf.net/p/freeghost/code/trunk/packages/web/service/ipxe/bzImage32[/url] (32bit)[/quote]You’re amazing! I downloaded the new kernels and replaced the old ones and my PE 2900 is now uploading an image to my Fog server!
Thank you so much for your help. This is a huge step in being able to replace our existing Acronis system with Fog.