Displaying 5 results from an estimated 5 matches for "tfpd".
Did you mean:
tcpd
2015 Feb 05
4
Problems with EFI PXE boot on Hp DL380p Gen9
...nce years.
Since EFI is spreading, I changed configuration to be able to boot EFI
systems.
The "Client":
- HP Proliant DL380Gen9 System FW: 1.21 11/03/2014, latest available
- NIC used for booting: HP Embedded LOM 331i (Broadcom BCM 5719/ tg3),
FW: 5719-v1.38
The Server:
- ISC-DHCP with tfpd-hpa running on Debian 6.x
- syslinux 6.03, all files taken from this official binary distribution
from kernel.org
- different directories for bios / efi x64 and efi ia32 and all binaries
are in their correct directory
Remark:
Using a VM Version 9 on ESXi 5.5 with EFI boot as client runs perfect.
U...
2015 Feb 05
0
Problems with EFI PXE boot on Hp DL380p Gen9
...configuration to be able to boot EFI
> systems.
>
> The "Client":
> - HP Proliant DL380Gen9 System FW: 1.21 11/03/2014, latest available
> - NIC used for booting: HP Embedded LOM 331i (Broadcom BCM 5719/ tg3),
> FW: 5719-v1.38
>
> The Server:
> - ISC-DHCP with tfpd-hpa running on Debian 6.x
> - syslinux 6.03, all files taken from this official binary distribution
> from kernel.org
> - different directories for bios / efi x64 and efi ia32 and all binaries
> are in their correct directory
>
> Remark:
> Using a VM Version 9 on ESXi 5.5 with...
2009 Jul 04
2
[PATCH] Create /var/run/tftpd-hpa.pid in standalone mode
...f (standalone) {
+ FILE *pidfile;
#ifdef HAVE_IPV6
if (ai_fam != AF_INET6) {
#endif
@@ -702,6 +703,12 @@ int main(int argc, char **argv)
syslog(LOG_ERR, "cannot daemonize: %m");
exit(EX_OSERR);
}
+ pidfile = fopen ("/var/run/tfpd-hpa.pid","w");
+ if (!pidfile
+ || fprintf(pidfile, "%d\n", getpid()) < 0
+ || fclose(pidfile)) {
+ syslog(LOG_ERR, "cannot write pid file: %m");
+ }
if (fd6 > fd4)
fdmax = fd6;
else
--...
2015 Feb 06
0
Problems with EFI PXE boot on Hp DL380p Gen9
...t":
>> >> - HP Proliant DL380Gen9 System FW: 1.21 11/03/2014, latest available
>> >> - NIC used for booting: HP Embedded LOM 331i (Broadcom BCM 5719/ tg3),
>> >> FW: 5719-v1.38
>> >>
>> >> The Server:
>> >> - ISC-DHCP with tfpd-hpa running on Debian 6.x
>> >> - syslinux 6.03, all files taken from this official binary distribution
>> >> from kernel.org
>> >> - different directories for bios / efi x64 and efi ia32 and all
>> binaries
>> >> are in their correct directory...
2015 Feb 05
2
Problems with EFI PXE boot on Hp DL380p Gen9
...FI
>> systems.
>>
>> The "Client":
>> - HP Proliant DL380Gen9 System FW: 1.21 11/03/2014, latest available
>> - NIC used for booting: HP Embedded LOM 331i (Broadcom BCM 5719/ tg3),
>> FW: 5719-v1.38
>>
>> The Server:
>> - ISC-DHCP with tfpd-hpa running on Debian 6.x
>> - syslinux 6.03, all files taken from this official binary distribution
>> from kernel.org
>> - different directories for bios / efi x64 and efi ia32 and all binaries
>> are in their correct directory
>>
>> Remark:
>> Using a VM...