From ub at insecma.de Wed Nov 1 11:35:43 2006 From: ub at insecma.de (U. Bauermann) Date: Wed, 01 Nov 2006 11:35:43 +0100 Subject: [Udpcast] loading modules per default Message-ID: <4548787F.2040307@insecma.de> Hello I want to load some kernel modules per default. I have add lines to "/init" in the /usr/lib/udpcast/tmpl-tree. ----- Ex.: !/bin/sh #mount -t devfs none /dev modprobe sata_sis <--- This is my new line modprobe floppy modprobe uhci-hcd modprobe ohci-hcd modprobe usbkbd mount -t sysfs none /sys /bin/udpc_dialog init exec /bin/init ----------- After making the initrd-image, and booting per PXE this image, - i have include a prescript to make a pause before the menue appaers (prescript: read dummy (for continue after keystroke) At this time i activate a virtual console on ALT-2 and with lsmod my module isn't in memory. How/where can/must i include my modprobe line to load it as soon as possible? greeting Uwe From echadwickb at gmail.com Fri Nov 3 19:46:55 2006 From: echadwickb at gmail.com (Chad Brogan) Date: Fri, 3 Nov 2006 13:46:55 -0500 Subject: [Udpcast] Fwd: optiplex 745 and keyboard problems In-Reply-To: <9fddc0c0610301025l44e2990cvfbfc634ea1dc0cc8@mail.gmail.com> References: <9fddc0c0610301025l44e2990cvfbfc634ea1dc0cc8@mail.gmail.com> Message-ID: <9fddc0c0611031046t70e19cbby6fb454e1c1aeb19d@mail.gmail.com> I finally figured out the problem. Thanks to all those who responded. In case you're in the same boat, here are the details: After discovering the cast-o-matic tool (absolutely brilliant), I got the idea to put in some modprobe commands in the "commands to be executed before the udpcast menu" box on the second cast-o-matic page. I put in the following commands: modprobe uhci-hcd modprobe ohci-hcd modprobe usbkbd I'm not sure which or if all of them fixed the problem, but I was then able to use the keyboard when booting udpcast. So far the software has worked great! goodbye zenworks, hello udpcast. ---------- Forwarded message ---------- From: Chad Brogan Date: Oct 30, 2006 1:25 PM Subject: optiplex 745 and keyboard problems To: udpcast at udpcast.linux.lu I've done some googling and found a few posts which seemed to indicate that udpcast shouldn't have problems working with a usb keyboard. Nonetheless, when I boot a pc from the cd or pxe, the keyboard does not work. Where should I start in troubleshooting this problem? I am very much a linux noob, but if someone can get me started, I believe I can stumble my way through it. Thanks. Chad From mailer.tovis at freemail.hu Mon Nov 6 19:52:30 2006 From: mailer.tovis at freemail.hu (tovis) Date: Mon, 6 Nov 2006 19:52:30 +0100 (CET) Subject: [Udpcast] UDP Multicast Programming question Message-ID: <58110.192.168.1.72.1162839150.squirrel@192.168.1.241> I'm C a programmer, looking for Linux UDP multicast programming documentation. Early I'm write some UDP multicast program for WIN32, using API, it is working on NT4.0 (loop back does not work, you can not switch off own packets), W2K and WINXP - where I/O completion port is exist. In WIn32 API you can simply setup an UDP socket, bind on apropriate interface address and after using IOCTL set ADD_MEMBERSHIP/DROP_MEMBERSHIP you can "join" to many groups _ at most I have tested is 4 groups like 224.0.0.xxx on the same port number (for example 6000). In Linux I had managed to use multicast UDP port but, it seem to be that it could not "join" to many groups, to receive packets, only one and you should bind on it (for example on 224.0.0.10:6000)! Is this right? One UDP socket could receive UDP packets only from one multicast group in Linux? Sincerelly tovis From alain at knaff.lu Tue Nov 7 11:07:49 2006 From: alain at knaff.lu (Alain Knaff) Date: Tue, 07 Nov 2006 11:07:49 +0100 Subject: [Udpcast] UDP Multicast Programming question In-Reply-To: <58110.192.168.1.72.1162839150.squirrel@192.168.1.241> References: <58110.192.168.1.72.1162839150.squirrel@192.168.1.241> Message-ID: <45505AF5.2070805@knaff.lu> tovis wrote: > I'm C a programmer, looking for Linux UDP multicast programming > documentation. > Early I'm write some UDP multicast program for WIN32, using API, it is > working on NT4.0 (loop back does not work, you can not switch off own > packets), W2K and WINXP - where I/O completion port is exist. > In WIn32 API you can simply setup an UDP socket, bind on apropriate > interface address and after using IOCTL set ADD_MEMBERSHIP/DROP_MEMBERSHIP > you can "join" to many groups _ at most I have tested is 4 groups like > 224.0.0.xxx on the same port number (for example 6000). > In Linux I had managed to use multicast UDP port but, it seem to be that > it could not "join" to many groups, to receive packets, only one and you > should bind on it (for example on 224.0.0.10:6000)! > Is this right? One UDP socket could receive UDP packets only from one > multicast group in Linux? > > Sincerelly > tovis You can subscribe to as many multicast groups as you want. However, if you want to listen to the same address/port pair from two different programs, you need to set the SO_REUSEADDR flag before binding the socket. In C, you can do that as follows: #include #include ... int reuse=1 ... if(setsockopt(master,SOL_SOCKET,SO_REUSEADDR,&reuse,sizeof(int)) < 0 ){ perror("reuse"); return -1; } Regards, Alain From jnewbigin at ict.swin.edu.au Tue Nov 7 23:29:04 2006 From: jnewbigin at ict.swin.edu.au (John Newbigin) Date: Wed, 08 Nov 2006 09:29:04 +1100 Subject: [Udpcast] UDP Multicast Programming question In-Reply-To: <58110.192.168.1.72.1162839150.squirrel@192.168.1.241> References: <58110.192.168.1.72.1162839150.squirrel@192.168.1.241> Message-ID: <455108B0.5010209@ict.swin.edu.au> I highly recommend the book "Unix Network Programming, Vol. 1: The Sockets Networking API" ISBN: 0131411551 It covers socket programming and has a chapter on udp multicast. Unfortunately it is windows winsock which does not conform to any standards and I am yet to find any thorough documentation on it. John. tovis wrote: > I'm C a programmer, looking for Linux UDP multicast programming > documentation. > Early I'm write some UDP multicast program for WIN32, using API, it is > working on NT4.0 (loop back does not work, you can not switch off own > packets), W2K and WINXP - where I/O completion port is exist. > In WIn32 API you can simply setup an UDP socket, bind on apropriate > interface address and after using IOCTL set ADD_MEMBERSHIP/DROP_MEMBERSHIP > you can "join" to many groups _ at most I have tested is 4 groups like > 224.0.0.xxx on the same port number (for example 6000). > In Linux I had managed to use multicast UDP port but, it seem to be that > it could not "join" to many groups, to receive packets, only one and you > should bind on it (for example on 224.0.0.10:6000)! > Is this right? One UDP socket could receive UDP packets only from one > multicast group in Linux? > > Sincerelly > tovis > > > _______________________________________________ > Udpcast mailing list > Udpcast at udpcast.linux.lu > https://lll.lgl.lu/mailman/listinfo/udpcast > > > -- John Newbigin Computer Systems Officer Faculty of Information and Communication Technologies Swinburne University of Technology Melbourne, Australia http://www.ict.swin.edu.au/staff/jnewbigin From alain at knaff.lu Wed Nov 15 00:27:14 2006 From: alain at knaff.lu (Alain Knaff) Date: Wed, 15 Nov 2006 00:27:14 +0100 Subject: [Udpcast] loading modules per default In-Reply-To: <4548787F.2040307@insecma.de> References: <4548787F.2040307@insecma.de> Message-ID: <455A50D2.3070403@knaff.lu> U. Bauermann wrote: > Hello > > I want to load some kernel modules per default. > I have add lines to "/init" in the /usr/lib/udpcast/tmpl-tree. [...] > After making the initrd-image, and booting per PXE this image, > - i have include a prescript to make a pause before the menue appaers > (prescript: read dummy (for continue after keystroke) > At this time i activate a virtual console on ALT-2 > and with lsmod my module isn't in memory. > > How/where can/must i include my modprobe line to load it as soon as > possible? > > greeting > Uwe I would suggest simply putting it into the prescript. Yes, this is not "as soon as possible", but it is the most "stable" alternative (i.e. it continues working, even after you upgrade udpcast). Or is there any particular reason why you have to insert this module before anything else? Regards, Alain From medjouida at yahoo.fr Tue Nov 28 09:35:30 2006 From: medjouida at yahoo.fr (ben jouida mohamed ali) Date: Tue, 28 Nov 2006 08:35:30 +0000 (GMT) Subject: [Udpcast] (no subject) Message-ID: <20061128083530.15997.qmail@web28014.mail.ukl.yahoo.com> Salut, nous somme en train de réaliser un PFE en réseau informatique concernant le clonage massif a partir d'une interface web personnel, pour cela nous avons besoin de votre aide et de vos connaissances a propos des notions de partimage et UDPcast et drbl... Merci d'avance Mr. ___________________________________________________________________________ Découvrez une nouvelle façon d'obtenir des réponses à toutes vos questions ! Profitez des connaissances, des opinions et des expériences des internautes sur Yahoo! Questions/Réponses http://fr.answers.yahoo.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronald at unimedsm.com.br Thu Nov 30 11:39:44 2006 From: ronald at unimedsm.com.br (Ronald Scholz) Date: Thu, 30 Nov 2006 08:39:44 -0200 Subject: [Udpcast] keyboard USB Message-ID: <000601c7146b$d9af0290$1601aac4@INF2> Hi, UDP CAST does not function with keyboard USB. Exists some solution for the problem? Ronald Scholz -------------- next part -------------- An HTML attachment was scrubbed... URL: