Page 1 of 1

two questions

Posted: 02 Aug 2014, 19:47
by jseider
Where is the location for static ip addresses or printer urls and models in the kiosk.so?
Not in xzm/003-settings.xzm?

If I unpack a wizard generated kiosk image (via loop mount) and pack this as new (unchanged) iso with make_iso.sh,
I have a big problem.
I can boot this image but I have no network connection???

Please help.

Re: two questions

Posted: 03 Aug 2014, 07:09
by fanthom
hi jseider,

repacking the ISO should not affect any network functionality (first time i hear about such behavior).
in order to set static IP you have to edit 003-settings.xzm/etc/rc.d/rc.M and comment out dhcpcd function, like here:

Code: Select all

# Initialize the networking hardware:
#for x in `ls /sys/class/net | egrep -v 'sip|lo'`; do
   # dhcpcd -L -t 0 $x >/dev/null 2>&1 &
#done
and add code for your static IP, sample below:

Code: Select all

ifconfig eth0 192.168.1.10 netmask 255.255.255.0
route add default gw 192.168.1.1 eth0
echo "nameserver 8.8.4.4" > /etc/resolv.conf

[SOLVED] two questions

Posted: 03 Aug 2014, 16:57
by jseider
All okay now. It was a problem with my virtualbox installation.