Re: [CentOS] nouveau driver one centos 6

2011-07-22 Thread Ross Walker
On Jul 21, 2011, at 8:08 AM, Jerry Geis  wrote:

> I "wish" to not load the or even install the nouveau driver by default.
> I want to use the NVIDIA binary driver.
> 
> I have tried a number of things:
> 
> 1) in my kickstart package section add the line:
> -xorg-x11-drv-nouveau
> 
> This did not work - it was still installed.
> 
> 2) use the nvidia installer and it asks to create a modprobe.conf file 
> to blacklist
> the driver. I said yes thats what I want. I verified the file being 
> present and rebooted.
> The driver is still loaded "lsmod | grep nou" still showed it present.
> 
> 3) I tried "rpm -e xorg-x11-drv-nouveau --nodeps". This seeming worked 
> however
> the files for nouveau were still present. find / | grep nouveau showed 
> driver files and more
> 
> So - anyone know how to get this off of my machine???
> I thought the "-" in the kickstart package section would work, but no.
> 
> Thanks so much for any thoughts.

Try removing it from initd config and run a mkinitd for the current kernel?

You may need to add the nvidia one to the initd config or maybe the vesa one so 
graphical boot works.

-Ross

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


Re: [CentOS] CentOS 6.0 chkconfig strange behavior

2011-07-22 Thread Jerry Moore

On Jul 22, 2011, at 12:10 PM, Devin Reade wrote:

> Again just guessing (my one test CentOS 6 system doesn't currently 
> have snmpd installed) have a look at not only the snmpd script but
> also the ones that should have been started between network and snmpd.
> It sounds like some dependencies are missing.
> 
> In particular, do your "other services" depend on $network, either
> directly or transitively?
> 
> You might also want to experiment with 'chkconfig XX reset'.
> 
> Devin

Hey Devin,

I'm feeling a little silly now and I swear I checked for this but you hit the 
nail on the head. Turns out I had pushed a service that was dependent on 
network further down the list so whenever I enabled snmpd in chkconfig it would 
re order network below the other dependent service. 

Thanks again for the help!

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


Re: [CentOS] ext4 in CentOS 5.6?

2011-07-22 Thread Alexander Dalloz
Am 23.07.2011 00:16, schrieb Matt:
>> And be careful to leave boot partition on ext3.
> 
> Why is that?  Also, does the 5.6 install dvd offer ext4 in the
> graphical install?  Last time I do not think I saw it.

grub shipping with 5.6 can not boot from ext4 formatted partitions.

http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5/html-single/5.6_Technical_Notes/index.html#Known_Issues-kernel

"As of Red Hat Enterprise Linux 5.6 the ext4 file system is fully
supported. However, provisioning ext4 file systems with the anaconda
installer is not supported, and ext4 file systems need to be provisioned
manually after the installation."

Alexander

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


Re: [CentOS] nouveau driver one centos 6

2011-07-22 Thread Ljubomir Ljubojevic
CS wrote:
> Hi, Jerry
> 
> Try appending 'rdblacklist=nouveau' to the kernel line in grub.conf (and 
> keep the blackist in modules.conf)
> 
> - install CentOS and reboot as usual
> - preempt booting at the grub menu and append 'rdblacklist=nouveau 3' to 
> the kernel line to disable nouveau and start up in init 3
> - install the Nvidia binary driver.  Optionally, do a yum upgrade, 
> reboot back to init 3 and build the driver on the latest kernel
> - edit grub.conf and remove the '3' and reboot again
> 
> Nouveau will now stop loading and use your nvidia driver
> 
> cheers,
> 
> - cal
> 

Please do not top post.

There is no need to compile nvidia binary drivery. There is nVidia 
driver rpm in ElRepo  repository.

-- 

Ljubomir Ljubojevic
(Love is in the Air)
PL Computers
Serbia, Europe

Google is the Mother, Google is the Father, and traceroute is your
trusty Spiderman...
StarOS, Mikrotik and CentOS/RHEL/Linux consultant
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] ext4 in CentOS 5.6?

2011-07-22 Thread Matt
> And be careful to leave boot partition on ext3.

Why is that?  Also, does the 5.6 install dvd offer ext4 in the
graphical install?  Last time I do not think I saw it.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] nouveau driver one centos 6

2011-07-22 Thread CS
Hi, Jerry

Try appending 'rdblacklist=nouveau' to the kernel line in grub.conf (and keep 
the blackist in modules.conf)

- install CentOS and reboot as usual
- preempt booting at the grub menu and append 'rdblacklist=nouveau 3' to the 
kernel line to disable nouveau and start up in init 3
- install the Nvidia binary driver.  Optionally, do a yum upgrade, reboot back 
to init 3 and build the driver on the latest kernel
- edit grub.conf and remove the '3' and reboot again

Nouveau will now stop loading and use your nvidia driver

cheers,

- cal

On 21/07/11 13:08, Jerry Geis wrote:
> I "wish" to not load the or even install the nouveau driver by default.
> I want to use the NVIDIA binary driver.
> 
> I have tried a number of things:
> 
> 1) in my kickstart package section add the line:
> -xorg-x11-drv-nouveau
> 
> This did not work - it was still installed.
> 
> 2) use the nvidia installer and it asks to create a modprobe.conf file
> to blacklist
> the driver. I said yes thats what I want. I verified the file being
> present and rebooted.
> The driver is still loaded "lsmod | grep nou" still showed it present.
> 
> 3) I tried "rpm -e xorg-x11-drv-nouveau --nodeps". This seeming worked
> however
> the files for nouveau were still present. find / | grep nouveau showed
> driver files and more
> 
> So - anyone know how to get this off of my machine???
> I thought the "-" in the kickstart package section would work, but no.
> 
> Thanks so much for any thoughts.
> 
> jerry

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


Re: [CentOS] CentOS 6.0 chkconfig strange behavior

2011-07-22 Thread Cal Webster
On Fri, 2011-07-22 at 12:47 -0700, Jerry Moore wrote:
> 
> On Jul 22, 2011, at 12:17 PM, Cal Webster wrote:
> > System V init has been replaced by "upstart"
> > 
> > Upstream Deployment Guide:
> > http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/6/html/Technical_Notes/deployment.html
> > 
> > Fedora Wiki:
> > http://fedoraproject.org/wiki/Features/Upstart
> > 
> > Run levels are depreciated:
> > http://en.wikipedia.org/wiki/Runlevel
> > http://en.wikipedia.org/wiki/Upstart
> > 
> > This change has been in the works for a few years:
> > http://lists.centos.org/pipermail/centos/2009-September/082817.html
> > 
> > Some articles from Google search [RHEL centos upstart]
> > http://www.linux.com/archive/articles/57213
> > http://searchenterpriselinux.techtarget.com/tip/RHEL-6-ditches-System-V-init-for-Upstart-What-Linux-admins-need-to-know
> > 
> 
> 
> Hey Cal,
> 
> 
> I knew I was missing something!
> 
> 
> Thanks for the assist guys!

Hold onto your hat Jerry... 

Upstart has already been replace by systemd in Fedora 15 and most other
major distros are planning to use it too. RHEL 7 will most likely switch
to systemd if it stays in Fedora. If it does everything planned you may
even see it in a 6.x point release. This after only about a year in
distribution.


An overview on Wikipedia:
http://en.wikipedia.org/wiki/Systemd

A year-old article summarizing blog posts by authors of upstart and
systemd
http://www.h-online.com/open/news/item/Systemd-presented-as-SysV-Init-and-Upstart-alternative-991875.html

A year-old (30 Apr 2010) Lennart Poettering (systemd author) blog post
announcing systemd with detail about systemd:
http://0pointer.de/blog/projects/systemd.html

A recent (28 Apr 2011) blog post by Lennart Poettering attempting to
answer the question "Why systemd?". Includes a side-by-side comparison
of features between sysvinit, upstart, and systemd.
http://0pointer.de/blog/projects/why.html


A year-old (30 Apr 2010) blog post by Scott Remnant (upstart author)
with candid remarks about systemd.
http://netsplit.com/2010/04/30/on-systemd/



./Cal



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


Re: [CentOS] linux-3.0 packages for CentOS?

2011-07-22 Thread Morten P.D. Stevens
On Fri, 22 Jul 2011 11:33:11 -0700, Florin Andrei wrote:
> Anyone packaging the new kernel for RH / CentOS?

You need a new version of module-init-tools that is compatible with 
Linux 3.x series.
See: http://koji.fedoraproject.org/koji/buildinfo?buildID=245705

> - Fix handling of Linux 3.x series kernels

Therefore, Linux 3.0 will not work on CentOS 6.

Best regards,

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


Re: [CentOS] linux-3.0 packages for CentOS?

2011-07-22 Thread Giovanni Tirloni
On Fri, Jul 22, 2011 at 3:33 PM, Florin Andrei  wrote:
> Anyone packaging the new kernel for RH / CentOS?

http://wiki.centos.org/HowTos/Custom_Kernel

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


Re: [CentOS] CentOS 6.0 chkconfig strange behavior

2011-07-22 Thread Jerry Moore

On Jul 22, 2011, at 12:17 PM, Cal Webster wrote:
> System V init has been replaced by "upstart"
> 
> Upstream Deployment Guide:
> http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/6/html/Technical_Notes/deployment.html
> 
> Fedora Wiki:
> http://fedoraproject.org/wiki/Features/Upstart
> 
> Run levels are depreciated:
> http://en.wikipedia.org/wiki/Runlevel
> http://en.wikipedia.org/wiki/Upstart
> 
> This change has been in the works for a few years:
> http://lists.centos.org/pipermail/centos/2009-September/082817.html
> 
> Some articles from Google search [RHEL centos upstart]
> http://www.linux.com/archive/articles/57213
> http://searchenterpriselinux.techtarget.com/tip/RHEL-6-ditches-System-V-init-for-Upstart-What-Linux-admins-need-to-know

Hey Cal,

I knew I was missing something!

Thanks for the assist guys!

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


Re: [CentOS] CentOS 6.0 chkconfig strange behavior

2011-07-22 Thread Devin Reade
--On Friday, July 22, 2011 12:12:28 PM -0700 Jerry Moore 
wrote:
> Is it possible to sticky a service then to always start at the value
> chkconfig lists? Moving various services around like that isn't very
> helpful when I specifically need services to start is an exact order.
> 
> Or if I do remove the BEGIN/END INIT INFO block from the init scripts
> will that cause issues??  What's the solution in the SuSE world when
> someone wants a service to not get reordered??

I'm afraid I don't have the answers to those ones.  Although I
occasionally have need to deal with SuSE, the Linux distributions I 
use most of the time are RHEL/CentOS.  The most I can do is point
you at google, although knowing the SuSE relationship might help
you there.

My suspicion is that assuming that RHEL has indeed changed the 
mechanism we're in the "growing pains" transition period where
various rc scripts may need to be tweaked (especially custom ones).

Devin

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


Re: [CentOS] CentOS 6.0 chkconfig strange behavior

2011-07-22 Thread Cal Webster
On Fri, 2011-07-22 at 13:00 -0600, Devin Reade wrote:
> --On Friday, July 22, 2011 11:10:29 AM -0700 Jerry Moore 
> wrote:
> 
> > It appears that chkconfig is re sequencing or re ordering the start
> > priority of various services when turning on a service using chkconfig.
> [...]
> > The only solution I've found is to remove the entire BEGIN INIT INFO to
> > END INIT INFO section. Once that is removed it no longer changes the
> > network startup priority when enabling the snmpd service.
> 
> SuSE (and perhaps some other distributions) have for a few years
> been using that BEGIN/END INIT INFO block instead of the 'chkconfig'
> line to determine ordering, and will do exactly as you described.
> 
> Without having looked into the CentOS 6 case, I would guess that
> the mechanism used in RHEL has changed to match.  This could very
> well be related to the LSB project, although that's just a guess, too.

System V init has been replaced by "upstart"

Upstream Deployment Guide:
http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/6/html/Technical_Notes/deployment.html

Fedora Wiki:
http://fedoraproject.org/wiki/Features/Upstart

Run levels are depreciated:
http://en.wikipedia.org/wiki/Runlevel
http://en.wikipedia.org/wiki/Upstart

This change has been in the works for a few years:
http://lists.centos.org/pipermail/centos/2009-September/082817.html

Some articles from Google search [RHEL centos upstart]
http://www.linux.com/archive/articles/57213
http://searchenterpriselinux.techtarget.com/tip/RHEL-6-ditches-System-V-init-for-Upstart-What-Linux-admins-need-to-know




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


Re: [CentOS] CentOS 6.0 chkconfig strange behavior

2011-07-22 Thread Devin Reade
--On Friday, July 22, 2011 11:10:29 AM -0700 Jerry Moore 
wrote:

> It appears that chkconfig is re sequencing or re ordering the start
> priority of various services when turning on a service using chkconfig.
> Example is the network service. Under normal circumstances network is set
> to start at S10. However when I add something like snmpd and invoke
> chkconfig snmpd on it will change network to S81. Which fouls up some of
> my other services that look for config files on NFS shares.
> 
> Testing this issue with the snmpd service I removed $network from
> Required-Start which did nothing.

Again just guessing (my one test CentOS 6 system doesn't currently 
have snmpd installed) have a look at not only the snmpd script but
also the ones that should have been started between network and snmpd.
It sounds like some dependencies are missing.

In particular, do your "other services" depend on $network, either
directly or transitively?

You might also want to experiment with 'chkconfig XX reset'.

Devin

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


Re: [CentOS] CentOS 6.0 chkconfig strange behavior

2011-07-22 Thread Jerry Moore

On Jul 22, 2011, at 12:00 PM, Devin Reade wrote:
> 
> SuSE (and perhaps some other distributions) have for a few years
> been using that BEGIN/END INIT INFO block instead of the 'chkconfig'
> line to determine ordering, and will do exactly as you described.
> 
> Without having looked into the CentOS 6 case, I would guess that
> the mechanism used in RHEL has changed to match.  This could very
> well be related to the LSB project, although that's just a guess, too.
> 
> Devin

Hi Devin,

Is it possible to sticky a service then to always start at the value chkconfig 
lists? Moving various services around like that isn't very helpful when I 
specifically need services to start is an exact order.

Or if I do remove the BEGIN/END INIT INFO block from the init scripts will that 
cause issues??  What's the solution in the SuSE world when someone wants a 
service to not get reordered??

Thanks!

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


[CentOS] Strange problem with LVM, device-mapper, and software RAID...

2011-07-22 Thread Robert Heller
Running on a up-to-date CentOS 5.6 x86_64 machine:

[heller@ravel ~]$ uname -a
Linux ravel.60villagedrive 2.6.18-238.19.1.el5 #1 SMP Fri Jul 15 07:31:24 EDT 
2011 x86_64 x86_64 x86_64 GNU/Linux

with a TYAN Computer Corp S4881 motherboard, which has a nVidia 4
channel SATA controller.  It also has a Marvell Technology Group Ltd.
88SX7042 PCI-e 4-port SATA-II (rev 02).

This machine has a 120G SATA system disk on the motherboard controller
as the system disk:

[heller@ravel ~]$ sudo /sbin/fdisk -l /dev/sda

Disk /dev/sda: 120.0 GB, 120034123776 bytes
255 heads, 63 sectors/track, 14593 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot  Start End  Blocks   Id  System
/dev/sda1   1 125 1004031   83  Linux
/dev/sda2 126   14593   116214210   8e  Linux LVM

/dev/sda1 is /boot and /dev/sda2 is a LVM Volume group (named "RavelSystem")
with two logical volumes (named "root" and "swap"), containing the root
file system and a base 1G swap area.  So far so good.

On the Marvell controller are 4 1.5GB disks arranged as a RAID10 array:

[heller@ravel ~]$ cat /proc/mdstat
Personalities : [raid10] 
md1 : active raid10 sdg1[3] sdf1[2] sde1[1] sdd1[0]
  2930270208 blocks 512K chunks 2 far-copies [4/4] []
  
unused devices: 
[heller@ravel ~]$ sudo /sbin/mdadm --detail /dev/md1
/dev/md1:
Version : 0.90
  Creation Time : Tue Jun 21 19:04:19 2011
 Raid Level : raid10
 Array Size : 2930270208 (2794.52 GiB 3000.60 GB)
  Used Dev Size : 1465135616 (1397.26 GiB 1500.30 GB)
   Raid Devices : 4
  Total Devices : 4
Preferred Minor : 1
Persistence : Superblock is persistent

Update Time : Fri Jul 22 14:37:04 2011
  State : clean
 Active Devices : 4
Working Devices : 4
 Failed Devices : 0
  Spare Devices : 0

 Layout : far=2
 Chunk Size : 512K

   UUID : 7a257206:a2b7c9d9:c5d004ae:2bdf6faf
 Events : 0.578

Number   Major   Minor   RaidDevice State
   0   8   490  active sync   /dev/sdd1
   1   8   651  active sync   /dev/sde1
   2   8   812  active sync   /dev/sdf1
   3   8   973  active sync   /dev/sdg1

This RAID10 array has a second LVM Volume Group (named "RavelData2") on
it, also with two logical volumes (named "data" and "largeswap"), a
large data file system and a 16gig swap area.

We are getting a strange message from device mapper on boot up:

[heller@ravel ~]$ dmesg | grep device-mapper -A 5 -B 5
sdg: Write Protect is off
sdg: Mode Sense: 00 3a 00 00
SCSI device sdg: drive cache: write back
 sdg: sdg1
sd 7:0:0:0: Attached scsi disk sdg
device-mapper: uevent: version 1.0.3
device-mapper: ioctl: 4.11.5-ioctl (2007-12-12) initialised:
dm-de...@redhat.com
device-mapper: dm-raid45: initialized v0.2594l
kjournald starting.  Commit interval 5 seconds
EXT3-fs: mounted filesystem with ordered data mode.
SELinux:  Disabled at runtime.
SELinux:  Unregistering netfilter hooks
type=1404 audit(1311358429.773:2): selinux=0 auid=4294967295
ses=4294967295
--
md: bind
md: running: 
md: raid10 personality registered for level 10
raid10: raid set md1 active with 4 out of 4 devices
md: ... autorun DONE.
device-mapper: multipath: version 1.0.6 loaded
device-mapper: table: 253:6: linear: dm-linear: Device lookup failed
device-mapper: ioctl: error adding target to table
device-mapper: ioctl: device doesn't appear to be in the dev hash table.
EXT3 FS on dm-5, internal journal
kjournald starting.  Commit interval 5 seconds
EXT3 FS on sda1, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
kjournald starting.  Commit interval 180 seconds

'253:6' happens to be the large swap space:

[heller@ravel ~]$ dir -l /dev/mapper/
total 0
crw--- 1 root root  10, 63 Jul 22 14:13 control
brw-rw 1 root disk 253,  2 Jul 22 14:13 nvidia_biaabdaf
brw-rw 1 root disk 253,  3 Jul 22 14:13 nvidia_biaabdafp1
brw-rw 1 root disk 253,  0 Jul 22 14:13 nvidia_efjjfcad
brw-rw 1 root disk 253,  1 Jul 22 14:13 nvidia_efjjfcadp1
brw-rw 1 root disk 253,  7 Jul 22 14:13 RavelData2-data
brw-rw 1 root disk 253,  6 Jul 22 14:13 RavelData2-largeswap
brw-rw 1 root disk 253,  5 Jul 22 14:13 RavelSystem-root
brw-rw 1 root disk 253,  4 Jul 22 14:13 RavelSystem-swap

The weirdness is this:

1) the large swap space is not being activated automatically on boot. It
can be manually activated with the swapon command, and as a stopgap
measure, I've added a swapon command to rc.local

2) vgscan, vgchange, and vgdisplay are not seeing RavelData2, *even
though* the system has no problem mounting the data disk during boot
and swapon has no problem activating the largeswap swap area (at least
once the system is in full multi-user mode). And (appearently) the
device mapper is perfectly happy to do its thing (more or less) with
these logical volumes.

[heller@ravel ~]$ sudo /sbin/vgscan -v --ignorelocking

Re: [CentOS] CentOS 6.0 chkconfig strange behavior

2011-07-22 Thread Devin Reade
--On Friday, July 22, 2011 11:10:29 AM -0700 Jerry Moore 
wrote:

> It appears that chkconfig is re sequencing or re ordering the start
> priority of various services when turning on a service using chkconfig.
[...]
> The only solution I've found is to remove the entire BEGIN INIT INFO to
> END INIT INFO section. Once that is removed it no longer changes the
> network startup priority when enabling the snmpd service.

SuSE (and perhaps some other distributions) have for a few years
been using that BEGIN/END INIT INFO block instead of the 'chkconfig'
line to determine ordering, and will do exactly as you described.

Without having looked into the CentOS 6 case, I would guess that
the mechanism used in RHEL has changed to match.  This could very
well be related to the LSB project, although that's just a guess, too.

Devin

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


Re: [CentOS] package recommendation for video conferencing

2011-07-22 Thread Καλέμης Γιώργος
 You should try bigbluebutton or red5 with videowhisper.



 On Fri, 22 Jul 2011 08:02:57 -0500, Les Mikesell wrote:
> On 7/22/11 2:19 AM, Geoff Galitz wrote:
>> Hi.
>> We have a need for a video conferencing package with the following 
>> specs:
>> - cross platform client support (Linux, Mac, Win)
>> - server side runs on Centos 5 and later with easy package 
>> installation routine
>> (e.g. RPM)
>> - can host a teleconfernce with no users connected (IOW, it can wait 
>> for users
>> to connect at any time)
>> - supports mulitple users per video conference
>> Recommendations?
>
> Don't think this one has group video conferencing yet, but it might 
> be close:
> http://www.jitsi.org/
>
> --
>Les Mikesell
> lesmikes...@gmail.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.

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


Re: [CentOS] VLAN's

2011-07-22 Thread John R Pierce
On 07/22/11 11:29 AM, Les Mikesell wrote:
> You need this because you want to route based on the source address, not
> the destination.  That might be what the OP wants too, but it's not
> clear from the question and doesn't have anything to do with the
> interfaces being vlans.

well, I suspect he wants to route based on it being SIP traffic, which 
is typically 5060 or 5061 tcp or udp, so will have iptables NAT these to 
an IP on the subnet of the alternate VLAN, then he'd use that VLAN's 
address as the rule for the source-based routing.

this sort of thing really belongs on an iproute2/netfilter mail list, 
however, as its not at all centos specific.

-- 
john r pierceN 37, W 122
santa cruz ca mid-left coast

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


Re: [CentOS] centos6 not using /etc/gdm/custom.conf

2011-07-22 Thread m . roth
Tom H wrote:
> On Fri, Jul 22, 2011 at 1:11 PM, Lamar Owen  wrote:
>> On Friday, July 22, 2011 12:22:31 PM Gerhard Schneider wrote:
>>>
>>> Using gdm is getting harder and harder but you can try:

And in kde, menu->settings->system settings->advanced->login manager. I
haven't logged out yet to test it, but this looks like the answer.

   mark, likes gnome less than kde

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


[CentOS] linux-3.0 packages for CentOS?

2011-07-22 Thread Florin Andrei
Anyone packaging the new kernel for RH / CentOS?

-- 
Florin Andrei
http://florin.myip.org/
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] VLAN's

2011-07-22 Thread Les Mikesell
On 7/22/2011 1:17 PM, John R Pierce wrote:
>
>> I have a firewall running IPTABLES. I have tried to route sip traffic
>> from my WAN(eth3) interface to a VLAN(eth2.2) interface, however the
>> data will not route to the VLAN it keeps routing to the default
>> interface(eth2). Does anyone have an idea as to what I need to look for?
>>
>
> To route stuff out different interfaces, I found I had to use ip rules.
>
> In my case, I wanted specific local hosts (on the private LAN) to route
> out an alternate interface, so I did something like...
>
>
> iptables -t nat -A POSTROUTING -s 10.0.1.0/24 -j SNAT --to $net2.98
>
> ip rule add from $net2.96/28 table 2
> ip rule add from 10.0.1.0/24 table 2
>
> ip route add default via $net2.97 dev $port2 table 2
>
>
>
> to explain this, the LAN is 10.0.0.0/16.  hosts on 10.0.0.0-255 are to
> be routed out the default interface, while a few hosts specifically put
> on 10.0.1.98-110 are to be routed out this 2nd interface, $net2.96/28

You need this because you want to route based on the source address, not 
the destination.  That might be what the OP wants too, but it's not 
clear from the question and doesn't have anything to do with the 
interfaces being vlans.

-- 
   Les Mikesell
lesmikes...@gmail.com


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


Re: [CentOS] centos6 not using /etc/gdm/custom.conf

2011-07-22 Thread Lamar Owen
On Friday, July 22, 2011 02:10:22 PM Tom H wrote:
> You can use "sudo -u gdm gconftool-2
> /apps/gdm/simple-greeter/disable_user_list --set --type=boolean true"
> because the "gdm" user controls the login screen but the above works
> too because it makes that setting default for all users. You can also
> make it mandatory with "gconftool-2 --config-source
> xml:readwrite:/etc/gconf/gconf.xml.mandatory
> /apps/gdm/simple-greeter/disable_user_list --set --type=boolean true".

Thanks for the full syntax; even though this is one of the first things I do on 
all new installs (whether CentOS, Fedora, or even Ubuntu; anything using gdm), 
I always seem to have to look it up and Akemi's page is one of my bookmarks 
for that reason

Since my normal use machine runs KDE, and I use KDM on it, it's not something 
that I have to deal with on my own box
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] centos6 not using /etc/gdm/custom.conf

2011-07-22 Thread m . roth
Akemi Yagi wrote:
> On Thu, Jul 21, 2011 at 2:19 PM, Tom H  wrote:
>> On Thu, Jul 21, 2011 at 4:29 PM,   wrote:
>
 In later Fedora releases, GDM has become less and less functional:
 configurability has been removed, more so as releases occur. From my
 (known to be flaky) memory, that includes the ability to turn off the
 silly list that exposes usernames right on the login screen, the
 ability
>>>
>>> And that makes it inappropriate for US gov't work (violates official
>>> std), and actually anywhere that you have a concern about security.
>>
>> It's pretty weird that RH didn't change the GNOME upstream default of
>> exposing the usernames. I presume that RH doesn't care about the

> Alan Bartlett filed a bug report upstream and you can see their response:
>
> https://bugzilla.redhat.com/show_bug.cgi?id=666220

Wonder if it's worthwhile asking my boss to try to reopen the bug, given
that a) he's a federal employee, and b) does have authority for what runs
in this division

mark, speaking only for myself, not my employer nor the US
Federal gov't

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


Re: [CentOS] VLAN's

2011-07-22 Thread John R Pierce
On 07/22/11 6:49 AM, Jennifer Botten wrote:
>
> Hi,
>
> I have a firewall running IPTABLES. I have tried to route sip traffic 
> from my WAN(eth3) interface to a VLAN(eth2.2) interface, however the 
> data will not route to the VLAN it keeps routing to the default 
> interface(eth2). Does anyone have an idea as to what I need to look for?
>

To route stuff out different interfaces, I found I had to use ip rules.

In my case, I wanted specific local hosts (on the private LAN) to route 
out an alternate interface, so I did something like...


iptables -t nat -A POSTROUTING -s 10.0.1.0/24 -j SNAT --to $net2.98

ip rule add from $net2.96/28 table 2
ip rule add from 10.0.1.0/24 table 2

ip route add default via $net2.97 dev $port2 table 2



to explain this, the LAN is 10.0.0.0/16.  hosts on 10.0.0.0-255 are to 
be routed out the default interface, while a few hosts specifically put 
on 10.0.1.98-110 are to be routed out this 2nd interface, $net2.96/28

the two ip rule commands tag any traffic that is from either the second 
external circuit or the reserved subnet of the local network to use 
'table 2'.  the ip route command says anything thats table 2 is to use 
the second circuit's gateway and port

-- 
john r pierceN 37, W 122
santa cruz ca mid-left coast

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


[CentOS] CentOS 6.0 chkconfig strange behavior

2011-07-22 Thread Jerry Moore
Hi,

I'm noticing some strangeness with chkconfig on CentOS 6.0 and was looking for 
a bit of advice.

It appears that chkconfig is re sequencing or re ordering the start priority of 
various services when turning on a service using chkconfig.
Example is the network service. Under normal circumstances network is set to 
start at S10. However when I add something like snmpd and invoke chkconfig 
snmpd on it will change network to S81. Which fouls up some of my other 
services that look for config files on NFS shares.

Testing this issue with the snmpd service I removed $network from 
Required-Start which did nothing.

The only solution I've found is to remove the entire BEGIN INIT INFO to END 
INIT INFO section. Once that is removed it no longer changes the network 
startup priority when enabling the snmpd service.

Seems to me that you'd want network started before snmpd. So why chkconfig 
wants to re arrange it to start after snmpd which defaults to S50 is beyond me.

So why would it do that? Did I miss some documentation or something? :-)

Thanks in advance for any assistance!

--Jerry

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


Re: [CentOS] centos6 not using /etc/gdm/custom.conf

2011-07-22 Thread Tom H
On Fri, Jul 22, 2011 at 1:11 PM, Lamar Owen  wrote:
> On Friday, July 22, 2011 12:22:31 PM Gerhard Schneider wrote:
>>
>> Using gdm is getting harder and harder but you can try:
>>
>> gconftool-2 --direct \
>>   --config-source xml:readwrite:/etc/gconf/gconf.xml.defaults \
>>   --type bool --set /apps/gdm/simple-greeter/disable_user_list true
>>
>> There are many features available via gconftool-2 or gconf-editor only.
>
> Some are only available if you run them as the right user, as well.
> If I'm not mistaken, for gdm that would be the user 'gdm'.
> So you need to run that above as user gdm with su -c $command gdm
> or similar.

You can use "sudo -u gdm gconftool-2
/apps/gdm/simple-greeter/disable_user_list --set --type=boolean true"
because the "gdm" user controls the login screen but the above works
too because it makes that setting default for all users. You can also
make it mandatory with "gconftool-2 --config-source
xml:readwrite:/etc/gconf/gconf.xml.mandatory
/apps/gdm/simple-greeter/disable_user_list --set --type=boolean true".
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] centos6 not using /etc/gdm/custom.conf

2011-07-22 Thread Akemi Yagi
On Thu, Jul 21, 2011 at 2:19 PM, Tom H  wrote:
> On Thu, Jul 21, 2011 at 4:29 PM,   wrote:

>>> In later Fedora releases, GDM has become less and less functional:
>>> configurability has been removed, more so as releases occur. From my
>>> (known to be flaky) memory, that includes the ability to turn off the
>>> silly list that exposes usernames right on the login screen, the ability
>>
>> And that makes it inappropriate for US gov't work (violates official std),
>> and actually anywhere that you have a concern about security.
>
> It's pretty weird that RH didn't change the GNOME upstream default of
> exposing the usernames. I presume that RH doesn't care about the
> desktop enough in an enterprise setting. It's easy enough to change
> with a gconftool-2 invocation but "even" Apple allows its users to
> switch from a "click on an icon/name" login to a "type your name"
> login within the OS X GUI. The GNOME developers' choices are difficult
> to understand, IMHO.

Alan Bartlett filed a bug report upstream and you can see their response:

https://bugzilla.redhat.com/show_bug.cgi?id=666220

I put together a short instruction on how to change the default behavior:

http://blog.toracat.org/2011/01/gnome-login-shows-all-valid-user-accounts-disable-it/

... and Tom H kindly added his note. :-)

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


Re: [CentOS] kickstart ksdevice in centos6

2011-07-22 Thread Tom H
On Fri, Jul 22, 2011 at 10:57 AM, Jerry Geis  wrote:
>
> I have a line in my kickstart file (ksdevice)
>
> # Network information
> network --bootproto=dhcp --device=eth0 --onboot=on
> # Default network to boot
> ksdevice=eth0
> # Auto reboot (to being next install faze)
> reboot
>
> However its still poping up and asking me eth0 or eth1 for install?
> Has this operation changed?

"ksdevice=..." shouldn't be in the kickstart file but on the
installer's kernel line if you're cd-booting or on the append line if
you're pxe-booting.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] kickstart ksdevice in centos6

2011-07-22 Thread Les Mikesell
On 7/22/2011 12:15 PM, Paul Heinlein wrote:
> On Fri, 22 Jul 2011, Les Mikesell wrote:
>
>>> I use ksdevice= as a boot option (e.g., in the APPEND section of
>>> syslinux or pxelinux config).
>>
>> How do you know which device is going to be eth0 at that point?
>
> That's a great question. Sadly, my answer is somewhat idiosyncratic
> and less likely to be of use in larger environments.
>
> In our small-office environment, I rarely kickstart a new server until
> after I've booted it into a rescue environment. The initial boot
> allows me to inventory the MACs (for dhcp), adjust IPMI network
> settings, check for driver issues, and double-check to ensure that the
> hardware matches the order. (I've only had one case where a vendor
> shipped less RAM than we'd purchased, but I'm glad I identified the
> problem before I wrote any data to the hard drives.)

I use ocsinventory-ng for this, but it doesn't report until everything 
including the agent is installed and on the right network.

> It's during the MAC inventory that I identify eth0, eth1, ... I've
> never had a case where the order in the initial boot environment
> didn't match the kickstart environment.

I think nics that use the same driver or at least sets on the same card 
are detected in the same order.  Ours tend to have at least a pair of 
Broadcomm and one or more pairs of Intels and the pairs tend to flip 
randomly until they are nailed down with a HWADDR= entry in the 
ifcfg-eth? file which must rename them after kernel detection.

--
   Les Mikesell
lesmikes...@gmail.com


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


Re: [CentOS] kickstart ksdevice in centos6

2011-07-22 Thread Paul Heinlein
On Fri, 22 Jul 2011, Les Mikesell wrote:

>> I use ksdevice= as a boot option (e.g., in the APPEND section of 
>> syslinux or pxelinux config).
>
> How do you know which device is going to be eth0 at that point?

That's a great question. Sadly, my answer is somewhat idiosyncratic 
and less likely to be of use in larger environments.

In our small-office environment, I rarely kickstart a new server until 
after I've booted it into a rescue environment. The initial boot 
allows me to inventory the MACs (for dhcp), adjust IPMI network 
settings, check for driver issues, and double-check to ensure that the 
hardware matches the order. (I've only had one case where a vendor 
shipped less RAM than we'd purchased, but I'm glad I identified the 
problem before I wrote any data to the hard drives.)

It's during the MAC inventory that I identify eth0, eth1, ... I've 
never had a case where the order in the initial boot environment 
didn't match the kickstart environment.

-- 
Paul Heinlein <> heinl...@madboa.com <> http://www.madboa.com/
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] centos6 not using /etc/gdm/custom.conf

2011-07-22 Thread Lamar Owen
On Friday, July 22, 2011 12:22:31 PM Gerhard Schneider wrote:
> Using gdm is getting harder and harder but you can try:
> 
> gconftool-2 --direct \
>   --config-source xml:readwrite:/etc/gconf/gconf.xml.defaults \
>   --type bool --set /apps/gdm/simple-greeter/disable_user_list true
> 
> There are many features available via gconftool-2 or gconf-editor only.

Some are only available if you run them as the right user, as well.  If I'm not 
mistaken, for gdm that would be the user 'gdm'.  So you need to run that above 
as user gdm with su -c $command gdm or similar.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] centos6 not using /etc/gdm/custom.conf

2011-07-22 Thread Gerhard Schneider
> In later Fedora releases, GDM has become less and less functional:
> configurability has been removed, more so as releases occur. From my
> (known to be flaky) memory, that includes the ability to turn off the
> silly list that exposes usernames right on the login screen, the
> ability to assign your own wallpaper to the login screen, among other
> things.

Using gdm is getting harder and harder but you can try:

gconftool-2 --direct \
  --config-source xml:readwrite:/etc/gconf/gconf.xml.defaults \
  --type bool --set /apps/gdm/simple-greeter/disable_user_list true

There are many features available via gconftool-2 or gconf-editor only.

GS

-- 
Gerhard Schneider
Institute of Lightweight Design and e-Mail: g...@ilsb.tuwien.ac.at
Structural Biomechanics (E317) Tel.: +43 664 60 588 3171
Vienna University of Technology / Austria  Fax:+43 1 58801 31799
A-1040 Wien, Gusshausstrasse 27-29 http://www.ilsb.tuwien.ac.at/~gs/




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


Re: [CentOS] kickstart ksdevice in centos6

2011-07-22 Thread Les Mikesell
On 7/22/2011 11:04 AM, Paul Heinlein wrote:
> On Fri, 22 Jul 2011, Jerry Geis wrote:
>
>> I have a line in my kickstart file (ksdevice)
>>
>> # Network information
>> network --bootproto=dhcp --device=eth0 --onboot=on
>> # Default network to boot
>> ksdevice=eth0
>> # Auto reboot (to being next install faze)
>> reboot
>>
>> However its still poping up and asking me eth0 or eth1 for install?
>> Has this operation changed?
>
> I use ksdevice= as a boot option (e.g., in the APPEND section of
> syslinux or pxelinux config).

How do you know which device is going to be eth0 at that point?

-- 
  Les Mikesell
lesmikes...@gmail.com

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


Re: [CentOS] kickstart ksdevice in centos6

2011-07-22 Thread Paul Heinlein
On Fri, 22 Jul 2011, Jerry Geis wrote:

> I have a line in my kickstart file (ksdevice)
>
> # Network information
> network --bootproto=dhcp --device=eth0 --onboot=on
> # Default network to boot
> ksdevice=eth0
> # Auto reboot (to being next install faze)
> reboot
>
> However its still poping up and asking me eth0 or eth1 for install? 
> Has this operation changed?

I use ksdevice= as a boot option (e.g., in the APPEND section of 
syslinux or pxelinux config).

-- 
Paul Heinlein <> heinl...@madboa.com <> http://www.madboa.com/
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] package recommendation for video conferencing

2011-07-22 Thread Arun Khan
On Fri, Jul 22, 2011 at 7:35 PM, Patrick Lists
 wrote:
> On 07/22/2011 03:02 PM, Les Mikesell wrote:
> For a WebEx-like environment check out BigBlueButton (not easy to
> install though). Or use Gtalk which supports video and does not require
> you to host a server.

+1 Visit   for further help.
I used the VM for evaluation purposes.

-- 
Arun Khan
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing in e-mail?
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] CentOS-announce Digest, Vol 77, Issue 6

2011-07-22 Thread centos-announce-request
Send CentOS-announce mailing list submissions to
centos-annou...@centos.org

To subscribe or unsubscribe via the World Wide Web, visit
http://lists.centos.org/mailman/listinfo/centos-announce
or, via email, send a message with subject or body 'help' to
centos-announce-requ...@centos.org

You can reach the person managing the list at
centos-announce-ow...@centos.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of CentOS-announce digest..."


Today's Topics:

   1. CEBA-2011:0954  CentOS 5 i386 tomcat5 Update (Karanbir Singh)
   2. CEBA-2011:0954  CentOS 5 x86_64 tomcat5 Update (Karanbir Singh)
   3. CEBA-2011:0964  CentOS 5 i386 openmotif Update (Karanbir Singh)
   4. CEBA-2011:0964 CentOS 5 x86_64 openmotif Update (Karanbir Singh)
   5. CEBA-2011:1082 CentOS 5 x86_64 gnome-terminal Update
  (Karanbir Singh)
   6. CEBA-2011:1082 CentOS 5 i386 gnome-terminal Update
  (Karanbir Singh)


--

Message: 1
Date: Thu, 21 Jul 2011 14:00:15 +
From: Karanbir Singh 
Subject: [CentOS-announce] CEBA-2011:0954  CentOS 5 i386 tomcat5
Update
To: centos-annou...@centos.org
Message-ID: <20110721140015.ga29...@chakra.karan.org>
Content-Type: text/plain; charset=us-ascii


CentOS Errata and Bugfix Advisory 2011:0954 

Upstream details at : https://rhn.redhat.com/errata/RHBA-2011-0954.html

The following updated files have been uploaded and are currently 
syncing to the mirrors: ( md5sum Filename ) 

i386:
7fdb79514d2f456f79c0897649c95f17  tomcat5-5.5.23-0jpp.19.el5_6.i386.rpm
bc053fa8eebcaf4e0922fa2cfe21532d  
tomcat5-admin-webapps-5.5.23-0jpp.19.el5_6.i386.rpm
8d7f79cefc06823c64d1f6bdfb418964  
tomcat5-common-lib-5.5.23-0jpp.19.el5_6.i386.rpm
0e4bf992497d2544cc173f8c13f07683  tomcat5-jasper-5.5.23-0jpp.19.el5_6.i386.rpm
167e01cf7ff429155d7ff64163244c41  
tomcat5-jasper-javadoc-5.5.23-0jpp.19.el5_6.i386.rpm
a63d43f7bb7c7e775862e7830e2e2ff1  
tomcat5-jsp-2.0-api-5.5.23-0jpp.19.el5_6.i386.rpm
7227a097dd4c25bf183df1ce9251d7ca  
tomcat5-jsp-2.0-api-javadoc-5.5.23-0jpp.19.el5_6.i386.rpm
9c8d943c7b4794fd24cba163323db1e1  
tomcat5-server-lib-5.5.23-0jpp.19.el5_6.i386.rpm
de40c103218dc5b0cfdd1e5685edcd02  
tomcat5-servlet-2.4-api-5.5.23-0jpp.19.el5_6.i386.rpm
4f824a9b4f219953dd0e15c615ba34e3  
tomcat5-servlet-2.4-api-javadoc-5.5.23-0jpp.19.el5_6.i386.rpm
535005f4ded348463712e4b173207a8b  tomcat5-webapps-5.5.23-0jpp.19.el5_6.i386.rpm

Source:
8328f7a28e7b88ab2735e7e3064062ec  tomcat5-5.5.23-0jpp.19.el5_6.src.rpm


-- 
Karanbir Singh
CentOS Project { http://www.centos.org/ }
irc: z00dax, #cen...@irc.freenode.net



--

Message: 2
Date: Thu, 21 Jul 2011 14:00:16 +
From: Karanbir Singh 
Subject: [CentOS-announce] CEBA-2011:0954  CentOS 5 x86_64 tomcat5
Update
To: centos-annou...@centos.org
Message-ID: <20110721140016.ga29...@chakra.karan.org>
Content-Type: text/plain; charset=us-ascii


CentOS Errata and Bugfix Advisory 2011:0954 

Upstream details at : https://rhn.redhat.com/errata/RHBA-2011-0954.html

The following updated files have been uploaded and are currently 
syncing to the mirrors: ( md5sum Filename ) 

x86_64:
9c62bfb8656825db58a458885f883e5e  tomcat5-5.5.23-0jpp.19.el5_6.x86_64.rpm
e6746dadbe1380e23da72bc60ed988d8  
tomcat5-admin-webapps-5.5.23-0jpp.19.el5_6.x86_64.rpm
9eddbb5f174b9cc4ce1e453563a1bfce  
tomcat5-common-lib-5.5.23-0jpp.19.el5_6.x86_64.rpm
137669115abae533c857b18af6759f69  tomcat5-jasper-5.5.23-0jpp.19.el5_6.x86_64.rpm
4576cd940d655bd4279d701fd28a5aff  
tomcat5-jasper-javadoc-5.5.23-0jpp.19.el5_6.x86_64.rpm
b3aad97542cdaf92b7884673bc45c381  
tomcat5-jsp-2.0-api-5.5.23-0jpp.19.el5_6.x86_64.rpm
29c73a03379e1ab76b00b38ff84fcd43  
tomcat5-jsp-2.0-api-javadoc-5.5.23-0jpp.19.el5_6.x86_64.rpm
ab77f4c3d44a8be9781a4e11cfae3a77  
tomcat5-server-lib-5.5.23-0jpp.19.el5_6.x86_64.rpm
faa515e55b07954e8d336f07e8eb5565  
tomcat5-servlet-2.4-api-5.5.23-0jpp.19.el5_6.x86_64.rpm
b945197db243e8c5b2526262d868df11  
tomcat5-servlet-2.4-api-javadoc-5.5.23-0jpp.19.el5_6.x86_64.rpm
89d1e10e9c2d6e26961c98e727519271  
tomcat5-webapps-5.5.23-0jpp.19.el5_6.x86_64.rpm

Source:
8328f7a28e7b88ab2735e7e3064062ec  tomcat5-5.5.23-0jpp.19.el5_6.src.rpm


-- 
Karanbir Singh
CentOS Project { http://www.centos.org/ }
irc: z00dax, #cen...@irc.freenode.net



--

Message: 3
Date: Thu, 21 Jul 2011 14:02:05 +
From: Karanbir Singh 
Subject: [CentOS-announce] CEBA-2011:0964  CentOS 5 i386 openmotif
Update
To: centos-annou...@centos.org
Message-ID: <20110721140205.ga29...@chakra.karan.org>
Content-Type: text/plain; charset=us-ascii


CentOS Errata and Bugfix Advisory 2011:0964 

Upstream details at : https://rhn.redhat.com/errata/RHBA-2011-0964.html

The following updated files have been uploaded and are currently 
syncing to the mirrors: ( md5sum Filename ) 

i386:
3649ba759bae4044c10c21d17e5da788  openmotif-2.3.1-5.

Re: [CentOS] Access denied false positive

2011-07-22 Thread John Hodrien
On Fri, 22 Jul 2011, Always Learning wrote:

> On Fri, 2011-07-22 at 15:37 +0100, John Hodrien wrote:
>
>> Working GSSAPI scares the willies out of windows users when they're
>> not used to it.
>>
>>"But it let me in without a password.  Isn't that insecure?"
>
> But hasn't Windoze been like that for many years?

I can only assume it's related to what they think they're doing.  Remote
accessing other machines and accessing files/email seem to be two different
things.  I'm not sure files and email necessarily give the sense of it being a
remote resource in the same way.

Remote Desktop on windows doesn't use kerberos does it?

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


Re: [CentOS] kickstart ksdevice in centos6

2011-07-22 Thread Tru Huynh
On Fri, Jul 22, 2011 at 11:00:13AM -0400, Jerry Geis wrote:
> Jerry Geis wrote:
> > I have a line in my kickstart file (ksdevice)
> >...
> > ksdevice=eth0
> >..
> >
> Actually if I select eth0 and continue - I then get an error on screen 
> about
> Unknown kickstart command ksdevice=eth0

ksdevice is on the boot command line, not in the kickstart file

/usr/share/doc/anaconda-*/kickstart-docs.txt:
-- 
Tru Huynh (mirrors, CentOS i386/x86_64 Package Maintenance)
http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xBEFA581B


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


Re: [CentOS] kickstart ksdevice in centos6

2011-07-22 Thread Jerry Geis
Jerry Geis wrote:
> I have a line in my kickstart file (ksdevice)
>
> # Network information
> network --bootproto=dhcp --device=eth0 --onboot=on
> # Default network to boot
> ksdevice=eth0
> # Auto reboot (to being next install faze)
> reboot
>
>
> However its still poping up and asking me eth0 or eth1 for install?
> Has this operation changed?
>
> Thanks,
>
> Jerry
>
Actually if I select eth0 and continue - I then get an error on screen 
about
Unknown kickstart command ksdevice=eth0

jerry

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


[CentOS] kickstart ksdevice in centos6

2011-07-22 Thread Jerry Geis
I have a line in my kickstart file (ksdevice)

# Network information
network --bootproto=dhcp --device=eth0 --onboot=on
# Default network to boot
ksdevice=eth0
# Auto reboot (to being next install faze)
reboot


However its still poping up and asking me eth0 or eth1 for install?
Has this operation changed?

Thanks,

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


Re: [CentOS] VLAN's

2011-07-22 Thread Jennifer Botten
Hi Julio,

 

-A FORWARD -i eth2.2 -s 192.168.1.0/24 -d 10.30.4.28 -p udp -j ACCEPT 

-A FORWARD -i eth2.2 -s 192.168.1.0/24 -d 192.168.0.0/24 -p tcp -j ACCEPT 

-A FORWARD -i eth1 -s 192.168.0.0/24 -d 192.168.1.0/24 -p tcp -j ACCEPT 

-A FORWARD -i eth3 -s 10.30.4.28 -o eth2.2 -p udp -j ACCEPT 

-A POSTROUTING -m helper --helper sip -m state --state ESTABLISHED,RELATED

 

Thanks

Jennifer

 

 

 

From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On Behalf
Of cbul...@gmail.com
Sent: 22 July 2011 04:37 PM
To: centos@centos.org
Subject: Re: [CentOS] VLAN's

 

Hi Jennifer,

Could you copy the iptables rules?

Julio




On 7/22/2011 8:49 AM, Jennifer Botten wrote: 

Hi,

 

I have a firewall running IPTABLES. I have tried to route sip traffic from
my WAN(eth3) interface to a VLAN(eth2.2) interface, however the data will
not route to the VLAN it keeps routing to the default interface(eth2). Does
anyone have an idea as to what I need to look for?

 

Regards

 

 

Jennifer Botten

ETECH

 

Tel:  +2787 150 5285

Fax:  086 638 2412

Mobile:+27 82 496 4009

E-Mail:jenni...@etech.co.za

Website:   www.etech.co.za  

cid:image001.gif@01CBE895.00AF7120

The views expressed in this email are, unless otherwise stated, those of the
author and not those of the Etech or its management. The information in this
email is confidential and is intended solely for the addressee. Access to
this email by anyone else is unauthorized. If you are not the intended
recipient, any disclosure, copying, distribution or any action taken or
omitted in reliance on this, is prohibited and may be unlawful. Whilst all
reasonable steps are taken to ensure the accuracy and integrity of
information and data transmitted electronically and to preserve the
confidentiality thereof, no liability or responsibility whatsoever is
accepted if information or data is, for whatever reason, corrupted or does
not reach its intended destination.

 

 

 
 
___
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] Access denied false positive

2011-07-22 Thread Always Learning

On Fri, 2011-07-22 at 15:37 +0100, John Hodrien wrote:

> Working GSSAPI scares the willies out of windows users when they're
> not used to it.
> 
>"But it let me in without a password.  Isn't that insecure?"

But hasn't Windoze been like that for many years?



-- 
With best regards,

Paul.
England,
EU.


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


Re: [CentOS] VLAN's

2011-07-22 Thread Les Mikesell
On 7/22/2011 8:49 AM, Jennifer Botten wrote:
> Hi,
>
> I have a firewall running IPTABLES. I have tried to route sip traffic
> from my WAN(eth3) interface to a VLAN(eth2.2) interface, however the
> data will not route to the VLAN it keeps routing to the default
> interface(eth2). Does anyone have an idea as to what I need to look for?

Vlan interfaces should work like any other interface in terms of 
routing.  Things should follow the most specific route (smallest netmask).

-- 
   Les Mikesell
lesmikes...@gmail.com



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


Re: [CentOS] Access denied false positive

2011-07-22 Thread John Hodrien
On Fri, 22 Jul 2011, Ray Leventhal wrote:

> On 7/22/2011 10:20 AM, Kaplan, Andrew H. wrote:
>> Hi there --
>>
>> Thanks for everyone's replies. I do have putty 0.61, and I went ahead
>> with Matt's suggestion. Once that was done, I logged into the server that
>> was the subject of my posting, and the false positive did not appear.
>
> I got bit by that one also and a little googling did the trick :)  Must
> be a change to PuTTy's default config as many other updates to it over
> the years didn't behave like that.

Working GSSAPI scares the willies out of windows users when they're not used
to it.

   "But it let me in without a password.  Isn't that insecure?"

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


Re: [CentOS] VLAN's

2011-07-22 Thread cbul...@gmail.com


  
  
Hi Jennifer,

Could you copy the iptables rules?

Julio




On 7/22/2011 8:49 AM, Jennifer Botten wrote:

  
  
  
  
  
Hi,
 
I have a firewall running IPTABLES. I have
  tried to route
  sip traffic from my WAN(eth3) interface to a VLAN(eth2.2)
  interface, however
  the data will not route to the VLAN it keeps routing to the
  default interface(eth2).
  Does anyone have an idea as to what I need to look for?
 
Regards
 
 
Jennifer Botten
ETECH
 
Tel:  +2787 150 5285
Fax:  086 638 2412
Mobile:    +27 82 496 4009
E-Mail:jenni...@etech.co.za
Website:   www.etech.co.za

The views expressed in this email are, unless
otherwise stated,
those of the author and not those of the Etech or its
management. The
information in this email is confidential and is intended
solely for the
addressee. Access to this email by anyone else is
unauthorized. If you are not
the intended recipient, any disclosure, copying,
distribution or any action
taken or omitted in reliance on this, is prohibited and may
be unlawful. Whilst
all reasonable steps are taken to ensure the accuracy and
integrity of
information and data transmitted electronically and to
preserve the
confidentiality thereof, no liability or responsibility
whatsoever is accepted
if information or data is, for whatever reason, corrupted or
does not reach its
intended destination.
 
 
  
  

___
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] Access denied false positive

2011-07-22 Thread Ray Leventhal
On 7/22/2011 10:20 AM, Kaplan, Andrew H. wrote:
> Hi there --
>
> Thanks for everyone's replies. I do have putty 0.61, and I went ahead
> with Matt's suggestion. Once that was done, I logged into the server that
> was the subject of my posting, and the false positive did not appear.

I got bit by that one also and a little googling did the trick :)  Must 
be a change to PuTTy's default config as many other updates to it over 
the years didn't behave like that.

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


Re: [CentOS] missing run-parts in /etc/crontab

2011-07-22 Thread Andy Holt
> http://www.linuxtopia.org/online_books/rhel6/rhel_6_migration_guide/rhel_6_migration_ch04s13.html

Horse's mouth better?  The EL 6.1 version is at

http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/6/html/Migration_Planning_Guide/ch04s14.html

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


[CentOS] gscan2pdf, tesseract and german language

2011-07-22 Thread Timothy Kesten
Hi Folks,

I've installed gscan2pdf, tesseract, tesseract-de (for german language).
But gscan2pdf offers only english as language for OCR (with tesseract selected 
for OCR-Engine).
Where are  "points " (config-files or so) to select german as language.

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


Re: [CentOS] Access denied false positive

2011-07-22 Thread Kaplan, Andrew H.
Hi there --

Thanks for everyone's replies. I do have putty 0.61, and I went ahead
with Matt's suggestion. Once that was done, I logged into the server that
was the subject of my posting, and the false positive did not appear.



-Original Message-
From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On Behalf Of
Matt Iavarone
Sent: Friday, July 22, 2011 10:00 AM
To: CentOS mailing list
Subject: Re: [CentOS] Access denied false positive

On Fri, Jul 22, 2011 at 9:54 AM, Andy Holt  wrote:
>> From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On Behalf
Of Kaplan, Andrew H.
>> Sent: 22/07/2011 14:34
>> To: CentOS mailing list
>> Subject: [CentOS] Access denied false positive
>>
>>
>> Hi there --
>>
>> One of our servers is running the 5.3 32-bit release. When a user logs into
the system via an SSH terminal connection,
>> he first sees an "Access denied" message, and then gets a password prompt. He
is able to enter the password, and
>> log into the system without issue. It appears the error message is a false
positive.
>>
>> A check of the messages and secure log files did not show anything apparent.
What would cause this message to
>> occur?
>
> I get that when I'm using PuTTY with pageant, automatically presenting an ssh
key, which the server I'm connecting to doesn't
> recognise.
>
> Maybe something like that?
>
> Andy
>
> ___
> CentOS mailing list
> CentOS@centos.org
> http://lists.centos.org/mailman/listinfo/centos
>

I had a similar issue with PuTTY after upgrading to v 0.61.  I
disabled Attempt GSSAPI atuthentication (SSH-2 only) under
Connection>SSH>GSSAPI.

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


The information in this e-mail is intended only for the person to whom it is
addressed. If you believe this e-mail was sent to you in error and the e-mail
contains patient information, please contact the Partners Compliance HelpLine at
http://www.partners.org/complianceline . If the e-mail was sent to you in error
but does not contain patient information, please contact the sender and properly
dispose of the e-mail.

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


Re: [CentOS] centos6 not using /etc/gdm/custom.conf

2011-07-22 Thread Jamieson, Stephen CTR Navair, 5.4.4.4

> Those options are no longer supported in GDM. I think that they were
> removed with GDM 2.24 (at the latest, probably 2.22) and C6 is running
> GDM 2.30.

That is unfortunate... I suppose I will just have to ignore this issue
then.

> in "/etc/gdm/custom.conf" to override the "-nolisten tcp" but I have
> no idea about "-br -audit 4 -s 15".

Thanks for your help.  I really wish someone know where I could edit
those parameters.  

Regards,

Stephen Jamieson

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


Re: [CentOS] problem starting X11 on centos 6

2011-07-22 Thread Ljubomir Ljubojevic
Jerry Geis wrote:
> After further investigating... I found the issue. I was in fact turning 
> off haldaemon.
> Some obscure install script I forgot about.
> This must have been ok in centos 5 and X as I just checked my machines 
> and in fact it is off.
> Not sure why I turned it off way back...
> 

Read wikipedia page on HAL daemon:
http://en.wikipedia.org/wiki/HAL_%28software%29

Maybe this helps you remember. You might have turned it of if you 
haven't needed it for anything, but used udev directly instead.

-- 

Ljubomir Ljubojevic
(Love is in the Air)
PL Computers
Serbia, Europe

Google is the Mother, Google is the Father, and traceroute is your
trusty Spiderman...
StarOS, Mikrotik and CentOS/RHEL/Linux consultant
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] package recommendation for video conferencing

2011-07-22 Thread Patrick Lists
On 07/22/2011 03:02 PM, Les Mikesell wrote:
> On 7/22/11 2:19 AM, Geoff Galitz wrote:
>> Hi.
>> We have a need for a video conferencing package with the following specs:
>> - cross platform client support (Linux, Mac, Win)
>> - server side runs on Centos 5 and later with easy package installation 
>> routine
>> (e.g. RPM)
>> - can host a teleconfernce with no users connected (IOW, it can wait for 
>> users
>> to connect at any time)
>> - supports mulitple users per video conference
>> Recommendations?
>
> Don't think this one has group video conferencing yet, but it might be close:
> http://www.jitsi.org/

For a WebEx-like environment check out BigBlueButton (not easy to 
install though). Or use Gtalk which supports video and does not require 
you to host a server.

Hosting a teleconference (not sure about support for video) is supported 
by FreeSWITCH (for small to large environments) and Asterisk (would not 
bet the farm on this for large environments).

Regards,
Patrick

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


Re: [CentOS] Keyboards

2011-07-22 Thread Michael Schumacher
Mark,

On Friday, July 22, 2011 you wrote:

>  
>  Alt>[ tall spacebar  ] alt> Win> menu>

> The result is that just trying to type, I regularly hit the thing. Does
> anyone have an idea how to disable this forever (if y'all don't, I'm
> prying the key *off*).

I propose a hardware solution. Use an abundant amount of glue to
disable it :-)


best regards
---
Michael Schumacher
PAMAS Partikelmess- und Analysesysteme GmbH
Dieselstr.10, D-71277 Rutesheim
Tel +49-7152-99630
Fax +49-7152-996333
Geschäftsführer: Gerhard Schreck
Handelsregister B Stuttgart HRB 252024

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


Re: [CentOS] problem starting X11 on centos 6

2011-07-22 Thread Jerry Geis
Jerry Geis wrote:
> Hi All,
>
> I had an issue. Manually installing Centos 6 everything worked X11 
> came up with nvidia binary drivers. Cool.
> However, I am working on a kickstart install for Centos 6 and that was 
> not working. When I started X it
> would hang. no mouse no keyboard. however , remote ssh was available 
> and worked.
>
> Thinking I had some serious bug in nvidia binary was my thought - but 
> I kept looking.
> I saw this error:
>
> (EE) config/hal: couldn't initialise context: unknown error (null)
>
> in the X log file.
>
> I continued to look and sure enough hald was installed but not running.
> I did service  haldaemon stop and it said FAILED as expected, then 
> service haldaemon start
> and it started up. Curious
>
> chkconfig --list | grep hal reports
> haldaemon   0:off   1:off   2:off   3:off   4:off   5:off   6:off
>
> So thats the reason of course, it was not set to start. Question is 
> why
>
> certainly I can put in my kickstart post script to change chkconfig
> but why is it not set to start
>
> Thanks for any insite.
>
> Jerry
>
>
>
After further investigating... I found the issue. I was in fact turning 
off haldaemon.
Some obscure install script I forgot about.
This must have been ok in centos 5 and X as I just checked my machines 
and in fact it is off.
Not sure why I turned it off way back...

Thanks,

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


Re: [CentOS] Access denied false positive

2011-07-22 Thread Matt Iavarone
On Fri, Jul 22, 2011 at 9:54 AM, Andy Holt  wrote:
>> From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On Behalf 
>> Of Kaplan, Andrew H.
>> Sent: 22/07/2011 14:34
>> To: CentOS mailing list
>> Subject: [CentOS] Access denied false positive
>>
>>
>> Hi there --
>>
>> One of our servers is running the 5.3 32-bit release. When a user logs into 
>> the system via an SSH terminal connection,
>> he first sees an "Access denied" message, and then gets a password prompt. 
>> He is able to enter the password, and
>> log into the system without issue. It appears the error message is a false 
>> positive.
>>
>> A check of the messages and secure log files did not show anything apparent. 
>> What would cause this message to
>> occur?
>
> I get that when I'm using PuTTY with pageant, automatically presenting an ssh 
> key, which the server I'm connecting to doesn't
> recognise.
>
> Maybe something like that?
>
> Andy
>
> ___
> CentOS mailing list
> CentOS@centos.org
> http://lists.centos.org/mailman/listinfo/centos
>

I had a similar issue with PuTTY after upgrading to v 0.61.  I
disabled Attempt GSSAPI atuthentication (SSH-2 only) under
Connection>SSH>GSSAPI.

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


Re: [CentOS] Access denied false positive

2011-07-22 Thread Andy Holt
> From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On Behalf 
> Of Kaplan, Andrew H.
> Sent: 22/07/2011 14:34
> To: CentOS mailing list
> Subject: [CentOS] Access denied false positive
> 
> 
> Hi there -- 
>
> One of our servers is running the 5.3 32-bit release. When a user logs into 
> the system via an SSH terminal connection, 
> he first sees an "Access denied" message, and then gets a password prompt. He 
> is able to enter the password, and 
> log into the system without issue. It appears the error message is a false 
> positive. 
>
> A check of the messages and secure log files did not show anything apparent. 
> What would cause this message to 
> occur? 

I get that when I'm using PuTTY with pageant, automatically presenting an ssh 
key, which the server I'm connecting to doesn't
recognise.

Maybe something like that?

Andy

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


[CentOS] Keyboards

2011-07-22 Thread m . roth
On my new Dell system, it's got a cardreader. More to the point, it's got
an idiot menu key... *right* next to the right control key, and just where
the annoying keyboard design has it cut down from the oversize space bar
ASCII art

 
 Alt>[ tall spacebar  ] alt> Win> menu>

The result is that just trying to type, I regularly hit the thing. Does
anyone have an idea how to disable this forever (if y'all don't, I'm
prying the key *off*).

Thanks in advance.

 mark

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


[CentOS] VLAN's

2011-07-22 Thread Jennifer Botten
Hi,

 

I have a firewall running IPTABLES. I have tried to route sip traffic from
my WAN(eth3) interface to a VLAN(eth2.2) interface, however the data will
not route to the VLAN it keeps routing to the default interface(eth2). Does
anyone have an idea as to what I need to look for?

 

Regards

 

 

Jennifer Botten

ETECH

 

Tel:  +2787 150 5285

Fax:  086 638 2412

Mobile:+27 82 496 4009

E-Mail:  jenni...@etech.co.za

Website: www.etech.co.za

cid:image001.gif@01CBE895.00AF7120

The views expressed in this email are, unless otherwise stated, those of the
author and not those of the Etech or its management. The information in this
email is confidential and is intended solely for the addressee. Access to
this email by anyone else is unauthorized. If you are not the intended
recipient, any disclosure, copying, distribution or any action taken or
omitted in reliance on this, is prohibited and may be unlawful. Whilst all
reasonable steps are taken to ensure the accuracy and integrity of
information and data transmitted electronically and to preserve the
confidentiality thereof, no liability or responsibility whatsoever is
accepted if information or data is, for whatever reason, corrupted or does
not reach its intended destination.

 

 

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


[CentOS] Access denied false positive

2011-07-22 Thread Kaplan, Andrew H.
Hi there --

One of our servers is running the 5.3 32-bit release. When a user logs into the
system via an SSH terminal connection,
he first sees an "Access denied" message, and then gets a password prompt. He is
able to enter the password, and 
log into the system without issue. It appears the error message is a false
positive.

A check of the messages and secure log files did not show anything apparent.
What would cause this message to 
occur? 


The information in this e-mail is intended only for the person to whom it is
addressed. If you believe this e-mail was sent to you in error and the e-mail
contains patient information, please contact the Partners Compliance HelpLine at
http://www.partners.org/complianceline . If the e-mail was sent to you in error
but does not contain patient information, please contact the sender and properly
dispose of the e-mail.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] problem starting X11 on centos 6

2011-07-22 Thread m . roth
Jerry Geis wrote:
> Hi All,
>
> I had an issue. Manually installing Centos 6 everything worked X11 came
> up with nvidia binary drivers. Cool.
> However, I am working on a kickstart install for Centos 6 and that was
> not working. When I started X it would hang. no mouse no keyboard.
> however , remote ssh was available and worked.

> I continued to look and sure enough hald was installed but not running.
> I did service  haldaemon stop and it said FAILED as expected, then
> service haldaemon start
> and it started up. Curious

There seem to be a number of problems with X: I *finally* solved mine
yesterday, of being forced to use one (very small) font with rxvt, when I
found that installing X did *not* install xorg-x11-fonts.

However, I find it very disturbing that haldaemon isn't on by default. I
haven't noticed this - has anyone else?

mark

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


Re: [CentOS] package recommendation for video conferencing

2011-07-22 Thread Les Mikesell
On 7/22/11 2:19 AM, Geoff Galitz wrote:
> Hi.
> We have a need for a video conferencing package with the following specs:
> - cross platform client support (Linux, Mac, Win)
> - server side runs on Centos 5 and later with easy package installation 
> routine
> (e.g. RPM)
> - can host a teleconfernce with no users connected (IOW, it can wait for users
> to connect at any time)
> - supports mulitple users per video conference
> Recommendations?

Don't think this one has group video conferencing yet, but it might be close:
http://www.jitsi.org/

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


[CentOS] problem starting X11 on centos 6

2011-07-22 Thread Jerry Geis
Hi All,

I had an issue. Manually installing Centos 6 everything worked X11 came 
up with nvidia binary drivers. Cool.
However, I am working on a kickstart install for Centos 6 and that was 
not working. When I started X it
would hang. no mouse no keyboard. however , remote ssh was available and 
worked.

Thinking I had some serious bug in nvidia binary was my thought - but I 
kept looking.
I saw this error:

(EE) config/hal: couldn't initialise context: unknown error (null)

in the X log file.

I continued to look and sure enough hald was installed but not running.
I did service  haldaemon stop and it said FAILED as expected, then 
service haldaemon start
and it started up. Curious

chkconfig --list | grep hal reports
haldaemon   0:off   1:off   2:off   3:off   4:off   5:off   6:off

So thats the reason of course, it was not set to start. Question is why

certainly I can put in my kickstart post script to change chkconfig
but why is it not set to start

Thanks for any insite.

Jerry


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


Re: [CentOS] fyi: RHEL 5.7 is out

2011-07-22 Thread Ljubomir Ljubojevic
Alain Péan wrote:
> Le 21/07/2011 14:45, Always Learning a écrit :
>> On Thu, 2011-07-21 at 11:11 +0200, Rainer Traut wrote:
>>
>>> it seems redhat has just pushed RHEL 5.7 out.
>>> I see amoung others:
>>>
>>> kernel-2.6.18-274.el5.x86_64.rpm
>>> redhat-release-5Server-5.7.0.3.x86_64.rpm
>> Thanks Rainer.
>>
>> The dilemma is whether to upgrade from 5.6 to 6.1 or stay with 5.x as
>> more 5.x versions (5.8, 5.9, 5.10 etc. might be possible). For me the
>> only negative aspect of 5.x is old kernel 2.6.18 whereas 6.x is 2.6.32?
>>
> 
> The dilemna is for the CentOS developper team. Following the decision 
> last January, it would be natural that the priority would be to release 
> 5.7, as there are "millions" of existing systems needing to be updated, 
> rather than releasing 6.1, where very few systems are already in 
> production, and 6.1 updates are backported to 6.0.
> 
> So I fear that 6.1 will be postponed...

6.1 CentOS packages are already building, as are 5.7 (in parallel).

Do not mix building and re-compiling packages. 5.7 packages are all 
already known and there was no real show stoppers to re-compile them.

6.1 packages are different story, and I am sure there was several show 
stoppers that delayed it. Anyhow, it has been only two weeks from 6.0 
release, and original projection for 6.0->6.1 was 1 month.

I am wondering how LiveCD release is going, there are several people 
interested in it.

-- 

Ljubomir Ljubojevic
(Love is in the Air)
PL Computers
Serbia, Europe

Google is the Mother, Google is the Father, and traceroute is your
trusty Spiderman...
StarOS, Mikrotik and CentOS/RHEL/Linux consultant
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] Package: virt-goodies

2011-07-22 Thread Timothy Kesten
Hi Folks,

is here someone who knows where to get the package "virt-goodies" for CentOS6 
64bit?

I'd like to convert VMWare-images to KVM.

Thx

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


Re: [CentOS] Experience with Centos running off usb-stick(s)

2011-07-22 Thread Ljubomir Ljubojevic
cool...@gmail.com wrote:
> On Jul 21, 2011 8:27 AM, "Dennis Jacobfeuerborn"  > wrote:
>  >
>  > Hi,
>  > I'm trying to build a redundant duo of firewalls/routers/gateways and I'm
>  > thinking about not putting any disks in them and instead using a 
> usb-stick
>  > raid-1 as storage.
>  > Has anyone any experience with this?
> 
> I simply wouldn't build a system that is dependent on USB for the rootfs 
> full-time, unless it's very unimportant.  I've seen USB ports get 
> disabled while in-use plenty of times.  Instead, an ATA to CF or SD 
> adapter can be had quite inexpensively.
> 

There are DOM's, IDE Disk-On-Module.

-- 

Ljubomir Ljubojevic
(Love is in the Air)
PL Computers
Serbia, Europe

Google is the Mother, Google is the Father, and traceroute is your
trusty Spiderman...
StarOS, Mikrotik and CentOS/RHEL/Linux consultant
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Using shell variables inside the ftp client

2011-07-22 Thread Ljubomir Ljubojevic
John R Pierce wrote:
> On 07/21/11 1:52 PM, Always Learning wrote:
>>> I have a script that opens an ftp connection to a non-*nix system.
  I desire to change directories on the host system using a shell
  variable to set the cd directory.  However, I cannot seem to
  discover how this is done.
>> Check the FTP configuration file on the remote server. There might be a
>> block to stop you moving-out of your log-on FTP directory.
> 
> more likely, the ftp program is processing his command lines, and it 
> doesn't know anything about $parameter substitution.
> 
> I suggest using wget or lftp or similar rather than conventional ftp.
> 
> 
> 
+1 for lftp, very scriptable.

-- 

Ljubomir Ljubojevic
(Love is in the Air)
PL Computers
Serbia, Europe

Google is the Mother, Google is the Father, and traceroute is your
trusty Spiderman...
StarOS, Mikrotik and CentOS/RHEL/Linux consultant
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] package recommendation for video conferencing

2011-07-22 Thread Ljubomir Ljubojevic
Geoff Galitz wrote:
>  
>  
> Hi.
>  
> We have a need for a video conferencing package with the following specs:
>  
> - cross platform client support (Linux, Mac, Win)
> - server side runs on Centos 5 and later with easy package installation 
> routine (e.g. RPM)
> - can host a teleconfernce with no users connected (IOW, it can wait for 
> users to connect at any time)
> - supports mulitple users per video conference
>  
>  
> Recommendations?
>  
> Thanks.
>  
You can check Ekiga[1]. It is a LInux/Windows/Source-code SIP 
application with video capability. As far as I could make it out, 
Asteriks server can be used for interconnection. Can't say about the 
last request

[1]: http://wiki.ekiga.org/index.php/Main_Page
Nice explanation: https://help.ubuntu.com/community/Ekiga

-- 

Ljubomir Ljubojevic
(Love is in the Air)
PL Computers
Serbia, Europe

Google is the Mother, Google is the Father, and traceroute is your
trusty Spiderman...
StarOS, Mikrotik and CentOS/RHEL/Linux consultant
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] missing run-parts in /etc/crontab

2011-07-22 Thread Alexander Dalloz
Am 22.07.2011 11:57, schrieb thomas veymont:
> hello,
> 
> after a Centos 6 fresh install, I don't see any run-parts scripts in
> /etc/contab
> like in the 5.x releases :
> 
> # run-parts
> 01 * * * * root run-parts /etc/cron.hourly
> 02 4 * * * root run-parts /etc/cron.daily
> 22 4 * * 0 root run-parts /etc/cron.weekly
> 42 4 1 * * root run-parts /etc/cron.monthly
> 
> was it moved somewhere else ?  am I missing any package ?
> 
> thanks,
> Tom

Just consult the docs please.

http://www.linuxtopia.org/online_books/rhel6/rhel_6_migration_guide/rhel_6_migration_ch04s13.html

Alexander


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


Re: [CentOS] fyi: RHEL 5.7 is out

2011-07-22 Thread Giovanni Tirloni
On Fri, Jul 22, 2011 at 6:32 AM, Alain Péan
 wrote:
> Le 21/07/2011 14:45, Always Learning a écrit :
>> On Thu, 2011-07-21 at 11:11 +0200, Rainer Traut wrote:
>>
>>> it seems redhat has just pushed RHEL 5.7 out.
>>> I see amoung others:
>>>
>>> kernel-2.6.18-274.el5.x86_64.rpm
>>> redhat-release-5Server-5.7.0.3.x86_64.rpm
>> Thanks Rainer.
>>
>> The dilemma is whether to upgrade from 5.6 to 6.1 or stay with 5.x as
>> more 5.x versions (5.8, 5.9, 5.10 etc. might be possible). For me the
>> only negative aspect of 5.x is old kernel 2.6.18 whereas 6.x is 2.6.32?
>>
>
> The dilemna is for the CentOS developper team. Following the decision
> last January, it would be natural that the priority would be to release
> 5.7, as there are "millions" of existing systems needing to be updated,
> rather than releasing 6.1, where very few systems are already in
> production, and 6.1 updates are backported to 6.0.
>
> So I fear that 6.1 will be postponed...

Whatever is done I can only thank the CentOS team for doing this work
while taking an huge amount of heat.

IMHO, companies on the CentOS 5.x have just recently migrated to 5.6
and I believe there is a lot less pressure for them to go to 5.7.

However, CentOS 6.0 is the first release and most companies ignore
those for a reason. That puts more pressure on releasing a 6.1 version
which companies will actually consider using.

Just my $0.02

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


[CentOS] missing run-parts in /etc/crontab

2011-07-22 Thread thomas veymont
hello,

after a Centos 6 fresh install, I don't see any run-parts scripts in
/etc/contab
like in the 5.x releases :

# run-parts
01 * * * * root run-parts /etc/cron.hourly
02 4 * * * root run-parts /etc/cron.daily
22 4 * * 0 root run-parts /etc/cron.weekly
42 4 1 * * root run-parts /etc/cron.monthly

was it moved somewhere else ?  am I missing any package ?

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


Re: [CentOS] CentOS 4 on IBMX3200 M3

2011-07-22 Thread Alexander Dalloz
Am 22.07.2011 11:32, schrieb Torintino T:
> 
> Hi John,
> 
> Yes i tried it, Centos 4.8 is supported on IBMX3200 M3, thanks for this.
> 
> Also i want to use Dell ones 
> [R310,
> R410, R415, R510, R610 and R710]
> i found on the page of "Operating System Support Matrix for Dell PowerEdge 
> Systems" [http://advisors.dell.com/advisorweb/iDriveMatrixView.aspx]
> that they all do support "RED HAT ENTERPRISE LINUX 4" Update 8 x86 & Update 8 
> x86_64
> 
> So do they also support CentOS 4.8 for sure?
> as Dell also doesn't give a formal answer onto this.
> 
> Thank you

If a hardware vendor states that he supports Red Hat Enterprise Linux of
a specific release, this does not mean, he would support the
corresponding CentOS, Scientific Linux or OEL release. It can be a good
will activity, but may be bound to the supporter you talk to. In
general, the hardware vendor will request you to demonstrate the issue
you have with the supported RHEL release.

Greetings

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


Re: [CentOS] CentOS 4 on IBMX3200 M3

2011-07-22 Thread Torintino T

Hi John,

Yes i tried it, Centos 4.8 is supported on IBMX3200 M3, thanks for this.

Also i want to use Dell ones 
[R310,
R410, R415, R510, R610 and R710]
i found on the page of "Operating System Support Matrix for Dell PowerEdge 
Systems" [http://advisors.dell.com/advisorweb/iDriveMatrixView.aspx]
that they all do support "RED HAT ENTERPRISE LINUX 4" Update 8 x86 & Update 8 
x86_64

So do they also support CentOS 4.8 for sure?
as Dell also doesn't give a formal answer onto this.

Thank you

> Date: Fri, 1 Jul 2011 02:41:52 -0700
> From: jd...@yahoo.com
> To: centos@centos.org
> Subject: Re: [CentOS] CentOS 4 on IBMX3200 M3
> 
> 
> From: Torintino T 
> >I tried to setup CentOS 4.7 on IBM X3200 M3 but i couldn't, isn't it 
> >compatible?
> >if so what's the CentOS 4 release that's compatible with IBM X3200 M3?
> >and should i install I386 or X86_64?
> 
> 
> In your server's product guide, you can read:
> "Operating systems supported : ... RHEL 4/5 32/64-bit with and without Xen..."
> So yes, CentOS 4 should be supported...
> By the way, the latest 4.x version is 4.8... and soon 4.9.
> Unless you have specific reasons to go 32-bit, go 64...
> 
> JD
> 
> ___
> 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] fyi: RHEL 5.7 is out

2011-07-22 Thread Alain Péan
Le 21/07/2011 14:45, Always Learning a écrit :
> On Thu, 2011-07-21 at 11:11 +0200, Rainer Traut wrote:
>
>> it seems redhat has just pushed RHEL 5.7 out.
>> I see amoung others:
>>
>> kernel-2.6.18-274.el5.x86_64.rpm
>> redhat-release-5Server-5.7.0.3.x86_64.rpm
> Thanks Rainer.
>
> The dilemma is whether to upgrade from 5.6 to 6.1 or stay with 5.x as
> more 5.x versions (5.8, 5.9, 5.10 etc. might be possible). For me the
> only negative aspect of 5.x is old kernel 2.6.18 whereas 6.x is 2.6.32?
>

The dilemna is for the CentOS developper team. Following the decision 
last January, it would be natural that the priority would be to release 
5.7, as there are "millions" of existing systems needing to be updated, 
rather than releasing 6.1, where very few systems are already in 
production, and 6.1 updates are backported to 6.0.

So I fear that 6.1 will be postponed...

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


Re: [CentOS] Experience with Centos running off usb-stick(s)

2011-07-22 Thread Peter Kjellström
On Thursday, July 21, 2011 05:26:47 PM Dennis Jacobfeuerborn wrote:
> Hi,
> I'm trying to build a redundant duo of firewalls/routers/gateways and I'm
> thinking about not putting any disks in them and instead using a usb-stick
> raid-1 as storage.
> Has anyone any experience with this? Since the machines will be running
> pretty much only iptables, conntrackd and keepalived there is not going to
> be a lot of disk activity going on and the plan is to do all the logging on
> a remote machine which should reduce the write activity on the sticks to
> almost zero during normal operation.
> 
> I've already created a fairly minimal kickstart for such an installation
> but I'm wondering if there are any opinions out there on whether this is a
> feasible approach or if there are any gotchas I'm not aware of.

I/we have done this on a few systems with vanilla CentOS and no problems. Do 
note however that not all usb-sticks are the same (performance can vary _a 
lot_).

/Peter


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] Experience with Centos running off usb-stick(s)

2011-07-22 Thread cooleyr
On Jul 21, 2011 8:27 AM, "Dennis Jacobfeuerborn" 
wrote:
>
> Hi,
> I'm trying to build a redundant duo of firewalls/routers/gateways and I'm
> thinking about not putting any disks in them and instead using a usb-stick
> raid-1 as storage.
> Has anyone any experience with this?

I simply wouldn't build a system that is dependent on USB for the rootfs
full-time, unless it's very unimportant.  I've seen USB ports get disabled
while in-use plenty of times.  Instead, an ATA to CF or SD adapter can be
had quite inexpensively.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] package recommendation for video conferencing

2011-07-22 Thread Geoff Galitz


Hi.

We have a need for a video conferencing package with the following specs:

- cross platform client support (Linux, Mac, Win)
- server side runs on Centos 5 and later with easy package installation routine 
(e.g. RPM)
- can host a teleconfernce with no users connected (IOW, it can wait for users 
to connect at any time)
- supports mulitple users per video conference


Recommendations?

Thanks.

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