Here are the new files with debugging for undi, dhcp, dns, and tftp.

Posts made by cml
-
RE: [SVN ???] iPXE input/output error
-
RE: Lenovo 11e - Doesn't pass Menu screen on iPXE
I forgot github redirects their files differently.
This should be the correct link: https://github.com/FOGProject/fogproject/raw/dev-branch/packages/tftp/realtek.pxe
-
RE: Lenovo 11e - Doesn't pass Menu screen on iPXE
@Ahagel Source forge is down, but you should be able to get it from github.
wget https://github.com/FOGProject/fogproject/blob/dev-branch/packages/tftp/realtek.pxe
-
RE: proxyDHCP Issue
https://ask.wireshark.org/questions/8931/capture-file-appears-to-be-damaged-or-corrupt
Maybe the issue is tftp defaulting to ASCII? Can you try transfering it with WinSCP?
Or try using binary mode?
tftp -i x.x.x.x get issue.pcap
From: https://technet.microsoft.com/en-us/library/Ff698993.aspx?f=255&MSPPError=-2147217396
-
RE: Rename fails but adds client to domain.
I don’t believe .32 has been touched in quite some time. You would also have to install the legacy client on your image, but you can try that with the current version of FOG you have as well.
Still strange that it only happens to the one model.
-
RE: Two "new fog client" settings?
What about something like this?
- Showing I have duplicate values.
mysql> select * from globalSettings where settingKey="FOG_TFTP_PXE_KERNEL"; +-----------+---------------------+------------------------------------------------------------------------------------+--------------+-----------------+ | settingID | settingKey | settingDesc | settingValue | settingCategory | +-----------+---------------------+------------------------------------------------------------------------------------+--------------+-----------------+ | 6 | FOG_TFTP_PXE_KERNEL | Location of kernel file on the PXE server, this should point to the kernel itself. | bzImage | TFTP Server | | 147 | FOG_TFTP_PXE_KERNEL | Location of kernel file on the PXE server, this should point to the kernel itself. | bzImage | TFTP Server | +-----------+---------------------+------------------------------------------------------------------------------------+--------------+-----------------+ 2 rows in set (0.00 sec)
- Dropping duplicates.
mysql> ALTER IGNORE TABLE globalSettings ADD UNIQUE INDEX (settingKey); Query OK, 133 rows affected (0.01 sec) Records: 133 Duplicates: 2 Warnings: 0 mysql> ALTER TABLE globalSettings DROP INDEX SettingKey; Query OK, 131 rows affected (0.00 sec) Records: 131 Duplicates: 0 Warnings: 0
- Showing the duplicate is now gone.
mysql> select * from globalSettings where settingKey="FOG_TFTP_PXE_KERNEL"; +-----------+---------------------+------------------------------------------------------------------------------------+--------------+-----------------+ | settingID | settingKey | settingDesc | settingValue | settingCategory | +-----------+---------------------+------------------------------------------------------------------------------------+--------------+-----------------+ | 6 | FOG_TFTP_PXE_KERNEL | Location of kernel file on the PXE server, this should point to the kernel itself. | bzImage | TFTP Server | +-----------+---------------------+------------------------------------------------------------------------------------+--------------+-----------------+ 1 row in set (0.00 sec)
-
RE: Dell Lattiude E6540
Do you have other E6540s that work?
I have had this issue with some Lenovos in the past. Updating the BIOS and resetting to defaults usually fixes it, but when it doesn’t we’ve had to replace the NIC.
-
RE: Can't delete Host from Group
This ran in mysql will remove the hosts from the group. All you have to do is swap in your host and group names (leave the quotes).
I also advise always backing up before you make any mysql changes.
DELETE FROM groupMembers WHERE gmHostID = (SELECT hostId FROM hosts WHERE hostName="HOSTNAME") AND gmGroupID = (SELECT groupID FROM groups WHERE groupName="GROUPNAME");
-
RE: Lenovo 11e - Doesn't pass Menu screen on iPXE
You could download it manually, I have never tested this though.
cd /tftpboot https://svn.code.sf.net/p/freeghost/code/trunk/packages/tftp/realtek.pxe
-
RE: How do you add your drivers to make universal images?
You can do something like this https://anothermike2.wordpress.com/2011/05/07/adding-drivers-using-pnputil-and-forfiles/
But it will make your images HUGE
-
RE: Lenovo 11e - Doesn't pass Menu screen on iPXE
@Wendell321 It should already be on your server.
/tftpboot/realtek.pxe
-
RE: iPxe initialising devices... Sticking
@Dragnous When it goes dead can you try unplugging the usb and plugging it back in?
-
RE: Unable to delete snapin tasks
You can delete them from the database manually.
root@Fog:~# mysql -u root -p Enter password: mysql> use fog; Database changed mysql> DELETE FROM snapinTasks WHERE ststate = 0; Query OK, 33 rows affected (0.24 sec) mysql> quit; Bye root@Fog:~#
-
RE: iPxe initialising devices... Sticking
1.2.0 is the latest stable version, but I do not believe those options were added untila later revision. You can upgrade to trunk which has been reliable and stable for me that last few months.
Of course make sure you backup first.
-
RE: iPxe initialising devices... Sticking
On the host management page
The same setting exists on the group management page, so you can apply it to a group of computers.
-
RE: pb update 4737 - php5
Ah, unmet dependencies apt-get -f install should fix them.
apt-get -f install apt-get -y install php5 php5-cli php5-fpm php-gettext
-
RE: pb update 4737 - php5
Looks like you just have to force the install.
sudo apt-get -f install php5 php5-cli php5-fpm php-gettext```
-
RE: pb update 4737 - php5
Are you able to re-install the packages manually?
sudo apt-get -y install php5 php5-cli php5-fpm php-gettext