Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-07 Thread John Hodrien
On Sat, 5 Mar 2011, Nico Kadel-Garcia wrote:

 On Fri, Mar 4, 2011 at 7:57 AM, John Hodrien j.h.hodr...@leeds.ac.uk wrote:
 On Fri, 4 Mar 2011, Nico Kadel-Garcia wrote:

 Contemporary versions of git, subversion, and OpenSSH built-in. I'm
 particularly looking forward to the built-in chroot capabilities and
 GSSAPI support in OpenSSH, and the major release improvements to git
 and subversion.

 What does the new GSSAPI support do for you?

 Single sign-on. Your Windows clients, in the right environment, can
 have their Kerberos tickets managed to allow Kerberos tickets, not
 authorized_keys, to be used very effectively and reduce typing
 !@#$!@#$ passwords or manipulating SSH keys. The development version
 of Putty also has this built right in, though it's not made it to the
 production version yet.

But that works just nicely with CentOS 5.  I use GSSAPI together with kerberos
tickets plucked out of Active Directory.  Enable GSSAPIDelegateCredentials and
it'll throw your ticket to the remote side, so you can merrily use your
kerberos ticket there too.

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


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-07 Thread Nico Kadel-Garcia
On Mon, Mar 7, 2011 at 6:53 AM, John Hodrien j.h.hodr...@leeds.ac.uk wrote:
 On Sat, 5 Mar 2011, Nico Kadel-Garcia wrote:

 On Fri, Mar 4, 2011 at 7:57 AM, John Hodrien j.h.hodr...@leeds.ac.uk wrote:
 On Fri, 4 Mar 2011, Nico Kadel-Garcia wrote:

 Contemporary versions of git, subversion, and OpenSSH built-in. I'm
 particularly looking forward to the built-in chroot capabilities and
 GSSAPI support in OpenSSH, and the major release improvements to git
 and subversion.

 What does the new GSSAPI support do for you?

 Single sign-on. Your Windows clients, in the right environment, can
 have their Kerberos tickets managed to allow Kerberos tickets, not
 authorized_keys, to be used very effectively and reduce typing
 !@#$!@#$ passwords or manipulating SSH keys. The development version
 of Putty also has this built right in, though it's not made it to the
 production version yet.

 But that works just nicely with CentOS 5.  I use GSSAPI together with kerberos
 tickets plucked out of Active Directory.  Enable GSSAPIDelegateCredentials and
 it'll throw your ticket to the remote side, so you can merrily use your
 kerberos ticket there too.

Have you backported OpenSSH 5.x to CentOS 5? Because I don't see the
full features set without OpenSSH 5.x, such as GSSApiKeyExchange.

Hmm. What you've described is an ssh_config option, which is set to
no by default.  I'll have to look into that. There have been some
interesting. traction issues with using the backported OpenSSH 5.x
I'm currently reliant on for CentOS 5 and RHEL 5.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-07 Thread John Hodrien
On Mon, 7 Mar 2011, Nico Kadel-Garcia wrote:

 Have you backported OpenSSH 5.x to CentOS 5? Because I don't see the
 full features set without OpenSSH 5.x, such as GSSApiKeyExchange.

Nope, I like the simple life.

 Hmm. What you've described is an ssh_config option, which is set to
 no by default.  I'll have to look into that. There have been some
 interesting. traction issues with using the backported OpenSSH 5.x
 I'm currently reliant on for CentOS 5 and RHEL 5.

I'm stock 5.5:

openssh-server-4.3p2-41.el5_5.1
openssh-4.3p2-41.el5_5.1
openssh-clients-4.3p2-41.el5_5.1

Server needs:

GSSAPIAuthentication yes
GSSAPICleanupCredentials yes

Most probably you also want:

AllowGroups blah

Client needs:

GSSAPIAuthentication yes

If you want key forwarding, you also need:

GSSAPIDelegateCredentials yes

Works like a charm, and GSSAPI auth works with putty, delegation doesn't seem
to.

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


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-07 Thread Nico Kadel-Garcia
On Mon, Mar 7, 2011 at 7:14 AM, John Hodrien j.h.hodr...@leeds.ac.uk wrote:
 On Mon, 7 Mar 2011, Nico Kadel-Garcia wrote:

 Have you backported OpenSSH 5.x to CentOS 5? Because I don't see the
 full features set without OpenSSH 5.x, such as GSSApiKeyExchange.

 Nope, I like the simple life.

 Hmm. What you've described is an ssh_config option, which is set to
 no by default.  I'll have to look into that. There have been some
 interesting. traction issues with using the backported OpenSSH 5.x
 I'm currently reliant on for CentOS 5 and RHEL 5.

 I'm stock 5.5:

 openssh-server-4.3p2-41.el5_5.1
 openssh-4.3p2-41.el5_5.1
 openssh-clients-4.3p2-41.el5_5.1

 Server needs:

 GSSAPIAuthentication yes
 GSSAPICleanupCredentials yes

 Most probably you also want:

 AllowGroups blah

 Client needs:

 GSSAPIAuthentication yes

 If you want key forwarding, you also need:

 GSSAPIDelegateCredentials yes

 Works like a charm, and GSSAPI auth works with putty, delegation doesn't seem
 to.

If this works, you've just solved a *BIG* problem for me: I'd been
handed (ordered before I arrived on the site) the issues of getting
Centrify OpenSSH to play nicely, and this avoids the OpenSSH 5.x does
not read .bashrc and read user aliases for remote ssh commands
problem I've been facing, while preserving the effective GSSAPI
credentials handling.

*Good* admin. And are you coming to the Boston are, so I can buy you a
decent local beer? (I'm not in London anymore.)  Why aren't you over
on the comp.security.ssh?
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-07 Thread John Hodrien
On Mon, 7 Mar 2011, Nico Kadel-Garcia wrote:

 If this works, you've just solved a *BIG* problem for me: I'd been
 handed (ordered before I arrived on the site) the issues of getting
 Centrify OpenSSH to play nicely, and this avoids the OpenSSH 5.x does
 not read .bashrc and read user aliases for remote ssh commands
 problem I've been facing, while preserving the effective GSSAPI
 credentials handling.

Tested this with regular MIT kerberos under CentOS some time ago, but am
actually running it against Active Directory currently.

 *Good* admin. And are you coming to the Boston are, so I can buy you a
 decent local beer? (I'm not in London anymore.)  Why aren't you over
 on the comp.security.ssh?

Too many groups, too little time.  Tell you what, solve all the niggly little
problems I've had with kerberised NFSv4 with CentOS5, and we'll call it quits.

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


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-07 Thread Nico Kadel-Garcia
On Mon, Mar 7, 2011 at 7:56 AM, John Hodrien j.h.hodr...@leeds.ac.uk wrote:
 On Mon, 7 Mar 2011, Nico Kadel-Garcia wrote:

 If this works, you've just solved a *BIG* problem for me: I'd been
 handed (ordered before I arrived on the site) the issues of getting
 Centrify OpenSSH to play nicely, and this avoids the OpenSSH 5.x does
 not read .bashrc and read user aliases for remote ssh commands
 problem I've been facing, while preserving the effective GSSAPI
 credentials handling.

 Tested this with regular MIT kerberos under CentOS some time ago, but am
 actually running it against Active Directory currently.

 *Good* admin. And are you coming to the Boston are, so I can buy you a
 decent local beer? (I'm not in London anymore.)  Why aren't you over
 on the comp.security.ssh?

 Too many groups, too little time.  Tell you what, solve all the niggly little
 problems I've had with kerberised NFSv4 with CentOS5, and we'll call it quits.

Ahh, I'll just trade you this fine lease on swampland in Florida for
your first born, shall I?

NFSv4 is *NOT* your friend, and Kerberizing it effectively is not
trivial. I'm using Centrify for that and to have a reliable upstream
vendor who can actually support it. (I'm on a contract.) What's the
issue you're encountering, besides the lack of nfs4-acl-editor in
the RPM's.

nfs4-acl-editor is actually built into the nfs4 tools source tree,
it's just not compiled. It's not a perfect tool, but I think well
worth getting into the extras repository for CentOS.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-07 Thread John Hodrien
On Mon, 7 Mar 2011, Nico Kadel-Garcia wrote:

 NFSv4 is *NOT* your friend, and Kerberizing it effectively is not
 trivial. I'm using Centrify for that and to have a reliable upstream
 vendor who can actually support it. (I'm on a contract.) What's the
 issue you're encountering, besides the lack of nfs4-acl-editor in
 the RPM's.

With a CentOS 5 server and a CentOS 5 client, I've yet to manage to get it
play nicely for long periods without deciding that I'm evil.  Sometimes it
works fine, then a reboot or a minor tinker that I'm sure shouldn't affect
anything will leave it refusing to mount with Operation not permitted.  Or
it'll let me mount it as root, but as soon as I use it with a kerberos ticket
will have a big long pause before deciding it doesn't like me.  Client works
fine against an EMC box, and I've had the server working before I started
using Active Directory.

 nfs4-acl-editor is actually built into the nfs4 tools source tree,
 it's just not compiled. It's not a perfect tool, but I think well
 worth getting into the extras repository for CentOS.

nfs4-acl-tools-0.3.3-1.el5, standard in CentOS.  That not do what you need?

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


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-07 Thread Laurence Hurst
On Thu, Mar 03, 2011 at 03:11:52PM +, Digimer wrote:
 How about the rest of you? What are you looking forward to in CentOS 6
 when it is released?
 
For me the big wins with CentOS 6 should be SSSD to simplify and centralise (on 
the machine) network authentication and (hopefully!) graphics drivers which 
work with our hardware out-of-the box.

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


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-07 Thread John Hodrien
On Mon, 7 Mar 2011, Laurence Hurst wrote:

 On Thu, Mar 03, 2011 at 03:11:52PM +, Digimer wrote:
 How about the rest of you? What are you looking forward to in CentOS 6
 when it is released?

 For me the big wins with CentOS 6 should be SSSD to simplify and centralise
 (on the machine) network authentication and (hopefully!) graphics drivers
 which work with our hardware out-of-the box.

Yes, SSSD is of interest to me too.  The last version I used was sufficiently
less adept at matching winbind or nss_ldap in functionality that it wasn't all
the good for use against Active Directory.  I'm assuming nested group handling
has improved somewhat since I last tried it with CentOS 5, which was the
killer when I last tried.

It certainly sounds like a massively improved model compared to nss_ldap,
you'd hope for much better resilience and performance.

I'm not sure I see graphics drivers as a big deal.  Have your own local repo,
add in a suitable package from elrepo, and install it at kickstart time.

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


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-07 Thread Simon Matter
 On Mon, 7 Mar 2011, Laurence Hurst wrote:

 On Thu, Mar 03, 2011 at 03:11:52PM +, Digimer wrote:
 How about the rest of you? What are you looking forward to in CentOS 6
 when it is released?

 For me the big wins with CentOS 6 should be SSSD to simplify and
 centralise
 (on the machine) network authentication and (hopefully!) graphics
 drivers
 which work with our hardware out-of-the box.

 Yes, SSSD is of interest to me too.  The last version I used was
 sufficiently
 less adept at matching winbind or nss_ldap in functionality that it wasn't
 all
 the good for use against Active Directory.  I'm assuming nested group
 handling
 has improved somewhat since I last tried it with CentOS 5, which was the
 killer when I last tried.

 It certainly sounds like a massively improved model compared to nss_ldap,
 you'd hope for much better resilience and performance.

 I'm not sure I see graphics drivers as a big deal.  Have your own local
 repo,
 add in a suitable package from elrepo, and install it at kickstart time.

Graphics drivers can be a big deal. For some netbook hardware I really
need Intel GMA3150 support but AFAIK that's a no go with EL5. I may be
wrong but, has anyone got it to work?

Simon

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


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-07 Thread James Nguyen
On Fri, Mar 4, 2011 at 12:11 PM, John R Pierce pie...@hogranch.com wrote:
 On 03/04/11 11:59 AM, m.r...@5-cent.us wrote:
 I'm looking forward to the new cgroups and KVM.  This will give it
   some capabilities similar to AIX virtual partitions which can divvy up
   CPUs at a fine resolution.
 Really? So IBM ported VM into native AIX? I missed that.

 IBM Power servers since the Power4+ CPU (they are up to Power7 now) have
 hardware partitioning support, commonly known as LPAR.  LPAR can be
 divided in units of 1/10th of a CPU.   The software to manage this is
 now called PowerVM (its been called other names in the past, not all
 polite).

 In addition, AIX 6.1 and newer have Workload Partitions (WPAR), which
 are similar to Solaris Zones, these allow subdividing an AIX install
 into an arbitrary number of apparently different systems that all share
 the same kernel.

 LPAR plus VIOS (Virtual IO System, actually a stripped down
 preconfigured AIX system) corresponds to the Xen model, however the base
 hypervisor capability is built right into the CPU and IO hardware, VIOS
 just provides management and optional virtualized IO.  You can assign IO
 adapters directly to partitions, whereupon the partitions (VMs) run even
 if VIOS is shut down.  The newer Power6 and 7 servers have Ethernet
 adapters that provide each LPAR with its own hardware-virtualized
 ethernet adapter so you don't need a cage full of cards, or run all the
 networking through VIOS.


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


This is why I'm not totally impressed with virtualization today, but
I've used it ions ago in enterprise solutions. =)  There's a reason
why IBM solutions are so expensive sides the amount of people they
staff on projects.  You also get technology that the industry never
new existed.

-- 
James H. Nguyen
CallFire :: Systems Architect
http://www.callfire.com
1.949.625.4263
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-06 Thread Pasi Kärkkäinen
On Fri, Mar 04, 2011 at 03:33:10PM -0500, Kwan Lowe wrote:
 On Fri, Mar 4, 2011 at 3:11 PM, John R Pierce pie...@hogranch.com wrote:
 
  IBM Power servers since the Power4+ CPU (they are up to Power7 now) have
  hardware partitioning support, commonly known as LPAR.  LPAR can be
  divided in units of 1/10th of a CPU.   The software to manage this is
  now called PowerVM (its been called other names in the past, not all
  polite).
 [informative text snipped]
 
 Yes, it is some nice stuff...
 
 In particular, having the hardware partitioning capability plays nice
 with Oracle licensing. Under KVM or Xen we still have to license the
 entire system.  This probably won't change with the newer kvm, but one
 can hope.
 

It's kind of funny since OracleVM *is* Xen, and it's counted as
hardware partitioning :)

-- Pasi

 On the Linux side I would like to see how KSM (kernel memory merge)
 stacks up against memory compression on the Power7 side. Not sure if
 this made it into RHEL6, but hope springs eternal...
 
 Storage management is always a big issue for me.  AIX has some really
 great tools for managing disks. In Linux the LUN, block and fs layer
 are still relatively decoupled which gives an enormous amount of
 flexibility but certain types of changes require multiple commands on
 Linux.
 
 On the desktop side I've been running RHEL6 as my primary environment
 since release. Transition was easy. My old kickstart files needed
 tweaking, but so far it's been a breeze.
 ___
 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] Centos 6 - What are you looking forward to?

2011-03-06 Thread Nico Kadel-Garcia
On Sun, Mar 6, 2011 at 8:50 AM, Pasi Kärkkäinen pa...@iki.fi wrote:
 On Fri, Mar 04, 2011 at 03:33:10PM -0500, Kwan Lowe wrote:
 On Fri, Mar 4, 2011 at 3:11 PM, John R Pierce pie...@hogranch.com wrote:

  IBM Power servers since the Power4+ CPU (they are up to Power7 now) have
  hardware partitioning support, commonly known as LPAR.  LPAR can be
  divided in units of 1/10th of a CPU.   The software to manage this is
  now called PowerVM (its been called other names in the past, not all
  polite).
 [informative text snipped]

 Yes, it is some nice stuff...

 In particular, having the hardware partitioning capability plays nice
 with Oracle licensing. Under KVM or Xen we still have to license the
 entire system.  This probably won't change with the newer kvm, but one
 can hope.


 It's kind of funny since OracleVM *is* Xen, and it's counted as
 hardware partitioning :)

 -- Pasi

 On the Linux side I would like to see how KSM (kernel memory merge)
 stacks up against memory compression on the Power7 side. Not sure if
 this made it into RHEL6, but hope springs eternal...

 Storage management is always a big issue for me.  AIX has some really
 great tools for managing disks. In Linux the LUN, block and fs layer
 are still relatively decoupled which gives an enormous amount of
 flexibility but certain types of changes require multiple commands on
 Linux.

 On the desktop side I've been running RHEL6 as my primary environment
 since release. Transition was easy. My old kickstart files needed
 tweaking, but so far it's been a breeze.

What did you hve to tweak? I noticed the new use of the '%end' flag to
mark the end of a section, and the new partitioning structure which
names the LVM based volumes and groups things which contain the
hostname. (This is a big deal if you have multiple virtual hosts on a
machihe and want to compare their internal LVM's side by side from the
virtualization server.)
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-06 Thread Mag Gam
We are a data shop.

nfs v4 support
native XFS support
ext4

Hopefully by 6.4 they will have native brtfs :-)


On Sun, Mar 6, 2011 at 9:38 AM, Nico Kadel-Garcia nka...@gmail.com wrote:
 On Sun, Mar 6, 2011 at 8:50 AM, Pasi Kärkkäinen pa...@iki.fi wrote:
 On Fri, Mar 04, 2011 at 03:33:10PM -0500, Kwan Lowe wrote:
 On Fri, Mar 4, 2011 at 3:11 PM, John R Pierce pie...@hogranch.com wrote:

  IBM Power servers since the Power4+ CPU (they are up to Power7 now) have
  hardware partitioning support, commonly known as LPAR.  LPAR can be
  divided in units of 1/10th of a CPU.   The software to manage this is
  now called PowerVM (its been called other names in the past, not all
  polite).
 [informative text snipped]

 Yes, it is some nice stuff...

 In particular, having the hardware partitioning capability plays nice
 with Oracle licensing. Under KVM or Xen we still have to license the
 entire system.  This probably won't change with the newer kvm, but one
 can hope.


 It's kind of funny since OracleVM *is* Xen, and it's counted as
 hardware partitioning :)

 -- Pasi

 On the Linux side I would like to see how KSM (kernel memory merge)
 stacks up against memory compression on the Power7 side. Not sure if
 this made it into RHEL6, but hope springs eternal...

 Storage management is always a big issue for me.  AIX has some really
 great tools for managing disks. In Linux the LUN, block and fs layer
 are still relatively decoupled which gives an enormous amount of
 flexibility but certain types of changes require multiple commands on
 Linux.

 On the desktop side I've been running RHEL6 as my primary environment
 since release. Transition was easy. My old kickstart files needed
 tweaking, but so far it's been a breeze.

 What did you hve to tweak? I noticed the new use of the '%end' flag to
 mark the end of a section, and the new partitioning structure which
 names the LVM based volumes and groups things which contain the
 hostname. (This is a big deal if you have multiple virtual hosts on a
 machihe and want to compare their internal LVM's side by side from the
 virtualization server.)
 ___
 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] Centos 6 - What are you looking forward to?

2011-03-06 Thread John R Pierce
On 03/06/11 5:50 AM, Pasi Kärkkäinen wrote:
 It's kind of funny since OracleVM*is*  Xen, and it's counted as
 hardware partitioning :)

OracleVM(tm) is a brand name now, being used for anything that remotely 
resembles virtualization, from Xen to Solaris Zones to hardware 
partitioning on the M series of big Sparc64 boxes.

:-/



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


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-06 Thread Peter A
On Sunday, March 06, 2011 05:28:13 pm John R Pierce wrote:
 On 03/06/11 5:50 AM, Pasi Kärkkäinen wrote:
  It's kind of funny since OracleVM*is*  Xen, and it's counted as
  hardware partitioning :)
 
 OracleVM(tm) is a brand name now, being used for anything that remotely
 resembles virtualization, from Xen to Solaris Zones to hardware
 partitioning on the M series of big Sparc64 boxes.
 
 :-/

Aehm, OracleVM for Sparc is the Sun LDom (Logical Domains) software and does 
not work on anything but T servers. M servers use Dynamic Domains, a 
completely different technology. Containers/Zones or Dynamic Domains don't 
have a OracleVM name... 

Either way, Oracle counts Oracle VM (for x86/x64) as a hard partitioning 
technology when you use cpu affinity 
(http://www.oracle.com/technetwork/topics/virtualization/ovm-
hardpart-167739.pdf)... Its just another case where Oracle is favoring their 
own products with licensing. 

Peter.

-- 
Censorship: noun, circa 1591. a: Relief of the burden of independent thinking.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-04 Thread Johnny Hughes
On 03/03/2011 11:44 PM, Jimmy Bradley wrote:
 I do have one question about Cent OS 6.
 Sonetimes back, I remember reading that the plan was to spread the iso's
 over multiple cd's, rather than put it all on 1 dvd. Is that still the
 plan? As far as when it's released, I say take all the time you need.
 I'd rather have an os that works, than something that's just thrown
 together, and is about as stable as windows me, or vista.
 

That will depend upon how upstream wrote the item that splits the RPMs.
 The distros are getting so big now that it might not make sense to
continue to create CDs ... CentOS 5.6 will have at least 8 (and maybe 9)
CDs for x86_64.  I would expect that number to grow for CentOS 6.  In
fact, we already had to split 5.5 x86_64 over 2 DVDs, and both arches
for CentOS 6 will likely be 2 DVDs.




signature.asc
Description: OpenPGP digital signature
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-04 Thread Nico Kadel-Garcia
On Fri, Mar 4, 2011 at 6:33 AM, Johnny Hughes joh...@centos.org wrote:
 On 03/03/2011 11:44 PM, Jimmy Bradley wrote:
     I do have one question about Cent OS 6.
 Sonetimes back, I remember reading that the plan was to spread the iso's
 over multiple cd's, rather than put it all on 1 dvd. Is that still the
 plan? As far as when it's released, I say take all the time you need.
 I'd rather have an os that works, than something that's just thrown
 together, and is about as stable as windows me, or vista.


 That will depend upon how upstream wrote the item that splits the RPMs.
  The distros are getting so big now that it might not make sense to
 continue to create CDs ... CentOS 5.6 will have at least 8 (and maybe 9)
 CDs for x86_64.  I would expect that number to grow for CentOS 6.  In
 fact, we already had to split 5.5 x86_64 over 2 DVDs, and both arches
 for CentOS 6 will likely be 2 DVDs.

And even the DVD's are hitting limits. The current RHEL 6 Server DVD
does not contain python-docutils or audiofile-devel, they're part of a
separate optional channel. (This just drove me insane trying to
recompile nx and neatx, I was *very* surprised they weren't part of
the basic channel.)

CentOS doesn't maintain all these distinct channels they can just
leave off of the installation media, so may face a size burden trying
to get all those nominally other channel components onto one DVD,
especially that optional channel.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-04 Thread John Hodrien
On Fri, 4 Mar 2011, Nico Kadel-Garcia wrote:

 Contemporary versions of git, subversion, and OpenSSH built-in. I'm
 particularly looking forward to the built-in chroot capabilities and
 GSSAPI support in OpenSSH, and the major release improvements to git
 and subversion.

What does the new GSSAPI support do for you?

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


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-04 Thread Greg Bailey
Nico Kadel-Garcia wrote:
 On Thu, Mar 3, 2011 at 10:11 AM, Digimer li...@alteeve.com wrote:
   
 How about the rest of you? What are you looking forward to in CentOS 6
 when it is released?
 

 Contemporary versions of git, subversion, and OpenSSH built-in. I'm
 particularly looking forward to the built-in chroot capabilities and
 GSSAPI support in OpenSSH, and the major release improvements to git
 and subversion.

   


Minor point, but RHEL 5.6 finally bumped subversion to 1.6.X, so at 
least we'll see that in CentOS 5.6 too.

-Greg

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


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-04 Thread Les Mikesell
On 3/4/11 5:33 AM, Johnny Hughes wrote:
 On 03/03/2011 11:44 PM, Jimmy Bradley wrote:
  I do have one question about Cent OS 6.
 Sonetimes back, I remember reading that the plan was to spread the iso's
 over multiple cd's, rather than put it all on 1 dvd. Is that still the
 plan? As far as when it's released, I say take all the time you need.
 I'd rather have an os that works, than something that's just thrown
 together, and is about as stable as windows me, or vista.


 That will depend upon how upstream wrote the item that splits the RPMs.
   The distros are getting so big now that it might not make sense to
 continue to create CDs ... CentOS 5.6 will have at least 8 (and maybe 9)
 CDs for x86_64.  I would expect that number to grow for CentOS 6.  In
 fact, we already had to split 5.5 x86_64 over 2 DVDs, and both arches
 for CentOS 6 will likely be 2 DVDs.

I always liked the way you could NFS-install from a directory containing the 
downloaded CD iso images but I could never get that to work with a dvd iso.  Is 
there an equally easy way to install from a DVD image on a box without a DVD 
drive?

-- 
Les Mikesell
  lesmikes...@gmail.com
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-04 Thread Rajagopal Swaminathan
Greetings,

On 3/4/11, Les Mikesell lesmikes...@gmail.com wrote:

 I always liked the way you could NFS-install from a directory containing the
 downloaded CD iso images but I could never get that to work with a dvd iso.
 Is
 there an equally easy way to install from a DVD image on a box without a DVD
 drive?



dunno if mount -o loopback DVD.ISOPath and the point shared over nfs works.

Regards,

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


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-04 Thread Simon Matter
 On 3/4/11 5:33 AM, Johnny Hughes wrote:
 On 03/03/2011 11:44 PM, Jimmy Bradley wrote:
  I do have one question about Cent OS 6.
 Sonetimes back, I remember reading that the plan was to spread the
 iso's
 over multiple cd's, rather than put it all on 1 dvd. Is that still the
 plan? As far as when it's released, I say take all the time you need.
 I'd rather have an os that works, than something that's just thrown
 together, and is about as stable as windows me, or vista.


 That will depend upon how upstream wrote the item that splits the RPMs.
   The distros are getting so big now that it might not make sense to
 continue to create CDs ... CentOS 5.6 will have at least 8 (and maybe 9)
 CDs for x86_64.  I would expect that number to grow for CentOS 6.  In
 fact, we already had to split 5.5 x86_64 over 2 DVDs, and both arches
 for CentOS 6 will likely be 2 DVDs.

 I always liked the way you could NFS-install from a directory containing
 the
 downloaded CD iso images but I could never get that to work with a dvd
 iso.  Is
 there an equally easy way to install from a DVD image on a box without a
 DVD drive?

Yes, it's still possible, but needs a little bit more work. In the
directory where the DVD ISO is, you have to create a directory called
images and put the install.img file from the ISO there:

[someone@ftp x86_64]$ ll -R
.:
total 3953768
drwxr-xr-x 2 root root   4096 Nov 12 15:25 images
-rw-r--r-- 1 root root210 Nov 12 12:31 MD5SUMS
-rw-r--r-- 1 root root  232761344 Oct 26 03:16
rhel-server-6.0-x86_64-boot.iso
-rw-r--r-- 1 root root 3431618560 Oct 26 19:09 rhel-server-6.0-x86_64-dvd.iso
-rw-r--r-- 1 root root  380297216 Nov  4 21:48
rhel-server-supplementary-6.0-x86_64-dvd.iso

./images:
total 119780
-r--r--r-- 1 root root 122527744 Sep 23 00:04 install.img

Regards,
Simon

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


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-04 Thread fred smith
On Fri, Mar 04, 2011 at 05:33:20AM -0600, Johnny Hughes wrote:
 On 03/03/2011 11:44 PM, Jimmy Bradley wrote:
  I do have one question about Cent OS 6.
  Sonetimes back, I remember reading that the plan was to spread the iso's
  over multiple cd's, rather than put it all on 1 dvd. Is that still the
  plan? As far as when it's released, I say take all the time you need.
  I'd rather have an os that works, than something that's just thrown
  together, and is about as stable as windows me, or vista.
  
 
 That will depend upon how upstream wrote the item that splits the RPMs.
  The distros are getting so big now that it might not make sense to
 continue to create CDs ... CentOS 5.6 will have at least 8 (and maybe 9)
 CDs for x86_64.  I would expect that number to grow for CentOS 6.  In
 fact, we already had to split 5.5 x86_64 over 2 DVDs, and both arches
 for CentOS 6 will likely be 2 DVDs.

How reasonable would it be to offer DVD images that fit on DL media? I
know I don't own any DL media, and probably most others don't either,
but I at least do have DL-capable optical drives. If a good enough
reason came up, e.g., my favorite distro making DL isos available, I'd
probably go buy some.


-- 
 Fred Smith -- fre...@fcshome.stoneham.ma.us -
   For the word of God is living and active. Sharper than any double-edged 
   sword, it penetrates even to dividing soul and spirit, joints and marrow; 
  it judges the thoughts and attitudes of the heart.  
 Hebrews 4:12 (niv) --
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-04 Thread Kenneth Porter
--On Thursday, March 03, 2011 10:11 AM -0500 Digimer li...@alteeve.com 
wrote:

 How about the rest of you? What are you looking forward to in CentOS 6
 when it is released?

A new Ruby so I can deploy a Diaspora pod for my friends, allowing them 
to escape Facebook. (I tried building Ruby from Rawhide but the 
dependencies soon went deep, too deep for a simple, isolated update.)


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


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-04 Thread aurfalien
On Mar 4, 2011, at 11:07 AM, Kenneth Porter wrote:

 --On Thursday, March 03, 2011 10:11 AM -0500 Digimer li...@alteeve.com 
 
 wrote:

 How about the rest of you? What are you looking forward to in  
 CentOS 6
 when it is released?

 A new Ruby

+1

Having issues installing Earth;

http://open.rsp.com.au/projects/earth

- aurf

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


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-04 Thread Stephen Harris
On Fri, Mar 04, 2011 at 11:12:45AM -0800, aurfal...@gmail.com wrote:
 Having issues installing Earth;

/earth is 98% full ... please delete anyone you can.
   -- fortune file

-- 

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


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-04 Thread Kwan Lowe
On Thu, Mar 3, 2011 at 10:11 AM, Digimer li...@alteeve.com wrote:

 Personally, I'm really looking forward to Cluster 3 support. It will be
 fun to see how Pacemaker compares to rgmanager.

 How about the rest of you? What are you looking forward to in CentOS 6
 when it is released?

I'm looking forward to the new cgroups and KVM.  This will give it
some capabilities similar to AIX virtual partitions which can divvy up
CPUs at a fine resolution.

Also, the new multipath configuration tools will make my life easier.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-04 Thread m . roth
Kwan Lowe wrote:
 On Thu, Mar 3, 2011 at 10:11 AM, Digimer li...@alteeve.com wrote:

 Personally, I'm really looking forward to Cluster 3 support. It will be
 fun to see how Pacemaker compares to rgmanager.

 How about the rest of you? What are you looking forward to in CentOS 6
 when it is released?

 I'm looking forward to the new cgroups and KVM.  This will give it
 some capabilities similar to AIX virtual partitions which can divvy up
 CPUs at a fine resolution.

Really? So IBM ported VM into native AIX? I missed that.

 mark

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


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-04 Thread John R Pierce
On 03/04/11 11:59 AM, m.r...@5-cent.us wrote:
 I'm looking forward to the new cgroups and KVM.  This will give it
   some capabilities similar to AIX virtual partitions which can divvy up
   CPUs at a fine resolution.
 Really? So IBM ported VM into native AIX? I missed that.

IBM Power servers since the Power4+ CPU (they are up to Power7 now) have 
hardware partitioning support, commonly known as LPAR.  LPAR can be 
divided in units of 1/10th of a CPU.   The software to manage this is 
now called PowerVM (its been called other names in the past, not all 
polite).

In addition, AIX 6.1 and newer have Workload Partitions (WPAR), which 
are similar to Solaris Zones, these allow subdividing an AIX install 
into an arbitrary number of apparently different systems that all share 
the same kernel.

LPAR plus VIOS (Virtual IO System, actually a stripped down 
preconfigured AIX system) corresponds to the Xen model, however the base 
hypervisor capability is built right into the CPU and IO hardware, VIOS 
just provides management and optional virtualized IO.  You can assign IO 
adapters directly to partitions, whereupon the partitions (VMs) run even 
if VIOS is shut down.  The newer Power6 and 7 servers have Ethernet 
adapters that provide each LPAR with its own hardware-virtualized 
ethernet adapter so you don't need a cage full of cards, or run all the 
networking through VIOS.


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


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-04 Thread aurfalien
On Mar 4, 2011, at 12:11 PM, John R Pierce wrote:

 IBM Power servers since the Power4+ CPU (they are up to Power7 now)  
 have
 hardware partitioning support, commonly known as LPAR.  LPAR can be
 divided in units of 1/10th of a CPU.   The software to manage this is
 now called PowerVM (its been called other names in the past, not all
 polite).

 In addition, AIX 6.1 and newer have Workload Partitions (WPAR), which
 are similar to Solaris Zones, these allow subdividing an AIX install
 into an arbitrary number of apparently different systems that all  
 share
 the same kernel.

 LPAR plus VIOS (Virtual IO System, actually a stripped down
 preconfigured AIX system) corresponds to the Xen model, however the  
 base
 hypervisor capability is built right into the CPU and IO hardware,  
 VIOS
 just provides management and optional virtualized IO.  You can  
 assign IO
 adapters directly to partitions, whereupon the partitions (VMs) run  
 even
 if VIOS is shut down.  The newer Power6 and 7 servers have Ethernet
 adapters that provide each LPAR with its own hardware-virtualized
 ethernet adapter so you don't need a cage full of cards, or run all  
 the
 networking through VIOS.



Wow, thats awesome, thanks for the John.

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


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-04 Thread m . roth
John R Pierce wrote:
 On 03/04/11 11:59 AM, m.r...@5-cent.us wrote:
 I'm looking forward to the new cgroups and KVM.  This will give it
   some capabilities similar to AIX virtual partitions which can divvy
  up  CPUs at a fine resolution.
 Really? So IBM ported VM into native AIX? I missed that.

 IBM Power servers since the Power4+ CPU (they are up to Power7 now) have
 hardware partitioning support, commonly known as LPAR.  LPAR can be
 divided in units of 1/10th of a CPU.   The software to manage this is
 now called PowerVM (its been called other names in the past, not all
 polite).
snip
Neat! Thanks - around '06 I was working as a developer on a big AIX
system, but never administered one.

 mark (who worked under VM on a mainframe, years back)

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


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-04 Thread Kwan Lowe
On Fri, Mar 4, 2011 at 3:11 PM, John R Pierce pie...@hogranch.com wrote:

 IBM Power servers since the Power4+ CPU (they are up to Power7 now) have
 hardware partitioning support, commonly known as LPAR.  LPAR can be
 divided in units of 1/10th of a CPU.   The software to manage this is
 now called PowerVM (its been called other names in the past, not all
 polite).
[informative text snipped]

Yes, it is some nice stuff...

In particular, having the hardware partitioning capability plays nice
with Oracle licensing. Under KVM or Xen we still have to license the
entire system.  This probably won't change with the newer kvm, but one
can hope.

On the Linux side I would like to see how KSM (kernel memory merge)
stacks up against memory compression on the Power7 side. Not sure if
this made it into RHEL6, but hope springs eternal...

Storage management is always a big issue for me.  AIX has some really
great tools for managing disks. In Linux the LUN, block and fs layer
are still relatively decoupled which gives an enormous amount of
flexibility but certain types of changes require multiple commands on
Linux.

On the desktop side I've been running RHEL6 as my primary environment
since release. Transition was easy. My old kickstart files needed
tweaking, but so far it's been a breeze.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-04 Thread Nico Kadel-Garcia
On Fri, Mar 4, 2011 at 7:57 AM, John Hodrien j.h.hodr...@leeds.ac.uk wrote:
 On Fri, 4 Mar 2011, Nico Kadel-Garcia wrote:

 Contemporary versions of git, subversion, and OpenSSH built-in. I'm
 particularly looking forward to the built-in chroot capabilities and
 GSSAPI support in OpenSSH, and the major release improvements to git
 and subversion.

 What does the new GSSAPI support do for you?

Single sign-on. Your Windows clients, in the right environment, can
have their Kerberos tickets managed to allow Kerberos tickets, not
authorized_keys, to be used very effectively and reduce typing
!@#$!@#$ passwords or manipulating SSH keys. The development version
of Putty also has this built right in, though it's not made it to the
production version yet.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-04 Thread aurfalien

On Mar 4, 2011, at 11:07 AM, Kenneth Porter wrote:

 --On Thursday, March 03, 2011 10:11 AM -0500 Digimer li...@alteeve.com 
 
 wrote:

 How about the rest of you? What are you looking forward to in  
 CentOS 6
 when it is released?

 A new Ruby

I just realized that the earth link I ref'd is dead.

Here is the new link in the event any one was wondering.

https://github.com/bdeluca/earth2

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


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-03 Thread Digimer
On 03/03/2011 10:01 AM, David Sommerseth wrote:
  I know and understand that there is a lot of work behind CentOS.  But the
 developers are not gods who can do whatever they like just because of their
 position.

bites tongue, thread-jacks

Personally, I'm really looking forward to Cluster 3 support. It will be
fun to see how Pacemaker compares to rgmanager.

How about the rest of you? What are you looking forward to in CentOS 6
when it is released?

-- 
Digimer
E-Mail: digi...@alteeve.com
AN!Whitepapers: http://alteeve.com
Node Assassin:  http://nodeassassin.org
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-03 Thread aurfalien
On Mar 3, 2011, at 7:11 AM, Digimer wrote:

 How about the rest of you? What are you looking forward to in CentOS 6
 when it is released?

XFS support on boot partitions.
PVOPS kernel so I can get better VGA/USB passthrough with Xen.
Newer KDE.
Newer MonoDevelop package (boy was this a nightmare to install on  
previous versions).
Mebbe even messing with EXT4.
Newer DHCP so I can get better failover.

I'm sure more things will come up.

I did dl RHEL 6 but my eval expired so I'm getting SL 6 to better prep  
myself for Centos 6 rel.

Got a few servers to roll out needing some features above.

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


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-03 Thread aurfalien
 How about the rest of you? What are you looking forward to in CentOS 6
 when it is released?

Forgot to mention newer LDAP for better failover.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-03 Thread John R. Dennison
On Thu, Mar 03, 2011 at 10:11:52AM -0500, Digimer wrote:
 
 How about the rest of you? What are you looking forward to in CentOS 6
 when it is released?

The whiners stop whining is what I'm most looking forward to.




John

-- 
TURKEY, n. A large bird whose flesh when eaten on certain religious
anniversaries has the peculiar property of attesting piety and gratitude.
Incidentally, it is pretty good eating.

-- Ambrose Bierce, The Devil's Dictionary


pgpP79cMqt3Bl.pgp
Description: PGP signature
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-03 Thread Lamar Owen
On Thursday, March 03, 2011 03:55:48 pm John R. Dennison wrote:
 On Thu, Mar 03, 2011 at 10:11:52AM -0500, Digimer wrote:
  
  How about the rest of you? What are you looking forward to in CentOS 6
  when it is released?
 
   The whiners stop whining is what I'm most looking forward to.
+10^googolplex
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-03 Thread Rudi Ahlers
On Thu, Mar 3, 2011 at 10:55 PM, John R. Dennison j...@gerdesas.com wrote:
 On Thu, Mar 03, 2011 at 10:11:52AM -0500, Digimer wrote:

 How about the rest of you? What are you looking forward to in CentOS 6
 when it is released?

        The whiners stop whining is what I'm most looking forward to.




                                                        John

 --


Yea, I agree with you on that one.

Guys, please stop complaining. The CentOS dev team has done an awesome
job so far. Stop complaining and enjoy what they do for us.



-- 
Kind Regards
Rudi Ahlers
SoftDux

Website: http://www.SoftDux.com
Technical Blog: http://Blog.SoftDux.com
Office: 087 805 9573
Cell: 082 554 7532
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-03 Thread Ian Murray

--- On Thu, 3/3/11, John R. Dennison j...@gerdesas.com wrote:

 From: John R. Dennison j...@gerdesas.com
 Subject: Re: [CentOS] Centos 6 - What are you looking forward to?
 To: Digimer li...@alteeve.com
 Cc: CentOS mailing list centos@centos.org, David Sommerseth 
 d...@users.sourceforge.net
 Date: Thursday, 3 March, 2011, 20:55
 On Thu, Mar 03, 2011 at 10:11:52AM
 -0500, Digimer wrote:
  
  How about the rest of you? What are you looking
 forward to in CentOS 6
  when it is released?
 
     The whiners stop whining is what I'm
 most looking forward to.
 
 
 
The sycophants stopping whining about the whiners is what I am looking forward 
to.


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


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-03 Thread Nico Kadel-Garcia
On Thu, Mar 3, 2011 at 10:11 AM, Digimer li...@alteeve.com wrote:
 On 03/03/2011 10:01 AM, David Sommerseth wrote:
  I know and understand that there is a lot of work behind CentOS.  But the
 developers are not gods who can do whatever they like just because of their
 position.

 bites tongue, thread-jacks

 Personally, I'm really looking forward to Cluster 3 support. It will be
 fun to see how Pacemaker compares to rgmanager.

 How about the rest of you? What are you looking forward to in CentOS 6
 when it is released?

Contemporary versions of git, subversion, and OpenSSH built-in. I'm
particularly looking forward to the built-in chroot capabilities and
GSSAPI support in OpenSSH, and the major release improvements to git
and subversion.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 6 - What are you looking forward to?

2011-03-03 Thread Jimmy Bradley
I do have one question about Cent OS 6.
Sonetimes back, I remember reading that the plan was to spread the iso's
over multiple cd's, rather than put it all on 1 dvd. Is that still the
plan? As far as when it's released, I say take all the time you need.
I'd rather have an os that works, than something that's just thrown
together, and is about as stable as windows me, or vista.

Thanks

Jim

On Thu, 2011-03-03 at 10:44 -0800, aurfal...@gmail.com wrote:
 On Mar 3, 2011, at 7:11 AM, Digimer wrote:
 
  How about the rest of you? What are you looking forward to in CentOS 6
  when it is released?
 
 XFS support on boot partitions.
 PVOPS kernel so I can get better VGA/USB passthrough with Xen.
 Newer KDE.
 Newer MonoDevelop package (boy was this a nightmare to install on  
 previous versions).
 Mebbe even messing with EXT4.
 Newer DHCP so I can get better failover.
 
 I'm sure more things will come up.
 
 I did dl RHEL 6 but my eval expired so I'm getting SL 6 to better prep  
 myself for Centos 6 rel.
 
 Got a few servers to roll out needing some features above.
 
 - aurf
 ___
 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