Re: [CentOS] Re: Filesystem for Maildir

2007-11-27 Thread Rainer Traut

Scott Silva schrieb:


What i want to know is: Anyone use or recommend EXT3 for Maildir?

My configuration: 3Ware 9650SE-8LPML, 8 drives SATA2  ST3500630AS 
500GB on RAID 10.



Ext3 is pretty good if directory indexes are on.;
See http://wiki.archlinux.org/index.php/Ext3_Filesystem_Tips



If the ext3 fs was made with anaconda it has this feature anyway (CMIIW 
since centos 4.4 and 5.0).


You can check with:

# tune2fs -l /dev/mapper/VG00-LVvar|grep features
Filesystem features:  has_journal ext_attr resize_inode dir_index 
filetype needs_recovery sparse_super large_file


Rainer


___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Filesystem for Maildir

2007-11-27 Thread Heitor Augusto M Cardozo

Christopher Chan wrote:

Heitor Augusto M Cardozo wrote:

Hi all,

In last year, i had made some research and benchmarks based on CentOS 
4 to know which filesystem is better for Maildir:  ReiserFS, XFS or 
EXT3.


My conclusion was as follows:

- EXT3: reliable but very slow to read many small files.
- ReiserFS: best performance but unreliable and bad recovery tools.
- XFS: My choice, good performance and reliability.


I would contest the last two.

I had two bad experiences with ReiserFS in our Mail Server, reiserfsck 
is too slow and lost data.


IMHO ReiserFS have the best performance for Maildir but its only safe on 
production if you´re sure that the system I/O will never fail.


On CentOS 5.0, a had the same benchmarks and now, EXT3 and XFS seems 
to had better or equivalent performance on Read and Create Random 
files. One of this tests, using bonnie++, show this:


# bonnie++ -d /mnt/sdc1/testfile -s 8192 -m `hostname` -n 
50:15:5000:1000


bonnie++? Not appropriate. Try this: 
http://untroubled.org/benchmarking/2004-04/


And add JFS to the mix. You will be surprised.

I already done tests with fsbench and the results on CentOS 4.5 were 
equivalent: the performance of XFS was much higher than EXT3.


Then, i retest using fsbench, bonnie++ and iozone on CentOS 5.0, and the 
results now show the EXT3 (dir_index, noatime) with performance similar 
to XFS.


What i want to know is: Anyone use or recommend EXT3 for Maildir?


If you do not have full blown battery back for write caches yes.



My configuration: 3Ware 9650SE-8LPML, 8 drives SATA2  ST3500630AS 
500GB on RAID 10.




Add BBU and XFS or JFS should do.
Yes, the BBU is installed and write_cache is enable. I will test JFS to 
compare.


Thanks for your help.

Heitor A. M. Cardozo

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Filesystem for Maildir

2007-11-27 Thread <[EMAIL PROTECTED]>
Heitor Augusto M Cardozo napsal(a):
> Yes, the BBU is installed and write_cache is enable. I will test JFS to
> compare.


Could you share the results then?
Thanks,
David
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] Need help with httpd.conf not rendering cgi or php files

2007-11-27 Thread Scott Ehrlich

I got this working perfectly at home - what should be exact same setups-

- Fresh install of CentOS 5 32-bit from DVD
- yum update & upgrade
- Reboot
- yum install mysql-server
- Download phpmyadmin and bugzilla from their respective home pages
- Move both to /var/www/html, naming the extracted phpmyadmin directory as 
phpmyadmin, the same with bugzilla
- Copy my working httpd.conf file from home and replacing the work one, 
then restarting httpd - sudo /etc/init.d/httpd restart

- Verify mysql is running - sudo /etc/init.d/mysqld restart

Call up firefox via an ssh x session and visit 
http://localhost/phpmyadmin/index.php.  Instead of showing a rendered 
page, it only shows the text of the index.php file.


Same for http://localhost/bugzilla/index.cgi

What did I miss?  The same config file from home, in a setup that worked 
perfectly, is missing something here!


/usr/sbin/httpd -v
Server version: Apache/2.2.3

Thanks for any help.

Scott
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Need help with httpd.conf not rendering cgi or php files

2007-11-27 Thread Craig White
On Tue, 2007-11-27 at 09:34 -0500, Scott Ehrlich wrote:
> I got this working perfectly at home - what should be exact same setups-
> 
> - Fresh install of CentOS 5 32-bit from DVD
> - yum update & upgrade
> - Reboot
> - yum install mysql-server
> - Download phpmyadmin and bugzilla from their respective home pages
> - Move both to /var/www/html, naming the extracted phpmyadmin directory as 
> phpmyadmin, the same with bugzilla
> - Copy my working httpd.conf file from home and replacing the work one, 
> then restarting httpd - sudo /etc/init.d/httpd restart
> - Verify mysql is running - sudo /etc/init.d/mysqld restart
> 
> Call up firefox via an ssh x session and visit 
> http://localhost/phpmyadmin/index.php.  Instead of showing a rendered 
> page, it only shows the text of the index.php file.
> 
> Same for http://localhost/bugzilla/index.cgi
> 
> What did I miss?  The same config file from home, in a setup that worked 
> perfectly, is missing something here!
> 
> /usr/sbin/httpd -v
> Server version: Apache/2.2.3
> 
> Thanks for any help.

Try
sudo /usr/bin/yum install php-mysql
sudo /sbin/service httpd restart

Craig

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Need help with httpd.conf not rendering cgi or php files

2007-11-27 Thread Scott Ehrlich

No change.

On Tue, 27 Nov 2007, Craig White wrote:


On Tue, 2007-11-27 at 09:34 -0500, Scott Ehrlich wrote:

I got this working perfectly at home - what should be exact same setups-

- Fresh install of CentOS 5 32-bit from DVD
- yum update & upgrade
- Reboot
- yum install mysql-server
- Download phpmyadmin and bugzilla from their respective home pages
- Move both to /var/www/html, naming the extracted phpmyadmin directory as
phpmyadmin, the same with bugzilla
- Copy my working httpd.conf file from home and replacing the work one,
then restarting httpd - sudo /etc/init.d/httpd restart
- Verify mysql is running - sudo /etc/init.d/mysqld restart

Call up firefox via an ssh x session and visit
http://localhost/phpmyadmin/index.php.  Instead of showing a rendered
page, it only shows the text of the index.php file.

Same for http://localhost/bugzilla/index.cgi

What did I miss?  The same config file from home, in a setup that worked
perfectly, is missing something here!

/usr/sbin/httpd -v
Server version: Apache/2.2.3

Thanks for any help.


Try
sudo /usr/bin/yum install php-mysql
sudo /sbin/service httpd restart

Craig

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


RE: [CentOS] Need help with httpd.conf not rendering cgi or php files

2007-11-27 Thread Mike Kercher
Silly question, but is php installed?  Is SELinux enabled?
 
Mike
 



From: [EMAIL PROTECTED] on behalf of Scott Ehrlich
Sent: Tue 11/27/2007 8:34 AM
To: centos@centos.org
Subject: [CentOS] Need help with httpd.conf not rendering cgi or php
files



I got this working perfectly at home - what should be exact same setups-

- Fresh install of CentOS 5 32-bit from DVD
- yum update & upgrade
- Reboot
- yum install mysql-server
- Download phpmyadmin and bugzilla from their respective home pages
- Move both to /var/www/html, naming the extracted phpmyadmin directory
as
phpmyadmin, the same with bugzilla
- Copy my working httpd.conf file from home and replacing the work one,
then restarting httpd - sudo /etc/init.d/httpd restart
- Verify mysql is running - sudo /etc/init.d/mysqld restart

Call up firefox via an ssh x session and visit
http://localhost/phpmyadmin/index.php.  Instead of showing a rendered
page, it only shows the text of the index.php file.

Same for http://localhost/bugzilla/index.cgi

What did I miss?  The same config file from home, in a setup that worked
perfectly, is missing something here!

/usr/sbin/httpd -v
Server version: Apache/2.2.3

Thanks for any help.

Scott
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


<>___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


RE: [CentOS] Need help with httpd.conf not rendering cgi or php files

2007-11-27 Thread Scott Ehrlich

On Tue, 27 Nov 2007, Mike Kercher wrote:


Silly question, but is php installed?  Is SELinux enabled?


Not silly - covering the basics/obvious.

SELinux is disabled, and I ensured ipchains 4 and 6 were disabled under 
services.


