Thanks, there are no problems with 2761.
Posts made by MFJust
-
RE: IPXE Menu Customization deletes Menu Entry instead of saving changes
After pressing Save Changes following message appears: [name of item] successfully removed!
Same message appears when I press delete. -
RE: Error 3c092003 with SVN 2765
Can you please tell me where I can get them, I always use [url]https://svn.code.sf.net/p/freeghost/code/trunk/[/url]
-
IPXE Menu Customization deletes Menu Entry instead of saving changes
I am using SVN 2765.
The iPXE New Menu Entry possibility is great, but when changing something in the iPXE Menu Configuration, it removes the entry when pressing Save Changes. -
Error 3c092003 with SVN 2765
Hello, I’m getting the ipxe error 3c092003 with the SVN 2765.
After loading an old undionly.kpxe (like the one from version 1.2.0), the problem is gone. Seems like the newest is broken.Mainboard is an Asrock Q1900-ITX in the Fog server.
The problem appears on all client devices and only with this version. -
RE: Gunzip: crc error when downloading
OK, I finally found the problem. It seems the mainboard Asrock QC5000-ITX is not compatible.
I switched it with an Asrock Q1900-ITX and the problems are gone. -
RE: Gunzip: crc error when downloading
I have now reinstalled ubuntu server twice. The only software installed next to fog, is samba and openssh server.
I tried it with Fog 1.2.0 and SVN 2698. The error appears with both versions. All disks have no bad blocks.When I set up a Fog server in a virtualbox with the same settings in the same network, there are no problems.
Does someone have a clue?Could it be a problem with the mainboard?
-
Gunzip: crc error when downloading
When deploying a download from the FOG server, the cloning with partclone ends with [B]gunzip: crc error[/B] at 97% (only visible for less then a second) and then jumps to 100% and reboots. Sometimes the image is still bootable, sometimes it just shows an error message that windows failed to start.
I already used
[CODE]ethtool -s eth0 speed 100 duplex half autoneg off[/CODE]
on the FOG server but it didn’t help.Thank you in advance for helping.
-
RE: Bypass Host Registration
Hi,
does this work with Fog 1.2.0?
I am trying to use it, but when using it with capone, it displays the following for less then a second:[CODE]/usr/share/lib/funcs.sh: line 305: 2173 Broken pipe gunzip -d -c < /tmp/pigz1
2174 Aborted | partimage restore $2 stdin -f3 -b 2> /tmp/status.fog[/CODE]When using it without capone, it displays:
[CODE]*Attemting to send inventory…No Host found for MAC Address: XX:XX:XX:XX:XX:XX
*Checking In… *Invalid MAC Address! (0sec)[/CODE]My Code for the Advanced PXE Menu is:
[CODE]:MENU
menu
item --gap Please Select one of the images below
item fog.local Boot from hard disk
item img1 Windows 7 x64 Home Premium
item img2 Windows 7 x86 Home Premium
item return Return to main menu
choose --default fog.local target && goto ${target}
:fog.local
sanboot --no-describe --drive 0x80 || goto MENU
:img1
kernel bzImage root=/dev/ram0 rw ramdisk_size=127000 ip=dhcp dns=192.168.1.1 web=${fog-ip}/fog/ consoleblank=0 loglevel=4 type=down img=Windows7x64HP ftp=${fog-ip} imgType=n osid=5 storage=${fog-ip}:/mnt/sdc1/fog/images capone=1 imgFormat=1
imgfetch init.xz
boot || goto MENU
:img2
kernel bzImage root=/dev/ram0 rw ramdisk_size=127000 ip=dhcp dns=192.168.1.1 web=${fog-ip}/fog/ consoleblank=0 loglevel=4 type=down img=Windows7x86HP ftp=${fog-ip} imgType=n osid=5 storage=${fog-ip}:/mnt/sdc1/fog/images capone=1 imgFormat=1
imgfetch init.xz
boot || goto MENU
:return
chain http://${fog-ip}/${fog-webroot}/service/ipxe/boot.php?mac=${net0/mac} || goto MENU
autoboot[/CODE]