Copy the contents of SMS.Live.CD to /tftpboot/sms (2 folders sms boot)
replacing
/tftpboot/sms/initrd.gz
/tftpboot/sms/boot/initrd.gz
with the provided one on top of this thread.
Under /tftpboot/sms/pxelinux.cfg create a file called default which can be /boot/sms.cfg from SMS.Live.CD.
A simple default file could be
If you do not have an rc.dhcpd start up script create one
/etc/rc.d/rc.dhcpd
Code:
#!/bin/sh
#
# /etc/rc.d/rc.dhcpd
# This shell script takes care of starting and stopping
# the ISC DHCPD service
#
# Put the command line options here that you want to pass to dhcpd:
DHCPD_OPTIONS="-q eth0"
[ -x /usr/sbin/dhcpd ] || exit 0
[ -f /etc/dhcpd.conf ] || exit 0
start() {
# Start daemons.
echo -n "Starting dhcpd: /usr/sbin/dhcpd $DHCPD_OPTIONS "
/usr/sbin/dhcpd $DHCPD_OPTIONS
echo
}
stop() {
# Stop daemons.
echo -n "Shutting down dhcpd: "
killall -TERM dhcpd
echo
}
status() {
PIDS=$(pidof dhcpd)
if [ "$PIDS" == "" ]; then
echo "dhcpd is not running!"
else
echo "dhcpd is running at pid(s) ${PIDS}."
fi
}
restart() {
stop
start
}
# See how we were called.
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
start
;;
status)
status
;;
*)
echo "Usage: $0 {start|stop|status|restart}"
;;
esac
For that scenario the only thing you have to do is to download and install
http://sms.it-ccs.com/isos/SMS-Current/extra/LTSP/ltsp-4.2-i386-1sms.txz
It will create all appropriate confs and dirs and start LTSP with your current IP address.
Requirements are x-kde-addon package to be installed and will change your default runlevel to 4 (X11 session manager).
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You can attach files in this forum You can download files in this forum