Hello,
I would like to include a defaut loaded patch in pd within a knoppix bootable CD.
Is there someone who could give me links to some documentation ? experience doing this?
All thew best
Jean Jacques http://tecfa.unige.ch/perso/staf/duclaux/blog/
On Tue, 16 Sep 2003, J ! J ! wrote:
Hello,
I would like to include a defaut loaded patch in pd within a knoppix bootable CD.
Is there someone who could give me links to some documentation ? experience doing this?
Take a look at the knoppix remastering howto(s). It is not that hard to do .... apt-get install pd
.. whats left to do is that you have to configure the system to start pd automatically with the patch ..
Guenter
All thew best
Jean Jacques http://tecfa.unige.ch/perso/staf/duclaux/blog/
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
hi, the difficult thing is to burn the cd with the appropriate settings... to recognize your hardware and the handling of the bootsequence. you have to dig into self booting systems (maybe without harddisk...). starting Pd by default is easy. you have to create a startfile, which is called during the starting process. and add the command to the etc/init... this is an example... marius.
#! /bin/sh
# Check for missing binaries (stale symlinks should not happen) PD_BIN=/usr/local/pd/bin/pd test -x $PD_BIN || exit 5
case "$1" in
start)
echo -n "Starting PD"
## Start daemon with startproc(8). If this fails
## the return value is set appropriately by startproc.
/usr/local/pd/bin/pd -nogui -noadc -audiobuf 20 -r 22050
-lib /usr/local/lib/pd/pdp/pdp
-lib /usr/local/lib/pd/externs/zexy
-path /home/marius
-path /usr/local/lib/pd/pdp
-path /usr/local/lib/pd/externs/zexy
/home/marius/application.pd &
;;
stop)
echo -n "Shutting down FOO "
## Stop daemon with killproc(8) and if this fails
## killproc sets the return value according to LSB.
kill 'cat /var/run/pd.pid'
;;
restart)
## Stop the service and regardless of whether it was
## running or not, start it again.
$0 stop
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
;;
esac
----- Original Message ----- From: "J ! J !" jj@wanadoo.fr To: pd-list@iem.at Sent: Tuesday, September 16, 2003 9:56 PM Subject: [PD] A custom PD and knoppix how to ?
Hello,
I would like to include a defaut loaded patch in pd within a knoppix bootable CD.
Is there someone who could give me links to some documentation ? experience doing this?
All thew best
Jean Jacques http://tecfa.unige.ch/perso/staf/duclaux/blog/
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
hi,
Am Mittwoch, 17. September 2003 00:26 schrieb marius schebella:
hi, the difficult thing is to burn the cd with the appropriate settings... to recognize your hardware and the handling of the bootsequence. you have to dig into self booting systems (maybe without harddisk...).
thats why it is a good idea to customize knoppix for that - the detection stuff is already there, and its not too hard to modify the cd-image. its a compressed filesystem.
starting Pd by default is easy. you have to create a startfile, which is called during the starting process. and add the command to the etc/init... this is an example... marius.
[...script snipped...]
that works, as long as you dont want a x-windows interface. for x, you need to create a .xinitrc in the knoppix user's homedir which starts the x-win applications after the x-server has finished starting up. (see "man xinit" or "man startx")
greets,
chris