To the best of my knowledge php is installed.  yum install *php* reveals 
nothing needs to be added.


Scott



Mike




From: [EMAIL PROTECTED] on behalf of Scott Ehrlich
Sent: Tue 11/27/2007 8:34 AM
To: centos@centos.org
Subject: [CentOS] Need help with httpd.conf not rendering cgi or php
files



I got this working perfectly at home - what should be exact same setups-

- Fresh install of CentOS 5 32-bit from DVD
- yum update & upgrade
- Reboot
- yum install mysql-server
- Download phpmyadmin and bugzilla from their respective home pages
- Move both to /var/www/html, naming the extracted phpmyadmin directory
as
phpmyadmin, the same with bugzilla
- Copy my working httpd.conf file from home and replacing the work one,
then restarting httpd - sudo /etc/init.d/httpd restart
- Verify mysql is running - sudo /etc/init.d/mysqld restart

Call up firefox via an ssh x session and visit
http://localhost/phpmyadmin/index.php.  Instead of showing a rendered
page, it only shows the text of the index.php file.

Same for http://localhost/bugzilla/index.cgi

What did I miss?  The same config file from home, in a setup that worked
perfectly, is missing something here!

/usr/sbin/httpd -v
Server version: Apache/2.2.3

Thanks for any help.

Scott
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos




___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Need help with httpd.conf not rendering cgi or php files

2007-11-27 Thread Brian Mathis
On Nov 27, 2007 10:05 AM, Scott Ehrlich <[EMAIL PROTECTED]> wrote:
> On Tue, 27 Nov 2007, Mike Kercher wrote:
>
> > Silly question, but is php installed?  Is SELinux enabled?
>
> Not silly - covering the basics/obvious.
>
> SELinux is disabled, and I ensured ipchains 4 and 6 were disabled under
> services.
>
> To the best of my knowledge php is installed.  yum install *php* reveals
> nothing needs to be added.
>
> Scott


PHP: What is the contents of /etc/httpd/conf.d/php.conf?  Make sure
AddHandler and AddType are not commented out.
CGI: Did you uncomment the line "#AddHandler cgi-script .cgi" in
/etc/httpd/conf/httpd.conf?

Also, make sure you 'restart' httpd, not 'reload'.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


RE: [CentOS] Need help with httpd.conf not rendering cgi or php files

2007-11-27 Thread Mike Kercher
How about rpm -qa |grep php
 
Mike
 



From: [EMAIL PROTECTED] on behalf of Scott Ehrlich
Sent: Tue 11/27/2007 9:05 AM
To: CentOS mailing list
Subject: RE: [CentOS] Need help with httpd.conf not rendering cgi or php
files



On Tue, 27 Nov 2007, Mike Kercher wrote:

> Silly question, but is php installed?  Is SELinux enabled?

Not silly - covering the basics/obvious.

SELinux is disabled, and I ensured ipchains 4 and 6 were disabled under
services.

To the best of my knowledge php is installed.  yum install *php* reveals
nothing needs to be added.

Scott

>
> Mike
>
>
> 
>
> From: [EMAIL PROTECTED] on behalf of Scott Ehrlich
> Sent: Tue 11/27/2007 8:34 AM
> To: centos@centos.org
> Subject: [CentOS] Need help with httpd.conf not rendering cgi or php
> files
>
>
>
> I got this working perfectly at home - what should be exact same
setups-
>
> - Fresh install of CentOS 5 32-bit from DVD
> - yum update & upgrade
> - Reboot
> - yum install mysql-server
> - Download phpmyadmin and bugzilla from their respective home pages
> - Move both to /var/www/html, naming the extracted phpmyadmin
directory
> as
> phpmyadmin, the same with bugzilla
> - Copy my working httpd.conf file from home and replacing the work
one,
> then restarting httpd - sudo /etc/init.d/httpd restart
> - Verify mysql is running - sudo /etc/init.d/mysqld restart
>
> Call up firefox via an ssh x session and visit
> http://localhost/phpmyadmin/index.php.  Instead of showing a rendered
> page, it only shows the text of the index.php file.
>
> Same for http://localhost/bugzilla/index.cgi
>
> What did I miss?  The same config file from home, in a setup that
worked
> perfectly, is missing something here!
>
> /usr/sbin/httpd -v
> Server version: Apache/2.2.3
>
> Thanks for any help.
>
> Scott
> ___
> CentOS mailing list
> CentOS@centos.org
> http://lists.centos.org/mailman/listinfo/centos
>
>
>
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


<>___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] script to take cd iso's and create dvd iso

2007-11-27 Thread Tom Brown

Hi

I used to have a script that would take a dir of cd iso's and then stick 
them together and create a DVD iso. I seem to remember downloading it 
from a link posted in here. I have searched but cant find it, i dont 
suppose anyone knows of such a thing?


thanks

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Need help with httpd.conf not rendering cgi or php files

2007-11-27 Thread Heitor Augusto M Cardozo




Be sure that php5_module is loaded
and httpd.conf syntax is OK:

# sudo /usr/sbin/apachectl -t -D DUMP_MODULES

If not, check if file /etc/httpd/conf.d/php.conf exists and contains
the lines:

LoadModule php5_module modules/libphp5.so

AddHandler php5-script .php
AddType text/html .php



Heitor A. M. Cardozo

 Mensagem original 
Assunto: Re:[CentOS] Need help with httpd.conf not rendering cgi or php
files
De: Scott Ehrlich <[EMAIL PROTECTED]>
Para: CentOS mailing list 
Data: terça-feira, 27 de novembro de 2007 13:05:45
On Tue, 27 Nov 2007, Mike Kercher wrote:
  
  
  Silly question, but is php installed?  Is
SELinux enabled?

  
  
Not silly - covering the basics/obvious.
  
  
SELinux is disabled, and I ensured ipchains 4 and 6 were disabled under
services.
  
  
To the best of my knowledge php is installed.  yum install *php*
reveals nothing needs to be added.
  
  
Scott
  
  
  
Mike






From: [EMAIL PROTECTED] on behalf of Scott Ehrlich

Sent: Tue 11/27/2007 8:34 AM

To: centos@centos.org

Subject: [CentOS] Need help with httpd.conf not rendering cgi or php

files




I got this working perfectly at home - what should be exact same
setups-


- Fresh install of CentOS 5 32-bit from DVD

- yum update & upgrade

- Reboot

- yum install mysql-server

- Download phpmyadmin and bugzilla from their respective home pages

- Move both to /var/www/html, naming the extracted phpmyadmin directory

as

phpmyadmin, the same with bugzilla

- Copy my working httpd.conf file from home and replacing the work one,

then restarting httpd - sudo /etc/init.d/httpd restart

- Verify mysql is running - sudo /etc/init.d/mysqld restart


Call up firefox via an ssh x session and visit

http://localhost/phpmyadmin/index.php.  Instead of showing a rendered

page, it only shows the text of the index.php file.


Same for http://localhost/bugzilla/index.cgi


What did I miss?  The same config file from home, in a setup that
worked

perfectly, is missing something here!


/usr/sbin/httpd -v

Server version: Apache/2.2.3


Thanks for any help.


Scott

___

CentOS mailing list

CentOS@centos.org

http://lists.centos.org/mailman/listinfo/centos




  
___
  
CentOS mailing list
  
CentOS@centos.org
  
http://lists.centos.org/mailman/listinfo/centos
  




___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Need help with httpd.conf not rendering cgi or php files

2007-11-27 Thread Scott Ehrlich
Problem solved - I discoverered was not installed.  I guess yum install 
wildcards - *whatever* doesn't always work!


I performed a manual yum install php php4 php5 php-mysql and discovered 
php and php-cli need to be installed.  Well, ya learn something every day!


Thanks to all who helped!

Until my next question/problem...

Scott
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Announcing the CentOS on Laptops initiative

2007-11-27 Thread Count Of Dracula
On 11/26/07, Dag Wieers <[EMAIL PROTECTED]> wrote:
> Hi all,
>
> I would like to announce a CentOS on Laptops initiative. The aim is to
> allow everybody in the community (and on this mailinglist) to document
> their own experience with CentOS on their laptop (on the CentOS wiki).
>
>
> The goal of this initiative consists of 2 parts:
>
>  - help and convince people with their own CentOS on laptop installation

Are you nuts? CentOS on laptop? Why you want to kill torture people in
such a cruel way?

Joy
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] Re: Need help with httpd.conf not rendering cgi or php files

2007-11-27 Thread Scott Silva

on 11/27/2007 6:34 AM Scott Ehrlich spake the following:

I got this working perfectly at home - what should be exact same setups-

- Fresh install of CentOS 5 32-bit from DVD
- yum update & upgrade
- Reboot
- yum install mysql-server
- Download phpmyadmin and bugzilla from their respective home pages
- Move both to /var/www/html, naming the extracted phpmyadmin directory 
as phpmyadmin, the same with bugzilla
- Copy my working httpd.conf file from home and replacing the work one, 
then restarting httpd - sudo /etc/init.d/httpd restart

- Verify mysql is running - sudo /etc/init.d/mysqld restart

Call up firefox via an ssh x session and visit 
http://localhost/phpmyadmin/index.php.  Instead of showing a rendered 
page, it only shows the text of the index.php file.


Same for http://localhost/bugzilla/index.cgi

What did I miss?  The same config file from home, in a setup that worked 
perfectly, is missing something here!


/usr/sbin/httpd -v
Server version: Apache/2.2.3

Thanks for any help.

Scott

Did you have any other relevant conf files in /etc/httpd/conf.d?


--
MailScanner is like deodorant...
You hope everybody uses it, and
you notice quickly if they don't

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Need help with httpd.conf not rendering cgi or php files

2007-11-27 Thread Lorenzo Quatrini

Scott Ehrlich ha scritto:
Problem solved - I discoverered was not installed.  I guess yum install 
wildcards - *whatever* doesn't always work!


I performed a manual yum install php php4 php5 php-mysql and discovered 
php and php-cli need to be installed.  Well, ya learn something every day!


Thanks to all who helped!

Until my next question/problem...

Scott


I guess you should escape the wildcards do work with yum (eg. yum install 
\*whatever\*)

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] script to take cd iso's and create dvd iso

2007-11-27 Thread Barry Brimer
Quoting Tom Brown <[EMAIL PROTECTED]>:

> Hi
>
> I used to have a script that would take a dir of cd iso's and then stick
> them together and create a DVD iso. I seem to remember downloading it
> from a link posted in here. I have searched but cant find it, i dont
> suppose anyone knows of such a thing?

Is this what you're looking for?

http://isoredirect.centos.org/centos/build/mkdvdiso.sh
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] SSD and linux

2007-11-27 Thread Jerry Geis

Are the new SSD disks compatible with centos 5.0?

Anybody have one? know where to get one? I think they only come with new 
laptops.


Jerry
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Announcing the CentOS on Laptops initiative

2007-11-27 Thread Matt Shields
On Nov 27, 2007 10:37 AM, Count Of Dracula <[EMAIL PROTECTED]> wrote:
> On 11/26/07, Dag Wieers <[EMAIL PROTECTED]> wrote:
> > Hi all,
> >
> > I would like to announce a CentOS on Laptops initiative. The aim is to
> > allow everybody in the community (and on this mailinglist) to document
> > their own experience with CentOS on their laptop (on the CentOS wiki).
> >
> >
> > The goal of this initiative consists of 2 parts:
> >
> >  - help and convince people with their own CentOS on laptop installation
>
> Are you nuts? CentOS on laptop? Why you want to kill torture people in
> such a cruel way?
>
> Joy

Because some people may actually want to run a stable OS that will
have patches released for quite a while.  Fedora is not an option for
most business people who rely on their laptops every day.  Torture is
installing the latest Fedora every 6 months and hoping something
doesn't break.  Some would say Fedora users are nuts.

-- 
-matt
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] script to take cd iso's and create dvd iso

2007-11-27 Thread Tom Brown



Is this what you're looking for?

http://isoredirect.centos.org/centos/build/mkdvdiso.sh
  


it is indeed - thanks very much!

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Need help with httpd.conf not rendering cgi or php files

2007-11-27 Thread Craig White
On Tue, 2007-11-27 at 10:41 -0500, Scott Ehrlich wrote:
> Problem solved - I discoverered was not installed.  I guess yum install 
> wildcards - *whatever* doesn't always work!
> 
> I performed a manual yum install php php4 php5 php-mysql and discovered 
> php and php-cli need to be installed.  Well, ya learn something every day!
> 
> Thanks to all who helped!
> 
> Until my next question/problem...

that doesn't make sense...

yum install php-mysql should automatically make sure that php package
was installed. php-cli is for running php commands from shell.

trying to install php4 or php5 aren't going to do anything

Craig

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Announcing the CentOS on Laptops initiative

2007-11-27 Thread Lorenzo Quatrini

Matt Shields ha scritto:

On Nov 27, 2007 10:37 AM, Count Of Dracula <[EMAIL PROTECTED]> wrote:

On 11/26/07, Dag Wieers <[EMAIL PROTECTED]> wrote:

Hi all,

I would like to announce a CentOS on Laptops initiative. The aim is to
allow everybody in the community (and on this mailinglist) to document
their own experience with CentOS on their laptop (on the CentOS wiki).


The goal of this initiative consists of 2 parts:

 - help and convince people with their own CentOS on laptop installation

Are you nuts? CentOS on laptop? Why you want to kill torture people in
such a cruel way?

Joy


Because some people may actually want to run a stable OS that will
have patches released for quite a while.  Fedora is not an option for
most business people who rely on their laptops every day.  Torture is
installing the latest Fedora every 6 months and hoping something
doesn't break.  Some would say Fedora users are nuts.


I'm actually using CentOS on 2 laptops, and I have really few issues:
on the newer one (a Lenovo) the only thing that doesn't work is sound (I know 
the newer alsa drivers would work, but I'm too lazy to install them: I'll wait 
for the updates) but it isn't a big deal: I'm using it for work, and I don't 
need sound
My old crappy asus instead is just for watching movies attached to an external 
flat lcd tv and it's doing his job wonderfully (even if it has some issue with 
the integrated monitor)
So maybe I'm nuts, but I'm happy with not having to reinstall everything every 
6/12 months.


:)

Lorenzo
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] SSD and linux

2007-11-27 Thread Ignacio Vazquez-Abrams
On Tue, 2007-11-27 at 11:14 -0500, Jerry Geis wrote:
> Are the new SSD disks compatible with centos 5.0?

I can't see why not. They use the standard ATA protocol.

> Anybody have one? know where to get one? I think they only come with
> new laptops.

http://www.tigerdirect.com/applications/category/category_slc.asp?CatId=2503

-- 
Ignacio Vazquez-Abrams <[EMAIL PROTECTED]>

PLEASE don't CC me; I'm already subscribed


signature.asc
Description: This is a digitally signed message part
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Announcing the CentOS on Laptops initiative

2007-11-27 Thread Johnny Tan

Lorenzo Quatrini wrote:

I'm actually using CentOS on 2 laptops, and I have really few issues:
on the newer one (a Lenovo) the only thing that doesn't work is sound (I 
know the newer alsa drivers would work, but I'm too lazy to install 
them: I'll wait for the updates) but it isn't a big deal: I'm using it 
for work, and I don't need sound


I have CentOS-5 on a Thinkpad X61s and also only have sound 
as my major issue. Otherwise, it's great and I see no reason 
to run Fedora/Ubuntu.



One (more general, not CentOS-specific) problem that I have 
is that there's no network profile manager. Traveling among 
4 different locations (none with DHCP) means constantly 
going in and changing my network settings. Anyone know of a 
program to do something like what OS X does?



Anyway, I'll throw up my experiences on the wiki soon, 
though it's been a few months, so my memory's patchy.


Dag, is this the correct page?
http://wiki.centos.org/HowTos/Laptops/

And are we supposed to do it on our own page and then link 
to it? Seems like the existing ones are like that.


Or, if we create a page on there, should multiple entries of 
the same laptop model go on the same line somehow?



johnn
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] Three copies of each email?

2007-11-27 Thread Aron . Darling
Starting yesterday I am getting three (3) emails for each email sent to
this list.  Anyone else experiencing this issue and/or know how I can
fix it if it is on my side?

Aron Darling
Engineer
Emulex Corporation
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Three copies of each email?

2007-11-27 Thread Tomasz 'Zen' Napierala
Tuesday 27 November 2007 18:22:04 [EMAIL PROTECTED] napisał(a):
> Starting yesterday I am getting three (3) emails for each email sent to
> this list.  Anyone else experiencing this issue and/or know how I can
> fix it if it is on my side?
>

Trace the SMTP ids to check which host is duplicating messeges.

-- 
Tomasz Napierala
System Administrator
QXL Poland - Allegro.pl Team
http://www.allegro.pl/
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] X windows

2007-11-27 Thread Hiep Nguyen

On Tue, 27 Nov 2007, Hiep Nguyen wrote:

hi all, i just finished install (minimal) centos 5.  how do i use yum to 
install X windows so that i can use gui.  thanks,


T. Hiep
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


sorry, found it.

yum groupinstall "X Window System" will do it.

T. Hiep
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] X windows

2007-11-27 Thread Hiep Nguyen
hi all, i just finished install (minimal) centos 5.  how do i use yum to 
install X windows so that i can use gui.  thanks,


T. Hiep
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Filesystem for Maildir

2007-11-27 Thread Rodrigo Barbosa
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Tue, Nov 27, 2007 at 11:28:58AM -0200, Heitor Augusto M Cardozo wrote:
> >> - EXT3: reliable but very slow to read many small files.
> >> - ReiserFS: best performance but unreliable and bad recovery tools.
> >> - XFS: My choice, good performance and reliability.
> >
> > I would contest the last two.
> >
>  I had two bad experiences with ReiserFS in our Mail Server, reiserfsck is 
>  too slow and lost data.
> 
>  IMHO ReiserFS have the best performance for Maildir but its only safe on 
>  production if you´re sure that the system I/O will never fail.

nullfs (mount -t nullfs /dev/null /var/spool/mail) is even faster than
ReiserFS, and is just slightly more likely to loose your data. :)

[]s

- -- 
Rodrigo Barbosa
"Quid quid Latine dictum sit, altum viditur"
"Be excellent to each other ..." - Bill & Ted (Wyld Stallyns)

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQFHTGTTpdyWzQ5b5ckRAhDzAKDCR0UL4PQOmKSAJlbA3jGW1+9EnACfRZSs
qSjiQDLaOfTUsMStAZkL9XA=
=IG5U
-END PGP SIGNATURE-
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


RE: [CentOS] Three copies of each email?

2007-11-27 Thread Mike Kercher
Not seeing that here



From: [EMAIL PROTECTED] on behalf of [EMAIL PROTECTED]
Sent: Tue 11/27/2007 11:22 AM
To: centos@centos.org
Subject: [CentOS] Three copies of each email?



Starting yesterday I am getting three (3) emails for each email sent to
this list.  Anyone else experiencing this issue and/or know how I can
fix it if it is on my side?

Aron Darling
Engineer
Emulex Corporation
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


<>___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] Re: Filesystem for Maildir

2007-11-27 Thread Scott Silva

on 11/27/2007 10:41 AM Rodrigo Barbosa spake the following:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Tue, Nov 27, 2007 at 11:28:58AM -0200, Heitor Augusto M Cardozo wrote:

- EXT3: reliable but very slow to read many small files.
- ReiserFS: best performance but unreliable and bad recovery tools.
- XFS: My choice, good performance and reliability.

I would contest the last two.

 I had two bad experiences with ReiserFS in our Mail Server, reiserfsck is 
 too slow and lost data.


 IMHO ReiserFS have the best performance for Maildir but its only safe on 
 production if you´re sure that the system I/O will never fail.


nullfs (mount -t nullfs /dev/null /var/spool/mail) is even faster than
ReiserFS, and is just slightly more likely to loose your data. :)


But it is way more predictable at WHEN it will lose data.

--
MailScanner is like deodorant...
You hope everybody uses it, and
you notice quickly if they don't

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] X windows

2007-11-27 Thread Hiep Nguyen

On Tue, 27 Nov 2007, Hiep Nguyen wrote:


On Tue, 27 Nov 2007, Hiep Nguyen wrote:

hi all, i just finished install (minimal) centos 5.  how do i use yum to 
install X windows so that i can use gui.  thanks,


T. Hiep
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


sorry, found it.

yum groupinstall "X Window System" will do it.

T. Hiep
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos



but i have a question, if i install "GNOME Desktop Environment", then i 
don't have to install "X Window system", is that right? or the opposite?


thanks,
T. Hiep
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] X windows

2007-11-27 Thread Mark Hull-Richter
On Nov 27, 2007 10:53 AM, Hiep Nguyen <[EMAIL PROTECTED]> wrote:
>
> but i have a question, if i install "GNOME Desktop Environment", then i
> don't have to install "X Window system", is that right? or the opposite?
>

If you use yum to install GDE, it will resolve all dependencies and install
whatever else you need.  Since GNOME uses X Windows, it's a sure thing.

mhr
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Filesystem for Maildir

2007-11-27 Thread Rodrigo Barbosa
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Mon, Nov 26, 2007 at 05:22:42PM -0200, Heitor Augusto M Cardozo wrote:
> What i want to know is: Anyone use or recommend EXT3 for Maildir?

That is what I use.

If performance becames an issue, I just add another server.
"Customizing" the OS adds up to more maintenance work than splitting
the job between servers (disks/NAS etc).

- -- 
Rodrigo Barbosa
"Quid quid Latine dictum sit, altum viditur"
"Be excellent to each other ..." - Bill & Ted (Wyld Stallyns)

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQFHTGRnpdyWzQ5b5ckRAuO6AJwNi7A0nyopogzNk2/luuG5Le14zwCeJtNq
6Vr8/lIae0hkmbMDFrHJdCA=
=LvJl
-END PGP SIGNATURE-
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] X windows

2007-11-27 Thread Ignacio Vazquez-Abrams
On Tue, 2007-11-27 at 11:02 -0800, Mark Hull-Richter wrote:
> On Nov 27, 2007 10:53 AM, Hiep Nguyen <[EMAIL PROTECTED]> wrote:
> > 
> > but i have a question, if i install "GNOME Desktop Environment",
> then i
> > don't have to install "X Window system", is that right? or the
> opposite? 
> > 
> 
> If you use yum to install GDE, it will resolve all dependencies and
> install whatever else you need.  Since GNOME uses X Windows, it's a
> sure thing.

No, GNOME needs the X tools and libraries. It does not require the X
server per se.

-- 
Ignacio Vazquez-Abrams <[EMAIL PROTECTED]>

PLEASE don't CC me; I'm already subscribed


signature.asc
Description: This is a digitally signed message part
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Announcing the CentOS on Laptops initiative

2007-11-27 Thread Bart Schaefer
On Nov 27, 2007 9:16 AM, Johnny Tan <[EMAIL PROTECTED]> wrote:
> One (more general, not CentOS-specific) problem that I have
> is that there's no network profile manager. Traveling among
> 4 different locations (none with DHCP) means constantly
> going in and changing my network settings. Anyone know of a
> program to do something like what OS X does?

There is a NetworkManager package for CentOS 4 and 5 which has a gnome
"helper" UI, but I found that it didn't play well with ndiswrapper
(which I needed because the bcm43xx driver didn't work for me) so I
ended up disabling it.  Also it seems to want to have only one network
interface active at a time, i.e., I could not both plug in a wired
network and activate the wireless with NetworkManager.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Filesystem for Maildir

2007-11-27 Thread Les Mikesell

Rodrigo Barbosa wrote:


On Tue, Nov 27, 2007 at 11:28:58AM -0200, Heitor Augusto M Cardozo wrote:

- EXT3: reliable but very slow to read many small files.
- ReiserFS: best performance but unreliable and bad recovery tools.
- XFS: My choice, good performance and reliability.

I would contest the last two.

 I had two bad experiences with ReiserFS in our Mail Server, reiserfsck is 
 too slow and lost data.


 IMHO ReiserFS have the best performance for Maildir but its only safe on 
 production if you´re sure that the system I/O will never fail.


nullfs (mount -t nullfs /dev/null /var/spool/mail) is even faster than
ReiserFS, and is just slightly more likely to loose your data. :)


I have /var on reiserfs  on a busy RH 7.3 machine that hasn't had 
problems in however many years that has been (2001?).  It wasn't 
rebooted in the last 4 of those years until just recently when I had to 
move it to a new location, though - but it's on raid1 and I've 
hot-swapped replacement drives into it.


--
  Les Mikesell
   [EMAIL PROTECTED]

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] reader

2007-11-27 Thread qsm




hello guys.

i have a Precise 100 AX, a fingerprint reader and i can't use in linux, but i need fon my graduation proyect.

i try to compile the biometrics drivers, but it crash and no continue.

somebody know how to work in linux.

tks

-- 






-- 
Este mensaje ha sido analizado por 
MailScanner
en busca de virus y otros contenidos peligrosos,
y se considera que está limpio.
MailScanner agradece a transtec Computers por su apoyo.


___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Announcing the CentOS on Laptops initiative

2007-11-27 Thread Karanbir Singh

Johnny Tan wrote:
One (more general, not CentOS-specific) problem that I have is that 
there's no network profile manager. Traveling among 4 different 
locations (none with DHCP) means constantly going in and changing my 
network settings. Anyone know of a program to do something like what OS 
X does?


The idea of profiles has been around for about 4 - 5 years on 
EL/CentOS/Fedora platforms. eg:


http://www.centos.org/docs/5/html/5.1/Deployment_Guide/s1-network-profiles.html

--
Karanbir Singh : http://www.karan.org/  : [EMAIL PROTECTED]
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Announcing the CentOS on Laptops initiative

2007-11-27 Thread Johnny Tan

Karanbir Singh wrote:
The idea of profiles has been around for about 4 - 5 years on 
EL/CentOS/Fedora platforms. eg:


http://www.centos.org/docs/5/html/5.1/Deployment_Guide/s1-network-profiles.html 


D'oh! I've been using Network Manager for about that many 
years too, and didn't realize I could create profiles! I 
guess since they were under the "Devices" tab, I never 
looked closely enough to see there were profile options.


Thanks!
johnn
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Announcing the CentOS on Laptops initiative

2007-11-27 Thread Les Mikesell

Dag Wieers wrote:


I would like to announce a CentOS on Laptops initiative. The aim is to
allow everybody in the community (and on this mailinglist) to document
their own experience with CentOS on their laptop (on the CentOS wiki).


The goal of this initiative consists of 2 parts:

 - help and convince people with their own CentOS on laptop installation

 - promote CentOS on other Laptop websites and fill in this existing void


I hope that everyone think back about the experience on their existing
laptop and add it to the wiki, and document everything when doing future
laptop installations.



Dell Latitude D600:
ipw200: eth1:  ipw2100_get_firmware failed -2.

Screen works, haven't tried the tv out.

--
  Les Mikesell
   [EMAIL PROTECTED]

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Announcing the CentOS on Laptops initiative

2007-11-27 Thread Nicolas Thierry-Mieg



Les Mikesell wrote:

Dag Wieers wrote:


I would like to announce a CentOS on Laptops initiative. The aim is to
allow everybody in the community (and on this mailinglist) to document
their own experience with CentOS on their laptop (on the CentOS wiki).


The goal of this initiative consists of 2 parts:

 - help and convince people with their own CentOS on laptop installation

 - promote CentOS on other Laptop websites and fill in this existing void


I hope that everyone think back about the experience on their existing
laptop and add it to the wiki, and document everything when doing future
laptop installations.



Dell Latitude D600:
ipw200: eth1:  ipw2100_get_firmware failed -2.

Screen works, haven't tried the tv out.



hmm, I have a D600 under centos5 and the wireless works fine - in fact 
everything works fine, and I don't remember fighting to get things 
working though it was a while ago

did you install ipw2200-firmware (from rpmforge)?

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] How to import/install the key for signing pxljr-1.1-1.i386.rpm

2007-11-27 Thread Andrew Allen
How do I import and install the key for signing the above rpm (driver
for HP Colour laserjet 3500 printer) which I've downloaded from the kde
repo? - I want to use yum localinstall, but when I do I get the message
'package not signed'.

Thanks for help,
Andy

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] OT: virtual server hosting recomendation

2007-11-27 Thread David Hrbáč
Hi,
we are in need of a new (virtual) server based in US. Any hosting
recommendation?
Thanks,
David Hrbáč
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] OT: virtual server hosting recomendation

2007-11-27 Thread [EMAIL PROTECTED]
http://rimuhosting.com/ 

gets my vote. 

- Original Message - 
From: "David Hrbáč" <[EMAIL PROTECTED]> 
To: "CentOS mailing list"  
Sent: Wednesday, November 28, 2007 8:41:18 AM (GMT+1000) Australia/Brisbane 
Subject: [CentOS] OT: virtual server hosting recomendation 

Hi, 
we are in need of a new (virtual) server based in US. Any hosting 
recommendation? 
Thanks, 
David Hrbáč 
___ 
CentOS mailing list 
CentOS@centos.org 
http://lists.centos.org/mailman/listinfo/centos 

-- 
This message has been scanned for viruses and 
dangerous content by MailScanner, and is 
believed to be clean. 


-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] OT: virtual server hosting recomendation

2007-11-27 Thread Greg Bailey

David Hrbáč wrote:

Hi,
we are in need of a new (virtual) server based in US. Any hosting
recommendation?
Thanks,
David Hrbáč
  


I've had excellent results with Server Axis ( http://serveraxis.com ).  
5 IPs and plenty of disk space for $35/month.


-Greg

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] Re: How to import/install the key for signing pxljr-1.1-1.i386.rpm

2007-11-27 Thread Scott Silva

on 11/27/2007 1:03 PM Andrew Allen spake the following:

How do I import and install the key for signing the above rpm (driver
for HP Colour laserjet 3500 printer) which I've downloaded from the kde
repo? - I want to use yum localinstall, but when I do I get the message
'package not signed'.

Thanks for help,
Andy
You could change gpgcheck=0 in your yum.conf. You can change it back after you 
install.

I haven't found a commandline option to yum to not check for signed packages.
Something like --nogpgcheck would be nice.

--
MailScanner is like deodorant...
You hope everybody uses it, and
you notice quickly if they don't

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Adobe products under Linux?

2007-11-27 Thread William L. Maltby
On Fri, 2007-11-23 at 16:28 -0800, John R Pierce wrote: 
> Scott Ehrlich wrote:
> >


> AFAIK, no Adobe applications run under any form of Linux, except via VM 
> emulation.   If you're running Adobe apps on Windows in a VM under 
> Linux, and matlab/mathematica on Linux natively, copying data between 
> these will be awkward at best.
> 

$ lsb_release -a
LSB Version::core-3.0-ia32:core-3.0-noarch:graphics-3.0-
ia32:graphics-3.0-noarch
Distributor ID: CentOS
Description:CentOS release 4.5 (Final)
Release:4.5
Codename:   Final

$ rpm -q AdobeReader_enu
AdobeReader_enu-7.0.9-1.i386

I don't know about others, but this one works fine for me.

--
Bill

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Adobe products under Linux?

2007-11-27 Thread Ross S. W. Walker

You could try crossover office, it's reported to work with several windows apps 
from adobe. Photoshop I believe works.

-Ross


-Original Message-
From: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
To: centos@centos.org 
Sent: Fri Nov 23 17:03:10 2007
Subject: [CentOS] Adobe products under Linux?

Also sent to Codeweavers - [what is this list's insights?]

I have a 32 GB, dual quad-core desktop machine and was considering 32-bit 
Windows XP w/SP2, but discovered it only supports up to 4 GB RAM, so that idea 
is shot.

Next in line is 64-bit CentOS 5.   The major need for Windows would be very 
active use of Adobe Acrobat 8, Photoshop CS3, and Illustrator CS3.

There may also be the need to copy/transfer information among Matlab, 
Mathematica, and Microsoft-based applications, from Office 2003 to the 
above-mentioned ones.

Do you support these, and how complete is your product line for 64-bit CentOS 
5?

Based on your answer, I'll know whether to go with a virtual machine-based 
solution, which means a Windows VM, or can remain Linux-only, with your 
solution.

Thank you very much.

Scott
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos

__
This e-mail, and any attachments thereto, is intended only for use by
the addressee(s) named herein and may contain legally privileged
and/or confidential information. If you are not the intended recipient
of this e-mail, you are hereby notified that any dissemination,
distribution or copying of this e-mail, and any attachments thereto,
is strictly prohibited. If you have received this e-mail in error,
please immediately notify the sender and permanently delete the
original and any copy or printout thereof.

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Re: How to import/install the key for signing pxljr-1.1-1.i386.rpm

2007-11-27 Thread Nicolas Thierry-Mieg



Scott Silva wrote:

on 11/27/2007 1:03 PM Andrew Allen spake the following:


How do I import and install the key for signing the above rpm (driver
for HP Colour laserjet 3500 printer) which I've downloaded from the kde
repo? - I want to use yum localinstall, but when I do I get the message
'package not signed'.

Thanks for help,
Andy


You could change gpgcheck=0 in your yum.conf. You can change it back 
after you install.
I haven't found a commandline option to yum to not check for signed 
packages.

Something like --nogpgcheck would be nice.



just use rpm since you've downloaded the package:
rpm -K .rpm checks the package (checksums and sigs if available)
rpm -i .rpm installs it, whether it's signed and checked or not

to import the kde-redhat repo public key: as it says on the front page 
of their website http://kde-redhat.sourceforge.net/

rpm --import http://kde-redhat.sourceforge.net/gpg-pubkey-ff6382fa-3e1ab2ca

that's a single line in case it wrapped

but since you say 'package not signed' and not 'public key not found' or 
some such, the problem is probably not that you don't have the key. 
Rather, I guess the package really isn't signed. Not 100% sure because I 
don't yum, I apt, but the message is pretty explicit.

rpm -i will work

you should talk to the kde-redhat devs, if it's really their package 
it's probably unintended that the package is unsigned.


regards
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] Mail Server Install

2007-11-27 Thread Jun Salen
Hi Friends,

I am planning to upgrade my mail server from CentOS4.5 to CentOS5. By this, I 
also planned to replace my postfix mail server with Scalix although the 
community edition limit me to just 25 premium user, I think it is suffice for 
us with the remaining user as standard user (with approx. <> 100 users total). 
Is there a catch on using Scalix based on your experience. I see that Horde is 
available from Dag's repository, do you think it is better for me to use that 
instead? Is there anyone using it that may share their gotchas and good points 
from their experience for me to prepare and be ready. Thank you in advance.
 
junji
aisalen.wordpress.com
Linux Registered User #253162



Send instant messages to your online friends http://uk.messenger.yahoo.com
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] Using a local mirror?

2007-11-27 Thread Jason Pyeron
We have a rsync'ed copy of the centos distro.
We want to point our local machines at that, what is our next step?

-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
-   -
- Jason Pyeron  PD Inc. http://www.pdinc.us -
- Sr. Consultant10 West 24th Street #100-
- +1 (443) 269-1555 x333Baltimore, Maryland 21218   -
-   -
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

This message is for the designated recipient only and may contain
privileged, proprietary, or otherwise private information. If you
have received it in error, purge the message from your system and
notify the sender immediately.  Any other use of the email by you
is prohibited. 


___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Filesystem for Maildir

2007-11-27 Thread Christopher Chan

Heitor Augusto M Cardozo wrote:

Christopher Chan wrote:

Heitor Augusto M Cardozo wrote:

Hi all,

In last year, i had made some research and benchmarks based on CentOS 
4 to know which filesystem is better for Maildir:  ReiserFS, XFS or 
EXT3.


My conclusion was as follows:

- EXT3: reliable but very slow to read many small files.
- ReiserFS: best performance but unreliable and bad recovery tools.
- XFS: My choice, good performance and reliability.


I would contest the last two.

I had two bad experiences with ReiserFS in our Mail Server, reiserfsck 
is too slow and lost data.


Well, not on that...reiserfs assumes perfect media according to the 
complaints of some who use reiser so bad blocks could cause even the 
entire loss of the filesystem...not to mention that RH and therefore 
Centos (I wonder about plus...) does not support/maintain reiserfs.




IMHO ReiserFS have the best performance for Maildir but its only safe on 
production if you´re sure that the system I/O will never fail.


What does fsbench say? It has the best writing performance too?!?



On CentOS 5.0, a had the same benchmarks and now, EXT3 and XFS seems 
to had better or equivalent performance on Read and Create Random 
files. One of this tests, using bonnie++, show this:


# bonnie++ -d /mnt/sdc1/testfile -s 8192 -m `hostname` -n 
50:15:5000:1000


bonnie++? Not appropriate. Try this: 
http://untroubled.org/benchmarking/2004-04/


And add JFS to the mix. You will be surprised.

I already done tests with fsbench and the results on CentOS 4.5 were 
equivalent: the performance of XFS was much higher than EXT3.


Then, i retest using fsbench, bonnie++ and iozone on CentOS 5.0, and the 
results now show the EXT3 (dir_index, noatime) with performance similar 
to XFS.


Now that is very interesting.



What i want to know is: Anyone use or recommend EXT3 for Maildir?


If you do not have full blown battery back for write caches yes.



My configuration: 3Ware 9650SE-8LPML, 8 drives SATA2  ST3500630AS 
500GB on RAID 10.




Add BBU and XFS or JFS should do.
Yes, the BBU is installed and write_cache is enable. I will test JFS to 
compare.


Thanks for your help.


Please post your findings. :-)

Christopher
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Mail Server Install

2007-11-27 Thread [EMAIL PROTECTED]

- Original Message - 
From: "Jun Salen" <[EMAIL PROTECTED]> 
To: centos@centos.org 
Sent: Wednesday, November 28, 2007 11:54:46 AM (GMT+1000) Australia/Brisbane 
Subject: [CentOS] Mail Server Install 

Hi Friends, 

I am planning to upgrade my mail server from CentOS4.5 to CentOS5. By this, I 
also planned to replace my postfix mail server with Scalix although the 
community edition limit me to just 25 premium user, I think it is suffice for 
us with the remaining user as standard user (with approx. <> 100 users total). 
Is there a catch on using Scalix based on your experience. I see that Horde is 
available from Dag's repository, do you think it is better for me to use that 
instead? Is there anyone using it that may share their gotchas and good points 
from their experience for me to prepare and be ready. Thank you in advance. 

junji 
aisalen.wordpress.com 
Linux Registered User #253162 



Send instant messages to your online friends http://uk.messenger.yahoo.com 
___ 
CentOS mailing list 
CentOS@centos.org 
http://lists.centos.org/mailman/listinfo/centos 

-- 
This message has been scanned for viruses and 
dangerous content by MailScanner, and is 
believed to be clean. 




Have a look at http://zimbra.com. It has an open-source version with unlimited 
users. I've tried both it and scalix and much prefer zimbra. 

Cheers. 

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Filesystem for Maildir

2007-11-27 Thread Christopher Chan


On CentOS 5.0, a had the same benchmarks and now, EXT3 and XFS seems 
to had better or equivalent performance on Read and Create Random 
files. One of this tests, using bonnie++, show this:


# bonnie++ -d /mnt/sdc1/testfile -s 8192 -m `hostname` -n 
50:15:5000:1000


bonnie++? Not appropriate. Try this: 
http://untroubled.org/benchmarking/2004-04/


And add JFS to the mix. You will be surprised.

I already done tests with fsbench and the results on CentOS 4.5 were 
equivalent: the performance of XFS was much higher than EXT3.


Then, i retest using fsbench, bonnie++ and iozone on CentOS 5.0, and the 
results now show the EXT3 (dir_index, noatime) with performance similar 
to XFS.


Sayhow do the numbers on Centos 5 compare with Centos 4.5? Did XFS 
loose performance?

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Using a local mirror?

2007-11-27 Thread Max Hetrick
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Jason Pyeron wrote:
> We have a rsync'ed copy of the centos distro.
> We want to point our local machines at that, what is our next step?

Hi, Jason.

cd /etc/yum.repos.d

I'd make a backup of the original CentOS-Base.repo:

cp CentOS-Base.repo CentOS.Base.repo.org

Open CentOS-Base.repo in a text editor, vim, emacs, whatever.

Comment out all the mirrorlist's.

# mirrorlist=http://mirrorlist.centos.org/blah-blah-blah

Make sure all the baseurl's reflects your internal repo and are not
commented out.

baseurl=http//your_internal_repo/centos/$releasever/os/$basearch/

You should be ok to use yum then, so long as your paths are all good.
This is how I do it, anyways. Other comments or procedures are more than
welcome.

Regards,
Max



-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.6 (GNU/Linux)

iD8DBQFHTM/hHoeeepPau2ERAijzAKCCVjFEcFaCs4c2/UlE3HTELPIAggCgt4dK
upBBCizZY6BRLMU4wBGSa1k=
=Jr+J
-END PGP SIGNATURE-
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: ****[CentOS] Using a local mirror?

2007-11-27 Thread Craig White
On Tue, 2007-11-27 at 20:59 -0500, Jason Pyeron wrote:
> We have a rsync'ed copy of the centos distro.
> We want to point our local machines at that, what is our next step?
> 

http://dag.wieers.com/home-made/mrepo/

does all the lifting for you

Craig

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


RE: ****[CentOS] Using a local mirror?

2007-11-27 Thread Jason Pyeron
We already have our up2date / yum repo.


What we need is to (minimalistically) modify the clients to use it.

Given:

[EMAIL PROTECTED] ~]# cat /etc/hosts
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1   fiftyone localhost.localdomain localhost
192.168.1.67mirrorlist.centos.org
[EMAIL PROTECTED] ~]# curl -i
"http://mirrorlist.centos.org/?release=4.5&arch=i386&repo=os";
HTTP/1.1 200 OK
Date: Wed, 28 Nov 2007 02:27:47 GMT
Server: Apache/2.0.52 (CentOS)
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html; charset=UTF-8

http://192.168.1.67/centos/4.5/os/i386/



Why does it pull data from outside???


|-sendmail(2233)
|-sendmail(2241,smmsp)
|-sshd(3364)-+-sshd(3367)---bash(3369)---up2date(25055)
|`-sshd(25010)---bash(25012)---pstree(25064)
|-syslogd(2078)
|-udevd(1395)
`-xinetd(2213)
[EMAIL PROTECTED] ~]# lsof -p 25055 | grep TCP
up2date 25055 root   10u  IPv4  25167 TCP
test.pdinc.us:33481->66.147.238.146:http (SYN_SENT)



-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
-   -
- Jason Pyeron  PD Inc. http://www.pdinc.us -
- Sr. Consultant10 West 24th Street #100-
- +1 (443) 269-1555 x333Baltimore, Maryland 21218   -
-   -
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

This message is for the designated recipient only and may contain
privileged, proprietary, or otherwise private information. If you
have received it in error, purge the message from your system and
notify the sender immediately.  Any other use of the email by you
is prohibited. 

 

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of Craig White
> Sent: Tuesday, November 27, 2007 21:36
> To: CentOS mailing list
> Subject: Re: [CentOS] Using a local mirror?
> 
> On Tue, 2007-11-27 at 20:59 -0500, Jason Pyeron wrote:
> > We have a rsync'ed copy of the centos distro.
> > We want to point our local machines at that, what is our next step?
> > 
> 
> http://dag.wieers.com/home-made/mrepo/
> 
> does all the lifting for you
> 
> Craig
> 
> ___
> CentOS mailing list
> CentOS@centos.org
> http://lists.centos.org/mailman/listinfo/centos
> 

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


RE: [CentOS] Using a local mirror?

2007-11-27 Thread Jason Pyeron

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of Max Hetrick
> Sent: Tuesday, November 27, 2007 21:18
> To: CentOS mailing list
> Subject: Re: [CentOS] Using a local mirror?
> 
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> Jason Pyeron wrote:
> > We have a rsync'ed copy of the centos distro.
> > We want to point our local machines at that, what is our next step?
> 
> Hi, Jason.
> 
> cd /etc/yum.repos.d
> 
> I'd make a backup of the original CentOS-Base.repo:
> 
> cp CentOS-Base.repo CentOS.Base.repo.org
> 
> Open CentOS-Base.repo in a text editor, vim, emacs, whatever.
> 
> Comment out all the mirrorlist's.
> 
> # mirrorlist=http://mirrorlist.centos.org/blah-blah-blah
> 
> Make sure all the baseurl's reflects your internal repo and are not
> commented out.
> 
> baseurl=http//your_internal_repo/centos/$releasever/os/$basearch/

This will be my second try after trying to find a less invasive method like
proxying.

Right now when a machine pulls up mirrorlist.centos.org it will point to an
internal system, whose cgi behaves as such (expecting a scale issue here,
vlan based load...).

> 
> You should be ok to use yum then, so long as your paths are all good.
> This is how I do it, anyways. Other comments or procedures 
> are more than
> welcome.
> 
> Regards,
> Max
> 
> 
> 
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.2.6 (GNU/Linux)
> 
> iD8DBQFHTM/hHoeeepPau2ERAijzAKCCVjFEcFaCs4c2/UlE3HTELPIAggCgt4dK
> upBBCizZY6BRLMU4wBGSa1k=
> =Jr+J
> -END PGP SIGNATURE-
> ___
> CentOS mailing list
> CentOS@centos.org
> http://lists.centos.org/mailman/listinfo/centos
> 



-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
-   -
- Jason Pyeron  PD Inc. http://www.pdinc.us -
- Sr. Consultant10 West 24th Street #100-
- +1 (443) 269-1555 x333Baltimore, Maryland 21218   -
-   -
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

This message is for the designated recipient only and may contain
privileged, proprietary, or otherwise private information. If you
have received it in error, purge the message from your system and
notify the sender immediately.  Any other use of the email by you
is prohibited. 

 

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Using a local mirror?

2007-11-27 Thread Max Hetrick
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Jason Pyeron wrote:

>> This will be my second try after trying to find a less invasive method like
>> proxying.

>> Right now when a machine pulls up mirrorlist.centos.org it will point to an
>> internal system, whose cgi behaves as such (expecting a scale issue here,
>> vlan based load...).

This won't help you if you're already up and running, but if you're
looking to set this up during installations, then look at copying a
.repo file over from a shared location with a kickstart installation file.

A post-installation shell command can do that for you down the road if
you don't find Dag's tool handy. I've done this in the past to not have
to edit things like this during a new install.

Regards,
Max
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.6 (GNU/Linux)

iD8DBQFHTNi5HoeeepPau2ERAlPuAJ0dHqqhH+pL+qbW0+CmTy3uzB7tJQCeJzd4
A/rIov0B3jeIC+697EgqFzU=
=Yy6/
-END PGP SIGNATURE-
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


RE: [CentOS] Using a local mirror? [SOLVED]

2007-11-27 Thread Jason Pyeron

 

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of Jason Pyeron
> Sent: Tuesday, November 27, 2007 21:49
> To: 'CentOS mailing list'
> Subject: RE: [CentOS] Using a local mirror?
> 
> 
> > -Original Message-
> > From: [EMAIL PROTECTED] 
> > [mailto:[EMAIL PROTECTED] On Behalf Of Max Hetrick
> > Sent: Tuesday, November 27, 2007 21:18
> > To: CentOS mailing list
> > Subject: Re: [CentOS] Using a local mirror?
> > 
> > -BEGIN PGP SIGNED MESSAGE-
> > Hash: SHA1
> > 
> > Jason Pyeron wrote:
> > > We have a rsync'ed copy of the centos distro.
> > > We want to point our local machines at that, what is our 
> next step?
> > 
> > Hi, Jason.
> > 
> > cd /etc/yum.repos.d
> > 
> > I'd make a backup of the original CentOS-Base.repo:
> > 
> > cp CentOS-Base.repo CentOS.Base.repo.org
> > 
> > Open CentOS-Base.repo in a text editor, vim, emacs, whatever.
> > 
> > Comment out all the mirrorlist's.
> > 
> > # mirrorlist=http://mirrorlist.centos.org/blah-blah-blah
> > 
> > Make sure all the baseurl's reflects your internal repo and are not
> > commented out.
> > 
> > baseurl=http//your_internal_repo/centos/$releasever/os/$basearch/
> 
> This will be my second try after trying to find a less 
> invasive method like
> proxying.
> 
> Right now when a machine pulls up mirrorlist.centos.org it 
> will point to an
> internal system, whose cgi behaves as such (expecting a scale 
> issue here,
> vlan based load...).
> 

Hmmm, needed to proxy the mirror.centos.org too, since up2date does not use
the yum.cond.d stuff .


So to proxy

Capture all mirrorlist.centos.org and mirror.centos.org and redirect to your
internal versions respectively.

Our local dns is "poisoned" to point to our internal servers. From there its
all cake.

[EMAIL PROTECTED] mirrors]# cat /var/www/html/index.cgi
#!/usr/bin/perl
use strict;
use CGI;


my $cgi = new CGI;

my $release = $cgi->param('release');
my $arch= $cgi->param('arch');
my $repo= $cgi->param('repo');


print "Content-type: text/html\n\n";
print "http://192.168.1.67/centos/$release/$repo/$arch/\n";;


exit (0);
[EMAIL PROTECTED] mirrors]#


-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
-   -
- Jason Pyeron  PD Inc. http://www.pdinc.us -
- Sr. Consultant10 West 24th Street #100-
- +1 (443) 269-1555 x333Baltimore, Maryland 21218   -
-   -
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

This message is for the designated recipient only and may contain
privileged, proprietary, or otherwise private information. If you
have received it in error, purge the message from your system and
notify the sender immediately.  Any other use of the email by you
is prohibited. 


