From charlieb-caos at budge.apana.org.au Thu Mar 2 06:34:54 2006 From: charlieb-caos at budge.apana.org.au (Charlie Brady) Date: Thu, 2 Mar 2006 09:34:54 -0500 (EST) Subject: [cAos] kernel source In-Reply-To: <53EF039AE58C4A4CBF3DE1EC15B0282F02AE2482@0599-ITS-EXMB01.us.saic.com> References: <53EF039AE58C4A4CBF3DE1EC15B0282F02AE2482@0599-ITS-EXMB01.us.saic.com> Message-ID: On Tue, 28 Feb 2006, Otero, Glen wrote: > Is the kernel source from kernel.org or Red Neck Linux? Why don't you fetch it and have a look, and you can answer all of your questions? From slaton at OCF.Berkeley.EDU Fri Mar 3 13:26:10 2006 From: slaton at OCF.Berkeley.EDU (slaton) Date: Fri, 3 Mar 2006 13:26:10 -0800 (PST) Subject: [cAos] cAos/cinch & 3Ware 9xxx cards Message-ID: Just flipped our last centos box to cAos2. This one has a 3Ware 9500 raid card, and cinch/cAos is insisting on using the 3w-xxxx instead of the 3w-9xxx module...which doesn't work at all for this card apparently. This should just be a simple mod to modprobe.conf, from alias scsi_hostadapter 3w-xxxx to alias scsi_hostadapter 3w-9xxx (Also, based on a 2005 mailing list post from Greg -- saying that cinch would rewrite modprobe.conf with 3w-xxxx if i asked it to detect hardware -- i added a 3w-xxxx -> 3w-9xxxx line to /etc/detect/updates) But after a reboot, mounting of the raid volumes fails with superblock errors and when i check lsmod now *both* the 3w-xxxx and 3w-9xxxx modules are loaded. Is there somewhere else (like /etc/sysconfig/kernel on red hat) where cAos states what modules are loaded on boot? thanks slaton From gmk at runlevelzero.net Fri Mar 3 17:28:34 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Fri, 3 Mar 2006 17:28:34 -0800 Subject: [cAos] cAos/cinch & 3Ware 9xxx cards In-Reply-To: References: Message-ID: <20060304012834.GA32272@aries.runlevelzero.net> There are 2 reasons for this... First is that you will need to recreate your kernel's initial ramdisk: $ mkinitrd -f /boot/initrd-`uname -r`.img `uname -r` That will reread your /etc/modprobe.conf and include the proper module. The second reason is the post initial ramdisk hardware probe. Run: /sbin/detect, and you will see that 3w-xxxx seems to be still displayed. Edit /etc/detect/updates and add: 3w-xxxx 3w-9xxxx This is weird because detect is checking the hardware VendorID and ModelID and comparing to what the kernel supports for the drivers. for some reason, that kernel is reporting that the 3w-xxxx module will work for that card. In anycase, detect has the above mentioned workaround. Go ahead and run /sbin/detect again to verify that the proper module is now listed. On Fri, Mar 03, 2006 at 01:26:10PM -0800, slaton wrote: > Just flipped our last centos box to cAos2. This one has a 3Ware 9500 raid > card, and cinch/cAos is insisting on using the 3w-xxxx instead of the > 3w-9xxx module...which doesn't work at all for this card apparently. > > This should just be a simple mod to modprobe.conf, from > > alias scsi_hostadapter 3w-xxxx > > to > > alias scsi_hostadapter 3w-9xxx > > (Also, based on a 2005 mailing list post from Greg -- saying that cinch > would rewrite modprobe.conf with 3w-xxxx if i asked it to detect hardware > -- i added a 3w-xxxx -> 3w-9xxxx line to /etc/detect/updates) > > But after a reboot, mounting of the raid volumes fails with superblock > errors and when i check lsmod now *both* the 3w-xxxx and 3w-9xxxx modules > are loaded. > > Is there somewhere else (like /etc/sysconfig/kernel on red hat) where cAos > states what modules are loaded on boot? > > thanks > slaton > _______________________________________________ > cAos mailing list > cAos at caosity.org > http://lists.caosity.org/mailman/listinfo/caos -- Greg M. Kurtzer http://runlevelzero.net/ http://caosity.org/ http://warewulf-cluster.org/ Do not look anywhere for truth, for all that is needed is to refrain from allowing concepts to arise. From slaton at OCF.Berkeley.EDU Fri Mar 3 15:13:56 2006 From: slaton at OCF.Berkeley.EDU (slaton) Date: Fri, 3 Mar 2006 15:13:56 -0800 (PST) Subject: [cAos] cAos/cinch & 3Ware 9xxx cards In-Reply-To: <20060304012834.GA32272@aries.runlevelzero.net> References: <20060304012834.GA32272@aries.runlevelzero.net> Message-ID: Thanks Greg, that did it. :) I had already fixed /etc/detect/updates, but needed to generate a new initrd & rerun /sbin/detect. Agree that there's a logic problem with the kernel recommending 3w-xxxx for this card rather than 3w-9xxxx...thanks for the workaround. slaton On Fri, 3 Mar 2006, Greg M. Kurtzer wrote: > There are 2 reasons for this... > > First is that you will need to recreate your kernel's initial ramdisk: > > $ mkinitrd -f /boot/initrd-`uname -r`.img `uname -r` > > That will reread your /etc/modprobe.conf and include the proper module. > > The second reason is the post initial ramdisk hardware probe. Run: > /sbin/detect, and you will see that 3w-xxxx seems to be still displayed. > Edit /etc/detect/updates and add: > > 3w-xxxx 3w-9xxxx > > This is weird because detect is checking the hardware VendorID and > ModelID and comparing to what the kernel supports for the drivers. for > some reason, that kernel is reporting that the 3w-xxxx module will work > for that card. In anycase, detect has the above mentioned workaround. Go > ahead and run /sbin/detect again to verify that the proper module is now > listed. > > > > On Fri, Mar 03, 2006 at 01:26:10PM -0800, slaton wrote: > > Just flipped our last centos box to cAos2. This one has a 3Ware 9500 raid > > card, and cinch/cAos is insisting on using the 3w-xxxx instead of the > > 3w-9xxx module...which doesn't work at all for this card apparently. > > > > This should just be a simple mod to modprobe.conf, from > > > > alias scsi_hostadapter 3w-xxxx > > > > to > > > > alias scsi_hostadapter 3w-9xxx > > > > (Also, based on a 2005 mailing list post from Greg -- saying that cinch > > would rewrite modprobe.conf with 3w-xxxx if i asked it to detect hardware > > -- i added a 3w-xxxx -> 3w-9xxxx line to /etc/detect/updates) > > > > But after a reboot, mounting of the raid volumes fails with superblock > > errors and when i check lsmod now *both* the 3w-xxxx and 3w-9xxxx modules > > are loaded. > > > > Is there somewhere else (like /etc/sysconfig/kernel on red hat) where cAos > > states what modules are loaded on boot? > > > > thanks > > slaton > > _______________________________________________ > > cAos mailing list > > cAos at caosity.org > > http://lists.caosity.org/mailman/listinfo/caos > > -- > Greg M. Kurtzer > http://runlevelzero.net/ > http://caosity.org/ > http://warewulf-cluster.org/ > > Do not look anywhere for truth, for all that is needed is to refrain from > allowing concepts to arise. > _______________________________________________ > cAos mailing list > cAos at caosity.org > http://lists.caosity.org/mailman/listinfo/caos > From gmk at runlevelzero.net Sun Mar 5 04:17:38 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Sun, 5 Mar 2006 04:17:38 -0800 Subject: [cAos] caos2 repository update Message-ID: <20060305121738.GA4342@aries.runlevelzero.net> Lots of updates and additions. Please post any problems in our ticket tracker (http://bugs.caosity.org). current: + SRPMS/alleyoop-0.8.2-4.caos.src.rpm + SRPMS/anagrammer-0.5-1.caos.src.rpm + SRPMS/bash-completion-20060301-1.caos.src.rpm + SRPMS/blender-2.40-1.caos.src.rpm + SRPMS/blockade-1.00-1.caos.src.rpm + SRPMS/clamav-0.88-1.caos.src.rpm + SRPMS/cowdancer-0.10-1.caos.src.rpm + SRPMS/curl-7.15.2-1.caos.src.rpm + SRPMS/cvsup-16.1-9.h.caos.src.rpm + SRPMS/dansguardian-2.9.3.1-1.caos.src.rpm + SRPMS/dejavu-ttf-2.2-0.caos.src.rpm + SRPMS/e3-2.7.0-1.caos.src.rpm + SRPMS/esvn-0.6.11-1.caos.src.rpm + SRPMS/Eterm-0.9.4-0.20061029.src.rpm + SRPMS/fuse-2.5.1-1.caos.src.rpm + SRPMS/gnome-media-2.8.0-5.caos.src.rpm + SRPMS/gtk-sharp-1.0.10-4.src.rpm + SRPMS/hangman-0.1-1.caos.src.rpm + SRPMS/ImageMagick-6.2.6-1.caos.src.rpm + SRPMS/inkscape-0.43-1.caos.src.rpm + SRPMS/lftp-3.4.2-1.src.rpm + SRPMS/libast-0.7.1-0.20060224.src.rpm + SRPMS/libedit-2.9-0.20060103.1.caos.src.rpm + SRPMS/libmcrypt-2.5.7-2.src.rpm + SRPMS/libxine1-1.1.1-6.caos.src.rpm + SRPMS/lifegeek-1.04-1.caos.src.rpm + SRPMS/linkcheck-1.4-1.caos.src.rpm + SRPMS/mcrypt-2.6.4-1.src.rpm + SRPMS/mhash-0.9.2-3.src.rpm + SRPMS/mkinitrd-4.2.18-4.caos.src.rpm + SRPMS/msort-8.13-1.caos.src.rpm + SRPMS/openssh-4.3p2-1.caos.src.rpm + SRPMS/perl-Net-NTP-1.2-1.caos.src.rpm + SRPMS/perl-Template-Toolkit-2.14-1.caos.src.rpm + SRPMS/perl-Term-ReadLine-Gnu-1.15-1.caos.src.rpm + SRPMS/php5-5.1.2-7.caos.src.rpm + SRPMS/postfix-2.2.9-1.caos.src.rpm + SRPMS/rcs-5.7-29.2.1.src.rpm + SRPMS/re2c-0.9.12-1.src.rpm + SRPMS/rkhunter-1.2.8-1.caos.src.rpm + SRPMS/scribus-1.3.2-1.caos.src.rpm + SRPMS/sqlite3-3.3.3-1.caos.src.rpm + SRPMS/stereograph-0.33a-1.caos.src.rpm + SRPMS/sysfsutils-1.3.0-3.src.rpm + SRPMS/timidity++-2.13.2-2.caos.src.rpm + SRPMS/trac-0.9.4-6.caos.src.rpm + SRPMS/wikka-1.1.6.1-1.caos.src.rpm + SRPMS/xbomb-2.3-1.caos.src.rpm + SRPMS/XFrisk-1.2-1.caos.src.rpm + SRPMS/xlaby-2.0.2-1.caos.src.rpm + SRPMS/xpuyopuyo-0.9.1-1.caos.src.rpm + SRPMS/xscrabble-2.10-1.caos.src.rpm - SRPMS/Eterm-0.9.4-0.20051010.src.rpm - SRPMS/Eterm-0.9.4-0.20051205.src.rpm - SRPMS/Eterm-0.9.4-0.20060105.src.rpm - SRPMS/gnome-media-2.6.2-4.caos.src.rpm - SRPMS/libast-0.7-0.20050316.src.rpm - SRPMS/libast-0.7-0.20051222.src.rpm - SRPMS/mkinitrd-4.2.18-2.caos.src.rpm - SRPMS/rkhunter-1.2.7-1.caos.src.rpm - SRPMS/sysfsutils-1.3.0-1.src.rpm - SRPMS/wikka-1.1.6.0-1.caos.src.rpm stable: + SRPMS/anagrammer-0.5-1.caos.src.rpm + SRPMS/blender-2.40-1.caos.src.rpm + SRPMS/blockade-1.00-1.caos.src.rpm + SRPMS/cowdancer-0.10-1.caos.src.rpm + SRPMS/cvsup-16.1-9.h.caos.src.rpm + SRPMS/dansguardian-2.9.3.1-1.caos.src.rpm + SRPMS/Eterm-0.9.4-0.20061029.src.rpm + SRPMS/gnome-media-2.8.0-5.caos.src.rpm + SRPMS/gtk-sharp-1.0.10-4.src.rpm + SRPMS/hangman-0.1-1.caos.src.rpm + SRPMS/libast-0.7.1-0.20060224.src.rpm + SRPMS/libedit-2.9-0.20060103.1.caos.src.rpm + SRPMS/libmcrypt-2.5.7-2.src.rpm + SRPMS/lifegeek-1.04-1.caos.src.rpm + SRPMS/linkcheck-1.4-1.caos.src.rpm + SRPMS/mcrypt-2.6.4-1.src.rpm + SRPMS/mhash-0.9.2-3.src.rpm + SRPMS/mkinitrd-4.2.18-4.caos.src.rpm + SRPMS/perl-Net-NTP-1.2-1.caos.src.rpm + SRPMS/perl-Template-Toolkit-2.14-1.caos.src.rpm + SRPMS/perl-Term-ReadLine-Gnu-1.15-1.caos.src.rpm + SRPMS/rcs-5.7-29.2.1.src.rpm + SRPMS/re2c-0.9.12-1.src.rpm + SRPMS/rkhunter-1.2.8-1.caos.src.rpm + SRPMS/stereograph-0.33a-1.caos.src.rpm + SRPMS/sysfsutils-1.3.0-3.src.rpm + SRPMS/timidity++-2.13.2-2.caos.src.rpm + SRPMS/wikka-1.1.6.1-1.caos.src.rpm + SRPMS/xbomb-2.3-1.caos.src.rpm + SRPMS/XFrisk-1.2-1.caos.src.rpm + SRPMS/xlaby-2.0.2-1.caos.src.rpm + SRPMS/xpuyopuyo-0.9.1-1.caos.src.rpm + SRPMS/xscrabble-2.10-1.caos.src.rpm - SRPMS/Eterm-0.9.4-0.20051010.src.rpm - SRPMS/gnome-media-2.6.2-4.caos.src.rpm - SRPMS/libast-0.7-0.20050316.src.rpm - SRPMS/mkinitrd-4.2.18-2.caos.src.rpm - SRPMS/rkhunter-1.2.7-1.caos.src.rpm - SRPMS/sysfsutils-1.3.0-1.src.rpm - SRPMS/wikka-1.1.6.0-1.caos.src.rpm -- Greg M. Kurtzer http://runlevelzero.net/ http://caosity.org/ http://warewulf-cluster.org/ Do not look anywhere for truth, for all that is needed is to refrain from allowing concepts to arise. From baucom at msg.ucsf.edu Mon Mar 6 16:50:36 2006 From: baucom at msg.ucsf.edu (Albion Baucom) Date: Mon, 6 Mar 2006 16:50:36 -0800 Subject: [cAos] User accounts on new installation Message-ID: After installing the cAos 2-2.1a distribution with the Enlightenment window manager, I can't login to the window manager via the console with any new user accounts, only as root. User accounts authenticate, the screen goes blank, and then returns to the login screen. Here is what is posted to /var/log/messages Mar 6 08:40:48 localhost entrance: entranced: Requesting auth for uid 2626 (/home/snarf) Mar 6 08:40:48 localhost entrance: Executing /usr/bin/enlightenment Mar 6 08:40:48 localhost entrance: Starting session for user "snarf". Mar 6 08:40:48 localhost entrance(pam_unix)[5982]: session opened for user snarf by (uid=0) Mar 6 08:40:48 localhost entrance[5982]: Opened PAM session. snarf : :0. Mar 6 08:40:48 localhost entrance[5982]: entrance_ipc_shutdown: Success Mar 6 08:40:48 localhost entrance[5982]: Replacing Entrance with simple login program to wait for session end. User accounts are created via the useradd command [root at localhost snarf]# /usr/sbin/useradd -u 502 -g users -d /home/ snarf -s /bin/tcsh snarf [root at localhost snarf]# passwd snarf Changing password for user snarf. New UNIX password: Retype new UNIX password: passwd: all authentication tokens updated successfully. I can log into the computer via SSH with the user accounts. Here are the permissions on the directory and its contents ls -l /home/ drwxr-xr-x 3 snarf users 4096 Mar 6 08:40 snarf ls -la /home/snarf drwxr-xr-x 3 snarf users 4096 Mar 6 08:40 . drwxr-xr-x 5 snarf root 4096 Mar 6 08:34 .. -rw-r--r-- 1 snarf users 51 Mar 6 08:40 .Xauthority -rw-r--r-- 1 snarf users 24 Mar 3 10:03 .bash_logout -rw-r--r-- 1 snarf users 191 Mar 3 10:03 .bash_profile -rw-r--r-- 1 snarf users 124 Mar 3 10:03 .bashrc -rw-r--r-- 1 snarf users 237 Mar 3 10:03 .emacs21 drwxr-xr-x 3 snarf users 4096 Mar 3 10:31 .enlightenment -rw-r--r-- 1 snarf users 253 Mar 3 10:03 .gaminrc Any suggestions, other than trying a different window manager, on how to login into this installation? Thanks Albion From gmk at runlevelzero.net Tue Mar 7 11:03:03 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Tue, 7 Mar 2006 11:03:03 -0800 Subject: [cAos] User accounts on new installation In-Reply-To: References: Message-ID: <20060307190303.GA28285@aries.runlevelzero.net> Does it work if you switch the users shell to bash? (just for troubleshooting)? What if you switch down to /sbin/init 3 (no GUI), log in via the command line, and do the following: $ echo "exec /usr/bin/enlightenment" > ~/.xinitrc $ chmod +x ~/.xinitrc $ startx If it doesn't start for whatever reason, you will see the error. Good luck. On Mon, Mar 06, 2006 at 04:50:36PM -0800, Albion Baucom wrote: > After installing the cAos 2-2.1a distribution with the Enlightenment > window manager, I can't login to the window manager via the console > with any new user accounts, only as root. > > User accounts authenticate, the screen goes blank, and then returns > to the login screen. Here is what is posted to /var/log/messages > > Mar 6 08:40:48 localhost entrance: entranced: Requesting auth for > uid 2626 (/home/snarf) > Mar 6 08:40:48 localhost entrance: Executing /usr/bin/enlightenment > Mar 6 08:40:48 localhost entrance: Starting session for user "snarf". > Mar 6 08:40:48 localhost entrance(pam_unix)[5982]: session opened > for user snarf by (uid=0) > Mar 6 08:40:48 localhost entrance[5982]: Opened PAM session. > snarf : :0. > Mar 6 08:40:48 localhost entrance[5982]: entrance_ipc_shutdown: Success > Mar 6 08:40:48 localhost entrance[5982]: Replacing Entrance with > simple login program to wait for session end. > > User accounts are created via the useradd command > > [root at localhost snarf]# /usr/sbin/useradd -u 502 -g users -d /home/ > snarf -s /bin/tcsh snarf > [root at localhost snarf]# passwd snarf > Changing password for user snarf. > New UNIX password: > Retype new UNIX password: > passwd: all authentication tokens updated successfully. > > I can log into the computer via SSH with the user accounts. Here are > the permissions on the directory and its contents > > ls -l /home/ > drwxr-xr-x 3 snarf users 4096 Mar 6 08:40 snarf > > ls -la /home/snarf > drwxr-xr-x 3 snarf users 4096 Mar 6 08:40 . > drwxr-xr-x 5 snarf root 4096 Mar 6 08:34 .. > -rw-r--r-- 1 snarf users 51 Mar 6 08:40 .Xauthority > -rw-r--r-- 1 snarf users 24 Mar 3 10:03 .bash_logout > -rw-r--r-- 1 snarf users 191 Mar 3 10:03 .bash_profile > -rw-r--r-- 1 snarf users 124 Mar 3 10:03 .bashrc > -rw-r--r-- 1 snarf users 237 Mar 3 10:03 .emacs21 > drwxr-xr-x 3 snarf users 4096 Mar 3 10:31 .enlightenment > -rw-r--r-- 1 snarf users 253 Mar 3 10:03 .gaminrc > > > Any suggestions, other than trying a different window manager, on how > to login into this installation? > > Thanks > > Albion > _______________________________________________ > cAos mailing list > cAos at caosity.org > http://lists.caosity.org/mailman/listinfo/caos -- Greg M. Kurtzer http://runlevelzero.net/ http://caosity.org/ http://warewulf-cluster.org/ Do not look anywhere for truth, for all that is needed is to refrain from allowing concepts to arise. From baucom at msg.ucsf.edu Tue Mar 7 09:35:26 2006 From: baucom at msg.ucsf.edu (Albion Baucom) Date: Tue, 7 Mar 2006 09:35:26 -0800 Subject: [cAos] User accounts on new installation In-Reply-To: <20060307190303.GA28285@aries.runlevelzero.net> References: <20060307190303.GA28285@aries.runlevelzero.net> Message-ID: Thank's Greg for the reply. I got frustrated, gave up, and reinstalled with KDE/GNOME. Everything works fine now. Other than that SNAFU, cAos installation, and setup, has been breeze. Thanks again. Cheers Albion On Mar 7, 2006, at 11:03 AM, Greg M. Kurtzer wrote: > Does it work if you switch the users shell to bash? (just for > troubleshooting)? > > What if you switch down to /sbin/init 3 (no GUI), log in via the > command > line, and do the following: > > $ echo "exec /usr/bin/enlightenment" > ~/.xinitrc > $ chmod +x ~/.xinitrc > $ startx > > If it doesn't start for whatever reason, you will see the error. > > Good luck. > > On Mon, Mar 06, 2006 at 04:50:36PM -0800, Albion Baucom wrote: >> After installing the cAos 2-2.1a distribution with the Enlightenment >> window manager, I can't login to the window manager via the console >> with any new user accounts, only as root. >> >> User accounts authenticate, the screen goes blank, and then returns >> to the login screen. Here is what is posted to /var/log/messages >> >> Mar 6 08:40:48 localhost entrance: entranced: Requesting auth for >> uid 2626 (/home/snarf) >> Mar 6 08:40:48 localhost entrance: Executing /usr/bin/enlightenment >> Mar 6 08:40:48 localhost entrance: Starting session for user "snarf". >> Mar 6 08:40:48 localhost entrance(pam_unix)[5982]: session opened >> for user snarf by (uid=0) >> Mar 6 08:40:48 localhost entrance[5982]: Opened PAM session. >> snarf : :0. >> Mar 6 08:40:48 localhost entrance[5982]: entrance_ipc_shutdown: >> Success >> Mar 6 08:40:48 localhost entrance[5982]: Replacing Entrance with >> simple login program to wait for session end. >> >> User accounts are created via the useradd command >> >> [root at localhost snarf]# /usr/sbin/useradd -u 502 -g users -d /home/ >> snarf -s /bin/tcsh snarf >> [root at localhost snarf]# passwd snarf >> Changing password for user snarf. >> New UNIX password: >> Retype new UNIX password: >> passwd: all authentication tokens updated successfully. >> >> I can log into the computer via SSH with the user accounts. Here are >> the permissions on the directory and its contents >> >> ls -l /home/ >> drwxr-xr-x 3 snarf users 4096 Mar 6 08:40 snarf >> >> ls -la /home/snarf >> drwxr-xr-x 3 snarf users 4096 Mar 6 08:40 . >> drwxr-xr-x 5 snarf root 4096 Mar 6 08:34 .. >> -rw-r--r-- 1 snarf users 51 Mar 6 08:40 .Xauthority >> -rw-r--r-- 1 snarf users 24 Mar 3 10:03 .bash_logout >> -rw-r--r-- 1 snarf users 191 Mar 3 10:03 .bash_profile >> -rw-r--r-- 1 snarf users 124 Mar 3 10:03 .bashrc >> -rw-r--r-- 1 snarf users 237 Mar 3 10:03 .emacs21 >> drwxr-xr-x 3 snarf users 4096 Mar 3 10:31 .enlightenment >> -rw-r--r-- 1 snarf users 253 Mar 3 10:03 .gaminrc >> >> >> Any suggestions, other than trying a different window manager, on how >> to login into this installation? >> >> Thanks >> >> Albion >> _______________________________________________ >> cAos mailing list >> cAos at caosity.org >> http://lists.caosity.org/mailman/listinfo/caos > > -- > Greg M. Kurtzer > http://runlevelzero.net/ > http://caosity.org/ > http://warewulf-cluster.org/ > > Do not look anywhere for truth, for all that is needed is to refrain > from > allowing concepts to arise. > _______________________________________________ > cAos mailing list > cAos at caosity.org > http://lists.caosity.org/mailman/listinfo/caos > From gmk at runlevelzero.net Thu Mar 9 08:16:33 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Thu, 9 Mar 2006 08:16:33 -0800 Subject: [cAos] User accounts on new installation In-Reply-To: References: <20060307190303.GA28285@aries.runlevelzero.net> Message-ID: <20060309161633.GC2434@aries.runlevelzero.net> I have seen some weird things with Entrance (Enlightenment's login manager) not allowing logins under some circumstances. Please post a bug and describe what you saw, and we will work on resolving it. Thanks! On Tue, Mar 07, 2006 at 09:35:26AM -0800, Albion Baucom wrote: > Thank's Greg for the reply. > > I got frustrated, gave up, and reinstalled with KDE/GNOME. > > Everything works fine now. > > Other than that SNAFU, cAos installation, and setup, has been breeze. > > Thanks again. > > Cheers > > Albion > > On Mar 7, 2006, at 11:03 AM, Greg M. Kurtzer wrote: > > > Does it work if you switch the users shell to bash? (just for > > troubleshooting)? > > > > What if you switch down to /sbin/init 3 (no GUI), log in via the > > command > > line, and do the following: > > > > $ echo "exec /usr/bin/enlightenment" > ~/.xinitrc > > $ chmod +x ~/.xinitrc > > $ startx > > > > If it doesn't start for whatever reason, you will see the error. > > > > Good luck. > > > > On Mon, Mar 06, 2006 at 04:50:36PM -0800, Albion Baucom wrote: > >> After installing the cAos 2-2.1a distribution with the Enlightenment > >> window manager, I can't login to the window manager via the console > >> with any new user accounts, only as root. > >> > >> User accounts authenticate, the screen goes blank, and then returns > >> to the login screen. Here is what is posted to /var/log/messages > >> > >> Mar 6 08:40:48 localhost entrance: entranced: Requesting auth for > >> uid 2626 (/home/snarf) > >> Mar 6 08:40:48 localhost entrance: Executing /usr/bin/enlightenment > >> Mar 6 08:40:48 localhost entrance: Starting session for user "snarf". > >> Mar 6 08:40:48 localhost entrance(pam_unix)[5982]: session opened > >> for user snarf by (uid=0) > >> Mar 6 08:40:48 localhost entrance[5982]: Opened PAM session. > >> snarf : :0. > >> Mar 6 08:40:48 localhost entrance[5982]: entrance_ipc_shutdown: > >> Success > >> Mar 6 08:40:48 localhost entrance[5982]: Replacing Entrance with > >> simple login program to wait for session end. > >> > >> User accounts are created via the useradd command > >> > >> [root at localhost snarf]# /usr/sbin/useradd -u 502 -g users -d /home/ > >> snarf -s /bin/tcsh snarf > >> [root at localhost snarf]# passwd snarf > >> Changing password for user snarf. > >> New UNIX password: > >> Retype new UNIX password: > >> passwd: all authentication tokens updated successfully. > >> > >> I can log into the computer via SSH with the user accounts. Here are > >> the permissions on the directory and its contents > >> > >> ls -l /home/ > >> drwxr-xr-x 3 snarf users 4096 Mar 6 08:40 snarf > >> > >> ls -la /home/snarf > >> drwxr-xr-x 3 snarf users 4096 Mar 6 08:40 . > >> drwxr-xr-x 5 snarf root 4096 Mar 6 08:34 .. > >> -rw-r--r-- 1 snarf users 51 Mar 6 08:40 .Xauthority > >> -rw-r--r-- 1 snarf users 24 Mar 3 10:03 .bash_logout > >> -rw-r--r-- 1 snarf users 191 Mar 3 10:03 .bash_profile > >> -rw-r--r-- 1 snarf users 124 Mar 3 10:03 .bashrc > >> -rw-r--r-- 1 snarf users 237 Mar 3 10:03 .emacs21 > >> drwxr-xr-x 3 snarf users 4096 Mar 3 10:31 .enlightenment > >> -rw-r--r-- 1 snarf users 253 Mar 3 10:03 .gaminrc > >> > >> > >> Any suggestions, other than trying a different window manager, on how > >> to login into this installation? > >> > >> Thanks > >> > >> Albion > >> _______________________________________________ > >> cAos mailing list > >> cAos at caosity.org > >> http://lists.caosity.org/mailman/listinfo/caos > > > > -- > > Greg M. Kurtzer > > http://runlevelzero.net/ > > http://caosity.org/ > > http://warewulf-cluster.org/ > > > > Do not look anywhere for truth, for all that is needed is to refrain > > from > > allowing concepts to arise. > > _______________________________________________ > > cAos mailing list > > cAos at caosity.org > > http://lists.caosity.org/mailman/listinfo/caos > > > > _______________________________________________ > cAos mailing list > cAos at caosity.org > http://lists.caosity.org/mailman/listinfo/caos -- Greg M. Kurtzer http://runlevelzero.net/ http://caosity.org/ http://warewulf-cluster.org/ Do not look anywhere for truth, for all that is needed is to refrain from allowing concepts to arise. From wudmojur at yahoo.es Wed Mar 22 16:16:29 2006 From: wudmojur at yahoo.es (Raul Morales Juberias) Date: Wed, 22 Mar 2006 17:16:29 -0700 Subject: [cAos] Change in configuration Message-ID: <578A91E3-2538-4E10-85AE-91066A1E32EB@yahoo.es> Hello, I installed cAos & warewulf in a cluster with AMD64x2 processors,and is not taking advantage of being dual core :( Can this be fixed? I remember that when installing cAos it gives you the option to choose between, smp, unma, nohwp ... I choosed unma is there a way to change this? Thanks From gmk at runlevelzero.net Wed Mar 22 20:06:53 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Wed, 22 Mar 2006 20:06:53 -0800 Subject: [cAos] caos2 repository update Message-ID: <20060323040653.GA22969@aries.runlevelzero.net> current: + SRPMS/encfs-1.3.0-1.caos.src.rpm + SRPMS/fuse-2.5.1-2.caos.src.rpm + SRPMS/gnupg-1.4.2-1.caos.src.rpm + SRPMS/horde-3.1-1.caos.src.rpm + SRPMS/imp-4.1-1.caos.src.rpm + SRPMS/kronolith-2.1-1.caos.src.rpm + SRPMS/librsvg-2.12.7-4.src.rpm + SRPMS/mediawiki-1.5.0-1.caos.src.rpm + SRPMS/nagios-2.0-1.caos.src.rpm + SRPMS/nessus-2.2.7-1.caos.src.rpm + SRPMS/rsync-2.6.7-1.caos.src.rpm + SRPMS/ruby-1.8.4-4.caos.src.rpm + SRPMS/scourge-0.13-2.caos.src.rpm + SRPMS/traceroute-1.4a12-26.src.rpm + SRPMS/warewulf-2.6.2-1.src.rpm - SRPMS/gnupg-1.4.0-1.caos.src.rpm - SRPMS/mediawiki-1.4.5-1.caos.src.rpm - SRPMS/mediawiki-1.4.7-1.caos.src.rpm - SRPMS/mediawiki-1.4.9-1.caos.src.rpm - SRPMS/nagios-1.2-2.caos.src.rpm - SRPMS/sqlite3-3.3.3-1.caos.src.rpm - SRPMS/subversion-1.1.2-7.caos.src.rpm - SRPMS/subversion-1.1.4-5.src.rpm - SRPMS/warewulf-2.4.5-1.src.rpm stable: + SRPMS/encfs-1.3.0-1.caos.src.rpm + SRPMS/gnupg-1.4.2-1.caos.src.rpm + SRPMS/mediawiki-1.5.0-1.caos.src.rpm + SRPMS/ruby-1.8.4-4.caos.src.rpm + SRPMS/subversion-1.2.3-8.caos.src.rpm + SRPMS/traceroute-1.4a12-26.src.rpm + SRPMS/warewulf-2.6.2-1.src.rpm - SRPMS/gnupg-1.4.0-1.caos.src.rpm - SRPMS/mediawiki-1.4.5-1.caos.src.rpm - SRPMS/subversion-1.1.2-7.caos.src.rpm - SRPMS/warewulf-2.4.5-1.src.rpm Enjoy. :) -- Greg M. Kurtzer http://runlevelzero.net/ http://caosity.org/ http://warewulf-cluster.org/ Do not look anywhere for truth, for all that is needed is to refrain from allowing concepts to arise. From gmk at runlevelzero.net Wed Mar 22 20:10:56 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Wed, 22 Mar 2006 20:10:56 -0800 Subject: [cAos] Change in configuration In-Reply-To: <578A91E3-2538-4E10-85AE-91066A1E32EB@yahoo.es> References: <578A91E3-2538-4E10-85AE-91066A1E32EB@yahoo.es> Message-ID: <20060323041056.GB22969@aries.runlevelzero.net> Not a problem... # yum --enablerepo current install linux-numa Then select that kernel when you boot. On Wed, Mar 22, 2006 at 05:16:29PM -0700, Raul Morales Juberias wrote: > Hello, > > I installed cAos & warewulf in a cluster with AMD64x2 processors,and > is not taking advantage of being dual core :( > > Can this be fixed? > > I remember that when installing cAos it gives you the option to > choose between, smp, unma, nohwp ... I choosed unma is there a way to > change this? > > Thanks > _______________________________________________ > cAos mailing list > cAos at caosity.org > http://lists.caosity.org/mailman/listinfo/caos -- Greg M. Kurtzer http://runlevelzero.net/ http://caosity.org/ http://warewulf-cluster.org/ Do not look anywhere for truth, for all that is needed is to refrain from allowing concepts to arise. From wudmojur at yahoo.es Thu Mar 23 08:25:51 2006 From: wudmojur at yahoo.es (Raul Morales Juberias) Date: Thu, 23 Mar 2006 09:25:51 -0700 Subject: [cAos] smp vs numa Message-ID: <525874DA-8E95-4DA0-98DD-BD5D4B90DEA6@yahoo.es> Hello Greg, I am kind of newbie with this so maybe the question sounds dumb but, should not I have smp instead or numa? How do I change this? Thanks From gmk at runlevelzero.net Thu Mar 23 08:43:33 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Thu, 23 Mar 2006 08:43:33 -0800 Subject: [cAos] smp vs numa In-Reply-To: <525874DA-8E95-4DA0-98DD-BD5D4B90DEA6@yahoo.es> References: <525874DA-8E95-4DA0-98DD-BD5D4B90DEA6@yahoo.es> Message-ID: <20060323164333.GA12888@aries.runlevelzero.net> Actually, it is a very good point. I assumed from your previous post (and later your cpuinfo output posted to the warewulf list) that you are actually running Opterons which are a NUMA architecture. NUMA implies SMP with a non uniform memory layout. So, in this case, the NUMA kernel would be best suited for you. Let us know how it works out. On Thu, Mar 23, 2006 at 09:25:51AM -0700, Raul Morales Juberias wrote: > Hello Greg, > > I am kind of newbie with this so maybe the question sounds dumb but, > should not I have smp instead or numa? > > How do I change this? > > Thanks > > _______________________________________________ > cAos mailing list > cAos at caosity.org > http://lists.caosity.org/mailman/listinfo/caos -- Greg M. Kurtzer http://runlevelzero.net/ http://caosity.org/ http://warewulf-cluster.org/ Do not look anywhere for truth, for all that is needed is to refrain from allowing concepts to arise. From gonzalomr at gmail.com Thu Mar 23 10:18:21 2006 From: gonzalomr at gmail.com (Gonzalo M. Rios) Date: Thu, 23 Mar 2006 15:18:21 -0300 Subject: [cAos] add printer on terminal Message-ID: <318555c60603231018q1f50fa98w9dc29255b4f3cefc@mail.gmail.com> Hello, I am trying to install a local printer by means of cups (via Web), the problem is that I do not have drivers correct, that packages would have to add so that they appear to me such? It is a terminal where I am trying to install less possible and single way is executed console. Pardon by my english, thank you very much. -- Gonzalo M. Rios Registered User LINUX #237889 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.infiscale.org/pipermail/caos/attachments/20060323/c532e345/attachment.html From martin.hardie at gmail.com Thu Mar 23 10:27:01 2006 From: martin.hardie at gmail.com (martin hardie) Date: Thu, 23 Mar 2006 19:27:01 +0100 Subject: [cAos] add printer on terminal In-Reply-To: <318555c60603231018q1f50fa98w9dc29255b4f3cefc@mail.gmail.com> References: <318555c60603231018q1f50fa98w9dc29255b4f3cefc@mail.gmail.com> Message-ID: <7ff9538b0603231027r799669a1of1f69a51a1127496@mail.gmail.com> Gonzalo greetings from Euskadi escribes eso en castelleano por ke no me entiendo It is a terminal where I am trying to install less possible and single way is executed console. Martin On 3/23/06, Gonzalo M. Rios wrote: > > Hello, I am trying to install a local printer by means of cups (via Web), > the problem is that I do not have drivers correct, that packages would have > to add so that they appear to me such? It is a terminal where I am trying to > install less possible and single way is executed console. Pardon by my > english, thank you very much. > > -- > Gonzalo M. Rios > Registered User LINUX #237889 > > _______________________________________________ > cAos mailing list > cAos at caosity.org > http://lists.caosity.org/mailman/listinfo/caos > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.infiscale.org/pipermail/caos/attachments/20060323/840a2203/attachment.html From grios at workjoy.com Thu Mar 23 10:33:40 2006 From: grios at workjoy.com (Gonzalo M. Rios) Date: Thu, 23 Mar 2006 15:33:40 -0300 Subject: [cAos] add printer on terminal In-Reply-To: <7ff9538b0603231027r799669a1of1f69a51a1127496@mail.gmail.com> References: <318555c60603231018q1f50fa98w9dc29255b4f3cefc@mail.gmail.com> <7ff9538b0603231027r799669a1of1f69a51a1127496@mail.gmail.com> Message-ID: <318555c60603231033g51559debr4c7b9c7f69447b30@mail.gmail.com> Hola Martin: La idea es que necesito saber que paquetes contienen los drivers para las impresoras, as? poder usar cups mediante web para configurarlas y dejarlas funcionando en la maquina. La cual debe de tener el m?nimo de soft por que son maquinas poco potentes y tienen solo consola(no entorno gr?fico) Saludos y gracias. On 3/23/06, martin hardie wrote: > > Gonzalo > > greetings from Euskadi > > escribes eso en castelleano por ke no me entiendo > > > It is a terminal where I am trying to install less possible and single way > is executed console. > > > Martin > > > On 3/23/06, Gonzalo M. Rios wrote: > > > Hello, I am trying to install a local printer by means of cups (via > Web), the problem is that I do not have drivers correct, that packages would > have to add so that they appear to me such? It is a terminal where I am > trying to install less possible and single way is executed console. Pardon > by my english, thank you very much. > > -- > Gonzalo M. Rios > Registered User LINUX #237889 > > _______________________________________________ > cAos mailing list > cAos at caosity.org > http://lists.caosity.org/mailman/listinfo/caos > > > > > _______________________________________________ > cAos mailing list > cAos at caosity.org > http://lists.caosity.org/mailman/listinfo/caos > > > -- Gonzalo M. Rios Registered User LINUX #237889 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.infiscale.org/pipermail/caos/attachments/20060323/f3d09498/attachment.html From gonzalomr at gmail.com Thu Mar 23 10:34:27 2006 From: gonzalomr at gmail.com (Gonzalo M. Rios) Date: Thu, 23 Mar 2006 15:34:27 -0300 Subject: [cAos] add printer on terminal In-Reply-To: <7ff9538b0603231027r799669a1of1f69a51a1127496@mail.gmail.com> References: <318555c60603231018q1f50fa98w9dc29255b4f3cefc@mail.gmail.com> <7ff9538b0603231027r799669a1of1f69a51a1127496@mail.gmail.com> Message-ID: <318555c60603231034h7ae14005p75dfb57a516e0d5@mail.gmail.com> Hola Martin: La idea es que necesito saber que paquetes contienen los drivers para las impresoras, as? poder usar cups mediante web para configurarlas y dejarlas funcionando en la maquina. La cual debe de tener el m?nimo de soft por que son maquinas poco potentes y tienen solo consola(no entorno gr?fico) Saludos y gracias. Gonzalo M. Rios Registered User LINUX #237889 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.infiscale.org/pipermail/caos/attachments/20060323/10800b71/attachment.html From martin.hardie at gmail.com Thu Mar 23 10:35:58 2006 From: martin.hardie at gmail.com (martin hardie) Date: Thu, 23 Mar 2006 19:35:58 +0100 Subject: [cAos] add printer on terminal In-Reply-To: <318555c60603231033g51559debr4c7b9c7f69447b30@mail.gmail.com> References: <318555c60603231018q1f50fa98w9dc29255b4f3cefc@mail.gmail.com> <7ff9538b0603231027r799669a1of1f69a51a1127496@mail.gmail.com> <318555c60603231033g51559debr4c7b9c7f69447b30@mail.gmail.com> Message-ID: <7ff9538b0603231035t11b31ab3k415bf4c8f726c803@mail.gmail.com> Guys What if any packages contain drivers for printers? aussieman On 3/23/06, Gonzalo M. Rios wrote: > > Hola Martin: > La idea es que necesito saber que paquetes contienen los drivers para las > impresoras, as? poder usar cups mediante web para configurarlas y dejarlas > funcionando en la maquina. La cual debe de tener el m?nimo de soft por que > son maquinas poco potentes y tienen solo consola(no entorno gr?fico) > Saludos y gracias. > > > On 3/23/06, martin hardie wrote: > > > > Gonzalo > > > > greetings from Euskadi > > > > escribes eso en castelleano por ke no me entiendo > > > > > > It is a terminal where I am trying to install less possible and single > > way is executed console. > > > > > > Martin > > > > > > On 3/23/06, Gonzalo M. Rios < gonzalomr at gmail.com> wrote: > > > > > Hello, I am trying to install a local printer by means of cups (via > > Web), the problem is that I do not have drivers correct, that packages would > > have to add so that they appear to me such? It is a terminal where I am > > trying to install less possible and single way is executed console. Pardon > > by my english, thank you very much. > > > > -- > > Gonzalo M. Rios > > Registered User LINUX #237889 > > > > _______________________________________________ > > cAos mailing list > > cAos at caosity.org > > http://lists.caosity.org/mailman/listinfo/caos > > > > > > > > > > _______________________________________________ > > cAos mailing list > > cAos at caosity.org > > http://lists.caosity.org/mailman/listinfo/caos > > > > > > > > > -- > Gonzalo M. Rios > Registered User LINUX #237889 > > _______________________________________________ > cAos mailing list > cAos at caosity.org > http://lists.caosity.org/mailman/listinfo/caos > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.infiscale.org/pipermail/caos/attachments/20060323/b3a46cd7/attachment.html From m.stolte at datadevil.demon.nl Thu Mar 23 11:32:46 2006 From: m.stolte at datadevil.demon.nl (Maarten Stolte) Date: Thu, 23 Mar 2006 20:32:46 +0100 Subject: [cAos] add printer on terminal In-Reply-To: <7ff9538b0603231035t11b31ab3k415bf4c8f726c803@mail.gmail.com> References: <318555c60603231018q1f50fa98w9dc29255b4f3cefc@mail.gmail.com> <7ff9538b0603231027r799669a1of1f69a51a1127496@mail.gmail.com> <318555c60603231033g51559debr4c7b9c7f69447b30@mail.gmail.com> <7ff9538b0603231035t11b31ab3k415bf4c8f726c803@mail.gmail.com> Message-ID: <4422F7DE.6020303@datadevil.demon.nl> Ola, no hablo espanol ;-) the cups stuff is usually used for printers. Setting it up is done by connecting with a webbrowser to the localhost port 631, or by editing the config files manually. The www.cups.orgsite has excellent documentation. For HP printers, we have the hpijs package, but you need cups at least. Maarten martin hardie wrote: > Guys > > What if any packages contain drivers for printers? > > aussieman > > On 3/23/06, *Gonzalo M. Rios* > wrote: > > Hola Martin: > La idea es que necesito saber que paquetes contienen los drivers > para las impresoras, as? poder usar cups mediante web para > configurarlas y dejarlas funcionando en la maquina. La cual debe > de tener el m?nimo de soft por que son maquinas poco potentes y > tienen solo consola(no entorno gr?fico) > Saludos y gracias. > > > On 3/23/06, *martin hardie* < martin.hardie at gmail.com > > wrote: > > Gonzalo > > greetings from Euskadi > > escribes eso en castelleano por ke no me entiendo > > > It is a terminal where I am trying to install less possible > and single way is executed console. > > > Martin > > > On 3/23/06, *Gonzalo M. Rios* < gonzalomr at gmail.com > > wrote: > Hello, I am trying to install a local printer by means of cups > (via Web), the problem is that I do not have drivers correct, > that packages would have to add so that they appear to me > such? It is a terminal where I am trying to install less > possible and single way is executed console. Pardon by my > english, thank you very much. > > -- > Gonzalo M. Rios > Registered User LINUX #237889 > > _______________________________________________ > cAos mailing list > cAos at caosity.org > http://lists.caosity.org/mailman/listinfo/caos > > > > > _______________________________________________ > cAos mailing list > cAos at caosity.org > http://lists.caosity.org/mailman/listinfo/caos > > > > > > -- > Gonzalo M. Rios > Registered User LINUX #237889 > > _______________________________________________ > cAos mailing list > cAos at caosity.org > http://lists.caosity.org/mailman/listinfo/caos > > > > ------------------------------------------------------------------------ > > _______________________________________________ > cAos mailing list > cAos at caosity.org > http://lists.caosity.org/mailman/listinfo/caos > From gmk at runlevelzero.net Thu Mar 23 12:21:48 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Thu, 23 Mar 2006 12:21:48 -0800 Subject: [cAos] [Warewulf] smp vs numa In-Reply-To: <200603231339.40031.nanderson@teamhpc.com> References: <525874DA-8E95-4DA0-98DD-BD5D4B90DEA6@yahoo.es> <200603231132.49326.nanderson@teamhpc.com> <200603231339.40031.nanderson@teamhpc.com> Message-ID: <20060323202148.GA13760@aries.runlevelzero.net> Yes, you both (you and Tim) are correct. I was under the impression that he had 2 sockets each containing 2 cores. A single socket, multicore processor is not NUMA, but I don't know if kernel selection (numa Vs. smp) will make much of a performance difference in this scenario. My hunch is that the standard SMP kernel (linux-smp) will be better suited. If someone else has experience with this, please let us know. On Thu, Mar 23, 2006 at 01:39:39PM -0600, Nick Anderson wrote: > addendum ... > > I think you are right in your definitions. All I was trying to get across is > that multi core without multi socket would not be able to take advantage of > NUMA. Even a single dual core opteron would not be NUMA though it would be > SMP. > > > > It is the Opteron's on a multi-socket motherboard which are not "true" > > SMPs... with different distance to the various memory channels. > > Yet, a single socket motherboard with one multi-core Opteron would > > definitely be SMP in my understanding of the definitions. > > -- > > Tim Mattox - tmattox at gmail.com > > http://homepage.mac.com/tmattox/ > > I'm a bright... http://www.the-brights.net/ > > _______________________________________________ > > Warewulf mailing list > > Warewulf at caosity.org > > http://lists.caosity.org/mailman/listinfo/warewulf > _______________________________________________ > Warewulf mailing list > Warewulf at caosity.org > http://lists.caosity.org/mailman/listinfo/warewulf -- Greg M. Kurtzer http://runlevelzero.net/ http://caosity.org/ http://warewulf-cluster.org/ Do not look anywhere for truth, for all that is needed is to refrain from allowing concepts to arise. From gmk at runlevelzero.net Thu Mar 23 12:30:45 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Thu, 23 Mar 2006 12:30:45 -0800 Subject: [cAos] [Warewulf] install numa ... network lost ?? In-Reply-To: References: Message-ID: <20060323203045.GB13760@aries.runlevelzero.net> I have seen a bug where PCEe(xpress) devices are sometimes lost with the newer kernels when using dual core Opterons. I thought the problem was hardware related or specific, but maybe you are seeing the same thing. When you are booted in the kernel where you loose network, run the following command just to see if the devices on that bus are still being recognized: # /sbin/detect -ai If you still see the NETWORK entries, then the problem is configuration. ;) On Thu, Mar 23, 2006 at 11:56:33AM -0700, Raul Morales Juberias wrote: > Thanks for the explanations Tim > > I think I may have a mess of network configuration, as soon as I > finish with the smp install I will try to send more detailed info > about this ... > > Thanks for all the help > > On Mar 23, 2006, at 11:26 AM, Tim Mattox wrote: > > >Raul, > >Your Athlon 64 X2 based machines are not "NUMA" Non-Uniform Memory > >Access. > >They are SMP (Symmetric Multi-Processing) style machines. Each > >core in the > >chip has an equal footing and distance to the memory on the > >motherboard. > >You should instead be working with the linux-smp kernels. > >The linux-numa kernel is for multiple-socket motherboards, such as > >those > >using several Opteron chips. > > > >Anyway, as for why your network went away, I don't know. Have you > >tried > >rebooting and selecting the Uni-processor kernel to see if the problem > >goes away? > >Make sure it is the kernel change that caused the problem, and not > >simply that > >you rebooted recently... sometimes a latent problem in one's > >configuration > >is revealed simply by rebooting... and in this case, it might have > >simply been > >a coincidence that since you had changed kernels, this was your > >first reboot > >in long time. > >If it is the kernel, then see if you notice any warnings or error > >messages that > >are different in the output of "dmesg" between the two kernels. > > > >And, once you get this all worked out, and are running the smp > >kernel on > >the master, you would then need to run "wwmkinitrd" and then reboot > >your > >nodes for them to use the smp kernel. > > > >On 3/23/06, Raul Morales Juberias wrote: > >>Hello again, > >> > >>I did > >> > >># yum --enablerepo current install linux-numa > >> > >>I rebooted the master node selecting this kernel and it looks like it > >>worked, I can see both processors when doing cat /proc/cpuinfo > >> > >>Now, it turns out that I have lost my network connections, the master > >>node can not connect to the outside world > >> > >>I checked ifconfig and that looks exactly like it looked before ?? > >>Did I miss something when doing the linux-numa install? > >> > >>Thanks > > > >-- > >Tim Mattox - tmattox at gmail.com > > http://homepage.mac.com/tmattox/ > > I'm a bright... http://www.the-brights.net/ > >_______________________________________________ > >Warewulf mailing list > >Warewulf at caosity.org > >http://lists.caosity.org/mailman/listinfo/warewulf > > # # # # # # # # # # # # # # # # # # # # # # # # > Raul Morales-Juberias > Assistant Professor of Physics > Office: Workman 345 > phone# 505 835 6559 > email: rmjuberias at kestrel.nmt.edu > url: http://www.physics.nmt.edu/~rmjuberias > # # # # # # # # # # # # # # # # # # # # # # # # > > > _______________________________________________ > Warewulf mailing list > Warewulf at caosity.org > http://lists.caosity.org/mailman/listinfo/warewulf -- Greg M. Kurtzer http://runlevelzero.net/ http://caosity.org/ http://warewulf-cluster.org/ Do not look anywhere for truth, for all that is needed is to refrain from allowing concepts to arise. From gmk at runlevelzero.net Thu Mar 23 14:29:40 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Thu, 23 Mar 2006 14:29:40 -0800 Subject: [cAos] [Warewulf] install numa ... network lost ?? In-Reply-To: <8611118B-F2C0-4128-AB6D-AEBA2273EEDF@kestrel.nmt.edu> References: <20060323203045.GB13760@aries.runlevelzero.net> <8611118B-F2C0-4128-AB6D-AEBA2273EEDF@kestrel.nmt.edu> Message-ID: <20060323222940.GA14161@aries.runlevelzero.net> So what happens if you type: /sbin/detect -ai Can you send the output of that command? Thanks. On Thu, Mar 23, 2006 at 02:47:58PM -0700, Raul Morales Juberias wrote: > Hello, > > I will try to describes the event in the most accurate way possible > > At the beginning everything was working ok, the master was > communicating with the outside world and with the nodes, and despite > these were being used optimally the benchmarks were good ... > > Then I installed the linux.numa in the master and rebooted it > (leaving the nodes on, which probably was not good ...) and the > network stopped working, the master node could not communicate with > anybody ?? > > After making ifconfig and checking that nothing had changed I tried > something desperate which was switching the cables, from one nic to > the other ... and it worked, I was able to connect from the master > node back to the outside world at least; I did not tried to connect > to the nodes because at this point Tim had written me saying that > what I really needed was linux-smp, so I just installed this, and > rebooted (this time with the nodes down) > > I run wwkinitrd, turn the nodes back on, leave the network cables > like they were and voila ... everything was working fine, and since > now I am using the processors properly the benchmarks are even better :O > > But ... I still thing I have something weird going on with the > network, How is it possible that switching the cables make the thing > work? bizarre ... > > Thanks all for your help and for the ongoing debate on numa vs smp, I > think I learned something ... > > On Mar 23, 2006, at 1:30 PM, Greg M. Kurtzer wrote: > > >I have seen a bug where PCEe(xpress) devices are sometimes lost > >with the > >newer kernels when using dual core Opterons. I thought the problem was > >hardware related or specific, but maybe you are seeing the same thing. > > > >When you are booted in the kernel where you loose network, run the > >following command just to see if the devices on that bus are still > >being > >recognized: > > > > # /sbin/detect -ai > > > >If you still see the NETWORK entries, then the problem is > >configuration. > >;) > > > > > > > >On Thu, Mar 23, 2006 at 11:56:33AM -0700, Raul Morales Juberias wrote: > >>Thanks for the explanations Tim > >> > >>I think I may have a mess of network configuration, as soon as I > >>finish with the smp install I will try to send more detailed info > >>about this ... > >> > >>Thanks for all the help > >> > >>On Mar 23, 2006, at 11:26 AM, Tim Mattox wrote: > >> > >>>Raul, > >>>Your Athlon 64 X2 based machines are not "NUMA" Non-Uniform Memory > >>>Access. > >>>They are SMP (Symmetric Multi-Processing) style machines. Each > >>>core in the > >>>chip has an equal footing and distance to the memory on the > >>>motherboard. > >>>You should instead be working with the linux-smp kernels. > >>>The linux-numa kernel is for multiple-socket motherboards, such as > >>>those > >>>using several Opteron chips. > >>> > >>>Anyway, as for why your network went away, I don't know. Have you > >>>tried > >>>rebooting and selecting the Uni-processor kernel to see if the > >>>problem > >>>goes away? > >>>Make sure it is the kernel change that caused the problem, and not > >>>simply that > >>>you rebooted recently... sometimes a latent problem in one's > >>>configuration > >>>is revealed simply by rebooting... and in this case, it might have > >>>simply been > >>>a coincidence that since you had changed kernels, this was your > >>>first reboot > >>>in long time. > >>>If it is the kernel, then see if you notice any warnings or error > >>>messages that > >>>are different in the output of "dmesg" between the two kernels. > >>> > >>>And, once you get this all worked out, and are running the smp > >>>kernel on > >>>the master, you would then need to run "wwmkinitrd" and then reboot > >>>your > >>>nodes for them to use the smp kernel. > >>> > >>>On 3/23/06, Raul Morales Juberias wrote: > >>>>Hello again, > >>>> > >>>>I did > >>>> > >>>># yum --enablerepo current install linux-numa > >>>> > >>>>I rebooted the master node selecting this kernel and it looks > >>>>like it > >>>>worked, I can see both processors when doing cat /proc/cpuinfo > >>>> > >>>>Now, it turns out that I have lost my network connections, the > >>>>master > >>>>node can not connect to the outside world > >>>> > >>>>I checked ifconfig and that looks exactly like it looked before ?? > >>>>Did I miss something when doing the linux-numa install? > >>>> > >>>>Thanks > >>> > >>>-- > >>>Tim Mattox - tmattox at gmail.com > >>> http://homepage.mac.com/tmattox/ > >>> I'm a bright... http://www.the-brights.net/ > >>>_______________________________________________ > >>>Warewulf mailing list > >>>Warewulf at caosity.org > >>>http://lists.caosity.org/mailman/listinfo/warewulf > >> > >># # # # # # # # # # # # # # # # # # # # # # # # > >>Raul Morales-Juberias > >>Assistant Professor of Physics > >>Office: Workman 345 > >>phone# 505 835 6559 > >>email: rmjuberias at kestrel.nmt.edu > >>url: http://www.physics.nmt.edu/~rmjuberias > >># # # # # # # # # # # # # # # # # # # # # # # # > >> > >> > > > >>_______________________________________________ > >>Warewulf mailing list > >>Warewulf at caosity.org > >>http://lists.caosity.org/mailman/listinfo/warewulf > > > > > >-- > >Greg M. Kurtzer > >http://runlevelzero.net/ > >http://caosity.org/ > >http://warewulf-cluster.org/ > > > >Do not look anywhere for truth, for all that is needed is to > >refrain from > >allowing concepts to arise. > >_______________________________________________ > >Warewulf mailing list > >Warewulf at caosity.org > >http://lists.caosity.org/mailman/listinfo/warewulf > > # # # # # # # # # # # # # # # # # # # # # # # # > Raul Morales-Juberias > Assistant Professor of Physics > Office: Workman 345 > phone# 505 835 6559 > email: rmjuberias at kestrel.nmt.edu > url: http://www.physics.nmt.edu/~rmjuberias > # # # # # # # # # # # # # # # # # # # # # # # # > > > _______________________________________________ > Warewulf mailing list > Warewulf at caosity.org > http://lists.caosity.org/mailman/listinfo/warewulf -- Greg M. Kurtzer http://runlevelzero.net/ http://caosity.org/ http://warewulf-cluster.org/ Do not look anywhere for truth, for all that is needed is to refrain from allowing concepts to arise. From gmk at runlevelzero.net Thu Mar 23 14:43:32 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Thu, 23 Mar 2006 14:43:32 -0800 Subject: [cAos] [Warewulf] /sbin/detect -ai In-Reply-To: References: Message-ID: <20060323224332.GB14161@aries.runlevelzero.net> That is intersting. It is finding your network card just fine. Is this with the NUMA kernel? The other thing you can do is try the standard SMP kernel (as was discussed on the list): yum install linux-smp And make sure you select that kernel from the boot menu. On Thu, Mar 23, 2006 at 03:34:52PM -0700, Raul Morales Juberias wrote: > Hello > > Here is it ... > > raul at raven:~[254]%/sbin/detect -ai > 0000:00:01.1 10de:52 SERIAL i2c-nforce2 > 0000:00:02.0 10de:5a USB ohci-hcd > 0000:00:02.1 10de:5b USB ehci-hcd > 0000:00:04.0 10de:59 AUDIO snd-intel8x0 > 0000:00:07.0 10de:54 SCSI sata_nv > 0000:00:08.0 10de:55 SCSI sata_nv > 0000:00:0a.0 10de:57 BRIDGE forcedeth > 0000:00:0b.0 10de:5d PCI shpchp > 0000:00:0c.0 10de:5d PCI shpchp > 0000:00:0d.0 10de:5d PCI shpchp > 0000:00:0e.0 10de:5d PCI shpchp > 0000:01:08.0 1186:4c00 NETWORK skge > 0000:05:00.0 1002:5b60 DISPLAY radeonfb > > Thanks > > # # # # # # # # # # # # # # # # # # # # # # # # > Raul Morales-Juberias > Assistant Professor of Physics > Office: Workman 345 > phone# 505 835 6559 > email: rmjuberias at kestrel.nmt.edu > url: http://www.physics.nmt.edu/~rmjuberias > # # # # # # # # # # # # # # # # # # # # # # # # > > > _______________________________________________ > Warewulf mailing list > Warewulf at caosity.org > http://lists.caosity.org/mailman/listinfo/warewulf -- Greg M. Kurtzer http://runlevelzero.net/ http://caosity.org/ http://warewulf-cluster.org/ Do not look anywhere for truth, for all that is needed is to refrain from allowing concepts to arise. From tmattox at gmail.com Thu Mar 23 14:54:03 2006 From: tmattox at gmail.com (Tim Mattox) Date: Thu, 23 Mar 2006 17:54:03 -0500 Subject: [cAos] [Warewulf] /sbin/detect -ai In-Reply-To: <20060323224332.GB14161@aries.runlevelzero.net> References: <20060323224332.GB14161@aries.runlevelzero.net> Message-ID: Hi Greg & Raul, What appears to have happened, is that when Raul switched kernel versions, his network interfaces got recognized in the opposite order. Thus, by swapping the ethernet cables, things worked again for him (as indicated in his post from a few minutes ago). Raul, what specific kernel versions are your uniprocessor and SMP kernels? 2.6.what? What I find odd, is that the forcedeth is being listed as BRIDGE by detect... If I understand what is meant by that output, shouldn't it be NETWORK, since the forcedeth is an ethernet driver... On 3/23/06, Greg M. Kurtzer wrote: > That is intersting. It is finding your network card just fine. Is this > with the NUMA kernel? > > The other thing you can do is try the standard SMP kernel (as was > discussed on the list): > > yum install linux-smp > > And make sure you select that kernel from the boot menu. > > On Thu, Mar 23, 2006 at 03:34:52PM -0700, Raul Morales Juberias wrote: > > Hello > > > > Here is it ... > > > > raul at raven:~[254]%/sbin/detect -ai > > 0000:00:01.1 10de:52 SERIAL i2c-nforce2 > > 0000:00:02.0 10de:5a USB ohci-hcd > > 0000:00:02.1 10de:5b USB ehci-hcd > > 0000:00:04.0 10de:59 AUDIO snd-intel8x0 > > 0000:00:07.0 10de:54 SCSI sata_nv > > 0000:00:08.0 10de:55 SCSI sata_nv > > 0000:00:0a.0 10de:57 BRIDGE forcedeth > > 0000:00:0b.0 10de:5d PCI shpchp > > 0000:00:0c.0 10de:5d PCI shpchp > > 0000:00:0d.0 10de:5d PCI shpchp > > 0000:00:0e.0 10de:5d PCI shpchp > > 0000:01:08.0 1186:4c00 NETWORK skge > > 0000:05:00.0 1002:5b60 DISPLAY radeonfb > > > > Thanks > > > > # # # # # # # # # # # # # # # # # # # # # # # # > > Raul Morales-Juberias > > Assistant Professor of Physics > > Office: Workman 345 > > phone# 505 835 6559 > > email: rmjuberias at kestrel.nmt.edu > > url: http://www.physics.nmt.edu/~rmjuberias > > # # # # # # # # # # # # # # # # # # # # # # # # > > > > > > > _______________________________________________ > > Warewulf mailing list > > Warewulf at caosity.org > > http://lists.caosity.org/mailman/listinfo/warewulf > > > -- > Greg M. Kurtzer > http://runlevelzero.net/ > http://caosity.org/ > http://warewulf-cluster.org/ > > Do not look anywhere for truth, for all that is needed is to refrain from > allowing concepts to arise. > _______________________________________________ > Warewulf mailing list > Warewulf at caosity.org > http://lists.caosity.org/mailman/listinfo/warewulf > -- Tim Mattox - tmattox at gmail.com http://homepage.mac.com/tmattox/ I'm a bright... http://www.the-brights.net/ From gmk at runlevelzero.net Thu Mar 23 16:29:02 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Thu, 23 Mar 2006 16:29:02 -0800 Subject: [cAos] [Warewulf] /sbin/detect -ai In-Reply-To: References: <20060323224332.GB14161@aries.runlevelzero.net> Message-ID: <20060324002902.GC14161@aries.runlevelzero.net> On Thu, Mar 23, 2006 at 05:54:03PM -0500, Tim Mattox wrote: > Hi Greg & Raul, > What appears to have happened, is that when Raul switched kernel versions, > his network interfaces got recognized in the opposite order. Thus, by > swapping the ethernet cables, things worked again for him (as indicated in his > post from a few minutes ago). That is odd indeed. I am curious what the /etc/modprobe.conf looks like (because that will determine the order of the installed modules). > Raul, what specific kernel versions are your uniprocessor and SMP kernels? > 2.6.what? > > What I find odd, is that the forcedeth is being listed as BRIDGE by detect... > If I understand what is meant by that output, shouldn't it be NETWORK, > since the forcedeth is an ethernet driver... It *should* be depending on what the hardware identifiers are advertising themselves to the system as. The device class is determined by the comparing the hardware's class string to the standard class ID table as defined by the kernel header: linux/pci_ids.h You can find each device's class identifiers at: /sys/bus/pci/devices/[PCIADDR]/class Thus.... Detect matches the class as it is identified by the hardware, and compares to the standard used by the kernel. So if the string is wrong, I usually blame the vendor (hehe). ;) > On 3/23/06, Greg M. Kurtzer wrote: > > That is intersting. It is finding your network card just fine. Is this > > with the NUMA kernel? > > > > The other thing you can do is try the standard SMP kernel (as was > > discussed on the list): > > > > yum install linux-smp > > > > And make sure you select that kernel from the boot menu. > > > > On Thu, Mar 23, 2006 at 03:34:52PM -0700, Raul Morales Juberias wrote: > > > Hello > > > > > > Here is it ... > > > > > > raul at raven:~[254]%/sbin/detect -ai > > > 0000:00:01.1 10de:52 SERIAL i2c-nforce2 > > > 0000:00:02.0 10de:5a USB ohci-hcd > > > 0000:00:02.1 10de:5b USB ehci-hcd > > > 0000:00:04.0 10de:59 AUDIO snd-intel8x0 > > > 0000:00:07.0 10de:54 SCSI sata_nv > > > 0000:00:08.0 10de:55 SCSI sata_nv > > > 0000:00:0a.0 10de:57 BRIDGE forcedeth > > > 0000:00:0b.0 10de:5d PCI shpchp > > > 0000:00:0c.0 10de:5d PCI shpchp > > > 0000:00:0d.0 10de:5d PCI shpchp > > > 0000:00:0e.0 10de:5d PCI shpchp > > > 0000:01:08.0 1186:4c00 NETWORK skge > > > 0000:05:00.0 1002:5b60 DISPLAY radeonfb > > > > > > Thanks > > > > > > # # # # # # # # # # # # # # # # # # # # # # # # > > > Raul Morales-Juberias > > > Assistant Professor of Physics > > > Office: Workman 345 > > > phone# 505 835 6559 > > > email: rmjuberias at kestrel.nmt.edu > > > url: http://www.physics.nmt.edu/~rmjuberias > > > # # # # # # # # # # # # # # # # # # # # # # # # > > > > > > > > > > > _______________________________________________ > > > Warewulf mailing list > > > Warewulf at caosity.org > > > http://lists.caosity.org/mailman/listinfo/warewulf > > > > > > -- > > Greg M. Kurtzer > > http://runlevelzero.net/ > > http://caosity.org/ > > http://warewulf-cluster.org/ > > > > Do not look anywhere for truth, for all that is needed is to refrain from > > allowing concepts to arise. > > _______________________________________________ > > Warewulf mailing list > > Warewulf at caosity.org > > http://lists.caosity.org/mailman/listinfo/warewulf > > > > > -- > Tim Mattox - tmattox at gmail.com > http://homepage.mac.com/tmattox/ > I'm a bright... http://www.the-brights.net/ > _______________________________________________ > cAos mailing list > cAos at caosity.org > http://lists.caosity.org/mailman/listinfo/caos -- Greg M. Kurtzer http://runlevelzero.net/ http://caosity.org/ http://warewulf-cluster.org/ Do not look anywhere for truth, for all that is needed is to refrain from allowing concepts to arise. From gmk at runlevelzero.net Thu Mar 23 22:38:37 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Thu, 23 Mar 2006 22:38:37 -0800 Subject: [cAos] caos2 repository update Message-ID: <20060324063837.GB15200@aries.runlevelzero.net> current: + SRPMS/curl-7.15.3-1.caos.src.rpm + SRPMS/hybserv-1.9.2-1.caos.src.rpm + SRPMS/sendmail-8.12.11-2.caos.src.rpm + SRPMS/spamassassin-3.1.1-1.caos.src.rpm - SRPMS/sendmail-8.12.11-1.caos.src.rpm stable: + SRPMS/sendmail-8.12.11-2.caos.src.rpm - SRPMS/sendmail-8.12.11-1.caos.src.rpm Enjoy. -- Greg M. Kurtzer http://runlevelzero.net/ http://caosity.org/ http://warewulf-cluster.org/ Do not look anywhere for truth, for all that is needed is to refrain from allowing concepts to arise. From charlieb-caos at budge.apana.org.au Sun Mar 26 09:58:14 2006 From: charlieb-caos at budge.apana.org.au (Charlie Brady) Date: Sun, 26 Mar 2006 12:58:14 -0500 (EST) Subject: [cAos] forcedeth hardware detection (Re: [Warewulf] /sbin/detect -ai) In-Reply-To: <20060324002902.GC14161@aries.runlevelzero.net> References: <20060323224332.GB14161@aries.runlevelzero.net> <20060324002902.GC14161@aries.runlevelzero.net> Message-ID: On Thu, 23 Mar 2006, Greg M. Kurtzer wrote: >> What I find odd, is that the forcedeth is being listed as BRIDGE by detect... >> If I understand what is meant by that output, shouldn't it be NETWORK, >> since the forcedeth is an ethernet driver... > > It *should* be depending on what the hardware identifiers are > advertising themselves to the system as. > > The device class is determined by the comparing the hardware's class > string to the standard class ID table as defined by the kernel header: > > linux/pci_ids.h > > You can find each device's class identifiers at: > > /sys/bus/pci/devices/[PCIADDR]/class > > Thus.... > > Detect matches the class as it is identified by the hardware, and > compares to the standard used by the kernel. So if the string is wrong, > I usually blame the vendor (hehe). ;) I get class eq "OTHER" on my forcedeth equipped motherboard: class: OTHER bus: PCI detached: 0 driver: forcedeth desc: "nVidia Corporation MCP2A Ethernet Controller" vendorId: 10de deviceId: 008c subVendorId: 270f subDeviceId: f46b pciType: 1 pcidom: 0 pcibus: 0 pcidev: 4 pcifn: 0 nVidia sucks, right? From GLEN.OTERO at saic.com Wed Mar 29 15:46:13 2006 From: GLEN.OTERO at saic.com (Otero, Glen) Date: Wed, 29 Mar 2006 15:46:13 -0800 Subject: [cAos] User accounts on new installation Message-ID: <53EF039AE58C4A4CBF3DE1EC15B0282F0329D174@0599-ITS-EXMB01.us.saic.com> Hi Folks- Can anyone recommend a release of Java for caos2? I'm assuming that Sun's J2EE 1.4 runs fine? How about the Blackdown or IBM java releases? Thanks! Glen Glen Otero, Ph.D. Director of Bioinformatics, SAIC 858-826-6480 From astevens at gravitypark.com Wed Mar 29 15:58:06 2006 From: astevens at gravitypark.com (Arthur Stevens) Date: Wed, 29 Mar 2006 15:58:06 -0800 Subject: [cAos] User accounts on new installation References: <53EF039AE58C4A4CBF3DE1EC15B0282F0329D174@0599-ITS-EXMB01.us.saic.com> Message-ID: <000601c6538c$a2cbcd30$6800a8c0@astevens> Hi Glen, Sun seems to be the most stable from what we have tested [ChemistJDJE, Whippet, Limewire and Azeurus :) ], while Blackdown seems faster but we have seen some crashes with it and a couple systems it just seemed to dislike. Have yet the opportunity to play with IBM's incarnation. Currently just running the Sun vanilla without any issues (knock on wood). Arthur ----- Original Message ----- From: "Otero, Glen" To: "Community Assembled OS" Sent: Wednesday, March 29, 2006 3:46 PM Subject: Re: [cAos] User accounts on new installation > Hi Folks- > > Can anyone recommend a release of Java for caos2? I'm assuming that Sun's > J2EE 1.4 runs fine? How about the Blackdown or IBM java releases? > > Thanks! > > Glen > > Glen Otero, Ph.D. > Director of Bioinformatics, SAIC > 858-826-6480 > _______________________________________________ > cAos mailing list > cAos at caosity.org > http://lists.caosity.org/mailman/listinfo/caos > From m.stolte at datadevil.demon.nl Thu Mar 30 04:49:28 2006 From: m.stolte at datadevil.demon.nl (m.stolte at datadevil.demon.nl) Date: Thu, 30 Mar 2006 14:49:28 +0200 Subject: [cAos] Java on cAos (was Re: User accounts on new installation) In-Reply-To: <000601c6538c$a2cbcd30$6800a8c0@astevens> References: <000601c6538c$a2cbcd30$6800a8c0@astevens> Message-ID: <20060330144928.6cq8s5o3wgowc4so@www.webmail.nl.demon.net> Quoting Arthur Stevens : > Hi Glen, > > Sun seems to be the most stable from what we have tested [ChemistJDJE, > Whippet, Limewire and Azeurus :) ], while Blackdown seems faster but we have > seen some crashes with it and a couple systems it just seemed to dislike. > Have yet the opportunity to play with IBM's incarnation. I've run Sun's 1.5/5 and 1.6/6 (versioning sucks) on cAos with RIFE (java framework) and Azureus, and they run very stable. IBM I havent tested either, I did use jrockit, but thats unstable if running for longer periods it seems (our site runs on it and sometimes dies after N weeks.) PS., please change the subject of the mail to something related to the contents next time, thanks! regards, Maarten > > Currently just running the Sun vanilla without any issues (knock on wood). > > Arthur > > > ----- Original Message ----- > From: "Otero, Glen" > To: "Community Assembled OS" > Sent: Wednesday, March 29, 2006 3:46 PM > Subject: Re: [cAos] User accounts on new installation > > >> Hi Folks- >> >> Can anyone recommend a release of Java for caos2? I'm assuming that Sun's >> J2EE 1.4 runs fine? How about the Blackdown or IBM java releases? >> >> Thanks! >> >> Glen >> >> Glen Otero, Ph.D. >> Director of Bioinformatics, SAIC >> 858-826-6480 >> _______________________________________________ >> cAos mailing list >> cAos at caosity.org >> http://lists.caosity.org/mailman/listinfo/caos >> > > > _______________________________________________ > cAos mailing list > cAos at caosity.org > http://lists.caosity.org/mailman/listinfo/caos >