From gmk at runlevelzero.net Mon Apr 3 21:34:24 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Mon, 3 Apr 2006 21:34:24 -0700 Subject: [cAos] caos2 repository update Message-ID: <20060404043424.GA30613@aries.runlevelzero.net> current: + SRPMS/amavisd-new-2.3.3-1.caos.src.rpm + SRPMS/gnupg-1.4.3-1.caos.src.rpm + SRPMS/horde-3.1.1-1.caos.src.rpm + SRPMS/nagios-2.1-1.caos.src.rpm + SRPMS/scribus-1.3.3-1.caos.src.rpm - SRPMS/amavisd-new-20030616-p7.1.caos.src.rpm stable: + SRPMS/amavisd-new-2.3.3-1.caos.src.rpm - SRPMS/amavisd-new-20030616-p7.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 benjamin at pythagoras.no-ip.org Tue Apr 4 15:51:43 2006 From: benjamin at pythagoras.no-ip.org (Benjamin Donnachie) Date: Tue, 04 Apr 2006 23:51:43 +0100 Subject: [cAos] Postfix and saslauthd problems.... was... Re: [cAos-devel] [Fwd: US-CERT Technical Cyber Security Alert TA06-081A -- Sendmail Race Condition Vulnerability] In-Reply-To: <20060322193659.GB21460@aries.runlevelzero.net> References: <4421A08B.3040204@pythagoras.no-ip.org> <20060322193659.GB21460@aries.runlevelzero.net> Message-ID: <4432F87F.4090407@pythagoras.no-ip.org> Greg M. Kurtzer wrote: > and most of the current package maintainers don't use > or are very familiar with Sendmail anymore. I decided to take the plunge and convert to postfix... I've set up a test system on a spare machine and just can't seem to persuade postfix and saslauthd to play nicely: I've added the following to main.cf # SASL SUPPORT FOR CLIENTS # The following options set parameters needed by Postfix to enable # Cyrus-SASL support for authentication of mail clients. # smtpd_sasl_auth_enable = yes smtpd_sasl_security_options = noanonymous smtpd_sasl_local_domain = $myhostname broken_sasl_auth_clients = yes smtpd_sasl_application_name = smtpd smtpd_recipient_restrictions = permit_sasl_authenticated, permit_mynetworks, check_relay_domains Also tried with smtpd_sasl_local_domain empty and not defined. Changed master.cf: # ========================================================================== # service type private unpriv chroot wakeup maxproc command + args # (yes) (yes) (yes) (never) (100) # ========================================================================== smtp inet n - n - - smtpd -v Got saslauthd running with shadow authentication and verbose logging: ps wax | grep saslauthd 15208 ? Ss 0:00 /usr/sbin/saslauthd -m /var/run/saslauthd -a shadow -V 15211 ? S 0:00 /usr/sbin/saslauthd -m /var/run/saslauthd -a shadow -V 15212 ? S 0:00 /usr/sbin/saslauthd -m /var/run/saslauthd -a shadow -V 15213 ? S 0:00 /usr/sbin/saslauthd -m /var/run/saslauthd -a shadow -V 15214 ? S 0:00 /usr/sbin/saslauthd -m /var/run/saslauthd -a shadow -V Created /usr/lib/sasl2/smtpd.conf (and /usr/lib/sasl/smtpd.conf just in case): pwcheck_method: saslauthd mech_list: plain login passwd_check: shadow Also tried with just pwcheck_method defined. Tested saslauthd: # /usr/sbin/testsaslauthd -u USER -p PASS 0: OK "Success." # /usr/sbin/testsaslauthd -s smtp -u USER -p PASS 0: OK "Success." # /usr/sbin/testsaslauthd -s smtpd -u USER -p PASS 0: OK "Success." # sudo -u postfix /usr/sbin/testsaslauthd -s smtpd -u USER -p PASS 0: OK "Success." But when I try to connect I get: # telnet localhost 25 Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. 220 susie.pythagoras.no-ip.org ESMTP Postfix ehlo example.com 250-susie.pythagoras.no-ip.org 250-PIPELINING 250-SIZE 10240000 250-VRFY 250-ETRN 250-AUTH PLAIN LOGIN 250-AUTH=PLAIN LOGIN 250 8BITMIME auth plain XXXXX 535 Error: authentication failed maillog: Apr 4 20:38:40 susie postfix/smtpd[31324]: < susie[127.0.0.1]: auth plain XXXXX Apr 4 20:38:40 susie postfix/smtpd[31324]: smtpd_sasl_authenticate: sasl_method plain, init_response XXXXX Apr 4 20:38:40 susie postfix/smtpd[31324]: smtpd_sasl_authenticate: decoded initial response USER Apr 4 20:38:40 susie postfix/smtpd[31324]: warning: susie[127.0.0.1]: SASL plain authentication failed Apr 4 20:38:40 susie postfix/smtpd[31324]: > susie[127.0.0.1]: 535 Error: authentication failed The same happens when I try to use an email client. In desperation I've even tried making /var/run/saslauthd world read/writeable and making shadow world readable, but it still fails... Lasest stable versions: # rpm -qa | grep cyrus-sasl cyrus-sasl-devel-2.1.19-1.caos cyrus-sasl-2.1.19-1.caos cyrus-sasl-md5-2.1.19-1.caos cyrus-sasl-plain-2.1.19-1.caos # rpm -qa | grep postfix postfix-2.2.9-1.caos Any ideas what I've missed? I'm actually starting to think there's a problem with the RPMs - with saslauthd in debug mode, there's no output when postfix should be authenticating but plenty with testsaslauthd. However, I've tried rebuilding the RPMs but the "new" postfix doesn't start properly... I've wasted far too much time on this already - I should be getting on with work... Ben From benjamin at pythagoras.no-ip.org Tue Apr 4 16:18:50 2006 From: benjamin at pythagoras.no-ip.org (Benjamin Donnachie) Date: Wed, 05 Apr 2006 00:18:50 +0100 Subject: [cAos] Postfix and saslauthd problems.... was... Re: [cAos-devel] [Fwd: US-CERT Technical Cyber Security Alert TA06-081A -- Sendmail Race Condition Vulnerability] In-Reply-To: <4432F87F.4090407@pythagoras.no-ip.org> References: <4421A08B.3040204@pythagoras.no-ip.org> <20060322193659.GB21460@aries.runlevelzero.net> <4432F87F.4090407@pythagoras.no-ip.org> Message-ID: <4432FEDA.1060102@pythagoras.no-ip.org> GOT IT WORKING!!! :-) Minor modification needed to the postfix spec file: [...] %if %{?SASL:1}0 FLAGS="$FLAGS -DUSE_SASL_AUTH -I/usr/include/sasl" LIBS="$LIBS -lsasl2" %endif [...] ie make it use sasl2 rather than sasl. If I get time, I'll send a patch to the maintainer... Take care, Ben From S.walsh at nerdvana.com.au Wed Apr 5 06:28:41 2006 From: S.walsh at nerdvana.com.au (Nerdvana - Steve Walsh) Date: Wed, 5 Apr 2006 23:28:41 +1000 Subject: [cAos] Yum update error In-Reply-To: <4432F87F.4090407@pythagoras.no-ip.org> Message-ID: Hi Folks I've been trying to update my yum for a while in an effort to clean a few things up, but I keep getting this error; root at cp1 [~]# yum update Setting up Update Process Setting up Repos core 100% |=========================| 951 B 00:00 stable 100% |=========================| 1.1 kB 00:00 Reading repository metadata in from local files core : ################################################## 167/167 stable : ################################################## 1551/1551 Excluding Packages in global exclude list Finished Resolving Dependencies --> Populating transaction set with selected packages. Please wait. ---> Package module-init-tools.x86_64 0:3.1-4.caos set to be updated ---> Package mkinitrd.x86_64 0:4.2.18-4.caos set to be updated --> Running transaction check --> Processing Dependency: modules for package: ports --> Finished Dependency Resolution Error: Missing Dependency: modules is needed by package ports root at cp1 [~]# rpm -q module-init-tools module-init-tools-3.1-5.caos root at cp1 [~]# rpm -q mkinitrd mkinitrd-4.2.18-2.caos Do I need to change repo settings in yum.conf, or is it the fact that the installed version of module-init-tools is higher than the repo one, and therefore creating wobblies? many thanks Steve From S.walsh at nerdvana.com.au Wed Apr 5 07:23:51 2006 From: S.walsh at nerdvana.com.au (Nerdvana - Steve Walsh) Date: Thu, 6 Apr 2006 00:23:51 +1000 Subject: [cAos] Yum update error In-Reply-To: Message-ID: Ok, ignore that, the problem was with module-init-tools I added a line to yum.conf to skip it and I could do a yum update without it borking out. Can someone let me know if the problem was, as I thought, with the fact that module-init-tools installed is newer than the version in the repo? thanks again Steve -----Original Message----- From: Nerdvana - Steve Walsh [mailto:S.walsh at nerdvana.com.au] Sent: Wednesday, 5 April 2006 11:29 PM To: Community Assembled OS Subject: [cAos] Yum update error Hi Folks I've been trying to update my yum for a while in an effort to clean a few things up, but I keep getting this error; root at cp1 [~]# yum update Setting up Update Process Setting up Repos core 100% |=========================| 951 B 00:00 stable 100% |=========================| 1.1 kB 00:00 Reading repository metadata in from local files core : ################################################## 167/167 stable : ################################################## 1551/1551 Excluding Packages in global exclude list Finished Resolving Dependencies --> Populating transaction set with selected packages. Please wait. ---> Package module-init-tools.x86_64 0:3.1-4.caos set to be updated ---> Package mkinitrd.x86_64 0:4.2.18-4.caos set to be updated --> Running transaction check --> Processing Dependency: modules for package: ports --> Finished Dependency Resolution Error: Missing Dependency: modules is needed by package ports root at cp1 [~]# rpm -q module-init-tools module-init-tools-3.1-5.caos root at cp1 [~]# rpm -q mkinitrd mkinitrd-4.2.18-2.caos Do I need to change repo settings in yum.conf, or is it the fact that the installed version of module-init-tools is higher than the repo one, and therefore creating wobblies? many thanks Steve _______________________________________________ cAos mailing list cAos at caosity.org http://lists.caosity.org/mailman/listinfo/caos From gmk at runlevelzero.net Wed Apr 5 08:18:58 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Wed, 5 Apr 2006 08:18:58 -0700 Subject: [cAos] Yum update error In-Reply-To: References: Message-ID: <20060405151858.GA13018@aries.runlevelzero.net> Please send the output of: # rpm -q ports portstree modules module-init-tools modutilis That will give us an idea as to what is causing the conflict. On Thu, Apr 06, 2006 at 12:23:51AM +1000, Nerdvana - Steve Walsh wrote: > Ok, ignore that, the problem was with module-init-tools > > I added a line to yum.conf to skip it and I could do a yum update without it > borking out. > > Can someone let me know if the problem was, as I thought, with the fact that > module-init-tools installed is newer than the version in the repo? > > thanks again > > Steve > > -----Original Message----- > From: Nerdvana - Steve Walsh [mailto:S.walsh at nerdvana.com.au] > Sent: Wednesday, 5 April 2006 11:29 PM > To: Community Assembled OS > Subject: [cAos] Yum update error > > > Hi Folks > > I've been trying to update my yum for a while in an effort to clean a few > things up, but I keep getting this error; > > root at cp1 [~]# yum update > Setting up Update Process > Setting up Repos > core 100% |=========================| 951 B 00:00 > stable 100% |=========================| 1.1 kB 00:00 > Reading repository metadata in from local files > core : ################################################## 167/167 > stable : ################################################## 1551/1551 > Excluding Packages in global exclude list > Finished > Resolving Dependencies > --> Populating transaction set with selected packages. Please wait. > ---> Package module-init-tools.x86_64 0:3.1-4.caos set to be updated > ---> Package mkinitrd.x86_64 0:4.2.18-4.caos set to be updated > --> Running transaction check > --> Processing Dependency: modules for package: ports > --> Finished Dependency Resolution > Error: Missing Dependency: modules is needed by package ports > root at cp1 [~]# rpm -q module-init-tools > module-init-tools-3.1-5.caos > root at cp1 [~]# rpm -q mkinitrd > mkinitrd-4.2.18-2.caos > > Do I need to change repo settings in yum.conf, or is it the fact that the > installed version of module-init-tools is higher than the repo one, and > therefore creating wobblies? > > many thanks > > Steve > > _______________________________________________ > 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 Apr 5 10:16:51 2006 From: wudmojur at yahoo.es (Raul Morales Juberias) Date: Wed, 5 Apr 2006 11:16:51 -0600 Subject: [cAos] partition issues Message-ID: Hello, When installing cAos I choose the following partitions [root at raven ~]# df -h Filesystem Size Used Avail Use% Mounted on /dev/sda2 1.9G 1.6G 242M 87% / /dev/sda1 244M 13M 219M 6% /boot /dev/sda5 4.8G 4.3G 276M 94% /usr /dev/sda6 966M 17M 900M 2% /tmp /dev/sda7 966M 62M 855M 7% /var /dev/sda8 966M 79M 838M 9% /var/cache /dev/sda9 479M 13M 442M 3% /var/log And the users home folders are on /; I realize that this is kind of bad because / is really small; and actually I am not taking advantage of the size of the disk [root at raven ~]# fdisk /dev/sda The number of cylinders for this disk is set to 24792. There is nothing wrong with that, but this is larger than 1024, and could in certain setups cause problems with: 1) software that runs at boot time (e.g., old versions of LILO) 2) booting and partitioning software from other OSs (e.g., DOS FDISK, OS/2 FDISK) Command (m for help): n First cylinder (1591-24792, default 1591): [root at raven ~]# fdisk /dev/sda The number of cylinders for this disk is set to 24792. There is nothing wrong with that, but this is larger than 1024, and could in certain setups cause problems with: 1) software that runs at boot time (e.g., old versions of LILO) 2) booting and partitioning software from other OSs (e.g., DOS FDISK, OS/2 FDISK) Command (m for help): p Disk /dev/sda: 203.9 GB, 203928109056 bytes 255 heads, 63 sectors/track, 24792 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks Id System /dev/sda1 1 32 257008+ 83 Linux /dev/sda2 33 282 2008125 83 Linux /dev/sda3 283 527 1967962+ 82 Linux swap /dev/sda4 528 24792 194908612+ 5 Extended /dev/sda5 528 1152 5020281 83 Linux /dev/sda6 1153 1277 1004031 83 Linux /dev/sda7 1278 1402 1004031 83 Linux /dev/sda8 1403 1527 1004031 83 Linux /dev/sda9 1528 1590 506016 83 Linux How do I get to use the extended partition? Do I have to divide it in logical ones, or just mount it somewhere? Could I put the home folders in here, so I do not have to give quotas to de users? I realizze these maybe more Linux than cAos questions, but any help will be welcome Thanks From gmk at runlevelzero.net Wed Apr 5 10:30:21 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Wed, 5 Apr 2006 10:30:21 -0700 Subject: [cAos] partition issues In-Reply-To: References: Message-ID: <20060405173021.GA13548@aries.runlevelzero.net> You have the right idea. When you select the server partition scheme, it only partitions for the OS, and leaves the rest as unpartitioned space. Use fdisk or parted to partition the leftover space. You will then have to reboot if the disk is currently mounted. On Wed, Apr 05, 2006 at 11:16:51AM -0600, Raul Morales Juberias wrote: > Hello, > > When installing cAos I choose the following partitions > > [root at raven ~]# df -h > Filesystem Size Used Avail Use% Mounted on > /dev/sda2 1.9G 1.6G 242M 87% / > /dev/sda1 244M 13M 219M 6% /boot > /dev/sda5 4.8G 4.3G 276M 94% /usr > /dev/sda6 966M 17M 900M 2% /tmp > /dev/sda7 966M 62M 855M 7% /var > /dev/sda8 966M 79M 838M 9% /var/cache > /dev/sda9 479M 13M 442M 3% /var/log > > And the users home folders are on /; I realize that this is kind of > bad because / is really small; and actually I am not taking advantage > of the size of the disk > > [root at raven ~]# fdisk /dev/sda > > The number of cylinders for this disk is set to 24792. > There is nothing wrong with that, but this is larger than 1024, > and could in certain setups cause problems with: > 1) software that runs at boot time (e.g., old versions of LILO) > 2) booting and partitioning software from other OSs > (e.g., DOS FDISK, OS/2 FDISK) > > Command (m for help): n > First cylinder (1591-24792, default 1591): > [root at raven ~]# fdisk /dev/sda > > The number of cylinders for this disk is set to 24792. > There is nothing wrong with that, but this is larger than 1024, > and could in certain setups cause problems with: > 1) software that runs at boot time (e.g., old versions of LILO) > 2) booting and partitioning software from other OSs > (e.g., DOS FDISK, OS/2 FDISK) > > Command (m for help): p > > Disk /dev/sda: 203.9 GB, 203928109056 bytes > 255 heads, 63 sectors/track, 24792 cylinders > Units = cylinders of 16065 * 512 = 8225280 bytes > > Device Boot Start End Blocks Id System > /dev/sda1 1 32 257008+ 83 Linux > /dev/sda2 33 282 2008125 83 Linux > /dev/sda3 283 527 1967962+ 82 Linux swap > /dev/sda4 528 24792 194908612+ 5 Extended > /dev/sda5 528 1152 5020281 83 Linux > /dev/sda6 1153 1277 1004031 83 Linux > /dev/sda7 1278 1402 1004031 83 Linux > /dev/sda8 1403 1527 1004031 83 Linux > /dev/sda9 1528 1590 506016 83 Linux > > How do I get to use the extended partition? Do I have to divide it in > logical ones, or just mount it somewhere? Could I put the home > folders in here, so I do not have to give quotas to de users? > > I realizze these maybe more Linux than cAos questions, but any help > will be welcome > > 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 Wed Apr 5 10:53:42 2006 From: wudmojur at yahoo.es (Raul Morales Juberias) Date: Wed, 5 Apr 2006 11:53:42 -0600 Subject: [cAos] partition issues Message-ID: Hi Thanks for the reply Do I need to create logical partitions though? or it is enough if I just do mkfs.ext3 /dev/sda4? I am googling this but I can not find how to do precisely this ... Thanks From gmk at runlevelzero.net Wed Apr 5 11:06:28 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Wed, 5 Apr 2006 11:06:28 -0700 Subject: [cAos] partition issues In-Reply-To: References: Message-ID: <20060405180628.GA13751@aries.runlevelzero.net> Make a new logical partition. Doing a mkfs on an extended partition would be catastrophic for all logical partions. So use fdisk, and select 'n, logical, [enter/default], [enter/default]' will create a single logical partition to fill the reminder of the disk IIRC. (it may not ask for logical if there are no more free primary partitions (there can be only 4)). On Wed, Apr 05, 2006 at 11:53:42AM -0600, Raul Morales Juberias wrote: > Hi > > Thanks for the reply > > Do I need to create logical partitions though? or it is enough if I > just do mkfs.ext3 /dev/sda4? I am googling this but I can not find > how to do precisely 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 Wed Apr 5 12:52:26 2006 From: wudmojur at yahoo.es (Raul Morales Juberias) Date: Wed, 5 Apr 2006 13:52:26 -0600 Subject: [cAos] partition issues Message-ID: <14C3A8B7-BF99-4A0F-B49F-C09CC444AE10@yahoo.es> Hi Does this looks about right? [root at raven ~]# fdisk /dev/sda The number of cylinders for this disk is set to 2479 There is nothing wrong with that, but this is larger and could in certain setups cause problems with: 1) software that runs at boot time (e.g., old versio 2) booting and partitioning software from other OSs (e.g., DOS FDISK, OS/2 FDISK) Command (m for help): p Disk /dev/sda: 203.9 GB, 203928109056 bytes 255 heads, 63 sectors/track, 24792 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks /dev/sda1 1 32 257008+ /dev/sda2 33 282 2008125 /dev/sda3 283 527 1967962+ /dev/sda4 528 24792 194908612+ /dev/sda5 528 1152 5020281 /dev/sda6 1153 1277 1004031 /dev/sda7 1278 1402 1004031 /dev/sda8 1403 1527 1004031 /dev/sda9 1528 1590 506016 Command (m for help): n First cylinder (1591-24792, default 1591): Using default value 1591 Last cylinder or +size or +sizeM or +sizeK (1591-247 Using default value 24792 Command (m for help): p Disk /dev/sda: 203.9 GB, 203928109056 bytes 255 heads, 63 sectors/track, 24792 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks /dev/sda1 1 32 257008+ /dev/sda2 33 282 2008125 /dev/sda3 283 527 1967962+ /dev/sda4 528 24792 194908612+ /dev/sda5 528 1152 5020281 /dev/sda6 1153 1277 1004031 /dev/sda7 1278 1402 1004031 /dev/sda8 1403 1527 1004031 /dev/sda9 1528 1590 506016 /dev/sda10 1591 24792 186370033+ Command (m for help): w The partition table has been altered! Calling ioctl() to re-read partition table. WARNING: Re-reading the partition table failed with error 16: Device or resource busy. The kernel still uses the old table. The new table will be used at the next reboot. Syncing disks. Now I have to create the file system in sda10 then ... Will this affect warewulf somehow? Thanks From gmk at runlevelzero.net Wed Apr 5 13:12:01 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Wed, 5 Apr 2006 13:12:01 -0700 Subject: [cAos] partition issues In-Reply-To: <14C3A8B7-BF99-4A0F-B49F-C09CC444AE10@yahoo.es> References: <14C3A8B7-BF99-4A0F-B49F-C09CC444AE10@yahoo.es> Message-ID: <20060405201201.GB13751@aries.runlevelzero.net> Looks great! You will have to reboot before /dev/sda10 will show up. Then format it (mkfs.[filesystem] /dev/sda10), and add an entry to /etc/fstab. It shouldn't affect any apps (including WW). On Wed, Apr 05, 2006 at 01:52:26PM -0600, Raul Morales Juberias wrote: > Hi > > Does this looks about right? > > [root at raven ~]# fdisk /dev/sda > > The number of cylinders for this disk is set to 2479 > There is nothing wrong with that, but this is larger > and could in certain setups cause problems with: > 1) software that runs at boot time (e.g., old versio > 2) booting and partitioning software from other OSs > (e.g., DOS FDISK, OS/2 FDISK) > > Command (m for help): p > > Disk /dev/sda: 203.9 GB, 203928109056 bytes > 255 heads, 63 sectors/track, 24792 cylinders > Units = cylinders of 16065 * 512 = 8225280 bytes > > Device Boot Start End Blocks > /dev/sda1 1 32 257008+ > /dev/sda2 33 282 2008125 > /dev/sda3 283 527 1967962+ > /dev/sda4 528 24792 194908612+ > /dev/sda5 528 1152 5020281 > /dev/sda6 1153 1277 1004031 > /dev/sda7 1278 1402 1004031 > /dev/sda8 1403 1527 1004031 > /dev/sda9 1528 1590 506016 > > Command (m for help): n > First cylinder (1591-24792, default 1591): > Using default value 1591 > Last cylinder or +size or +sizeM or +sizeK (1591-247 > Using default value 24792 > > Command (m for help): p > > Disk /dev/sda: 203.9 GB, 203928109056 bytes > 255 heads, 63 sectors/track, 24792 cylinders > Units = cylinders of 16065 * 512 = 8225280 bytes > > Device Boot Start End Blocks > /dev/sda1 1 32 257008+ > /dev/sda2 33 282 2008125 > /dev/sda3 283 527 1967962+ > /dev/sda4 528 24792 194908612+ > /dev/sda5 528 1152 5020281 > /dev/sda6 1153 1277 1004031 > /dev/sda7 1278 1402 1004031 > /dev/sda8 1403 1527 1004031 > /dev/sda9 1528 1590 506016 > /dev/sda10 1591 24792 186370033+ > > Command (m for help): w > The partition table has been altered! > > Calling ioctl() to re-read partition table. > > WARNING: Re-reading the partition table failed with error 16: Device > or resource busy. > The kernel still uses the old table. > The new table will be used at the next reboot. > Syncing disks. > > Now I have to create the file system in sda10 then ... > > Will this affect warewulf somehow? > > 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 Wed Apr 5 13:52:15 2006 From: wudmojur at yahoo.es (Raul Morales Juberias) Date: Wed, 5 Apr 2006 14:52:15 -0600 Subject: [cAos] partition issues Message-ID: <40BA1FD3-D989-4415-8967-C28902F0E05F@yahoo.es> Hi Thanks for the feedback, I know that this may be kind of basic but so is my Linux experience At this point then [root at raven raul]# mkfs.ext3 -m 1 /dev/sda10 mke2fs 1.35 (28-Feb-2004) Filesystem label= OS type: Linux Block size=4096 (log=2) Fragment size=4096 (log=2) 23298048 inodes, 46592508 blocks 465925 blocks (1.00%) reserved for the super user First data block=0 1422 block groups 32768 blocks per group, 32768 fragments per group 16384 inodes per group Superblock backups stored on blocks: 32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208, 4096000, 7962624, 11239424, 20480000, 23887872 Writing inode tables: done Creating journal (8192 blocks): done Writing superblocks and filesystem accounting information: done This filesystem will be automatically checked every 25 mounts or 180 days, whichever comes first. Use tune2fs -c or -i to override. [root at raven raul]# more /etc/fstab # This file is edited by fstab-sync - see 'man fstab-sync' for details /dev/sda2 / ext3 defaults 1 1 /dev/sda1 /boot ext3 defaults 1 2 /dev/sda5 /usr ext3 defaults 1 2 /dev/sda6 /tmp ext3 defaults 1 2 /dev/sda7 /var ext3 defaults 1 2 /dev/sda8 /var/cache ext3 defaults 1 2 /dev/sda9 /var/log ext3 defaults 1 2 /dev/sda3 none swap defaults 0 0 none /proc proc defaults 0 0 none /sys sysfs defaults 0 0 none /dev/pts devpts gid=5,mode=620 0 0 /dev/hda /media/cdrecorder auto pamconsole,exec,noauto,managed 0 0 Do I have to edit this file and add a line like /dev/sda10 /data defaults ? ? Or do I have to do mount -t ext3 /dev/sda10 /data How do I do it so that the users home directories are in this new partition? Thanks From gmk at runlevelzero.net Wed Apr 5 13:58:57 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Wed, 5 Apr 2006 13:58:57 -0700 Subject: [cAos] partition issues In-Reply-To: <40BA1FD3-D989-4415-8967-C28902F0E05F@yahoo.es> References: <40BA1FD3-D989-4415-8967-C28902F0E05F@yahoo.es> Message-ID: <20060405205857.GA14044@aries.runlevelzero.net> I would recommend just making this your /home partition. You can do the mount by hand (mount /dev/sda10 /home), or you can add this line to the fstab (which is what I recommend): /dev/sda10 /home ext3 defaults 1 2 Then you can just type 'mount /home' from the command line to immediately mount it, and on subsequent boots, it will also be mounted. Enjoy. :) On Wed, Apr 05, 2006 at 02:52:15PM -0600, Raul Morales Juberias wrote: > Hi > > Thanks for the feedback, I know that this may be kind of basic but so > is my Linux experience > > At this point then > > [root at raven raul]# mkfs.ext3 -m 1 /dev/sda10 > mke2fs 1.35 (28-Feb-2004) > Filesystem label= > OS type: Linux > Block size=4096 (log=2) > Fragment size=4096 (log=2) > 23298048 inodes, 46592508 blocks > 465925 blocks (1.00%) reserved for the super user > First data block=0 > 1422 block groups > 32768 blocks per group, 32768 fragments per group > 16384 inodes per group > Superblock backups stored on blocks: > 32768, 98304, 163840, 229376, 294912, 819200, 884736, > 1605632, 2654208, > 4096000, 7962624, 11239424, 20480000, 23887872 > > Writing inode tables: done > Creating journal (8192 blocks): done > Writing superblocks and filesystem accounting information: done > > This filesystem will be automatically checked every 25 mounts or > 180 days, whichever comes first. Use tune2fs -c or -i to override. > [root at raven raul]# more /etc/fstab > # This file is edited by fstab-sync - see 'man fstab-sync' for details > /dev/sda2 / ext3 defaults 1 1 > /dev/sda1 /boot ext3 defaults 1 2 > /dev/sda5 /usr ext3 defaults 1 2 > /dev/sda6 /tmp ext3 defaults 1 2 > /dev/sda7 /var ext3 defaults 1 2 > /dev/sda8 /var/cache ext3 defaults 1 2 > /dev/sda9 /var/log ext3 defaults 1 2 > /dev/sda3 none swap defaults 0 0 > none /proc proc defaults 0 0 > none /sys sysfs defaults 0 0 > none /dev/pts devpts > gid=5,mode=620 0 0 > /dev/hda /media/cdrecorder auto > pamconsole,exec,noauto,managed 0 0 > > > > Do I have to edit this file and add a line like > > /dev/sda10 /data defaults ? ? > > Or do I have to do > > mount -t ext3 /dev/sda10 /data > > How do I do it so that the users home directories are in this new > partition? > > 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 m.stolte at datadevil.demon.nl Wed Apr 5 14:02:13 2006 From: m.stolte at datadevil.demon.nl (Maarten Stolte) Date: Wed, 05 Apr 2006 23:02:13 +0200 Subject: [cAos] partition issues In-Reply-To: <20060405205857.GA14044@aries.runlevelzero.net> References: <40BA1FD3-D989-4415-8967-C28902F0E05F@yahoo.es> <20060405205857.GA14044@aries.runlevelzero.net> Message-ID: <44343055.7060708@datadevil.demon.nl> Hi, a bit off-topic, but try to keep these in one thread by replying to the mails, makes for easier reading of archived mails later on Maarten Greg M. Kurtzer wrote: > I would recommend just making this your /home partition. You can do the > mount by hand (mount /dev/sda10 /home), or you can add this line to the > fstab (which is what I recommend): > > /dev/sda10 /home ext3 defaults 1 2 > > Then you can just type 'mount /home' from the command line to > immediately mount it, and on subsequent boots, it will also be mounted. > > Enjoy. :) > > On Wed, Apr 05, 2006 at 02:52:15PM -0600, Raul Morales Juberias wrote: > >> Hi >> >> Thanks for the feedback, I know that this may be kind of basic but so >> is my Linux experience >> >> At this point then >> >> [root at raven raul]# mkfs.ext3 -m 1 /dev/sda10 >> mke2fs 1.35 (28-Feb-2004) >> Filesystem label= >> OS type: Linux >> Block size=4096 (log=2) >> Fragment size=4096 (log=2) >> 23298048 inodes, 46592508 blocks >> 465925 blocks (1.00%) reserved for the super user >> First data block=0 >> 1422 block groups >> 32768 blocks per group, 32768 fragments per group >> 16384 inodes per group >> Superblock backups stored on blocks: >> 32768, 98304, 163840, 229376, 294912, 819200, 884736, >> 1605632, 2654208, >> 4096000, 7962624, 11239424, 20480000, 23887872 >> >> Writing inode tables: done >> Creating journal (8192 blocks): done >> Writing superblocks and filesystem accounting information: done >> >> This filesystem will be automatically checked every 25 mounts or >> 180 days, whichever comes first. Use tune2fs -c or -i to override. >> [root at raven raul]# more /etc/fstab >> # This file is edited by fstab-sync - see 'man fstab-sync' for details >> /dev/sda2 / ext3 defaults 1 1 >> /dev/sda1 /boot ext3 defaults 1 2 >> /dev/sda5 /usr ext3 defaults 1 2 >> /dev/sda6 /tmp ext3 defaults 1 2 >> /dev/sda7 /var ext3 defaults 1 2 >> /dev/sda8 /var/cache ext3 defaults 1 2 >> /dev/sda9 /var/log ext3 defaults 1 2 >> /dev/sda3 none swap defaults 0 0 >> none /proc proc defaults 0 0 >> none /sys sysfs defaults 0 0 >> none /dev/pts devpts >> gid=5,mode=620 0 0 >> /dev/hda /media/cdrecorder auto >> pamconsole,exec,noauto,managed 0 0 >> >> >> >> Do I have to edit this file and add a line like >> >> /dev/sda10 /data defaults ? ? >> >> Or do I have to do >> >> mount -t ext3 /dev/sda10 /data >> >> How do I do it so that the users home directories are in this new >> partition? >> >> Thanks >> >> _______________________________________________ >> cAos mailing list >> cAos at caosity.org >> http://lists.caosity.org/mailman/listinfo/caos >> > > From wudmojur at yahoo.es Wed Apr 5 14:06:16 2006 From: wudmojur at yahoo.es (Raul Morales Juberias) Date: Wed, 5 Apr 2006 15:06:16 -0600 Subject: [cAos] Problem with the mail Message-ID: <52B35D52-1C23-446F-805E-494FFA147D46@yahoo.es> Hello Thanks for the help with the partition issues ... As for the emails I do not receive them but when I get the digest; can this be changing so I can respond to the individual emails Sorry for the hassle Thanks From wudmojur at yahoo.es Wed Apr 5 14:16:57 2006 From: wudmojur at yahoo.es (Raul Morales Juberias) Date: Wed, 5 Apr 2006 15:16:57 -0600 Subject: [cAos] partitions issues Message-ID: <3A4E5938-DF5E-4CAD-A516-78ECF03E7C55@yahoo.es> Hello I modified the /etc/fstab file as you suggested and do mount /home and it worked, but then the users home directories disappeared, I did umount /home and I could access them again Should I tar them in another partition before mounting home and then mount home and untar them there? From gmk at runlevelzero.net Wed Apr 5 14:39:09 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Wed, 5 Apr 2006 14:39:09 -0700 Subject: [cAos] partitions issues In-Reply-To: <3A4E5938-DF5E-4CAD-A516-78ECF03E7C55@yahoo.es> References: <3A4E5938-DF5E-4CAD-A516-78ECF03E7C55@yahoo.es> Message-ID: <20060405213909.GB14044@aries.runlevelzero.net> Sure. or do the following: # mv /home /home.orig # mkdir /home # mount /home # cd /home.orig # rsync -avH . /home/ On Wed, Apr 05, 2006 at 03:16:57PM -0600, Raul Morales Juberias wrote: > Hello > > I modified the /etc/fstab file as you suggested and do mount /home > and it worked, but then the users home directories disappeared, I did > umount /home and I could access them again > > Should I tar them in another partition before mounting home and then > mount home and untar them there? > > > _______________________________________________ > 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 Apr 5 15:45:42 2006 From: wudmojur at yahoo.es (Raul Morales Juberias) Date: Wed, 5 Apr 2006 16:45:42 -0600 Subject: [cAos] partition issues Message-ID: Hi Thanks for all the help From shuntim.luk at polyu.edu.hk Wed Apr 5 22:12:53 2006 From: shuntim.luk at polyu.edu.hk (LUK ShunTim) Date: Thu, 06 Apr 2006 13:12:53 +0800 Subject: [cAos] partition issues In-Reply-To: References: Message-ID: <4434A355.2070102@polyu.edu.hk> Raul Morales Juberias wrote: > Hello, > > When installing cAos I choose the following partitions > > [root at raven ~]# df -h > Filesystem Size Used Avail Use% Mounted on > /dev/sda2 1.9G 1.6G 242M 87% / > /dev/sda1 244M 13M 219M 6% /boot > /dev/sda5 4.8G 4.3G 276M 94% /usr > /dev/sda6 966M 17M 900M 2% /tmp > /dev/sda7 966M 62M 855M 7% /var > /dev/sda8 966M 79M 838M 9% /var/cache > /dev/sda9 479M 13M 442M 3% /var/log > > And the users home folders are on /; I realize that this is kind of > bad because / is really small; and actually I am not taking advantage > of the size of the disk [snipped] Another approach, besides the useful replies from other posters. It appears that you still have a lot of free space, assuming you're using a "modern" hard disk. If this is the case, maybe you can try out lvm, the logical volume manager, which will enable you to re-size your partitions at will later on without all the hassle of moving files around. (If you haven't made the final decision,) I guess caos is modern enough to provide lvm at installation time if you're doing a new install. Check out this howto at http://tldp.org/HOWTO/LVM-HOWTO/. Regards, ST -- From benjamin at pythagoras.no-ip.org Fri Apr 7 10:03:26 2006 From: benjamin at pythagoras.no-ip.org (Benjamin Donnachie) Date: Fri, 07 Apr 2006 18:03:26 +0100 Subject: [cAos] Quick question... In-Reply-To: <439B125B.9060908@pythagoras.no-ip.org> References: <4380F3DB.3060700@pythagoras.no-ip.org> <4381A6E3.7020608@pythagoras.no-ip.org> <20051121175344.GA30443@titan.runlevelzero.net> <4383600F.8070601@pythagoras.no-ip.org> <20051123180558.GA4799@titan.runlevelzero.net> <43886075.10504@pythagoras.no-ip.org> <20051126150634.GA19285@titan.runlevelzero.net> <438A38B3.5080800@pythagoras.no-ip.org> <20051128185421.GA14322@titan.runlevelzero.net> <4391E8FF.2080400@pythagoras.no-ip.org> <20051204020005.GA20378@titan.runlevelzero.net> <439B125B.9060908@pythagoras.no-ip.org> Message-ID: <44369B5E.8010609@pythagoras.no-ip.org> Benjamin Donnachie wrote: >>>Ah well... I've just had to cope without the graphs in dspam :-) >>Can you describe the problem... Maybe it is fixable. > For the graphs to work on the dspam admin webpages you need: > - GD Graphics Library (http://www.boutell.com/gd/) > - The following PERL modules: > (http://www.perl.com/CPAN/modules/by-module/GD/) > > . GD > . GD-Graph3d > . GDGraph > . GDTextUtil > . CGI I finally got around to trying this again. The main problem was that /usr/local/lib was not listed under ld.so.conf. I've corrected this, installed the latest version of gd from source and now the graphs work perfectly! Is it worth making the inclusion of /usr/local/lib the default in cAos? Take care, Ben From gmk at runlevelzero.net Fri Apr 7 10:42:40 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Fri, 7 Apr 2006 10:42:40 -0700 Subject: [cAos] Quick question... In-Reply-To: <44369B5E.8010609@pythagoras.no-ip.org> References: <4383600F.8070601@pythagoras.no-ip.org> <20051123180558.GA4799@titan.runlevelzero.net> <43886075.10504@pythagoras.no-ip.org> <20051126150634.GA19285@titan.runlevelzero.net> <438A38B3.5080800@pythagoras.no-ip.org> <20051128185421.GA14322@titan.runlevelzero.net> <4391E8FF.2080400@pythagoras.no-ip.org> <20051204020005.GA20378@titan.runlevelzero.net> <439B125B.9060908@pythagoras.no-ip.org> <44369B5E.8010609@pythagoras.no-ip.org> Message-ID: <20060407174240.GA29200@aries.runlevelzero.net> I just updated our GD to your update, and will check some of your other packages. On Fri, Apr 07, 2006 at 06:03:26PM +0100, Benjamin Donnachie wrote: > Benjamin Donnachie wrote: > >>>Ah well... I've just had to cope without the graphs in dspam :-) > >>Can you describe the problem... Maybe it is fixable. > > For the graphs to work on the dspam admin webpages you need: > > - GD Graphics Library (http://www.boutell.com/gd/) > > - The following PERL modules: > > (http://www.perl.com/CPAN/modules/by-module/GD/) > > > > . GD > > . GD-Graph3d > > . GDGraph > > . GDTextUtil > > . CGI > > I finally got around to trying this again. The main problem was that > /usr/local/lib was not listed under ld.so.conf. I've corrected this, > installed the latest version of gd from source and now the graphs work > perfectly! > > Is it worth making the inclusion of /usr/local/lib the default in cAos? > > Take care, > > Ben > _______________________________________________ > 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 benjamin at pythagoras.no-ip.org Fri Apr 7 10:57:20 2006 From: benjamin at pythagoras.no-ip.org (Benjamin Donnachie) Date: Fri, 07 Apr 2006 18:57:20 +0100 Subject: [cAos] Quick question... In-Reply-To: <20060407174240.GA29200@aries.runlevelzero.net> References: <4383600F.8070601@pythagoras.no-ip.org> <20051123180558.GA4799@titan.runlevelzero.net> <43886075.10504@pythagoras.no-ip.org> <20051126150634.GA19285@titan.runlevelzero.net> <438A38B3.5080800@pythagoras.no-ip.org> <20051128185421.GA14322@titan.runlevelzero.net> <4391E8FF.2080400@pythagoras.no-ip.org> <20051204020005.GA20378@titan.runlevelzero.net> <439B125B.9060908@pythagoras.no-ip.org> <44369B5E.8010609@pythagoras.no-ip.org> <20060407174240.GA29200@aries.runlevelzero.net> Message-ID: <4436A800.3010804@pythagoras.no-ip.org> Greg M. Kurtzer wrote: > I just updated our GD to your update, and will check some of your other > packages. Many thanks! :-) No great rush on the checking - I start rewiring my house on Monday and won't have time to make any changes or generate new RPMs for a bit. Take care, Ben From gmk at runlevelzero.net Fri Apr 7 10:52:48 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Fri, 7 Apr 2006 10:52:48 -0700 Subject: [cAos] Quick question... In-Reply-To: <4436A800.3010804@pythagoras.no-ip.org> References: <43886075.10504@pythagoras.no-ip.org> <20051126150634.GA19285@titan.runlevelzero.net> <438A38B3.5080800@pythagoras.no-ip.org> <20051128185421.GA14322@titan.runlevelzero.net> <4391E8FF.2080400@pythagoras.no-ip.org> <20051204020005.GA20378@titan.runlevelzero.net> <439B125B.9060908@pythagoras.no-ip.org> <44369B5E.8010609@pythagoras.no-ip.org> <20060407174240.GA29200@aries.runlevelzero.net> <4436A800.3010804@pythagoras.no-ip.org> Message-ID: <20060407175248.GB29200@aries.runlevelzero.net> I just had a moment, and figured now would be a good time to check them out. So far so good. :) I updated gd, logwatch, and imported rssh already. I left cyrus-imapd, gnupg, milter-greylist and noip-duc. Hopefully KainX will have some time next week to check out gnupg and the email related ones. Can you explain noip-duc a bit? I haven't seen that before. Thanks! On Fri, Apr 07, 2006 at 06:57:20PM +0100, Benjamin Donnachie wrote: > Greg M. Kurtzer wrote: > > I just updated our GD to your update, and will check some of your other > > packages. > > Many thanks! :-) No great rush on the checking - I start rewiring my > house on Monday and won't have time to make any changes or generate new > RPMs for a bit. > > Take care, > > Ben > _______________________________________________ > 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 benjamin at pythagoras.no-ip.org Fri Apr 7 10:58:26 2006 From: benjamin at pythagoras.no-ip.org (Benjamin Donnachie) Date: Fri, 07 Apr 2006 18:58:26 +0100 Subject: [cAos] Quick question... In-Reply-To: <20060407175248.GB29200@aries.runlevelzero.net> References: <43886075.10504@pythagoras.no-ip.org> <20051126150634.GA19285@titan.runlevelzero.net> <438A38B3.5080800@pythagoras.no-ip.org> <20051128185421.GA14322@titan.runlevelzero.net> <4391E8FF.2080400@pythagoras.no-ip.org> <20051204020005.GA20378@titan.runlevelzero.net> <439B125B.9060908@pythagoras.no-ip.org> <44369B5E.8010609@pythagoras.no-ip.org> <20060407174240.GA29200@aries.runlevelzero.net> <4436A800.3010804@pythagoras.no-ip.org> <20060407175248.GB29200@aries.runlevelzero.net> Message-ID: <4436A842.9000701@pythagoras.no-ip.org> Greg M. Kurtzer wrote: > Can you explain noip-duc a bit? I haven't seen that before. It's the dynamic IP update client for no-ip. Basically it regularly checks your external IP and then updates your DNS record with no-ip if it changes. (I was feeling lazy and RPMs seemed the easiest way to install and update it on my machines! :>) Take care, Ben From gmk at runlevelzero.net Fri Apr 7 11:01:13 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Fri, 7 Apr 2006 11:01:13 -0700 Subject: [cAos] Quick question... In-Reply-To: <4436A842.9000701@pythagoras.no-ip.org> References: <438A38B3.5080800@pythagoras.no-ip.org> <20051128185421.GA14322@titan.runlevelzero.net> <4391E8FF.2080400@pythagoras.no-ip.org> <20051204020005.GA20378@titan.runlevelzero.net> <439B125B.9060908@pythagoras.no-ip.org> <44369B5E.8010609@pythagoras.no-ip.org> <20060407174240.GA29200@aries.runlevelzero.net> <4436A800.3010804@pythagoras.no-ip.org> <20060407175248.GB29200@aries.runlevelzero.net> <4436A842.9000701@pythagoras.no-ip.org> Message-ID: <20060407180112.GA29331@aries.runlevelzero.net> Will do... I imported this one as well. Thanks! On Fri, Apr 07, 2006 at 06:58:26PM +0100, Benjamin Donnachie wrote: > Greg M. Kurtzer wrote: > > Can you explain noip-duc a bit? I haven't seen that before. > > It's the dynamic IP update client for no-ip. Basically it regularly > checks your external IP and then updates your DNS record with no-ip if > it changes. > > (I was feeling lazy and RPMs seemed the easiest way to install and > update it on my machines! :>) > > Take care, > > Ben > _______________________________________________ > 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 benjamin at pythagoras.no-ip.org Fri Apr 7 11:08:34 2006 From: benjamin at pythagoras.no-ip.org (Benjamin Donnachie) Date: Fri, 07 Apr 2006 19:08:34 +0100 Subject: [cAos] Quick question... In-Reply-To: <20060407180112.GA29331@aries.runlevelzero.net> References: <438A38B3.5080800@pythagoras.no-ip.org> <20051128185421.GA14322@titan.runlevelzero.net> <4391E8FF.2080400@pythagoras.no-ip.org> <20051204020005.GA20378@titan.runlevelzero.net> <439B125B.9060908@pythagoras.no-ip.org> <44369B5E.8010609@pythagoras.no-ip.org> <20060407174240.GA29200@aries.runlevelzero.net> <4436A800.3010804@pythagoras.no-ip.org> <20060407175248.GB29200@aries.runlevelzero.net> <4436A842.9000701@pythagoras.no-ip.org> <20060407180112.GA29331@aries.runlevelzero.net> Message-ID: <4436AAA2.3000501@pythagoras.no-ip.org> Greg M. Kurtzer wrote: > Will do... I imported this one as well. Excellent - many thanks! :-) I shall crack on with all the other bits once I've finished destroying my house... Take care, Ben From gmk at runlevelzero.net Fri Apr 7 12:08:07 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Fri, 7 Apr 2006 12:08:07 -0700 Subject: [cAos] caos2 repository update Message-ID: <20060407190807.GB29425@aries.runlevelzero.net> current: + SRPMS/clamav-0.88.1-1.caos.src.rpm + SRPMS/createrepo-0.4.4-1.src.rpm + SRPMS/postfix-2.2.9-2.caos.src.rpm + SRPMS/xvidcore-1.1.0-3.caos.src.rpm no packages removed so stable remains,... uhm... stable. ;) -- 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 benjamin at pythagoras.no-ip.org Fri Apr 7 13:06:55 2006 From: benjamin at pythagoras.no-ip.org (Benjamin Donnachie) Date: Fri, 07 Apr 2006 21:06:55 +0100 Subject: [cAos] Quick question... In-Reply-To: <20060407175248.GB29200@aries.runlevelzero.net> References: <43886075.10504@pythagoras.no-ip.org> <20051126150634.GA19285@titan.runlevelzero.net> <438A38B3.5080800@pythagoras.no-ip.org> <20051128185421.GA14322@titan.runlevelzero.net> <4391E8FF.2080400@pythagoras.no-ip.org> <20051204020005.GA20378@titan.runlevelzero.net> <439B125B.9060908@pythagoras.no-ip.org> <44369B5E.8010609@pythagoras.no-ip.org> <20060407174240.GA29200@aries.runlevelzero.net> <4436A800.3010804@pythagoras.no-ip.org> <20060407175248.GB29200@aries.runlevelzero.net> Message-ID: <4436C65F.3090408@pythagoras.no-ip.org> Greg M. Kurtzer wrote: > I updated gd, logwatch, and imported rssh already. Just updated to logwatch v7.3. Ben From benjamin at py-soft.co.uk Sun Apr 9 04:59:22 2006 From: benjamin at py-soft.co.uk (Benjamin Donnachie) Date: Sun, 09 Apr 2006 12:59:22 +0100 Subject: [cAos] Postfix and saslauthd problems.... was... Re: [cAos-devel] [Fwd: US-CERT Technical Cyber Security Alert TA06-081A -- Sendmail Race Condition Vulnerability] In-Reply-To: <4432FEDA.1060102@pythagoras.no-ip.org> References: <4421A08B.3040204@pythagoras.no-ip.org> <20060322193659.GB21460@aries.runlevelzero.net> <4432F87F.4090407@pythagoras.no-ip.org> <4432FEDA.1060102@pythagoras.no-ip.org> Message-ID: <4438F71A.1010601@py-soft.co.uk> Benjamin Donnachie wrote: > GOT IT WORKING!!! :-) I now remember that it was the lack of TLS support in postfix that put me off changing before. Now that I've patched postfix.spec to support that as well, I'm incredibly pleased at having dumped sendmail! Postfix is just so, um, easy to understand! Ben From gmk at runlevelzero.net Tue Apr 11 21:31:59 2006 From: gmk at runlevelzero.net (Greg M. Kurtzer) Date: Tue, 11 Apr 2006 21:31:59 -0700 Subject: [cAos] caos2 repository update Message-ID: <20060412043159.GA12537@aries.runlevelzero.net> Comming to a mirror near you: current: + SRPMS/firefox-1.5-1.caos.src.rpm + SRPMS/fuse-2.5.3-2.caos.src.rpm + SRPMS/gd-2.0.33-1.caos.src.rpm + SRPMS/ksh-20050202-2.src.rpm + SRPMS/lftp-3.4.4-1.src.rpm + SRPMS/logwatch-7.1-1.caos.src.rpm + SRPMS/lzo-2.02-1.src.rpm + SRPMS/nagios-2.2-1.caos.src.rpm + SRPMS/noip-duc-2.1.1-1.caos.src.rpm + SRPMS/openvpn-2.0.5-1.src.rpm - SRPMS/ksh-20050202-1.src.rpm stable: + SRPMS/ksh-20050202-2.src.rpm + SRPMS/lzo-2.02-1.src.rpm + SRPMS/noip-duc-2.1.1-1.caos.src.rpm + SRPMS/openvpn-2.0.5-1.src.rpm - SRPMS/ksh-20050202-1.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 Wed Apr 12 15:02:49 2006 From: baucom at msg.ucsf.edu (Albion Baucom) Date: Wed, 12 Apr 2006 15:02:49 -0700 Subject: [cAos] Tkinter and Python: Packages? In-Reply-To: <20060412043159.GA12537@aries.runlevelzero.net> References: <20060412043159.GA12537@aries.runlevelzero.net> Message-ID: Does cAos provide support for Tkinter with Python via a yum pakage (s), or should I download and recompile Tk support for python? Thanks Alboin From mej at caosity.org Thu Apr 13 20:35:36 2006 From: mej at caosity.org (Michael Jennings) Date: Thu, 13 Apr 2006 23:35:36 -0400 Subject: [cAos] Tkinter and Python: Packages? In-Reply-To: References: <20060412043159.GA12537@aries.runlevelzero.net> Message-ID: <20060414033536.GB17852@kainx.org> On Wednesday, 12 April 2006, at 15:02:49 (-0700), Albion Baucom wrote: > Does cAos provide support for Tkinter with Python via a yum > pakage(s), or should I download and recompile Tk support for python? tkinter support was dropped because Tk is not, and should not be, a part of the core OS. And because it's 99.9% useless. Michael -- Michael Jennings (a.k.a. KainX) http://www.kainx.org/ n + 1, Inc., http://www.nplus1.net/ Author, Eterm (www.eterm.org) ----------------------------------------------------------------------- "Somebody pass the Charmin! I'm dumping core!!" -- Black Widow 2.0.3 From baucom at msg.ucsf.edu Fri Apr 14 13:44:24 2006 From: baucom at msg.ucsf.edu (Albion Baucom) Date: Fri, 14 Apr 2006 13:44:24 -0700 Subject: [cAos] Tkinter and Python: Packages? In-Reply-To: <20060414033536.GB17852@kainx.org> References: <20060412043159.GA12537@aries.runlevelzero.net> <20060414033536.GB17852@kainx.org> Message-ID: <4278E431-1F83-4FA3-A2A9-01B8E4E44CDE@msg.ucsf.edu> > On Wednesday, 12 April 2006, at 15:02:49 (-0700), > Albion Baucom wrote: > >> Does cAos provide support for Tkinter with Python via a yum >> pakage(s), or should I download and recompile Tk support for python? > On Apr 13, 2006, at 8:35 PM, Michael Jennings wrote: > tkinter support was dropped because Tk is not, and should not be, a > part of the core OS. Fair enough, I see your point, although the python distribution compiles with Tk support by default, so evidently someone thinks its useful. Unfortunately recompiling python means fiddling with modules to prevent yum from breaking. > And because it's 99.9% useless. If I have an application that requires Tk to run (and there is more than one in the crystallography/EM community), its 100% useful to me (the only thing that is actually 99.9% useless is that comment). Albion From mej at caosity.org Fri Apr 14 13:49:33 2006 From: mej at caosity.org (Michael Jennings) Date: Fri, 14 Apr 2006 16:49:33 -0400 Subject: [cAos] Tkinter and Python: Packages? In-Reply-To: <4278E431-1F83-4FA3-A2A9-01B8E4E44CDE@msg.ucsf.edu> References: <20060412043159.GA12537@aries.runlevelzero.net> <20060414033536.GB17852@kainx.org> <4278E431-1F83-4FA3-A2A9-01B8E4E44CDE@msg.ucsf.edu> Message-ID: <20060414204933.GA32224@kainx.org> On Friday, 14 April 2006, at 13:44:24 (-0700), Albion Baucom wrote: > Fair enough, I see your point, although the python distribution > compiles with Tk support by default, so evidently someone thinks its > useful. The proper approach is to separate out the tkinter stuff from Python and build/distribute it separately. My hope is that someone with the appropriate motivation (i.e., someone who needs it, like yourself) will contribute such a package to benefit other users. Bundling a particular GUI toolkit with a scripting language is fundamentally wrong. Perl and other languages do it properly by keeping separate sources and packages for the GUI toolkits. Until either the Python folks start doing it right, or someone does the legwork to split it out, we will not be able to offer tkinter. Michael -- Michael Jennings (a.k.a. KainX) http://www.kainx.org/ n + 1, Inc., http://www.nplus1.net/ Author, Eterm (www.eterm.org) ----------------------------------------------------------------------- "All of these things held up in vain. No reason or rhyme, just the scars that remain. Of all of these things I'm so much afraid, scared out of my mind by the demons I've made." -- Jars of Clay, "Much Afraid" From schuan2 at gmail.com Thu Apr 27 16:52:28 2006 From: schuan2 at gmail.com (Shih-Che Huang) Date: Thu, 27 Apr 2006 19:52:28 -0400 Subject: [cAos] problem of obtaining current gruop list Message-ID: Hi, I try to install cAos-2, but I have following problem when I was in System Roles. Obtaining Current group list : http://mirror.engr.uky.edu/cAosity/cAos-2/core/i386/repodata/repomd.xml: [Errno 4] IoError : < urlopen error (110, 'connection timed out')> I also tried different mirror sits, but I got the same problem. Do you have any suggestion? Thanks, Shih-Che -- Shih-Che Huang -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.infiscale.org/pipermail/caos/attachments/20060427/e4e6667f/attachment.html From schuan2 at gmail.com Thu Apr 27 16:58:32 2006 From: schuan2 at gmail.com (Shih-Che Huang) Date: Thu, 27 Apr 2006 19:58:32 -0400 Subject: [cAos] problem of obtaining current gruop list In-Reply-To: References: Message-ID: Hi, I try to install cAos-2, but I have following problem when I was in System Roles. Obtaining Current group list : http://mirror.engr.uky.edu/cAosity/cAos-2/core/i386/repodata/repomd.xml: [Errno 4] IoError : < urlopen error (110, 'connection timed out')> I also tried different mirror sits, but I got the same problem. Do you have any suggestion? Thanks, Shih-Che -- Shih-Che Huang -- Shih-Che Huang -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.infiscale.org/pipermail/caos/attachments/20060427/bd26dd0c/attachment.html