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.
two questions
- fanthom
- Moderator Team
- Posts: 5591
- Joined: 28 Dec 2010, 02:42
- Distribution: Porteus Kiosk
- Location: Poland
- Contact:
Re: two questions
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:
and add code for your static IP, sample below:
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
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
Please add [Solved] to your thread title if the solution was found.
[SOLVED] two questions
All okay now. It was a problem with my virtualbox installation.