Re: [CentOS] Evolution Question?

2009-06-11 Thread Sorin Srbu
>-Original Message-
>From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On
Behalf
>Of Jeff
>Sent: Thursday, June 11, 2009 7:41 AM
>To: CentOS mailing list
>Subject: [CentOS] Evolution Question?
>
>I have a CentOS 5.3 Desktop and use Evolution to read mailing lists .
>When i move from one read letter to another(either deleting or clicking
>next  the Message pane flickers. How can i stop this because it is hard
>on my eyes when i have a few emails to read?

Increase the scan frequency of your monitor maybe? I've seen this in lists
generally with thousands of entries and the gfx-card can't keep up. Most
often upping the scan frequency solved this issue. I've also seen this on
computers that are a bit, ummm, underpowered. ;-) 

If you have an Nvidia gfx-card, try installing the proprietary drivers, or
(recommended) dkms and the dkms-Nvidia*-package.

YMMV.
-- 
/Sorin


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


[CentOS] can't access remote Windows 2008 desktop via Krdc / Remote Desktop

2009-06-11 Thread Rudi Ahlers
Hi all,

Does anyone know why CentOS 5.+3 + latest KDE won't connect to a
Windows 2008 server via Remote Desktop, yet it will work on a Windows
2003 server?

I can easily connect to a Windows 2003 server, using rdp:/196.34.x.x
and login and use the Windows 2003 server.

But when I try the same with a Widows 2008 server, it just fails. I
see if connecting, and then it "dies" without even displaying me the
login screen.

Is there something else I need todo to make it work?

-- 
Kind Regards
Rudi Ahlers
CEO, SoftDux Hosting
Web: http://www.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] can't access remote Windows 2008 desktop via Krdc / Remote Desktop

2009-06-11 Thread carlopmart
Rudi Ahlers wrote:
> Hi all,
> 
> Does anyone know why CentOS 5.+3 + latest KDE won't connect to a
> Windows 2008 server via Remote Desktop, yet it will work on a Windows
> 2003 server?
> 
> I can easily connect to a Windows 2003 server, using rdp:/196.34.x.x
> and login and use the Windows 2003 server.
> 
> But when I try the same with a Widows 2008 server, it just fails. I
> see if connecting, and then it "dies" without even displaying me the
> login screen.
> 
> Is there something else I need todo to make it work?
> 
You need to use latest version of rdesktop from rdesktop.sf.net to use 
it with windows 2008. Also, rpmforge has latest version packaged ...

-- 
CL Martinez
carlopmart {at} gmail {d0t} com
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] OT: rebuild kmod rpm package from src.rpm

2009-06-11 Thread carlopmart
Hi all,

  I would like to rebuild a kmod.src.rpm package for a specific kernel. 
When I try to do it, this message appears:

Building target platforms: i686
Building for target i686
error: Failed build dependencies:
  kernel-xen-devel-i686 = 2.6.18-98.el5 is needed by 
mymodule-kmod-0.1.5-2.i686
 kernel-PAE-devel-i686 = 2.6.18-98.el5 is needed by 
mymodule-kmod-0.1.5-2.i686.

  Is it possible to rebuild kmod.src.package only for certain kernel?? i 
don't need to rebuild this module for kernel-xen or kernel-PAE only for 
kernel-i686 ...

  Thanks.
-- 
CL Martinez
carlopmart {at} gmail {d0t} com
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] OT: rebuild kmod rpm package from src.rpm

2009-06-11 Thread Nicolas Thierry-Mieg


carlopmart wrote:
> Hi all,
> 
>   I would like to rebuild a kmod.src.rpm package for a specific kernel. 
> When I try to do it, this message appears:
> 
> Building target platforms: i686
> Building for target i686
> error: Failed build dependencies:
>   kernel-xen-devel-i686 = 2.6.18-98.el5 is needed by 
> mymodule-kmod-0.1.5-2.i686
>  kernel-PAE-devel-i686 = 2.6.18-98.el5 is needed by 
> mymodule-kmod-0.1.5-2.i686.
> 
>   Is it possible to rebuild kmod.src.package only for certain kernel?? i 
> don't need to rebuild this module for kernel-xen or kernel-PAE only for 
> kernel-i686 ...
> 

Never done this for kmods, but I would try rpm -ivh the srpm, then edit 
the SPEC file to keep only the i686 stuff.
then rpmbuild -ba your new specfile.
This should be done as a regular user, see
http://wiki.centos.org/HowTos/SetupRpmBuildEnvironment


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


Re: [CentOS] OT: rebuild kmod rpm package from src.rpm

2009-06-11 Thread Tosh
carlopmart wrote:
> Hi all,
>
>I would like to rebuild a kmod.src.rpm package for a specific kernel.
> When I try to do it, this message appears:
>
> Building target platforms: i686
> Building for target i686
> error: Failed build dependencies:
>kernel-xen-devel-i686 = 2.6.18-98.el5 is needed by
> mymodule-kmod-0.1.5-2.i686
>   kernel-PAE-devel-i686 = 2.6.18-98.el5 is needed by
> mymodule-kmod-0.1.5-2.i686.
>
>Is it possible to rebuild kmod.src.package only for certain kernel?? i
> don't need to rebuild this module for kernel-xen or kernel-PAE only for
> kernel-i686 ...
>
>Thanks.
Somewhere in your spec file there is a kvariant defined, looks like this
> # Define the variants for each architecture.
> %define basevar ""
> %ifarch i686
> %define paevar PAE
> %endif
> %ifarch i686 x86_64
> %define xenvar xen
> %endif
>
> # If kvariants isn't defined on the rpmbuild line, build all variants for 
> this $
> %{!?kvariants: %define kvariants %{?basevar} %{?xenvar} %{?paevar}}
edit these lines to your needs
in your case I would change it to this and it should work

> # Define the variants for each architecture.
> %define basevar ""
> %ifarch i686
> #%define paevar PAE
> %endif
> %ifarch i686 x86_64
> %define xenvar xen
> %endif
>
> # If kvariants isn't defined on the rpmbuild line, build all variants
> %{!?kvariants: %define kvariants %{?basevar}}

-- 
Toshaan  - http://www.toshaan.be
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] munin stopped working

2009-06-11 Thread Kai Schaetzl
Filipe Brandenburger wrote on Wed, 10 Jun 2009 22:13:14 -0400:

> I think for the second error in that thread you have to rollback your
> rrdtool from 1.3.7 to 1.2.30:

Yes, that is what I finally did and what prompted me to post about --
allowdowngrade and versionlock as they don't seem to work.

Kai

-- 
Kai Schätzl, Berlin, Germany
Get your web at Conactive Internet Services: http://www.conactive.com



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


Re: [CentOS] yum --allow-downgrade and versionlocking not working

2009-06-11 Thread Kai Schaetzl
Filipe Brandenburger wrote on Wed, 10 Jun 2009 23:31:46 -0400:

> Another way to do it is to add:
> 
> exclude=rrdtool perl-rrdtool
> 
> to the [rpmforge] repository configuration in /etc/yum.repos.d/rpmforge.repo.

yeah, I can do that and did it now. And I did it last time with perl-DBI.
However, the versionlock plugin should be the "right way" to do this. If it 
worked. Either I'm doing somethign wrong or there are bugs. That's what I want 
to find out. Some for the --allowdowngrade. If it doesn't work it has to be 
fixed. If nobody can give me working examples I'm going to bug both issues once 
I have time.

> 
> I don't really know the versionlock plug-in so I don't know if it was
> supposed to do something different than what that does...

It seems that exclude excludes the packages also for dependancy resolution, so 
that they appear to not being installed.
And I'm hitting now more problems in this direction.
After excluding rrdtool I get
Error: Package tuple ('perl-DBD-mysql', 'i386', '0', '4.011', '1.el5.rf') could 
not be found in packagesack

that is a package that obsoleted the base perl-DBD-MySQL (note the different 
capitatization) without warning sometime last year. I went back to the base 
version and added the obsoletes checking to priorities.conf. All was well for 
some time. But now it starts to complain out of the blue.
After I add it to the exclusion list
exclude=spamassassin*,perl-IO*,perl-File-Temp,rrdtool,perl-rrdtool,perl-DBD-
mysql
I get the next error:
Error: Package tuple ('perl-Date-Manip', 'noarch', '0', '5.54', '2.el5.rf') 
could not be found in packagesack

That package wasn't ever installed I think.
rpm -q --whatrequires perl-Date-Manip
no package requires perl-Date-Manip

Ah, the tuple problem is introduced by versionlock. I had removed the comment 
for follow_obsoletes = 1 so I don't get another surprise as with 
priorities.conf.
#  Uncomment this to lock out "upgrade via. obsoletes" etc. (slower)

Once I comment out follow_obsoletes from versionlock.conf I get:
 perl-Date-Manip   noarch   5.54-2.el5.rf  rpmforge   210 k
 replacing  perl-DateManip.noarch 5.44-1.2.1

So, that is doing the exact opposite of check_obsoletes in priorities.conf and 
overrides it. It doesn't do what the comment says. Nice.

Ok, versionlock is working now.
Removed the exlude and added
rrdtool-1.2.30-1.el5.rf

perl-rrdtool-1.2.30-1.el5.rf
to versionlock.list
follow-obsoletes in versionlock conf commented again.
Hope, this helps others.


Kai

-- 
Kai Schätzl, Berlin, Germany
Get your web at Conactive Internet Services: http://www.conactive.com


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


[CentOS] OT: Windows Vista Tablet PC linux alternative

2009-06-11 Thread Sorin Srbu
Hi all,

I have this tabletpc one of my bosses insisted on buying. The machine runs 
Windows Vista TabletPC Edition. As it happens I have a thousand and one 
problems with this POS operating system... I think the hardware is fine 
though, so it's not that.

Would any of you guys know of some kind of linux-based alternative, 
preferrably available on or for CentOS, that can do the same 
hand-writing-on-screen-tricks as Vista Tablet does?

Please excuse this off-topic post, but the frustration with Vista runs high 
over here right now. 8-/ Mail me privately if you feel this shouldn't be 
discussed on-list but want to hint me anyway.

Thanks.
-- 
BW,
Sorin
---
# Sorin Srbu[Sysadmin, Systems Engineer]
# Dept of Medicinal Chemistry,  Phone: +46 (0)18-4714482 >3 signals> GSM
# Div of Org Pharm Chem,Mobile: +46 (0)701-718023
# Box 574, Uppsala University,  Fax: +46 (0)18-4714482
# SE-751 23 Uppsala, Sweden Visit: BMC, Husargatan 3, D5:512b
#   Web: http://www.orgfarm.uu.se
---
# ()  ASCII ribbon campaign - Against html E-mail
# /\
#
# MotD follows:
# Geeky it-haiku #09: Wasting time/Is fun while others/Slave away.




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


Re: [CentOS] OT: rebuild kmod rpm package from src.rpm

2009-06-11 Thread Akemi Yagi
On Thu, Jun 11, 2009 at 1:55 AM, carlopmart wrote:
> Hi all,
>
>  I would like to rebuild a kmod.src.rpm package for a specific kernel.
> When I try to do it, this message appears:
>
> Building target platforms: i686
> Building for target i686
> error: Failed build dependencies:
>          kernel-xen-devel-i686 = 2.6.18-98.el5 is needed by
> mymodule-kmod-0.1.5-2.i686
>         kernel-PAE-devel-i686 = 2.6.18-98.el5 is needed by
> mymodule-kmod-0.1.5-2.i686.
>
>  Is it possible to rebuild kmod.src.package only for certain kernel?? i
> don't need to rebuild this module for kernel-xen or kernel-PAE only for
> kernel-i686 ...

This CentOS wiki is for you:

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

Please go to section 3. Building a kernel module rpm package (kmod).
There are some example lines near the end.  This one may be of help:

"In a similar fashion, you may select which kernel-variant kmod
package(s) to build. For example:

[u...@host SPECS]$ rpmbuild -bb --target=`uname -m` --define
'kvariants ""' cifs-kmod.spec 2> build-err.log | tee build-out.log