> > 
> > You should be ok to use yum then, so long as your paths are 
> all good.
> > This is how I do it, anyways. Other comments or procedures 
> > are more than
> > welcome.
> > 
> > Regards,
> > Max
> > 
> > 
> > 
> > -BEGIN PGP SIGNATURE-
> > Version: GnuPG v1.2.6 (GNU/Linux)
> > 
> > iD8DBQFHTM/hHoeeepPau2ERAijzAKCCVjFEcFaCs4c2/UlE3HTELPIAggCgt4dK
> > upBBCizZY6BRLMU4wBGSa1k=
> > =Jr+J
> > -END PGP SIGNATURE-
> > ___
> > CentOS mailing list
> > CentOS@centos.org
> > http://lists.centos.org/mailman/listinfo/centos
> > 
> 
> 

-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
-   -
- Jason Pyeron  PD Inc. http://www.pdinc.us -
- Sr. Consultant10 West 24th Street #100-
- +1 (443) 269-1555 x333Baltimore, Maryland 21218   -
-   -
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

This message is for the designated recipient only and may contain
privileged, proprietary, or otherwise private information. If you
have received it in error, purge the message from your system and
notify the sender immediately.  Any other use of the email by you
is prohibited. 

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Using a local mirror? [SOLVED]

2007-11-27 Thread Jay Leafey

This is a bit late, I know, but I found a similar setup described at:

http://www.gurulabs.com/goodies/YUM_automatic_local_mirror.php

Their server appears to be down right now, but that's where I found the 
information.  The original was designed for Fedora, but it was adapted 
to CentOS pretty easily.  I've been using this for about 4 months now 
with great results.


Rather than spoofing the mirrorlist.centos.org entry in DNS, I just have 
anybody that wants to use the local mirror put an entry in their 
/etc/hosts file pointing to the IP address of the local server.  The 
Perl CGI script adds the entry for our local server to the results 
returned from the real mirror list and depends on yum-fastestmirror to 
pick the local server from the list.


Since we don't mirror all architectures on our local server, I added 
some intelligence to the Perl script so that it would only add the local 
server if the requested repository, release, and architecture were on 
the local server.  If anybody wants to see the final results, just let 
me know and I'll post my modified script and the Apache config fragment 
or a pointer to it.


--
Jay Leafey - Memphis, TN
[EMAIL PROTECTED]


smime.p7s
Description: S/MIME Cryptographic Signature
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


RE: [CentOS] Using a local mirror? [SOLVED]

2007-11-27 Thread Jason Pyeron

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of Jay Leafey
> Sent: Tuesday, November 27, 2007 23:21
> To: CentOS mailing list
> Subject: Re: [CentOS] Using a local mirror? [SOLVED]
> 
> This is a bit late, I know, but I found a similar setup described at:
> 
> http://www.gurulabs.com/goodies/YUM_automatic_local_mirror.php
> 
> Their server appears to be down right now, but that's where I 
> found the 
> information.  The original was designed for Fedora, but it 
> was adapted 
> to CentOS pretty easily.  I've been using this for about 4 months now 
> with great results.
> 
> Rather than spoofing the mirrorlist.centos.org entry in DNS, 
> I just have 
> anybody that wants to use the local mirror put an entry in their 
> /etc/hosts file pointing to the IP address of the local server.  The 

Right now I am using the hosts file too.

In our server farm we are expected to make as few deviations from baseline
as possible, that is why the dns redirection.

> Perl CGI script adds the entry for our local server to the results 
> returned from the real mirror list and depends on 
> yum-fastestmirror to 
> pick the local server from the list.

We might want to act as a gatekeeper on the mirror too, again for CM sake.

> 
> Since we don't mirror all architectures on our local server, I added 
> some intelligence to the Perl script so that it would only 
> add the local 
> server if the requested repository, release, and architecture were on 
> the local server.  If anybody wants to see the final results, 
> just let 
> me know and I'll post my modified script and the Apache 
> config fragment 
> or a pointer to it.

The list might like it anyway.


> 
> -- 
> Jay Leafey - Memphis, TN
> [EMAIL PROTECTED]
> 

Thanks

-jason

-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
-   -
- Jason Pyeron  PD Inc. http://www.pdinc.us -
- Sr. Consultant10 West 24th Street #100-
- +1 (443) 269-1555 x333Baltimore, Maryland 21218   -
-   -
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

This message is for the designated recipient only and may contain
privileged, proprietary, or otherwise private information. If you
have received it in error, purge the message from your system and
notify the sender immediately.  Any other use of the email by you
is prohibited. 

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] reasons for using CentOS in business environments

2007-11-27 Thread Rogelio
My apologies if this question has been previously answered, but could
anyone here provide me with resources that I might use to help build a
case for exclusively using CentOS in an enterprise environment?
(Approximately 200 servers)

Long story short, I've used a little of everything out there
(Gentoo/Debian/*BSD/Slackware) and have a fairly good overall strategy
of how they all work (all of them have lived on my laptop at one time
or another over the last 10 years or so), but I'm now looking for
solid business reasons that I can present to the CxO types of a
company to show them that CentOS is probably where they'd like to
look.

Reasons thus far I've come up with include:

--free *and* "fully" (at least, in my experience) compatible with RHEL
--fairly stable (I don't have problems unless I start mixing repos)
--yum packages (almost as cool as Debian! Ok, I'm biased...or maybe I
don't know how to properly use yum?)

Any other suggestions / tips I might add to my list would be greatly
appreciated!
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] reasons for using CentOS in business environments

2007-11-27 Thread Christopher Chan

Rogelio wrote:

My apologies if this question has been previously answered, but could
anyone here provide me with resources that I might use to help build a
case for exclusively using CentOS in an enterprise environment?
(Approximately 200 servers)

Long story short, I've used a little of everything out there
(Gentoo/Debian/*BSD/Slackware) and have a fairly good overall strategy
of how they all work (all of them have lived on my laptop at one time
or another over the last 10 years or so), but I'm now looking for
solid business reasons that I can present to the CxO types of a
company to show them that CentOS is probably where they'd like to
look.

Reasons thus far I've come up with include:

--free *and* "fully" (at least, in my experience) compatible with RHEL
--fairly stable (I don't have problems unless I start mixing repos)
--yum packages (almost as cool as Debian! Ok, I'm biased...or maybe I
don't know how to properly use yum?)


(nah. yum needs some more catching up. in any case, a working software 
management system.)


If this is a Linux shop, the answer would be what everybody is most 
comfortable with. That fact that you can now make your own 
repository/repositories has made the score more even against Debian, deb 
and apt. Any distro without tools for managing packages on multiple 
servers from a local repository should be dropped. You can therefore 
paint Centos in this light as one that meets such needs.

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] X windows

2007-11-27 Thread umair shakil
Salam,

yum list | grep kdeutils

yum install kdeutils.i386


Regards,

Umair Shakil
ETD

On Nov 27, 2007 11:20 PM, Hiep Nguyen <[EMAIL PROTECTED]> wrote:

> hi all, i just finished install (minimal) centos 5.  how do i use yum to
> install X windows so that i can use gui.  thanks,
>
> T. Hiep
> ___
> CentOS mailing list
> CentOS@centos.org
> http://lists.centos.org/mailman/listinfo/centos
>
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] reasons for using CentOS in business environments

2007-11-27 Thread js
Rogelio wrote:
> My apologies if this question has been previously answered, but could
> anyone here provide me with resources that I might use to help build a
> case for exclusively using CentOS in an enterprise environment?
> (Approximately 200 servers)
>
> Long story short, I've used a little of everything out there
> (Gentoo/Debian/*BSD/Slackware) and have a fairly good overall strategy
> of how they all work (all of them have lived on my laptop at one time
> or another over the last 10 years or so), but I'm now looking for
> solid business reasons that I can present to the CxO types of a
> company to show them that CentOS is probably where they'd like to
> look.
>
> Reasons thus far I've come up with include:
>
> --free *and* "fully" (at least, in my experience) compatible with RHEL
> --fairly stable (I don't have problems unless I start mixing repos)
> --yum packages (almost as cool as Debian! Ok, I'm biased...or maybe I
> don't know how to properly use yum?)
>
> Any other suggestions / tips I might add to my list would be greatly
> appreciated!
>
>   

Free is not a "good reason" (I think); the main problem is RHEL is too
expensive; so there is the
Centos project.
If you can buy some RHEL : do it, because you will help a good company
and indirectly Centos (because, after all,
who do the tests? who create patchs?? mainly RH :)

my 0.02€




___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos