search for: gethostip

Displaying 20 results from an estimated 27 matches for "gethostip".

2017 Mar 02
3
Domain name suffix woes
Example problem - We have a domain with following DNS records 330.domain.com CNAME 330.blah.domain.com 330.blah.domain.com A 10.0.1.2 foo.domain.com A 10.0.2.2 Now, when I set `search domain.com` in /etc/resolv.conf, I can use SSH to connect to foo like this `ssh user at foo` and I can connect to the 330 A record like this `ssh user at 330.blah` However I cannot connect to the
2004 Dec 29
2
SYSLINUX 3.00-pre9 released
I have just released SYSLINUX 3.00-pre9. The only change versus 3.00-pre8 is that the MEMDISK query API now reports the boot loader ID byte, per Bernd's suggestion. This is a release candidate, and I plan to release it as 3.00 *tomorrow*, unless I hear back anything bad. -hpa
2011 Aug 15
2
help
Hello, How do I operate the utility "gethostip" in WinXP With Regards S W Damle
2008 Feb 26
2
3.62-pre16: Compiling on old (2.4 kernel) distros
I have put a compile hack in for older distros and pushed it out as syslinux-3.62-pre16; for those who have reported compilation problem on older distros I would greatly appreciate if you could confirm if it works now (it worked for me on a CentOS 3.9 VM.) -hpa
2017 Jun 30
4
[PATCH v2 0/4] Allow cross-building of syslinux
Hi together, this is the second version of my cross-compilation patch serie. I'm sending it in the hope to get an honest review, and possibly see the patches integrated upstream. Those patches allow to build syslinux using a toolchain different from the host one by explicitely using the host toolchain for the utilities that are required at build-time / on the build machine. I am using the
2002 Dec 24
1
Build problems in syslinux 2.00
...mmand showed some files were not built because there are old versions in the tarball. I tried 'make clean all' but still I have old files: ls -ltr kwdhash.gen version.gen ldlinux.bss ldlinux.sys ldlinux.bin pxelinux.0 mbr.bin isolinux.bin isolinux-debug.bin syslinux.com syslinux copybs.com gethostip mkdiskimage memdisk/memdisk -rw-rw-r-- 1 1026 1026 63 Oct 26 03:16 version.gen -rw-rw-r-- 1 1026 1026 1053 Oct 26 03:16 kwdhash.gen -rw-rw-r-- 1 1026 1026 7836 Oct 26 03:16 ldlinux.sys -rw-rw-r-- 1 1026 1026 512 Oct 26 03:16 ldlinux.bss...
2005 Oct 06
1
localboot 0
hi guys ! I have following problem (using pxelinux) I can't boot from my harddrive (netboot works just fine) i conwert my IPadress (with gethostip) and create a configfile like this: -----------C0A80001(192.168.0.1)---------- localboot 0 ----------------------end----------------------- at first te client looks for MAC and then for C0A80001 then i get following: Could not find kernel image: linux boot: and nothing happens how can i boot o...
2012 Feb 05
3
pxelinux search order for configuration file
...searching the configuration file the request for the "odd ip addresses" ? Let me explain: from /doc/pxelinux.txt : ... Next, it will search for the config file using its own IP address in upper case hexadecimal, e.g. 192.0.2.91 -> C000025B (you can use the included progam "gethostip" to compute the hexadecimal IP address for any host.) If that file is not found, it will remove one hex digit and try again. Ultimately, it will try looking for a file named "default" (in lower case). As an example, if the boot file name is /mybootdir/pxelinux.0, th...
2008 Mar 13
3
newbie question: pxelinux.cfg/default question
Hello all, I understand that during PXE boot, it goes into the pxelinux.cfg and it states: 1. "it will search for the config file using its own IP address in upper case hexadecimal, e.g. 192.0.2.91 -> C000025B (you can use the included progam "gethostip" to compute the hexadecimal IP address for any host.) If that file is not found, it will remove one hex digit and try again." a. I'm quite confused - does that mean that the files C0000025B through "C" SHOULD exist or not? b. Are these EMPTY files? c. and Utlimiately it re...
2008 Jun 27
6
Last call for Syslinux 3.70
Hi all, I have just released syslinux-3.70-pre25. Unless someone has something big and scary that either I have managed to miss or was just stumbled over, I'm going to release 3.70 final some time between tomorrow and Monday. Thus, *please holler now* if there are any stop-ship problems still known... -hpa
2004 Feb 24
5
Is it possible to use PXELinux/SYSLinux with out changing DHCP Server settings ?
Hi, We have some 100 Servers (includes both Intel and PPC based systems). Is there any way to easly install OS (different flavours of Linux) on these systems ? We do not have control over the DHCP Server settings so is there any way to do this with out touching the DHCP Server ? We have static IPs for all the systems. Regards, Naveen
2014 Jun 21
1
isohybrid has 2 variants
Op 2014-06-20 om 15:56 schreef Ady: > > The Perl variant, isohybrid.in, seems to be getting left behind > regarding several patches. I don't recall whether there is at least > some mention in the isohybrid docs about the existence of 2 variants > included in Syslinux (and that is in addition to other isohybrid > methods outside Syslinux). Is there any reference? >
2013 Mar 11
2
menu.c32: not a COM32R image
...-v . if [ $? -ne 0 ] ; then echo "Creation of boot ISO failed" echo "Check the log file: $MKISOFSLOG" echo "or check the build directory: $ISODIR" exit 1 fi /bin/rm -rf $ISODIR $MKISOFSLOG HOSTNAME=`uname -n` MYIP=`gethostip -d $HOSTNAME` echo "Boot from http://$MYIP/kickstart/boot-isos/$ISOFILE with" echo "vm cdrom insert http://$MYIP/kickstart/boot-isos/$ISOFILE" echo "vm cdrom set boot_once" echo "vm cdrom get" echo "power reset" } I was assuming...
2017 Apr 05
0
[PATCH 2/2] utils: Use the host toolchain to build.
...yslinux.mk -CFLAGS = $(GCCWARN) -Os -fomit-frame-pointer -D_FILE_OFFSET_BITS=64 -I$(SRC) -LDFLAGS = -O2 +CC = $(CC_FOR_BUILD) +CFLAGS = $(CFLAGS_FOR_BUILD) $(GCCWARN) -Os -fomit-frame-pointer -D_FILE_OFFSET_BITS=64 -I$(SRC) +LDFLAGS = $(LDFLAGS_FOR_BUILD) -O2 C_TARGETS = isohybrid gethostip memdiskfind SCRIPT_TARGETS = mkdiskimage -- 2.1.4
2008 Oct 17
1
possible build problem with syslinux-3.72
...tils' ls -l version.gen version.h version.mk mbr/mbr.bin mbr/gptmbr.bin core/pxelinux.0 core/isolinux.bin core/isolinux-debug.bin gpxe/gpxelinux.0 dos/syslinux.com win32/syslinux.exe memdisk/memdisk memdump/memdump.com modules/*.com com32/menu/*.c32 com32/modules/*.c32 dos/copybs.com utils/gethostip utils/isohybrid utils/mkdiskimage mtools/syslinux linux/syslinux extlinux/extlinux *ls: cannot access win32/syslinux.exe: No such file or directory* -rwxr-xr-x 1 root 1026 55220 2008-10-16 19:32 com32/menu/menu.c32
2003 Oct 04
2
multiple default in /pxelinux.cfg
Dear Sir, I am using PXES for booting diskless computer to win2k, and/or LTSP servers. The problem is we have many computers in our lab have different computers, so i require different .initrd files for each group of computers. Can i have different /pxelinux.cfg/default files so that i can define different locations for my boot files. Thanks in advance. Limesh Parekh, Enjay Computer
2007 Feb 12
2
syslinux-3.36 and 3.35 compilation broke /dev/null
...l I verify that /dev/null exist, then compile one of the target available on top Makefile and /dev/null no more exist. Example root:/usr/src/syslinux-3.36# cat /dev/null root:/usr/src/syslinux-3.36# make .depend Makefile:274: .depend: No such file or directory rm -f .depend for csrc in syslxmod.c gethostip.c ; do gcc -MM $csrc >> .depend ; done for nsrc in copybs.asm extlinux.asm isolinux-debug.asm isolinux.asm ldlinux.asm pxelinux.asm ; do nasm -O99 -DDEPEND -o `echo $nsrc | sed -e 's/\.asm/\.bin/'` -M $nsrc >> .depend ; done make: `.depend' is up to date. root:/usr/src/sys...
2014 Feb 01
0
[PATCH] Add some man pages.
...$ git branch | grep '^*' * master stappers at nero:~/src/syslinux-zytor $ git config --list | grep url remote.origin.url=git://git.zytor.com/syslinux/syslinux.git stappers at nero:~/src/syslinux-zytor $ git pull Already up-to-date. stappers at nero:~/src/syslinux-zytor $ ls man extlinux.1 gethostip.1 lss16toppm.1 ppmtolss16.1 syslinux.1 syslinux2ansi.1 stappers at nero:~/src/syslinux-zytor $
2014 Jun 22
1
isohybrid has 2 variants
Op 2014-06-21 om 21:19 schreef intrigeri: > Hi, > > Ian Bannerman wrote (21 Jun 2014 15:49:51 GMT) : > > One advantage of the Perl one for me is that I can run it on Windows. > > We at Tails rely on isohybrid.pl for installing on OSX: > https://tails.boum.org/doc/first_steps/installation/manual/mac/ > > Of course, this does not mean that the current syslinux team
2011 Aug 05
3
isolinux: Generate GPT and Mac bootable images
...e b/utils/Makefile index acda8c0..44cb54f 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -51,7 +51,7 @@ isohdpfx.c: $(ISOHDPFX) isohdpfxarray.pl $(PERL) isohdpfxarray.pl $(ISOHDPFX) > $@ isohybrid: isohybrid.o isohdpfx.o - $(CC) $(LDFLAGS) -o $@ $^ + $(CC) $(LDFLAGS) -luuid -o $@ $^ gethostip: gethostip.o $(CC) $(LDFLAGS) -o $@ $^ diff --git a/utils/isohybrid.c b/utils/isohybrid.c index 8a60531..1dcbaa1 100644 --- a/utils/isohybrid.c +++ b/utils/isohybrid.c @@ -36,14 +36,19 @@ #include <unistd.h> #include <sys/stat.h> #include <inttypes.h> +#include <uuid/uuid....