will build just the base-kernel kmod package. "

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


[CentOS] How to reply to a digest

2009-06-11 Thread David McGuffey
I'm receiving the centos-request in digest mode. Using Fedora 10 and
Evolution. When I tried to reply to a centos-request message inside the
digest, the result doesn't seem to look right.  I cut/paste the proper
subject line (replacing the CentOS Digest, Vol NN, Issue nn text), but
some have complained that this approach doesn't allow the original
question and replies to be threaded.

So...what is the appropriate way to respond when one is receiving the
digest version?

Dave


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


Re: [CentOS] How to reply to a digest

2009-06-11 Thread M. Fioretti
On Thu, Jun 11, 2009 07:42:28 AM -0400, David McGuffey wrote:

> So...what is the appropriate way to respond when one is receiving
> the digest version?

It probably is to automatically split the digest into the original,
separate message as soon as it arrives, using procmail or
formail. Search for "procmail split digests" and you'll find
several explanations.

This said, I really have to ask: do whatever you like as long as you
don't break threads but... why on Earth do you use digests? Are you
with an ISP which limits how many messages you can receive per day?
That's the only valid reasons I've ever read for digests in ~15 years
of email usage...

Just curious,
Marco Fioretti
-- 
Your own civil rights and the quality of your life heavily depend on how
software is used *around* you:http://digifreedom.net/node/84
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] OT: Windows Vista Tablet PC linux alternative

2009-06-11 Thread Karanbir Singh
On 06/11/2009 12:09 PM, Sorin Srbu wrote:
> Would any of you guys know of some kind of linux-based alternative,
> preferrably available on or for CentOS, that can do the same
> hand-writing-on-screen-tricks as Vista Tablet does?

cellwriter and xournal are what I've been using for a few years now on 
my tc4400, no idea what the windows s/w does, but these two do all that 
I need with the tablet

-- 
Karanbir Singh : http://www.karan.org/  : 2522...@icq
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] Problems with Broadcom 4312 wireless

2009-06-11 Thread David McGuffey
I'm migrating my son's Dell laptop from Vista to CentOS 5.3.  He came
back from each of his first two years of college loaded with virii and
trojans.  This year he said "Dad, can you give me Linux?"

5.3 went onto the laptop easily and after doing some research, I applied
the guidance for getting multimedia working and got the nvidia driver
loaded.  That works great.

Last problem is with the Broadcom 4312 wireless device.  Again, did some
research and found two ways.  One was the Broadcom provided Linux
driver, and the other was the guidance on how to use fw-cutter from
linuxwireless.com.  

Had a problem getting the Broadcom driver to compile (failed with a
"define TYPEDEF_BOOL" collision that I couldn't work out). Has been many
a year since I last worked with C/C++, so I tried the other guidance to
use fw-cutter. I now have partial success. The wireless device light
comes on, and the device attempts to negotiate a connection with a
wireless firewall/switch (I control). Need help figuring out why it is
failing.  Here is some output that might help:


Some relevant lines from /var/log/messages:

Jun 10 20:15:24 ErichLaptop NetworkManager:   Activation (eth0)
starting connection 'System eth0' 
Jun 10 20:15:24 ErichLaptop NetworkManager:   (eth0): device state
change: 3 -> 4 
Jun 10 20:15:24 ErichLaptop NetworkManager:   Activation (eth0)
Stage 1 of 5 (Device Prepare) scheduled... 
Jun 10 20:15:24 ErichLaptop NetworkManager:   Activation (eth0)
Stage 1 of 5 (Device Prepare) started... 
Jun 10 20:15:24 ErichLaptop NetworkManager:   Activation (eth0)
Stage 2 of 5 (Device Configure) scheduled... 
Jun 10 20:15:24 ErichLaptop NetworkManager:   Activation (eth0)
Stage 1 of 5 (Device Prepare) complete. 
Jun 10 20:15:24 ErichLaptop NetworkManager:   Activation (eth0)
Stage 2 of 5 (Device Configure) starting... 
Jun 10 20:15:24 ErichLaptop NetworkManager:   (eth0): device state
change: 4 -> 5 
Jun 10 20:15:24 ErichLaptop NetworkManager:   Activation (eth0)
Stage 2 of 5 (Device Configure) successful. 
Jun 10 20:15:24 ErichLaptop NetworkManager:   Activation (eth0)
Stage 3 of 5 (IP Configure Start) scheduled. 
Jun 10 20:15:24 ErichLaptop NetworkManager:   Activation (eth0)
Stage 2 of 5 (Device Configure) complete. 
Jun 10 20:15:24 ErichLaptop NetworkManager:   Activation (eth0)
Stage 3 of 5 (IP Configure Start) started... 
Jun 10 20:15:24 ErichLaptop NetworkManager:   (eth0): device state
change: 5 -> 7 
Jun 10 20:15:24 ErichLaptop NetworkManager:   Activation (eth0)
Beginning DHCP transaction. 
Jun 10 20:15:24 ErichLaptop dhclient: Internet Systems Consortium DHCP
Client V3.0.5-RedHat
Jun 10 20:15:24 ErichLaptop NetworkManager:   dhclient started
with pid 3557 
Jun 10 20:15:24 ErichLaptop dhclient: Copyright 2004-2006 Internet
Systems Consortium.
Jun 10 20:15:24 ErichLaptop NetworkManager:   Activation (eth0)
Stage 3 of 5 (IP Configure Start) complete. 
Jun 10 20:15:24 ErichLaptop dhclient: All rights reserved.
Jun 10 20:15:24 ErichLaptop dhclient: For info, please visit
http://www.isc.org/sw/dhcp/
Jun 10 20:15:24 ErichLaptop dhclient: 
Jun 10 20:15:24 ErichLaptop NetworkManager:   DHCP: device eth0
state changed normal exit -> preinit 
Jun 10 20:15:24 ErichLaptop dhclient: Listening on
LPF/eth0/00:21:70:78:41:51
Jun 10 20:15:24 ErichLaptop dhclient: Sending on
LPF/eth0/00:21:70:78:41:51
Jun 10 20:15:24 ErichLaptop dhclient: Sending on   Socket/fallback
Jun 10 20:15:24 ErichLaptop dhclient: DHCPDISCOVER on eth0 to
255.255.255.255 port 67 interval 7
Jun 10 20:15:26 ErichLaptop dhclient: DHCPOFFER from 192.168.1.1
Jun 10 20:15:26 ErichLaptop dhclient: DHCPREQUEST on eth0 to
255.255.255.255 port 67
Jun 10 20:15:26 ErichLaptop dhclient: DHCPACK from 192.168.1.1
Jun 10 20:15:26 ErichLaptop dhclient: bound to 192.168.1.6 -- renewal in
42971 seconds.
Jun 10 20:15:26 ErichLaptop NetworkManager:   DHCP: device eth0
state changed preinit -> bound 
Jun 10 20:15:26 ErichLaptop NetworkManager:   Activation (eth0)
Stage 4 of 5 (IP Configure Get) scheduled... 
Jun 10 20:15:26 ErichLaptop NetworkManager:   Activation (eth0)
Stage 4 of 5 (IP Configure Get) started... 
Jun 10 20:15:26 ErichLaptop NetworkManager: address
192.168.1.6 
Jun 10 20:15:26 ErichLaptop NetworkManager: prefix 24
(255.255.255.0) 
Jun 10 20:15:26 ErichLaptop NetworkManager: gateway
192.168.1.1 
Jun 10 20:15:26 ErichLaptop NetworkManager: hostname
'ErichLap.mcguffeyfamily.net' 
Jun 10 20:15:26 ErichLaptop NetworkManager: nameserver
'192.168.1.1' 
Jun 10 20:15:26 ErichLaptop NetworkManager: domain name
'mcguffeyfamily.net' 
Jun 10 20:15:26 ErichLaptop NetworkManager:   Activation (eth0)
Stage 5 of 5 (IP Configure Commit) scheduled... 
Jun 10 20:15:26 ErichLaptop NetworkManager:   Activation (eth0)
Stage 4 of 5 (IP Configure Get) complete. 
Jun 10 20:15:26 ErichLaptop NetworkManager:   Activation (eth0)
Stage 5 of 5 (IP Configure Commit) started... 
Jun 10 20:15:26 ErichLaptop avahi-daemon[2948]: New relevant interface
eth

Re: [CentOS] External SATA enclosures: SiI3124 and CentOS 5?

2009-06-11 Thread Darryl Ross
Few days late responding to this. Sorry, just catching up on emails.

Benjamin Smith wrote:
> Tired of "little problems" trying to keep 7 drives working in an old
> desktop computer, I'm considering an external SATA drive enclosure with
> a controller card based on the Sil3124.
> http://www.ipcdirect.net/servlet/Detail?no=152

Been there, done that. Upgraded to a Norco DS1220 12bay e-SATA unit for
my MythTV machine. Thinking of adding a second one.

> I'm a bit concerned about long-term support, namely that the company's
> driver page only lists drivers through RedHat 4.
> http://www.siliconimage.com/support/searchresults.aspx?pid=27&cat=3

The sata_sil cards are pretty well supported by the sata_sil24 driver in
kernels >= 2.6.25, or earlier kernels with the libata patches applied.

> Does anybody else have experience with this controller? How has it been
> for you?

Not that controller, but pretty similar:

[dar...@server1 ~]$ /sbin/lspci | grep RAID
01:00.0 RAID bus controller: Silicon Image, Inc. SiI 3132 Serial ATA
Raid II Controller (rev 01)

> If you have experience with an external SATA enclosure(s), what did you
> use and how did it work for you?

As mentioned, I have a Norco DS1220[1] which has only one 'strange'
thing about it. It has 12 bays. It is wired with 2 lots of 5 drives on a
port multiplier and the 11th and 12th drive as straight e-SATA with no
port multiplier for a total of 4 e-SATA ports. I thought it would have
made more sense to put 4 on 3 multipliers or 3 on 4 multipliers, but
anyway.

What I did with mine was to use one of those PC back panel brackets that
have a couple of eSATA ports and plug into the motherboard SATA
connectors and have my boot drives on those. That way the drives are
still in the enclosure but the motherboard sees them on the on-board ports.

Regards
Darryl

[1] http://www.norcotek.com/DS-1220.php
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Problems with Broadcom 4312 wireless

2009-06-11 Thread Phil Schaffner
David McGuffey wrote:
> I'm migrating my son's Dell laptop from Vista to CentOS 5.3.  He came
> back from each of his first two years of college loaded with virii and
> trojans.  This year he said "Dad, can you give me Linux?"

Wish I could get mine around to that point. Re-installing Windows gets 
old pretty fast.

...
> Last problem is with the Broadcom 4312 wireless device.  Again, did some
> research and found two ways.  One was the Broadcom provided Linux
> driver, and the other was the guidance on how to use fw-cutter from
> linuxwireless.com.
...

This forum thread may be useful:
http://www.centos.org/modules/newbb/viewtopic.php?topic_id=20640&forum=40

Although it is for a similar but different piece of Broadcom hardware, 
and does not come to a clean resolution, the key point seems to be:
---

Will you please now look at the output of a /sbin/lspci -n command that 
relates to your BCM4311 card.

If the Vendor:Device ID pairing is one of the following --

14E4:4301
14E4:4307
14E4:4311
14E4:4312
14E4:4318
14E4:4319
14E4:4320
14E4:4324
14E4:4325


-- then the bcm43xx driver module present in the distributed CentOS 
kernel will be appropriate for that card. In other words, there will be 
no need for you to use ndiswrapper.
---

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


[CentOS] problems accessing: http://apt.sw.be/

2009-06-11 Thread Marcelo M. Garcia
Hi

Anyone else having problems to access http://apt.sw.be/

Regards

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


Re: [CentOS] problems accessing: http://apt.sw.be/

2009-06-11 Thread James Bensley
No I get a page headed with:

RPMforge RPM repository for Red Hat, RHEL, CentOS and Fedora

Is that correct?


-BEGIN GEEK CODE BLOCK-
  Version: 3.1
GIT/MU/U dpu s: a--> C++>$ U+> L++> B-> P+> E?> W+++>$ N K W++ O M++>$ V-
PS+++ PE++ Y+ PGP t 5 X+ R- tv+ b+> DI D+++ G+ e(+) h--(++) r++ z++
--END GEEK CODE BLOCK--
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] krb5kdc fails to start

2009-06-11 Thread Filipe Brandenburger
Hi,

On Thu, Jun 11, 2009 at 01:23, Hugh E Cruickshank wrote:
> Give the man a cigar! rpc.statd strikes again.
> Now to figure out how to fix that.

In short term, this command should restart rpc.statd which will
probably bind to a different port:

# service nfslock restart

After that, you can restart krb5kdc and it should get its free port
(it might take some minutes if the port gets to the TIME_WAIT state).

In long term, you can add the following variable definition to
/etc/sysconfig/nfs (you will probably have to create this file):

STATD_PORT=2053

This will bind rpc.statd to a fixed port (2053 in my case).

I also used this file to fix all the other ports of NFS related daemons:

LOCKD_TCPPORT=2050
LOCKD_UDPPORT=2050
RQUOTAD_PORT=2051
MOUNTD_PORT=2052
STATD_PORT=2053
STATD_OUTGOING_PORT=2054

I started them at 2050 as nfsd itself will use 2049. That way I can
allow NFS traffic through the firewall by allowing ports 2049-2054 for
both TCP and UDP in both directions.

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


Re: [CentOS] problems accessing: http://apt.sw.be/

2009-06-11 Thread Marcelo M. Garcia
James Bensley wrote:
> No I get a page headed with:
> 
> RPMforge RPM repository for Red Hat, RHEL, CentOS and Fedora
> 
> Is that correct?
> 
> 
> -BEGIN GEEK CODE BLOCK-
>   Version: 3.1
> GIT/MU/U dpu s: a--> C++>$ U+> L++> B-> P+> E?> W+++>$ N K W++ O M++>$ V-
> PS+++ PE++ Y+ PGP t 5 X+ R- tv+ b+> DI D+++ G+ e(+) h--(++) r++ z++
> --END GEEK CODE BLOCK--
Hi

Hummm... It's up again.

Thanks

mg.

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


[CentOS] Bind krb5kdc only to eth1 and not also to ppp0

2009-06-11 Thread Olaf Mueller
Hello,

if starting /etc/init.d/krb5kdc, kerberos binds to eth1 and the
*current* ip of ppp0.

# netstat -nap | grep :750\\b
udp0  0 91.9.220.166:7500.0.0.0:*   
   
3180/krb5kdc
udp0  0 192.168.0.1:750 0.0.0.0:*   
   
3180/krb5kdc

# netstat -nap | grep :88\\b
tcp0  0 0.0.0.0:88  0.0.0.0:*  
LISTEN  3180/krb5kdc
udp0  0 91.9.220.166:88 0.0.0.0:*   
   
3180/krb5kdc
udp0  0 192.168.0.1:88  0.0.0.0:*   
   
3180/krb5kdc

Since my internet provider changes the address of ppp0 for every 24
hours and since the last start of /etc/init.d/krb5kdc was 10 days ago
(with the last reboot of my server), kerberos still binds to the old ip
of ppp0.

How can I force krb5kdc to bind *only* to my local address 192.168.0.1
(eth1) and not to bind also to the current ip of ppp0?

Thank you!


regards
Olaf

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


Re: [CentOS] Tracking updates

2009-06-11 Thread Martin Spinassi
On Wed, 2009-06-10 at 17:42 +0200, Per Qvindesland wrote:
> Hi
> 
> Ocsinventory http://www.ocsinventory-ng.org/ might be considered if
> not then I could also recommend Spacewalk
> http://www.redhat.com/spacewalk/  for something like this both runs
> well on Centos
> 
> Per

Thanks for your suggestions Per.
Correct me if I'm wrong, but as far as I can tell by surfing the sites,
they are applications to admin servers, you can use it to install new
packages/updates, but it doesn't have a tracking system to let you know
what was the previous version, and when it was updated.
If I'm wrong, please let me know it.


Cheers


Martín

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


[CentOS] NAS Storage server question

2009-06-11 Thread Coert Waagmeester
Hello all,


At our office a have a server running 3 Xen domains. Mail server, etc.

I want to make this setup more redundant.

There are a few howtos on the combination of Xen, DRBD, and heartbeat.
That is probably the best way.

Another option I am looking at is a piece of shared storage,
a machine running CentOS with a large software RAID 5 array.

What is the best means of sharing the storage?
I would really like to use a combination of an iSCSI target server, and
GFS or OCFS.

But the iSCSI target server in the CentOS repos is a 'technology
preview'

Have any of you used the iSCSI target server in a production environment
yet?

Is NFS and option?

Kind regards,
Coert Waagmeester

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


Re: [CentOS] OT: Windows Vista Tablet PC linux alternative

2009-06-11 Thread Sorin Srbu
>-Original Message-
>From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On
Behalf
>Of Karanbir Singh
>Sent: Thursday, June 11, 2009 2:04 PM
>To: CentOS mailing list
>Subject: Re: [CentOS] OT: Windows Vista Tablet PC linux alternative
>
>> Would any of you guys know of some kind of linux-based alternative,
>> preferrably available on or for CentOS, that can do the same
>> hand-writing-on-screen-tricks as Vista Tablet does?
>
>cellwriter and xournal are what I've been using for a few years now on
>my tc4400, no idea what the windows s/w does, but these two do all that
>I need with the tablet

Windows Tablet allows for using handwriting on screen and entering it more
or less automatically to eg Word.

Thanks for the hints, I'll those up.
-- 
/Sorin


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


Re: [CentOS] NAS Storage server question

2009-06-11 Thread Joseph L. Casale
>Have any of you used the iSCSI target server in a production environment
>yet?
>
>Is NFS and option?

Briefly, but iet has been rock stable for me. It just runs forever...
I have only used NFS under vmware, it worked good.

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


Re: [CentOS] problems accessing: http://apt.sw.be/

2009-06-11 Thread Anne Wilson
On Thursday 11 June 2009 14:01:24 Marcelo M. Garcia wrote:
> Hi
>
> Anyone else having problems to access http://apt.sw.be/
>
Works here.

Anne
-- 
New to KDE4? - get help from http://userbase.kde.org
Just found a cool new feature?  Add it to UserBase


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] NAS Storage server question

2009-06-11 Thread Ron Lorah
I use NFS - stable solution, but if your looking more for redundancy, 
use the DRBD and heartbeat
solution you mentioned. I have quite a few system running this - it 
works very well. You may also
use Raid with DRBD. Sorry, I have never used iSCSI Target, looks 
interesting though.

~Ron

Coert Waagmeester wrote:
> Hello all,
>
>
> At our office a have a server running 3 Xen domains. Mail server, etc.
>
> I want to make this setup more redundant.
>
> There are a few howtos on the combination of Xen, DRBD, and heartbeat.
> That is probably the best way.
>
> Another option I am looking at is a piece of shared storage,
> a machine running CentOS with a large software RAID 5 array.
>
> What is the best means of sharing the storage?
> I would really like to use a combination of an iSCSI target server, and
> GFS or OCFS.
>
> But the iSCSI target server in the CentOS repos is a 'technology
> preview'
>
> Have any of you used the iSCSI target server in a production environment
> yet?
>
> Is NFS and option?
>
> Kind regards,
> Coert Waagmeester
>
> ___
> 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] OT: Windows Vista Tablet PC linux alternative

2009-06-11 Thread Tosh
Sorin Srbu wrote:
>> -Original Message-
>> From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On
> Behalf
>> Of Karanbir Singh
>> Sent: Thursday, June 11, 2009 2:04 PM
>> To: CentOS mailing list
>> Subject: Re: [CentOS] OT: Windows Vista Tablet PC linux alternative
>>
>>> Would any of you guys know of some kind of linux-based alternative,
>>> preferrably available on or for CentOS, that can do the same
>>> hand-writing-on-screen-tricks as Vista Tablet does?
>> cellwriter and xournal are what I've been using for a few years now on
>> my tc4400, no idea what the windows s/w does, but these two do all that
>> I need with the tablet
>
> Windows Tablet allows for using handwriting on screen and entering it more
> or less automatically to eg Word.
>
> Thanks for the hints, I'll those up.

The mentioned software by Karanbir :
cellwriter, write letter by letter and convert this to text (like the 
old palm input)
xournal, is a good replacement for onenote, but doesn't have the 
conversion handwriting to text

one more thing, if you install CentOS, you will need to add your stylus 
manually to /etc/X11/xorg.conf, for more info go to 
http://www.thinkwiki.org/wiki/Wacom_Serial_Tablet_PC_Stylus
worked for my Toshiba Portégé M400


-- 
Toshaan  - http://www.toshaan.be
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] OT: Windows Vista Tablet PC linux alternative

2009-06-11 Thread Sorin Srbu
>-Original Message-
>From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On
Behalf
>Of Tosh
>Sent: Thursday, June 11, 2009 4:47 PM
>To: CentOS mailing list
>Subject: Re: [CentOS] OT: Windows Vista Tablet PC linux alternative
>
>The mentioned software by Karanbir :
>cellwriter, write letter by letter and convert this to text (like the
>old palm input)

That sounds about right. You get a textbox to write in and it will dump the
input to whatever editor you set?


>xournal, is a good replacement for onenote, but doesn't have the
>conversion handwriting to text

Don't know about Onenote. Is that part of the text input in Vista Tablet or
something?


>one more thing, if you install CentOS, you will need to add your stylus
>manually to /etc/X11/xorg.conf, for more info go to
>http://www.thinkwiki.org/wiki/Wacom_Serial_Tablet_PC_Stylus
>worked for my Toshiba Portégé M400

Nice!

This is a Fujitsu Lifebook T-series. But there is a sticker on it saying
"Penabled Wacom". It's probably the same thing as on your Toshiba.

Thanks!

I'll mention this to the boss and see if he's all in or not...
-- 
/Sorin


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


Re: [CentOS] NAS Storage server question

2009-06-11 Thread Rainer Duffner
Coert Waagmeester schrieb:
> Hello all,
>
>
> At our office a have a server running 3 Xen domains. Mail server, etc.
>
> I want to make this setup more redundant.
>
> There are a few howtos on the combination of Xen, DRBD, and heartbeat.
> That is probably the best way.
>
> Another option I am looking at is a piece of shared storage,
> a machine running CentOS with a large software RAID 5 array.
>   

How large?
Depending on the size, RAID6 is the better option (with >=1TB disks, the
rebuild can take longer than the statistical average time another disk
needs to fail).


> What is the best means of sharing the storage?
> I would really like to use a combination of an iSCSI target server, and
> GFS or OCFS.
>
>   


If you don't already do GFS (and have been doing so for years), I'd say
you better only do it in a configuration that is either supported by
RedHat (e.g. with RHEL) or some competent 3rd-party that can help you
over the pitfalls.
Else you are on your own, with only the GFS mailinglist, yourself and
your keyboard ;-)





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


Re: [CentOS] Problems with Broadcom 4312 wireless

2009-06-11 Thread Bart Schaefer
On Thu, Jun 11, 2009 at 4:54 AM, David
McGuffey wrote:
> Last problem is with the Broadcom 4312 wireless device.  Again, did some
> research and found two ways.  One was the Broadcom provided Linux
> driver, and the other was the guidance on how to use fw-cutter from
> linuxwireless.com.

There are some possibly-related notes on this page in the wiki:

http://wiki.centos.org/HowTos/Laptops/HP/Pavilion-ze5300_Series

Short summary: neither bcm43xx nor ndiswrapper are a perfect solution,
and you may need to blacklist the bcm43xx driver to use ndiswrapper.

That wiki entry was originally written for CentOS 5.0.  I'm currently
running 5.3 with the supplied bcm43xx driver and it has some problems
with duplicate/dropped packets so the performance is suboptimal, but
it does work.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] HELP SAMBA + LDAP

2009-06-11 Thread Samir RHAOUSSI
Hello everybody,

Please does some one have any "documentation", "tutorial", "how to" about
setting up a PDC basing on Samba with a LDAP (OpenLDAP) backend ?

I really need it for my studies end project

thank you very very much for your help

-- 
Samir RHAOUSSI
ENIM 2009
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] NAS Storage server question

2009-06-11 Thread Coert Waagmeester

On Thu, 2009-06-11 at 17:14 +0200, Rainer Duffner wrote:
> Coert Waagmeester schrieb:
> > Hello all,
> >
> >
> > At our office a have a server running 3 Xen domains. Mail server, etc.
> >
> > I want to make this setup more redundant.
> >
> > There are a few howtos on the combination of Xen, DRBD, and heartbeat.
> > That is probably the best way.
> >
> > Another option I am looking at is a piece of shared storage,
> > a machine running CentOS with a large software RAID 5 array.
> >   
> 
> How large?
> Depending on the size, RAID6 is the better option (with >=1TB disks, the
> rebuild can take longer than the statistical average time another disk
> needs to fail).

I am starting with 4 1TB SATA disks.

With RAID 6 that will give me 2 TB right?
> 
> 
> > What is the best means of sharing the storage?
> > I would really like to use a combination of an iSCSI target server, and
> > GFS or OCFS.
> >
> >   
> 
> 
> If you don't already do GFS (and have been doing so for years), I'd say
> you better only do it in a configuration that is either supported by
> RedHat (e.g. with RHEL) or some competent 3rd-party that can help you
> over the pitfalls.
> Else you are on your own, with only the GFS mailinglist, yourself and
> your keyboard ;-)
> 
Will OCFS be easier?
> 
> 
> 
> 
> Rainer
> ___
> 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] IPv6 range provisioning question

2009-06-11 Thread Vadtec
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

So can anyone offer any insight into this? See my reply at the bottom of the
message.

Vadtec
vad...@vadtec.net

Vadtec wrote:
> Louis Lagendijk wrote:
>> On Wed, 2009-06-10 at 13:08 -0500, Vadtec wrote:
>>> -BEGIN PGP SIGNED MESSAGE-
>>> Hash: SHA1
>>>
>>> A few months back, I tried to use the network scripts to provision an IPv6 
>>> range
>>> like can be done with IPv4. I was using CentOS 5.2 at the time and was 
>>> informed
>>> that 5.2 was broken in this regard. I have upgraded to CentOS 5.3 now and I 
>>> am
>>> trying to get IPv6 to provision an entire range of IPs, but I am still 
>>> getting
>>> the old behavior and no IPs are being provisioned.
>>>
>>> I have been following the docs provided by the link in the
>>> /etc/sysconfig/network-scripts/ifup-ipv6 at
>>> http://www.deepspace6.net/projects/initscripts-ipv6.html#id2801589 and 
>>> using the
>>> following configs:
>>>
>>> /etc/sysconfig/network
>>> NETWORKING=yes
>>> GATEWAY=***.***.***.***
>>> GATEWAYDEV=eth0
>>> HOSTNAME=vadtec
>>>
>>> NETWORKING_IPV6=yes
>>> IPV6FORWARDING=no
>>> IPV6_AUTOCONF=no
>>> IPV6_AUTOTUNNEL=no
>>> IPV6_DEFAULTDEV=eth0:1
>>> IPV6_DEFAULTGW=2001:0470:0103:001A::1
>>>
>>> /etc/sysconfig/network-scripts/ifcfg-eth0-1
>> Why do you need an alias device here? Put the ipv6 config on the eth0
>> device,and add the configuration to the ifcfg-eth0 file
> 
>>> DEVICE=eth0:1
>>> IPV6INIT=yes
>>> IPV6ADDR=2001:0470:0103:001A:0001::::/96
>> You are allocating a /96 with all 0 in the last 32 bits. So you are not
>> allocating an address. Why a /96? Using a /64 is pretty much the
>> standard for ipv6. 
> 
>>> IPV6_AUTOCONF=no
>>> IPV6_ROUTER=no
>>> IPV6FORWARDING=no
>>> ONBOOT=no
>>>
>>> When I run service network restart, it doesn't even provision the default 
>>> IPv6
>>> GW on eth0:1, nor does eth0:1 even show up.
>> I must admit I never tried an v6 address on an alias, so I have no clue
>> whether it works or not. But you can have both v4 and v6 addresses next
>> to each other on the eth0 device
>>> If I run tail /var/log/boot.log, boot.log is empty. If I run tail
>>> /var/log/messages, I see varying amounts of:
>>>
>>> Jun 10 11:42:14 localhost kernel: [208192.884652] eth0: duplicate address 
>>> detected!
>>>
>> Probably due to the all 0 in the part AFTER the /96
>>> I see no other errors or messages saying anything is wrong or otherwise.
>> Autoconfiguration is the way to go if you want to make it easy. On my
>> server I set the addresses manually like
>> DEVICE=eth0.159
>> ONBOOT=yes
>> BOOTPROTO=none
>> NETMASK=255.255.255.0
>> HWADDR=00:1a:92:d6:99:91
>> IPADDR=192.168.159.1
>> #GATEWAY=192.168.178.1
>> TYPE=Ethernet
>> USERCTL=no
>> IPV6INIT=yes
>> IPV6FORWARDING="yes"
>> # v6 address changed to protect the innocent
>> IPV6ADDR="2001:888:118e:18a2::1/64"
>> PEERDNS=no
>> VLAN=yes
>> Please not that I am using vlans, hence the .159 on the eth0. Normally
>> you do not need that and you leave the VLAN=yes off.
>> Please note the ::1 at the end of the address.
>> I use radvd on that machine (so here I need to set fixed v6 addresses),
>> but the clients do not neede that:
> 
>> DEVICE=eth0
>> BOOTPROTO=none
>> DNS1=192.168.159.1
>> IPADDR=192.168.159.3
>> NETMASK=255.255.255.0
>> HWADDR=00:11:d8:be:98:fa
>> ONBOOT=yes
>> SEARCH="pheasant"
>> USERCTL=no
>> PEERDNS=no
>> IPV6INIT=yes
>> NM_CONTROLLED=yes
>> GATEWAY=192.168.159.1
>> TYPE=Ethernet
> 
>> Here the address is set depending on the (/64) prefix received from the
>> radvd server.
> 
>> kind regards, Louis
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
>> ___
>> CentOS mailing list
>> CentOS@centos.org
>> http://lists.centos.org/mailman/listinfo/centos
> 
> Thanks for the tip about having all zeros at the end of the IP. I figured the
> script would go ahead and provision the IPs anyways. The reason I was using a
> /96 is because the machine happens to be a VPS with only 128MB of RAM, so I
> figured the less IPs I provision the less memory it will take up, which is
> limitted anyways. I also do not want to use radvd or auto configuration 
> because
> I do not need to broadcast or forward ipv6 on this vps.
> 
> As per your suggestions, I removed the extra zeros and changed the prefix to 
> /64.
> 
> I am now using the following configs:
> 
> /etc/sysconfig/network:
> NETWORKING=yes
> GATEWAY=67.202.107.1
> GATEWAYDEV=eth0
> HOSTNAME=vadtec
> 
> NETWORKING_IPV6=yes
> IPV6FORWARDING=no
> IPV6_AUTOCONF=no
> IPV6_AUTOTUNNEL=no
> IPV6_DEFAULTDEV=eth0
> IPV6_DEFAULTGW="2001:0470:0103:001A::1"
> 
> /etc/sysconfig/network-scripts/ifcfg-eth0:
> DEVICE=eth0
> IPADDR=***.***.***.***
> NETMASK=255.255.255.0
> BROADCAST=***.***.***.***
> ONBOOT=yes
> 
> IPV6INIT=yes
> IPV6ADDR="2001:0470:0103:001A::2/64"
> IPV6_AUTOCONF=no
> IPV6_ROUTER=no
> IPV6FORWARDING=no
> PEERDNS=no
> VLAN=no
> 
> 
> However, this is not provisioning an entire range as follows:
> 
> eth0  Link encap:Ethernet  

Re: [CentOS] NAS Storage server question

2009-06-11 Thread Les Mikesell
Coert Waagmeester wrote:
>
> At our office a have a server running 3 Xen domains. Mail server, etc.
> 
> I want to make this setup more redundant.
> 
> There are a few howtos on the combination of Xen, DRBD, and heartbeat.
> That is probably the best way.
> 
> Another option I am looking at is a piece of shared storage,
> a machine running CentOS with a large software RAID 5 array.
> 
> What is the best means of sharing the storage?
> I would really like to use a combination of an iSCSI target server, and
> GFS or OCFS.
> 
> But the iSCSI target server in the CentOS repos is a 'technology
> preview'
> 
> Have any of you used the iSCSI target server in a production environment
> yet?
> 
> Is NFS and option?

I've always liked the 'low-tech' way of using RAID1 in a box with 
swappable disks and keeping a spare chassis handy.  In the most common 
scenario of a single drive failure you will keep running at full speed 
and can replace the drive at your convenience. For a less likely 
motherboard or power supply failure, you move the disks to the other 
chassis and are up in the time it takes to reboot.  And if the whole 
thing melts, you can recover the data off of any single disk you have 
left.  You still need backups, of course and you need an on-site person 
to swap drives.  You could automate it a bit more with drbl and a 
heartbeat failover to keep the standby live, but that adds a lot of 
complexity and more things to go wrong.

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

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


Re: [CentOS] OT: Viewer for .docx M$ WORD files?

2009-06-11 Thread Lanny Marcus
On Wed, Jun 10, 2009 at 8:42 PM, Lanny Marcus wrote:
> On Wed, Jun 10, 2009 at 6:37 PM, Ross Walker wrote:
> 
>>> OK. I have OpenOffice.org Writer 3.1 open.
>>> There is a big problem with the way the .docx >>file was
>>> displayed. It
>>> is not pretty. I can see most or all of the words, but they are
>>> not
>>> where they should be. A formatting problem that I can fix?
> 
>> Most probably a font problem you can fix.
>> Look for msttcorefonts there is a spec file you 
>>> 
>> That's the site. It's one of those to bookmark.
>> Once you create the rpm though, stick it on flash for >future use.
>
Ross: The good news is that I learned a tiny bit about packaging this
morning. My first attempt at that  :-)I have a CD-R now with
msttcorefonts-.3-4.noarch.rpm   (3.5 MB) on it.  The bad news is that
I still see the .docx file displayed very badly, by OO 3.1. You were
almost dead on with the process. How do you remember so many things?
cabextract comes from rpmforge. I reloaded xfs as it said on that web
page and I even restarted the box, but I am still getting the bad
display of the .docx file when I load it into OO 3.1.Lanny
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] OT: Viewer for .docx M$ WORD files?

2009-06-11 Thread Nicolas Thierry-Mieg


Lanny Marcus wrote:
> Ross: The good news is that I learned a tiny bit about packaging this
> morning. My first attempt at that  :-)I have a CD-R now with
> msttcorefonts-.3-4.noarch.rpm   (3.5 MB) on it.  The bad news is that
> I still see the .docx file displayed very badly, by OO 3.1. You were
> almost dead on with the process. How do you remember so many things?
> cabextract comes from rpmforge. I reloaded xfs as it said on that web
> page and I even restarted the box, but I am still getting the bad
> display of the .docx file when I load it into OO 3.1.Lanny

Lanny,
the layout and appearance of old doc files are still often not perfect 
in openoffice.
Heck, doc files created with MS word version xyz often look different 
when opened with a different version of ms word!
So I wouldn't expect openoffice to render docx files perfectly for a 
while... Be happy if you can read the text ;-) .
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] IPv6 range provisioning question

2009-06-11 Thread Louis Lagendijk
On Thu, 2009-06-11 at 10:49 -0500, Vadtec wrote:
> >>>
> >>> A few months back, I tried to use the network scripts to provision an 
> >>> IPv6 range
> >>> like can be done with IPv4. I was using CentOS 5.2 at the time and was 
> >>> informed
> >>> that 5.2 was broken in this regard. I have upgraded to CentOS 5.3 now and 
> >>> I am
> >>> trying to get IPv6 to provision an entire range of IPs, but I am still 
> >>> getting
> >>> the old behavior and no IPs are being provisioned.
> >>>
I am really confused on what you want to do here. When you talk about a
RANGE what do you mean? Allocate more than one IPv6 address to a single
interface? 
If so, have a look at the IPV6ADDR_SECONDARIES clause in the link you
included. I am not sure that you can use alias interfaces for IPv6. Put
that in the ifcfg-ethx file, not in the config for the aliases
(ifcfgx:y)

> >>> When I run service network restart, it doesn't even provision the default 
> >>> IPv6
> >>> GW on eth0:1, nor does eth0:1 even show up.
I don't think you can use alias interfaces for IPv6. It at least did not
work on my other (Fedora) box
IPV6ADDR_SECONDARIES on the device DOES work on Centos 5.3

> > 
> > However, this is not provisioning an entire range as follows:
> > 
> > eth0  Link encap:Ethernet  HWaddr 00:16:3E:70:FC:96
> >   inet addr:***.***.***.***  Bcast:***.***.***.***  
> > Mask:255.255.255.0
> >   inet6 addr: 2001:470:103:1a::2/64 Scope:Global
> >   inet6 addr: fe80::216:3eff:fe70:fc96/64 Scope:Link
> >   UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
> >   RX packets:70 errors:0 dropped:0 overruns:0 frame:0
> >   TX packets:29 errors:0 dropped:0 overruns:0 carrier:0
> >   collisions:0 txqueuelen:1000
> >   RX bytes:6738 (6.5 KiB)  TX bytes:2050 (2.0 KiB)
> > 
You have a single address provsioned indeed 2001:470:103:1a::2/64
with a network part of 64 bits.

> > I also have a large number of "unreachable" routes shown on the local 
> > loopback
> > when I do ip -6 route show:
> > unreachable ::/96 dev lo  metric 1024  error -101 mtu 16436 advmss 16376
> > hoplimit 4294967295
> > unreachable :::0.0.0.0/96 dev lo  metric 1024  error -101 mtu 16436 
> > advmss
> > 16376 hoplimit 4294967295
> > unreachable 2002:a00::/24 dev lo  metric 1024  error -101 mtu 16436 advmss 
> > 16376
> > hoplimit 4294967295
> > unreachable 2002:7f00::/24 dev lo  metric 1024  error -101 mtu 16436 advmss
> > 16376 hoplimit 4294967295
> > unreachable 2002:a9fe::/32 dev lo  metric 1024  error -101 mtu 16436 advmss
> > 16376 hoplimit 4294967295
> > unreachable 2002:ac10::/28 dev lo  metric 1024  error -101 mtu 16436 advmss
> > 16376 hoplimit 4294967295
> > unreachable 2002:c0a8::/32 dev lo  metric 1024  error -101 mtu 16436 advmss
> > 16376 hoplimit 4294967295
> > unreachable 2002:e000::/19 dev lo  metric 1024  error -101 mtu 16436 advmss
> > 16376 hoplimit 4294967295
> > unreachable 3ffe:::/32 dev lo  metric 1024  error -101 mtu 16436 advmss
> > 16376 hoplimit 4294967295
> > 
Nothing to worry abouot. I have that too:

[r...@nest network-scripts]# ip -r ro sh
192.168.178.0/24 dev eth0.178  proto kernel  scope link  src
192.168.178.2 
192.168.160.0/24 dev eth0.160  proto kernel  scope link  src
192.168.160.1 
192.168.1.0/24 dev eth0.1  proto kernel  scope link  src 192.168.1.1 
192.168.159.0/24 dev eth0.159  proto kernel  scope link  src
192.168.159.1 
192.168.158.0/24 dev eth0.158  proto kernel  scope link  src
192.168.158.1 
192.168.122.0/24 dev virbr0  proto kernel  scope link  src
192.168.122.1 
169.254.0.0/16 dev eth0.178  scope link 
default via fritz.pheasant dev eth0.178 
[r...@nest network-scripts]# ip -6 ro sh
::/96 via :: dev sit0  metric 256  mtu 1480 advmss 1420 hoplimit
4294967295
unreachable ::/96 dev lo  metric 1024  error -101 mtu 16436 advmss 16376
hoplimit 4294967295
unreachable :::0.0.0.0/96 dev lo  metric 1024  error -101 mtu 16436
advmss 16376 hoplimit 4294967295
2001:888:10:18e::/64 via :: dev sit1  proto kernel  metric 256  mtu 1480
advmss 1420 hoplimit 4294967295
2001:888:118e:18e1::/64 dev eth0.158  proto kernel  metric 256  mtu 1500
advmss 1440 hoplimit 4294967295
2001:888:118e:18e2::/64 dev eth0.159  proto kernel  metric 256  mtu 1500
advmss 1440 hoplimit 4294967295
2001:888:118e:18e3::/64 dev eth0.160  proto kernel  metric 256  mtu 1500
advmss 1440 hoplimit 4294967295
2001:888:118e:18e4::/64 dev eth0.178  proto kernel  metric 256  mtu 1500
advmss 1440 hoplimit 4294967295
unreachable 2002:a00::/24 dev lo  metric 1024  error -101 mtu 16436
advmss 16376 hoplimit 4294967295
unreachable 2002:7f00::/24 dev lo  metric 1024  error -101 mtu 16436
advmss 16376 hoplimit 4294967295
unreachable 2002:a9fe::/32 dev lo  metric 1024  error -101 mtu 16436
advmss 16376 hoplimit 4294967295
unreachable 2002:ac10::/28 dev lo  metric 1024  error -101 mtu 16436
advmss 16376 hoplimit 4294967295
unreachable 2002:c0a8::/32 dev lo  metric 1024  error -101 mtu 16436
advmss 16376 hoplimit 429

Re: [CentOS] OT: Viewer for .docx M$ WORD files?

2009-06-11 Thread Lanny Marcus
On Thu, Jun 11, 2009 at 11:44 AM, Nicolas
Thierry-Mieg wrote:

>> page and I even restarted the box, but I am still getting the bad
>> display of the .docx file when I load it into OO 3.1.    Lanny
>
> Lanny,
> the layout and appearance of old doc files are still often not perfect
> in openoffice.
> Heck, doc files created with MS word version xyz often look different
> when opened with a different version of ms word!
> So I wouldn't expect openoffice to render docx files perfectly for a
> while... Be happy if you can read the text ;-) .

Nicolas: I hope I can get it to work better than it is now! Very bad.
Perfect, I don't need, I'm hoping for "good". Lanny
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] How to reply to a digest

2009-06-11 Thread David G . Miller
David McGuffey  writes:

> 
> I'm receiving the centos-request in digest mode. Using Fedora 10 and
> Evolution. When I tried to reply to a centos-request message inside the
> digest, the result doesn't seem to look right.  I cut/paste the proper
> subject line (replacing the CentOS Digest, Vol NN, Issue nn text), but
> some have complained that this approach doesn't allow the original
> question and replies to be threaded.
> 
> So...what is the appropriate way to respond when one is receiving the
> digest version?
> 
> Dave
> 

I was recently soundly castigated for "messing up the list threading" by
replying to digest items by just doing a cut and paste that preserved the
subject.  Someone on the list was kind enough to point me to:

http://gmane.org

Which provides a threaded web interface for a number of mailing lists including
this one (linux.centos.general on gmane).  I've been happy with the
functionality although not being able to just hit reply takes some of the
spontaneity out of list conversations.

Cheers,
Dave


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


Re: [CentOS] HELP SAMBA + LDAP

2009-06-11 Thread Fabian Arrotin
Samir RHAOUSSI wrote:
> Hello everybody,
> 
> Please does some one have any "documentation", "tutorial", "how to" 
> about setting up a PDC basing on Samba with a LDAP (OpenLDAP) backend ?
> 
> I really need it for my studies end project
> 
> thank you very very much for your help
> 
the smb.conf file from samba on CentOS 5 is well documented .. and also 
the samba.org website
Basically you need to setup your ldap correctly, import the samba 
schema, initialize the domain (you can use smbldap-tools for that, very 
easy), configure samba to use the ldap backend and 'voilà' ..

-- 
--
Fabian Arrotin
  idea=`grep -i clue /dev/brain`
  test -z "$idea" && echo "sorry, init 6 in progress" || sh ./answer.sh
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] router NAT problem

2009-06-11 Thread Mintairov Mikhail
Hello All. I have a strange problem on  my router. I use a xl2tpd
program to establish a connection to the INTERNET. After I start xl2tpd
it's create a new ppp0 device with correct ip parameters, also it's add
some routes to the routing table and all this routes are correct too.
After connection with provider are establish the router exec some simple
iptables+NAT commands to give an INTERNET access to the LAN computers,
and everything was working fine for a 2 or 3 years. But now but the
local computers (192.168.127.0/24) con not establish a connection to
some web sites or to some ftp servers. However, if I try to access to
the same web sites from my router everything is good and it can access
to every web or ftp server. 

First of all I recheck router table, and it's was correct. After it I
rewrite my iptables rules (to create a simplest roles as can be)

iptables -F
iptables -F -t nat
iptables -P FORWARD ACCEPT
iptables -t nat -A POSTROUTING -o ppp0 -s 192.168.127.0/24 -j SNAT
--to-source [my internet ip]

And nothing good happen. I try to use tcpdump to understand the problem,
and not found the answer. Because there was no errors. Every packet from
192.168.127.0 iface had correct routing to ppp0 iface and after it the
SNAT change the packets source ip to [my internet ip]. So everything
looks correct, but when I try to access to some sites from router and
from 192.168.127.[some] computer the "tcpdump -n ppp0" output was not
the same.

Here the "tcpdump -i ppp0 -n" output of situation when I try to access
to one of web site from my router

---
01:13:23.293205 IP[my internet ip].34178 > 194.67.57.226.http: S
3824762316:3824762316(0) win 5680 
01:13:23.309819 IP 194.67.57.226.http >[my internet ip].34178: S
715197421:715197421(0) ack 3824762317 win 5792 
01:13:23.309874 IP[my internet ip].34178 > 194.67.57.226.http: . ack 1
win 5680 
01:13:23.310118 IP[my internet ip].34178 > 194.67.57.226.http: P
1:585(584) ack 1 win 5680 
01:13:23.320893 IP 194.67.57.226.http >[my internet ip].34178: . ack 585
win 6424 
01:13:23.336371 IP 194.67.57.226.http >[my internet ip].34178: .
1:1409(1408) ack 585 win 6424 
01:13:23.336412 IP[my internet ip].34178 > 194.67.57.226.http: . ack
1409 win 8448 
01:13:23.377324 IP 194.67.57.226.http >[my internet ip].34178: .
1409:2817(1408) ack 585 win 6424 

.. and alot of same strings
---

And here the "tcpdump -i ppp0 -n" output of situation when I try to
access to the same web site from 192.168.127.[some] computer. 

---
01:20:31.783723 IP[my internet ip].39044 > 194.67.57.20.http: S
3269053516:3269053516(0) win 5840 
01:20:31.794530 IP 194.67.57.20.http >[my internet ip].3 9044: S
2208770058:2208770058(0) ack 3269053517 win 5792 
01:20:31.819422 IP[my internet ip].39044 > 194.67.57.20.http: . ack 1
win 5840 
01:20:33.281135 IP[my internet ip].39044 > 194.67.57.20.http: P
1:689(688) ack 1 win 5840 
01:20:33.291594 IP 194.67.57.20.http >[my internet ip].39044: . ack 689
win 6880 
01:20:46.431758 IP[my internet ip].39044 > 194.67.57.20.http: F
689:689(0) ack 1 win 5840 
01:20:46.481649 IP 194.67.57.20.http >[my internet ip].39044: . ack 690
win 6880 
---

As you can see the first 5 strings of those outputs are the same, but in
the second situation there are no data transferring, and after 13 second
of waiting the local computer send a FIN TCP packet (string number 6 in
second listing). 

So, maybe someone can help me with understanding of this problem,
because I don't have any ideas what can I do. I also know that router
didn't have any hardware problem, because I have try to replace this
router to another server and nothing has changed.



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


Re: [CentOS] krb5kdc fails to start

2009-06-11 Thread Hugh E Cruickshank
From: Filipe Brandenburger Sent: June 11, 2009 06:13
> 
> On Thu, Jun 11, 2009 at 01:23, Hugh E Cruickshank
> wrote:
> > Give the man a cigar! rpc.statd strikes again.
> > Now to figure out how to fix that.
> 
> In short term, this command should restart rpc.statd which will
> probably bind to a different port:

[snip]

Hi Filipe:

Thanks for the additional info. That will be of great help.

Regards, Hugh

-- 
Hugh E Cruickshank, Forward Software, www.forward-software.com 
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] HELP SAMBA + LDAP

2009-06-11 Thread Paul Heinlein

On Thu, 11 Jun 2009, Fabian Arrotin wrote:

Please does some one have any "documentation", "tutorial", "how to" 
about setting up a PDC basing on Samba with a LDAP (OpenLDAP) 
backend ?


the smb.conf file from samba on CentOS 5 is well documented .. and 
also the samba.org website


Basically you need to setup your ldap correctly, import the samba 
schema, initialize the domain (you can use smbldap-tools for that, 
very easy), configure samba to use the ldap backend and 'voilà' ..


I'll second the smbldap-tools suggestion. Docs are online:

  http://www.iallanis.info/smbldap-tools/docs/smbldap-tools/

You can get smbldap-tools and the dozen or so non-standard perl-*.rpm 
dependencies from rpmforge.


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


Re: [CentOS] NAS Storage server question

2009-06-11 Thread Joseph L. Casale
>I am starting with 4 1TB SATA disks.
>
>With RAID 6 that will give me 2 TB right?

R6 on SATA? Been there, it's not pretty. The overhead of that
raid level on that type of disc for vm storage will not be
pretty.

R10 that. Same capacity, way better performance.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] IPv6 range provisioning question

2009-06-11 Thread Vadtec
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Ok, firstly, I have dropped using the alias notation and am now working solely
on eth0.

Secondly, yes, I am talking about provisioning more than *one* IP at a time as
being a "range".

As for IPV6ADDR_SECONDARIES, when I use the following config:
/etc/sysconfig/network-scripts/ifcfg-eth0:
DEVICE=eth0
IPADDR=***.***.***.***
NETMASK=255.255.255.0
BROADCAST=***.***.***.***
ONBOOT=yes

IPV6INIT=yes
IPV6ADDR="2001:0470:0103:001A::2/64"
IPV6ADDR_SECONDARIES="2001:0470:0103:001A::3-2001:0470:0103:001A::"
IPV6_AUTOCONF=no
IPV6_ROUTER=no
IPV6FORWARDING=no
PEERDNS=no
VLAN=no

I get the following error:

Shutting down interface eth0:  [  OK  ]
Shutting down loopback interface:  [  OK  ]
Bringing up loopback interface:  [  OK  ]
Bringing up interface eth0:  ERROR: [ipv6_test_ipv6_addr_valid] Given IPv6
address '2001:0470:0103:001A::3-' is not valid
WARN : [ipv6_add_route] 'No route to host' adding route '::/0' via gateway
'2001:0470:0103:001A::1' through device 'eth0'
[  OK  ]
eth0  Link encap:Ethernet  HWaddr 00:16:3E:70:FC:96
  inet addr:***.***.***.***  Bcast:***.***.***.***  Mask:255.255.255.0
  inet6 addr: fe80::216:3eff:fe70:fc96/64 Scope:Link
  UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
  RX packets:31 errors:0 dropped:0 overruns:0 frame:0
  TX packets:7 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:1000
  RX bytes:2270 (2.2 KiB)  TX bytes:406 (406.0 b)

loLink encap:Local Loopback
  inet addr:127.0.0.1  Mask:255.0.0.0
  inet6 addr: ::1/128 Scope:Host
  UP LOOPBACK RUNNING  MTU:16436  Metric:1
  RX packets:141521 errors:0 dropped:0 overruns:0 frame:0
  TX packets:141521 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:0
  RX bytes:23702410 (22.6 MiB)  TX bytes:23702410 (22.6 MiB)


I also tried the following config:
/etc/sysconfig/network-scripts/ifcfg-eth0:
DEVICE=eth0
IPADDR=***.***.***.***
NETMASK=255.255.255.0
BROADCAST=***.***.***.***
ONBOOT=yes

IPV6INIT=yes
IPV6ADDR="2001:0470:0103:001A::2/64"
IPV6ADDR_SECONDARIES="2001:0470:0103:001A::3-2001:0470:0103:001A::"
IPV6_AUTOCONF=no
IPV6_ROUTER=no
IPV6FORWARDING=no
PEERDNS=no
VLAN=no

And receive the following error:
Shutting down interface eth0:  [  OK  ]
Shutting down loopback interface:  [  OK  ]
Bringing up loopback interface:  [  OK  ]
Bringing up interface eth0:  ERROR: [ipv6_test_ipv6_addr_valid] Given IPv6
address '2001:0470:0103:001A::3-2001:0470:0103:001A::' is not valid
[  OK  ]
eth0  Link encap:Ethernet  HWaddr 00:16:3E:70:FC:96
  inet addr:***.***.***.***  Bcast:***.***.***.***  Mask:255.255.255.0
  inet6 addr: 2001:470:103:1a::2/64 Scope:Global
  inet6 addr: fe80::216:3eff:fe70:fc96/64 Scope:Link
  UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
  RX packets:29 errors:0 dropped:0 overruns:0 frame:0
  TX packets:8 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:1000
  RX bytes:2643 (2.5 KiB)  TX bytes:516 (516.0 b)

loLink encap:Local Loopback
  inet addr:127.0.0.1  Mask:255.0.0.0
  inet6 addr: ::1/128 Scope:Host
  UP LOOPBACK RUNNING  MTU:16436  Metric:1
  RX packets:141716 errors:0 dropped:0 overruns:0 frame:0
  TX packets:141716 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:0
  RX bytes:23744895 (22.6 MiB)  TX bytes:23744895 (22.6 MiB)

After doing some digging in the ifup-ipv6 and network-functions-ipv6 scripts, it
doesn't appear that IPV6ADDR_SECONDARIES actually supports the X-Y notation in
the current release. I see no where that the hyphen is removed and a range is
generated. I'm not the most powerful bash scripter in the world, so I could be
wrong.

Can anyone else weigh in on the subject and provide some more insight? It would
be really nice to provision an entire range of IPv6 and not have to add them one
by one.

Vadtec
vad...@vadtec.net

Louis Lagendijk wrote:
> On Thu, 2009-06-11 at 10:49 -0500, Vadtec wrote:
> A few months back, I tried to use the network scripts to provision an 
> IPv6 range
> like can be done with IPv4. I was using CentOS 5.2 at the time and was 
> informed
> that 5.2 was broken in this regard. I have upgraded to CentOS 5.3 now and 
> I am
> trying to get IPv6 to provision an entire range of IPs, but I am still 
> getting
> the old behavior and no IPs are being provisioned.
>
> I am really confused on what you want to do here. When you talk about a
> RANGE what do you mean? Allocate more than one IPv6 address to a single
> interface? 
> If so, have a look at the IPV6ADDR_SECONDARIES clause in the link you
> included. I am not sure that you can use alias interfaces for IPv6. Put
> that in the ifcfg-ethx file, not in the config for the aliases
> (ifcfgx:y)
> 
> W

Re: [CentOS] OT: rebuild kmod rpm package from src.rpm (SOLVED)

2009-06-11 Thread carlopmart
Akemi Yagi wrote:
> On Thu, Jun 11, 2009 at 1:55 AM, carlopmart wrote:
>> Hi all,
>>
>>  I would like to rebuild a kmod.src.rpm package for a specific kernel.
>> When I try to do it, this message appears:
>>
>> Building target platforms: i686
>> Building for target i686
>> error: Failed build dependencies:
>>  kernel-xen-devel-i686 = 2.6.18-98.el5 is needed by
>> mymodule-kmod-0.1.5-2.i686
>> kernel-PAE-devel-i686 = 2.6.18-98.el5 is needed by
>> mymodule-kmod-0.1.5-2.i686.
>>
>>  Is it possible to rebuild kmod.src.package only for certain kernel?? i
>> don't need to rebuild this module for kernel-xen or kernel-PAE only for
>> kernel-i686 ...
> 
> This CentOS wiki is for you:
> 
> http://wiki.centos.org/HowTos/BuildingKernelModules
> 
> Please go to section 3. Building a kernel module rpm package (kmod).
> There are some example lines near the end.  This one may be of help:
> 
> "In a similar fashion, you may select which kernel-variant kmod
> package(s) to build. For example:
> 
> [u...@host SPECS]$ rpmbuild -bb --target=`uname -m` --define
> 'kvariants ""' cifs-kmod.spec 2> build-err.log | tee build-out.log
> 
> will build just the base-kernel kmod package. "
> 
> Akemi
> ___
> CentOS mailing list
> CentOS@centos.org
> http://lists.centos.org/mailman/listinfo/centos
> 
Many thanks to all. I have compiled my module only for kernel-i686

-- 
CL Martinez
carlopmart {at} gmail {d0t} com
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] HELP SAMBA + LDAP

2009-06-11 Thread Miguel Medalha

> Please does some one have any "documentation", "tutorial", "how to" 
> about setting up a PDC basing on Samba with a LDAP (OpenLDAP) backend ?
>
"Samba 3 by Example", included with Samba in HTML and PDF formats:

"Chapter 5. Making Happy Users"

You can also find it online here:

http://us3.samba.org/samba/docs/man/Samba3-ByExample/happy.html

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


Re: [CentOS] NAS Storage server question

2009-06-11 Thread RobertH
 

> 
> Briefly, but iet has been rock stable for me. It just runs forever...
> I have only used NFS under vmware, it worked good.
> 
> jlc
> ___

jlc,

what has been rock stable?

can you be more specific on the implementaion?

are you saying "it" or "iet"

if "iet" what is that?

;-)

 - rh

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


[CentOS] Simple AD authentication for Samba share

2009-06-11 Thread The Small Box Admin
I have a CentOS box that I'm basically using for file sharing with
Samba.  Currently I'm mapping the drive from an XP box with a Samba
username/password combination.  Is there a simple way to use AD or
Windows authentication to allow the users to map the drive without
having to use a separate username/password?  That is without having to
install LDAP and kerberos or whatever is needed to join the CentOS box
to the AD.

Thanks,
Ken

-- 
The Small Box Admin
http://smallboxadmin.blogspot.com
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] How to reply to a digest

2009-06-11 Thread Lanny Marcus
On Thu, Jun 11, 2009 at 6:48 AM, M. Fioretti wrote:
> On Thu, Jun 11, 2009 07:42:28 AM -0400, David McGuffey wrote:
>> So...what is the appropriate way to respond when one is receiving
>> the digest version?
>
> It probably is to automatically split the digest into the original,
> separate message as soon as it arrives, using procmail or
> formail. Search for "procmail split digests" and you'll find
> several explanations.
>
> This said, I really have to ask: do whatever you like as long as you
> don't break threads but... why on Earth do you use digests? Are you
> with an ISP which limits how many messages you can receive per day?
> That's the only valid reasons I've ever read for digests in ~15 years
> of email usage...

I received the Digest version, when we had dial up access to the
Internet. Probably I was advised, like others, that I was breaking the
threading, when I replied to messages, although I tried to cut and
paste and keep it as correct as possible. I got this gmail account for
the mailing list and haven't looked back. So far, never a complaint
I've broken the thread. :-)
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] IPv6 range provisioning question

2009-06-11 Thread Louis Lagendijk
On Thu, 2009-06-11 at 14:46 -0500, Vadtec wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> Ok, firstly, I have dropped using the alias notation and am now working solely
> on eth0.
> 
> Secondly, yes, I am talking about provisioning more than *one* IP at a time as
> being a "range".
> 
> As for IPV6ADDR_SECONDARIES, when I use the following config:
> /etc/sysconfig/network-scripts/ifcfg-eth0:
> DEVICE=eth0
> IPADDR=***.***.***.***
> NETMASK=255.255.255.0
> BROADCAST=***.***.***.***
> ONBOOT=yes
> 
> IPV6INIT=yes
> IPV6ADDR="2001:0470:0103:001A::2/64"
> IPV6ADDR_SECONDARIES="2001:0470:0103:001A::3-2001:0470:0103:001A::"
> IPV6_AUTOCONF=no
> IPV6_ROUTER=no
> IPV6FORWARDING=no
> PEERDNS=no
> VLAN=no
> 
> I get the following error:
> 
> Shutting down interface eth0:  [  OK  ]
> Shutting down loopback interface:  [  OK  ]
> Bringing up loopback interface:  [  OK  ]
> Bringing up interface eth0:  ERROR: [ipv6_test_ipv6_addr_valid] Given IPv6
> address '2001:0470:0103:001A::3-' is not valid
> WARN : [ipv6_add_route] 'No route to host' adding route '::/0' via gateway
> '2001:0470:0103:001A::1' through device 'eth0'
the file /usr/share/doc/initscripts-8.45.25/sysconfig.txt does NOT
mention the - for ranges either, so I guess you are out of luck. 
Louis

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


Re: [CentOS] IPv6 range provisioning question

2009-06-11 Thread Filipe Brandenburger
Hi,

On Thu, Jun 11, 2009 at 11:49, Vadtec wrote:
> So can anyone offer any insight into this? See my reply at the bottom of the
> message.

I never used IPv6, so I don't know if that applies to IPv6 too or to IPv4 only.

In IPv4 it is possible to assign a whole range to a specific machine
by adding it as an alias to the loopback interface.

For instance, if I do:

ifconfig lo:0 192.168.99.32 netmask 255.255.255.224

Then the machine will answer to all the addresses from 192.168.99.32
to 192.168.99.63. If you use a range that is in the same subnet as the
IP you have in eth0, it will respond to ARP requests in that interface
as well, so it will do exactly what you want.

I don't know if and how that would work with IPv6, but maybe try doing
that, assigning a single IP with a proper network mask to an alias of
the loopback interface and see if that works as you expect.

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


Re: [CentOS] IPv6 range provisioning question

2009-06-11 Thread Vadtec
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Louis Lagendijk wrote:

> the file /usr/share/doc/initscripts-8.45.25/sysconfig.txt does NOT
> mention the - for ranges either, so I guess you are out of luck. 
> Louis
> 
> ___
> CentOS mailing list
> CentOS@centos.org
> http://lists.centos.org/mailman/listinfo/centos

Indeed it doesn't. Guess I'm just out of luck for the time being. Maybe the
support will be added soon enough.

Thanks for your help.

Vadtec
vad...@vadtec.net
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iQIcBAEBAgAGBQJKMXREAAoJEEJXIw5V8gieHFIQAJUSVQZmrizk7SbwDgcW/0jt
kS1sIAk7KzjaiCYJ26PyGzMTLdES95YjWarQiK8qb7qUZ4THhOb2WiNN5oRpC1/V
JQ2SlVTa10R9lFu5XLUzqIpPuR9KieqI40AIcC5oo2rwWYMA+MxsafrNHTo4jxxv
44KffiVvA3cOOI0/ZYk3mQkTeSOlxAUDZF8AEK4elbEbnqMK6Z4w+pxSD+J/BNjH
4IifGeCy3S/CHEDtBfrzerewCkrYxCH1YYgMf7m3glWnnrZeQHKm4c6H10Q4qZBY
UrJX5QPhxGA9Gl4yWgi//hDKgQh18zmQpU4kmc2Eyop8Um2lg4vlwqN2/DhhYgG6
1TJcwspanNLG71RN0NJJWioLhQtGZt9hg9jXvfRUPXrNKfVyPiA8AGgAfYrnlhW2
Viv9cGRD0AEP0hARTZ7KCOd2m3tqOrJgBQnLc+DdjEb7wrJJuazrME4lxm+PY182
Sv8MS7toigaJvpQ8Eh9snXHVBWImxy5qc6fL8sOk6cgUQea2Rp+55KEgZBPZes84
hzr0rrC6IeBCCTJNX8bmBGKeYGoMkGRhL5eRWTA7SJaa8HmkAZUj/moD6BvrBmA1
GnWTI+ROEJ2ieb21db/docwhcmwmHnii+HfeXlo5YDLnIaB65wOY4XyiAq+8A7RT
xi/5YqXUi7sYdz7h3kFs
=+sif
-END PGP SIGNATURE-
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] NAS Storage server question

2009-06-11 Thread Coert Waagmeester

On Thu, 2009-06-11 at 13:35 -0700, RobertH wrote:
> 
> > 
> > Briefly, but iet has been rock stable for me. It just runs forever...
> > I have only used NFS under vmware, it worked good.
> > 
> > jlc
> > ___
> 
> jlc,
> 
> what has been rock stable?
> 
> can you be more specific on the implementaion?
> 
> are you saying "it" or "iet"
> 
> if "iet" what is that?
> 
> ;-)
> 
>  - rh
> 
> ___
> CentOS mailing list
> CentOS@centos.org
> http://lists.centos.org/mailman/listinfo/centos

jlc was talking about the iSCSI target server I think...

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


Re: [CentOS] NAS Storage server question

2009-06-11 Thread Joseph L. Casale
>jlc,
>
>what has been rock stable?
>
>can you be more specific on the implementaion?
>
>are you saying "it" or "iet"
>
>if "iet" what is that?
>
>;-)

Sorry buddy,
I meant "iSCSI Enterprise Target" @ http://iscsitarget.sourceforge.net/
This project is fortunate enough to have the developers and some
very bright and experienced members active in the list. It was actually
one the places I started when learning Linux and received some invaluable
help from two specific people.

This is one of the few pieces of software as critical as it is, I have
gotten into the bad habit of not monitoring, it just bloody runs w/o
issue.

If you need a target, I can at least say this one is rock stable and any
issues are dealt with fast!

HTH,
jlc

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


Re: [CentOS] router NAT problem

2009-06-11 Thread Robert Spangler
On Thursday 11 June 2009 14:14, Mintairov Mikhail wrote:

>  iptables -F
>  iptables -F -t nat
>  iptables -P FORWARD ACCEPT
>  iptables -t nat -A POSTROUTING -o ppp0 -s 192.168.127.0/24 -j SNAT
>  --to-source [my internet ip]

I know how some like to do the SNAT thing, but a simple rule will get this 
done also

iptables -t nat -A POSTROUTE -o ppp0 -j MASQUERADE

As to your problem look at your rules with the following and ensure that the 
SNAT rule is there

iptables -L -v -n | less -SCi


-- 

Regards
Robert

Linux User #296285
http://counter.li.org
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Evolution Question?

2009-06-11 Thread Jeff
Sorin Srbu wrote:
>> -Original Message-
>> From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On
> Behalf
>> Of Jeff
>> Sent: Thursday, June 11, 2009 7:41 AM
>> To: CentOS mailing list
>> Subject: [CentOS] Evolution Question?
>>
>> I have a CentOS 5.3 Desktop and use Evolution to read mailing lists .
>> When i move from one read letter to another(either deleting or clicking
>> next  the Message pane flickers. How can i stop this because it is hard
>> on my eyes when i have a few emails to read?
> 
> Increase the scan frequency of your monitor maybe? I've seen this in lists
> generally with thousands of entries and the gfx-card can't keep up. Most
> often upping the scan frequency solved this issue. I've also seen this on
> computers that are a bit, ummm, underpowered. ;-) 
> 
> If you have an Nvidia gfx-card, try installing the proprietary drivers, or
> (recommended) dkms and the dkms-Nvidia*-package.
> 
> YMMV.
> 
> 
> 
> 
> ___
> CentOS mailing list
> CentOS@centos.org
> http://lists.centos.org/mailman/listinfo/centos

Thanks for the reply. My card is a GeForce FX5200 is there an easy way 
to set it up as there seem to be a few options? Not sure how to increase 
scan frequency? is it dangerous?
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Problems with Broadcom 4312 wireless

2009-06-11 Thread David McGuffey
On Thu, 2009-06-11 at 12:00 -0400, centos-requ...@centos.org wrote:
> Message: 49
> Date: Thu, 11 Jun 2009 08:50:31 -0400
> From: Phil Schaffner 
> Subject: Re: [CentOS] Problems with Broadcom 4312 wireless
> To: CentOS mailing list 
> Message-ID: <4a30fd97.3060...@nasa.gov>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
> 
> David McGuffey wrote:

...

> > Last problem is with the Broadcom 4312 wireless device.  Again, did
> some
> > research and found two ways.  One was the Broadcom provided Linux
> > driver, and the other was the guidance on how to use fw-cutter from
> > linuxwireless.com.
> ...
> 
> This forum thread may be useful:
> http://www.centos.org/modules/newbb/viewtopic.php?topic_id=20640&forum=40
> 
> Although it is for a similar but different piece of Broadcom
> hardware, 
> and does not come to a clean resolution, the key point seems to be:
> ---
> 
> Will you please now look at the output of a /sbin/lspci -n command
> that 
> relates to your BCM4311 card.
> 
> If the Vendor:Device ID pairing is one of the following --
> 
> 14E4:4301
> 14E4:4307
> 14E4:4311
> 14E4:4312
> 14E4:4318
> 14E4:4319
> 14E4:4320
> 14E4:4324
> 14E4:4325
> 
> 
> -- then the bcm43xx driver module present in the distributed CentOS 
> kernel will be appropriate for that card. In other words, there will
> be 
> no need for you to use ndiswrapper.
> ---
Not using ndiswrapper.  Output of lspci -n gives 14e4:4312

I believe I'm really close.  After installing the firmware with
fw-cutter, the load complaint about not finding bcm43xx-microcode5.fw
went away.  And...the device appears to attempt negotiation with the AP.

Found another piece of guidance that the bcm43xx driver has problems
with WEP and shared key...will try open authentication and WPA/WPA2
tonight.

Dave


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


Re: [CentOS] Problems with Broadcom 4312 wireless

2009-06-11 Thread David McGuffey
On Thu, 2009-06-11 at 12:00 -0400, centos-requ...@centos.org wrote:
> Message: 64
> Date: Thu, 11 Jun 2009 08:14:17 -0700
> From: Bart Schaefer 
> Subject: Re: [CentOS] Problems with Broadcom 4312 wireless
> To: CentOS mailing list 
> Message-ID:
> <6bb609560906110814t3c41faaci58d5b92ed7f42...@mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
> 
> On Thu, Jun 11, 2009 at 4:54 AM, David
> McGuffey wrote:
> > Last problem is with the Broadcom 4312 wireless device. ?Again, did
> some
> > research and found two ways. ?One was the Broadcom provided Linux
> > driver, and the other was the guidance on how to use fw-cutter from
> > linuxwireless.com.
> 
> There are some possibly-related notes on this page in the wiki:
> 
> http://wiki.centos.org/HowTos/Laptops/HP/Pavilion-ze5300_Series
> 
> Short summary: neither bcm43xx nor ndiswrapper are a perfect solution,
> and you may need to blacklist the bcm43xx driver to use ndiswrapper.
> 
> That wiki entry was originally written for CentOS 5.0.  I'm currently
> running 5.3 with the supplied bcm43xx driver and it has some problems
> with duplicate/dropped packets so the performance is suboptimal, but
> it does work.
> 
Thanks...

According to the guidance a linuxwireless.com the b43 driver (not
bcm43xx or b43legacy) should work with the 4312 device.

If I can't get bcm43xx and bcm43xx-microcode5.fw to work, then I may try
to install the b43 driver and blacklist bcm43xx.

Dave


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


Re: [CentOS] How to reply to a digest

2009-06-11 Thread David McGuffey
On Thu, 2009-06-11 at 12:00 -0400, centos-requ...@centos.org wrote:
> Message: 45
> Date: Thu, 11 Jun 2009 13:48:25 +0200
> From: "M. Fioretti" 
 1. Subject: Re: [CentOS] How to reply to a digest
> To: centos@centos.org
> Message-ID: <2009064825.gd2...@nexaima.net>
> Content-Type: text/plain; charset=us-ascii
> 
> On Thu, Jun 11, 2009 07:42:28 AM -0400, David McGuffey wrote:
> 
> > So...what is the appropriate way to respond when one is receiving
> > the digest version?
> 
> It probably is to automatically split the digest into the original,
> separate message as soon as it arrives, using procmail or
> formail. Search for "procmail split digests" and you'll find
> several explanations.
> 
> This said, I really have to ask: do whatever you like as long as you
> don't break threads but... why on Earth do you use digests? Are you
> with an ISP which limits how many messages you can receive per day?
> That's the only valid reasons I've ever read for digests in ~15 years
> of email usage...
> 
> Just curious,
> Marco Fioretti
I'll go back and see if I can change from digest to individual e-mail
mode.  Then use some Evolution rules to put the e-mails into a separate
folder.

Dave


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


[CentOS] CentOS 5.3 cbea

2009-06-11 Thread Dmitry Zaletnev
Hi!
I have a question to ask: where can I download CentOS 5.3 for
Cell Broadband Engine Architecture, and if this is impossible -
ppc64 version. I want to install it onto my Sony PS3.

Sincerely,
Dmitry Zaletnev
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] CentOS 5.3 cbea

2009-06-11 Thread Scott Silva
on 6-11-2009 4:42 PM Dmitry Zaletnev spake the following:
> Hi!
> I have a question to ask: where can I download CentOS 5.3 for
> Cell Broadband Engine Architecture, and if this is impossible -
> ppc64 version. I want to install it onto my Sony PS3.
> 
> Sincerely,
> Dmitry Zaletnev
I don't think there is one.



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


Re: [CentOS] krb5kdc fails to start

2009-06-11 Thread Hugh E Cruickshank
From: Hugh E Cruickshank Sent: June 11, 2009 11:18
> From: Filipe Brandenburger Sent: June 11, 2009 06:13
> > 
> > On Thu, Jun 11, 2009 at 01:23, Hugh E Cruickshank
> > wrote:
> > > Give the man a cigar! rpc.statd strikes again.
> > > Now to figure out how to fix that.
> > 
> > In short term, this command should restart rpc.statd which will
> > probably bind to a different port:
> 
> Thanks for the additional info. That will be of great help.

Hi Filipe:

That worked like a charm - krb5kdc is now running again. Now I can
get back to setting up the secondary/slave KDC.

Thanks muchly!

Regards, Hugh

-- 
Hugh E Cruickshank, Forward Software, www.forward-software.com 
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] NAS Storage server question

2009-06-11 Thread Ross Walker

On Jun 11, 2009, at 5:21 PM, "Joseph L. Casale"  wrote:

>> jlc,
>>
>> what has been rock stable?
>>
>> can you be more specific on the implementaion?
>>
>> are you saying "it" or "iet"
>>
>> if "iet" what is that?
>>
>> ;-)
>
> Sorry buddy,
> I meant "iSCSI Enterprise Target" @ http:// 
> iscsitarget.sourceforge.net/
> This project is fortunate enough to have the developers and some
> very bright and experienced members active in the list. It was  
> actually
> one the places I started when learning Linux and received some  
> invaluable
> help from two specific people.
>
> This is one of the few pieces of software as critical as it is, I have
> gotten into the bad habit of not monitoring, it just bloody runs w/o
> issue.
>
> If you need a target, I can at least say this one is rock stable and  
> any
> issues are dealt with fast!

It is, though it needs to be brought current with asynchronous  
notifications, persistent reservations, error recovery level 2 and  
multiple connections per session.

So if any developer wants to get their feet wet with the iSCSI  
protocol and kernel driver development please subscribe to the iSCSI  
Enterprise Target list.

Also when testing it out use the 'noop' or 'deadline' io schedulers on  
the backend target storage as there currently is a performance issue  
with the 'cfq' scheduler.

It compiles clean on most architectures.

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


[CentOS] how to set ntpd listen only 127.0.0.1 ?

2009-06-11 Thread MontyRee

Hello, all.

 

I would like to use ntpd for time sync not rdate or ntpdate.

 

but after installation the ntpd, I found that listened at all interfaces like 
below.

 

udp0  0 192.168.111.2:123   0.0.0.0:*   
11528/ntpd
udp0  0 xxx.xxx.62.20:123   0.0.0.0:*   
11528/ntpd
udp0  0 127.0.0.1:123   0.0.0.0:*   
11528/ntpd
udp0  0 0.0.0.0:123 0.0.0.0:*   
11528/ntpd


 

Is there any way or option that only listen 127.0.0.1 for security reason?

 

 

Thanks in advacne.

_
대딩들의 인맥관리! 윈도우 라이브 메신저로 해결하자! 채팅은 기본! 25GB 자료실은 덤! 대딩들의 아지트 윈메 클럽
http://im.msn.co.kr/Univ/___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] router NAT problem

2009-06-11 Thread Filipe Brandenburger
Hi,

On Thu, Jun 11, 2009 at 14:14, Mintairov Mikhail wrote:
> And here the "tcpdump -i ppp0 -n" output of situation when I try to
> access to the same web site from 192.168.127.[some] computer.

It would be helpful if you could get the tcpdump of your internal
interface (eth0?) for a request at the same time as you get the one of
ppp0.

And even more helpful if you could get the tcpdump on the client in
your internal network that is actually doing the request.

The difference in packets seen on those three points would quickly
show where the problem seems to be...

As you said your connection script creates some static routes, it
would also help if you could send the routing table of the router.

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


Re: [CentOS] how to set ntpd listen only 127.0.0.1 ?

2009-06-11 Thread Filipe Brandenburger
Hi,

2009/6/11 MontyRee :
> Is there any way or option that only listen 127.0.0.1?

I don't think so. NTP is an UDP protocol, and its packets have both
source and destination port 123, so the machine that is using NTP to
set its own clock (NTP "client") needs to listen on port 123 UDP to
receive the replies from the NTP "server".

> for security reason?

Look into the "restrict" commands in ntp.conf to implement security
policies on NTP. You can find information on how it works on "man
ntp_acc".

If you use a fixed list of NTP servers that have fixed IPs, you can
also use iptables to block access to port 123 UDP to all except those
hosts.

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


Re: [CentOS] Simple AD authentication for Samba share

2009-06-11 Thread Filipe Brandenburger
Hi,

On Thu, Jun 11, 2009 at 16:55, The Small Box
Admin wrote:
> Is there a simple way to use AD or
> Windows authentication to allow the users to map the drive without
> having to use a separate username/password?

It's been about 5 years that I haven't done that (and I'm in no way an
expert in Samba), but I believe you can do it by using:

security = server
password server = 

That way *all* authentication requests to your Samba will be
*forwarded* to your AD server and authenticated there (it might
increase the load of your AD). I know this used to work OK with NT
based PDCs, I don't know if it still works fine with AD or not. And I
also know that this is not the recommended method in terms of security
as it is not as robust as joining the domain.

> That is without having to
> install LDAP and kerberos or whatever is needed to join the CentOS box
> to the AD.

I think it's not as hard as you make it seem... Yes, you need to
configure the Kerberos client, but it's not that hard to do, and there
are many tutorials that explain how to do it... From a quick Google
search: http://wiki.samba.org/index.php/Samba_&_Active_Directory

But as I said, it's been years since I've done it... I might have
forgotten most of the details, and many of the things might have
changed since last time I've done them... You might test those above
for yourself and see if you can make it work though.

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


Re: [CentOS] how to set ntpd listen only 127.0.0.1 ?

2009-06-11 Thread MontyRee

Thanks for your kind answer.

 

 

> Look into the "restrict" commands in ntp.conf to implement security
> policies on NTP. You can find information on how it works on "man
> ntp_acc".


The default restrict config likes below.

 

restrict default nomodify notrap noquery


If I setup ntpd service as a client not server, above options are sufficient?

I would like to deny any ntpd query packets except reply packets from others 
because of client.

 

but it seems that other clients can query the date. 

 

 

Thanks in advance.

 

_
대딩들의 인맥관리! 윈도우 라이브 메신저로 해결하자! 채팅은 기본! 25GB 자료실은 덤! 대딩들의 아지트 윈메 클럽
http://im.msn.co.kr/Univ/___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] how to set ntpd listen only 127.0.0.1 ?

2009-06-11 Thread Filipe Brandenburger
Hi,

2009/6/12 MontyRee :
> If I setup ntpd service as a client not server, above options are
> sufficient?

I don't know, I never bothered trying to understand how that works...
I suggest you read "man ntp_acc" if you really want to implement that.
After you do, please share with us how that works! :-)

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


Re: [CentOS] Problems with Broadcom 4312 wireless

2009-06-11 Thread Eric Sisolak
On Thu, Jun 11, 2009 at 7:25 PM, David
McGuffey wrote:
> On Thu, 2009-06-11 at 12:00 -0400, centos-requ...@centos.org wrote:
>> Message: 64
>> Date: Thu, 11 Jun 2009 08:14:17 -0700
>> From: Bart Schaefer 
>> Subject: Re: [CentOS] Problems with Broadcom 4312 wireless
>> To: CentOS mailing list 
>> Message-ID:
>>         <6bb609560906110814t3c41faaci58d5b92ed7f42...@mail.gmail.com>
>> Content-Type: text/plain; charset=ISO-8859-1
>>
>> On Thu, Jun 11, 2009 at 4:54 AM, David
>> McGuffey wrote:
>> > Last problem is with the Broadcom 4312 wireless device. ?Again, did
>> some
>> > research and found two ways. ?One was the Broadcom provided Linux
>> > driver, and the other was the guidance on how to use fw-cutter from
>> > linuxwireless.com.
>>
>> There are some possibly-related notes on this page in the wiki:
>>
>> http://wiki.centos.org/HowTos/Laptops/HP/Pavilion-ze5300_Series
>>
>> Short summary: neither bcm43xx nor ndiswrapper are a perfect solution,
>> and you may need to blacklist the bcm43xx driver to use ndiswrapper.
>>
>> That wiki entry was originally written for CentOS 5.0.  I'm currently
>> running 5.3 with the supplied bcm43xx driver and it has some problems
>> with duplicate/dropped packets so the performance is suboptimal, but
>> it does work.
>>
> Thanks...
>
> According to the guidance a linuxwireless.com the b43 driver (not
> bcm43xx or b43legacy) should work with the 4312 device.
>
> If I can't get bcm43xx and bcm43xx-microcode5.fw to work, then I may try
> to install the b43 driver and blacklist bcm43xx.
>
> Dave
>
>
> ___
> CentOS mailing list
> CentOS@centos.org
> http://lists.centos.org/mailman/listinfo/centos
>

I recently got a Dell laptop that also has the dell 1395/broadcom 4312
card.  I was unable/too lazy to get the ndiswrapper thing working.

Much googling eventually turned up this blog post:
http://en.community.dell.com/blogs/direct2dell/archive/2008/10/03/linux-driver-available-for-dell-wireless-cards.aspx

I grabbed the tarball from:
http://www.broadcom.com/support/802.11/linux_sta.php

Then I followed the directions, which amount pretty much to compiling
the kernel module and installing it.  I did this on Fedora 10, though
I think it should work with CentOS as well.

HTH

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