[CentOS-docs] copying upstream docs to centos.org

2010-06-02 Thread Ed Heron
Is there a place, from the upstream provider, where we can download the
multi-file html docs in a single file?  Otherwise, I can download each
page manually or use wget to get everything recursively...

Is the footer the only difference? (besides any links)

Do we want to encapsulate each page into the centos site or keep it
printable, like it kind of is, currently.

Do we just copy the current pdf? or do we modify it?

Since the manual is on the main centos.org site, do I need a sine in or
access to start adding the manuals?  I should still have an EdHeron
login over there.


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


[CentOS-es] VPN lan to lan - OPENVPN + CENTOS + no conectan redes lan

2010-06-02 Thread paulcriollo
Les saludo y la vez les comento una configuracion de una vpn lan to lan, me
falta una parte, pero no encuentro la falla, puede que alguien conozca la
solucion le agradecere el aporte.

TENGO DOS REDES REMOTAS
RED1 CON UNA CONEXION DE SPEEDY BUSSINESS E IP PUBLICA
esta red tiene un server con firewall + proxy transparente
eth0 :: 192.168.1.100
eth1 :: 192.168.10.0/24
esta red cuenta con una ip publica, ademas en el mismo router le puse la
regla de nat para desde afuera llegar al server que tiene la vpn, osea:
direccione el pto. 1194 hacia el ip de la eth0 de mi server

en el mismo server firewall + proxy, tambien configure el openvpn

la configuracion del openvpn la lleve a cabo sin problemas siguiendo muchos
manuales comunes que hay en internet

el proxy transparente trabaja OK y las estaciones entran a internet sin
problemas

por ejemplo una pc cliente seria: 192.168.10.2/255.255.255.0 gateway
192.168.10.1

AQUI LES COLOCO EL MODELO DE MI ARCHIVO DE CONFIGURACION DEL SERVIDOR VPN,
los archivos crt y key del server funcionan sin problemas

## ARCHIVO /etc/openvpn/vpn1.conf --- ARCHIVO DE CONFIGURACION DEL
SERVER VPN
port 1194
proto udp
dev tun
ca ca.crt
cert vpn1.crt
key vpn1.key
dh dh1024.pem

## Direcciones que se asignaran a los clientes, el server es .1
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
#Ruta para que los clientes alcancen la red local del server (10.0/24)
push route 192.168.10.0 255.255.255.0
client-config-dir ccd
route 192.168.20.0 255.255.255.0
client-to-client
push route 192.168.20.0 255.255.255.0
keepalive 10 120
comp-lzo
user nobody
group nobody
persist-key
persist-tun
status openvpn-status.log
verb 4
ADEMAS TAMBIEN EN EL ARCHIVO
/etc/openvpn/ccd/vpn2

LE AGREGYE ESTE COMANDO --- NECESITO LLEGAR A LA RED 192.168.20.0/24 EN EL
OTRO LADO
iroute 192.168.20.0 255.255.255.0

TAMBIEN LE AGREGUE UN SCRIPT PARA CREAR RUTAS

/sbin/route add -net 192.168.1.0 netmask 255.255.255.0 gw 192.168.10.1
/sbin/route add -net 192.168.20.0 netmask 255.255.255.0 gw 192.168.10.1
/sbin/route add -net 10.8.0.0 netmask 255.255.255.255 gw 192.168.10.1
 Y EL SCRIPT DE MIS REGLAS DE IPTABLES EN ESTE SERVIDOR ES



echo -n Aplicando Reglas de Firewall...
iptables=/sbin/iptables

iptables -F
iptables -X
iptables -Z
iptables -t nat -F
 DECLARACION DE VARIABLES
 LO HACEMOS PARA TENER ORDEN Y CLARIDAD
LAN=192.168.10.0/24
NUBE=0.0.0.0/0
WAN=192.168.1.100

iptables -P INPUT ACCEPT
iptables -P OUTPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -t nat -P PREROUTING ACCEPT
iptables -t nat -P POSTROUTING ACCEPT
## CARGA FORZADA DE MODULOS IMPORTANTES
### A VECES EN ALGUNOS SISTEMAS NO ESTAN CARGADOS
modprobe iptable_nat
modprobe ip_nat_ftp
modprobe ip_conntrack_ftp
## POLITICAS POR DEFECTO POR LA VPN
iptables -F FORWARD





iptables -P FORWARD ACCEPT

iptables -A INPUT -i tun0 -j ACCEPT
iptables -A FORWARD -i tun0 -j ACCEPT
iptables -A FORWARD -o tun0 -j ACCEPT
iptables -A OUTPUT -o tun0 -j ACCEPT
iptables -A INPUT -i tap0 -j ACCEPT
iptables -A FORWARD -i tap0 -j ACCEPT
iptables -A INPUT -p udp --dport 1194 -j ACCEPT
iptables -A FORWARD -s 10.8.0.0/24 -j ACCEPT
iptables -t nat -A POSTROUTING -s 10.8.0.0/24 -o eth0 -j MASQUERADE
iptables -A FORWARD -s 192.168.20.0/24 -j ACCEPT
iptables -t nat -A POSTROUTING -s 192.168.20.0/24 -o eth0 -j MASQUERADE
## SE AUMENTAN EL NUMERO DE CONEXIONES SEGUIDAS
echo 65535  /proc/sys/net/ipv4/ip_conntrack_max
## SE IGNORAN LOS ERRORES DEL ICMP
echo 1  /proc/sys/net/ipv4/icmp_ignore_bogus_error_responses
## SE HABILITA EL FORWARD DE LOS PAQUETES
echo 1  /proc/sys/net/ipv4/ip_forward
## SE HABILITA LA PROTECCION CONTRA LOS SYN FLOODS
echo 1  /proc/sys/net/ipv4/tcp_syncookies
## SE QUITAN LOS REGISTROS DE BROADCAST EN /var/log/messages
iptables -t mangle -I PREROUTING -j DROP -d 224.0.0.0/8
## SE CONECTA LA LAN CON EL PROXY TRANSPARENTE
 YA NO ES NECESARIO COLOCAR EN LOS NAVEGADORES LO DEL PROXY
iptables -t nat -A PREROUTING -i eth1 -p tcp -s $LAN -d $NUBE --dport 80 -j
REDIRECT --to-port 3128
## MANEJO DE PUERTO ESPECIAL PARA LAS VPNS - OPENVPN
iptables -A INPUT -i eth0 -p tcp --dport 1194 -j ACCEPT
# ENMASCARAMOS LAS CONEXIONES DE LOS DNS ENTERNOS, MSN Y OTROS PARA
TODAS
iptables -t nat -A POSTROUTING -p tcp -s $LAN -d $NUBE --dport 53 -j
MASQUERADE
iptables -t nat -A POSTROUTING -p udp -s $LAN -d $NUBE --dport 53 -j
MASQUERADE
iptables -t nat -A POSTROUTING -p tcp -s $LAN -d $NUBE --dport 5190 -j
MASQUERADE
iptables -t nat -A POSTROUTING -p udp -s $LAN -d $NUBE --dport 5190 -j
MASQUERADE
iptables -t nat -A POSTROUTING -p tcp -s $LAN -d $NUBE --dport 1863 -j
MASQUERADE
iptables -t nat -A POSTROUTING -p udp -s $LAN -d $NUBE --dport 1863 -j
MASQUERADE
iptables -t nat -A POSTROUTING -p tcp -s $LAN -d $NUBE --dport 1024:65535 -j
MASQUERADE
iptables -t nat -A POSTROUTING -p udp -s $LAN -d $NUBE --dport 1024:65535 -j
MASQUERADE

iptables -t nat -A POSTROUTING -s $LAN -d $NUBE -j SNAT --to-source $WAN

iptables -t nat -L -n


CONFIGURACION DEL SERVER2 EN 

[CentOS-es] Problemas con PHP

2010-06-02 Thread Jose Alberto Torres Paredes


No puedo instalar php-mysql, utilice el comando yum install php-mysql y el 
mensaje es que enteriormente estaba actualizando centos pero lo corte y ahora 
no me deja instalar nada...




 Alberto Torres Paredes:
  Ingenieria de Sistemas  :
Universidad Privada Cesar Vallejo  :
:.::
  
_
Sé el protagonista de GQ con Messenger y Vodafone Blackberry. ¡Y gana premios!
http://serviciosmoviles.es.msn.com/messenger/vodafone.aspx___
CentOS-es mailing list
CentOS-es@centos.org
http://lists.centos.org/mailman/listinfo/centos-es
___
CentOS-es mailing list
CentOS-es@centos.org
http://lists.centos.org/mailman/listinfo/centos-es


Re: [CentOS-es] Problemas con PHP

2010-06-02 Thread victor santana
¿Has mirado si el yum sigue activo en los procesos?


El 2 de junio de 2010 13:49, Jose Alberto Torres Paredes 
jalber...@hotmail.com escribió:


 No puedo instalar php-mysql, utilice el comando *yum install php-mysql *y
 el mensaje es que enteriormente estaba actualizando centos pero lo corte y
 ahora no me deja instalar nada...
  *
 
 *
  Alberto Torres Paredes*:*
  * Ingenieria de Sistemas  :*
 *Universidad Privada Cesar Vallejo  :*
 *
 :.::
 *


 --
 Disfruta de Hotmail y Messenger en tu móvil con YOIGO. ¡Hazlo 
 ya!http://serviciosmoviles.es.msn.com/hotmail/yoigo.aspx

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




-- 

___
 REPARACIONONLINE
GARANTIA PARA SU PC

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


Re: [CentOS] how to install ip6tables?

2010-06-02 Thread Rudi Ahlers
On Tue, Jun 1, 2010 at 11:12 PM, Ron Loftin relof...@twcny.rr.com wrote:


 On Tue, 2010-06-01 at 23:04 +0200, Rudi Ahlers wrote:
  Hi all,
 
 
 
  I'm sorry if this is a quick dumb one, but how does one install
  ip6tables?
 
 Are you sure it's not already installed ??  It installs by default on my
 systems.
 



Yes it was installed but I think I took it off a year or 2 ago but would
like to test it out now.

Joseph's suggestion of yum list iptables\* helped though, thanx :)

-- 
Kind Regards
Rudi Ahlers
SoftDux

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


[CentOS] Interrupt on pressing reset button

2010-06-02 Thread premrajm
Hi,

On Centos-5.3, is it possible to capture an interrupt when the reset 
button on the Supermicro Box is pressed ?


Regards,
Premraj M

 
Disclaimer : This message is proprietary to Smartlink Network Systems Ltd. and 
is intended solely for the use of the individual to whom it is addressed. It 
may contain privileged or confidential information and should not be circulated 
or used for any purpose other than for what it is intended. If you have 
received this message in error, please notify the originator immediately. If 
you are not the intended recipient, you are notified that you are strictly 
prohibited from using, copying, altering, or disclosing the contents of this 
message. The company accepts no responsibility for loss or damage arising from 
the use of the information transmitted by this email including damage from 
virus.


__

This email has been scrubbed for your protection by SecureMX.
For more information visit http://securemx.in
__

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


Re: [CentOS] Interrupt on pressing reset button

2010-06-02 Thread John Doe
From: premr...@digilink.in premr...@digilink.in
On Centos-5.3, is it possible to capture
an interrupt when the reset button on the Supermicro Box is pressed ? 

Google says to check /etc/acpi/events/... maybe it can do what you want.

JD


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


[CentOS] pup problem

2010-06-02 Thread Charles Campbell
Hello!

On May 28, I had a problem with pup and seamonkey.  I was doing an 
update via pup and reading a page via seamonkey; seamonkey froze with a 
plain brown screen.  I waited awhile, and then did the 
press-the-power-button-until-it-shuts-off.   However, I don't know 
whether it was seamonkey or pup that actually caused the freeze, but 
apparently pup did not do its updating job correctly.  There's a number 
of icons that are missing, so (for example) open office won't start from 
the menu.  Centos starts, but the desktop background doesn't appear 
(although I can select desktop background and get it to appear).  
Finally, attempts to attach anything to an email via seamonkey (17 or 
2.04) or thunderbird show the requestor momentarily and then crashes 
seamonkey/thunderbird.

Is there a log somewhere of what was updated (I didn't see it in 
/var/log/messages) and can I force pup to do the update manually?

Any other suggestions for getting things back to normal?

Regards,
Chip Campbell
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] bogus bond0 device showing up in /proc/net/dev

2010-06-02 Thread Andrew Rankin
Tom -

Just a heads up that I can reproduce this in my environment:

[r...@server ~]# cat /proc/net/bonding/bond0
Ethernet Channel Bonding Driver: v3.4.0 (October 7, 2008)

Bonding Mode: load balancing (round-robin)
MII Status: down
MII Polling Interval (ms): 0
Up Delay (ms): 0
Down Delay (ms): 0

[r...@server network-scripts]# cat /proc/net/bonding/bond2
Ethernet Channel Bonding Driver: v3.4.0 (October 7, 2008)

Bonding Mode: load balancing (round-robin)
MII Status: up
MII Polling Interval (ms): 0
Up Delay (ms): 0
Down Delay (ms): 0

Slave Interface: eth0
MII Status: up
Link Failure Count: 0
Permanent HW addr: 

Slave Interface: eth1
MII Status: up
Link Failure Count: 0
Permanent HW addr: 

Andrew

On Fri, May 28, 2010 at 1:42 PM, Tom Georgoulias
t...@mcclatchyinteractive.com wrote:
 I'm running into a situation where a bogus bonded interface named
 bond0 is being created, in addition to the desired bond2 interface.
  Can anyone confirm this?  Anyone know why it's happening or what I do
 to get rid of it?  I wanted to start my numbering scheme at 2 instead of
 0, which I didn't think would be a problem.

 As you can see, I have no reference to bond0 in any of my configs:

 # grep bond /etc/modprobe.conf
 alias bond2 bonding

 # ifconfig -a | grep bond
 bond0     Link encap:Ethernet  HWaddr 00:00:00:00:00:00
 bond2     Link encap:Ethernet  HWaddr X

 # cat /etc/sysconfig/network-scripts/ifcfg-bond2
 DEVICE=bond2
 IPADDR=X
 NETMASK=
 NETWORK=X
 USERCTL=no
 BOOTPROTO=none
 ONBOOT=yes
 BONDING_OPTS=mode=1 miimon=100

 # cat /etc/sysconfig/network-scripts/ifcfg-eth2
 DEVICE=eth2
 MASTER=bond2
 SLAVE=yes
 HWADDR=
 ONBOOT=yes
 BOOTPROTO=none
 USERCTL=no

 # cat /etc/sysconfig/network-scripts/ifcfg-eth3
 DEVICE=eth3
 MASTER=bond2
 SLAVE=yes
 HWADDR=XX
 ONBOOT=yes
 BOOTPROTO=none
 USERCTL=no

 The bond0 interface isn't doing any harm, as far as I can tell, except
 adding bogus data to ifconfig output and extra, useless charts in our
 system performance monitoring tools.

 # cat /proc/net/bonding/bond0
 Ethernet Channel Bonding Driver: v3.4.0 (October 7, 2008)

 Bonding Mode: load balancing (round-robin)
 MII Status: down
 MII Polling Interval (ms): 0
 Up Delay (ms): 0
 Down Delay (ms): 0

 # cat /proc/net/bonding/bond2
 Ethernet Channel Bonding Driver: v3.4.0 (October 7, 2008)

 Bonding Mode: fault-tolerance (active-backup)
 Primary Slave: None
 Currently Active Slave: eth2
 MII Status: up
 MII Polling Interval (ms): 100
 Up Delay (ms): 0
 Down Delay (ms): 0

 Slave Interface: eth2
 MII Status: up
 Link Failure Count: 0
 Permanent HW addr: 

 Slave Interface: eth3
 MII Status: up
 Link Failure Count: 0
 Permanent HW addr: XX

 Any help is appreciated.

 Thanks,
 Tom
 ___
 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] pup problem

2010-06-02 Thread Phil Schaffner
Charles Campbell wrote on 06/02/2010 10:02 AM:
...
 Is there a log somewhere of what was updated (I didn't see it in 
 /var/log/messages) and can I force pup to do the update manually?

/var/log/yum.log

 Any other suggestions for getting things back to normal?

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


Re: [CentOS] pup problem

2010-06-02 Thread MHR
On Wed, Jun 2, 2010 at 7:02 AM, Charles Campbell
charles.e.campb...@nasa.gov wrote:
 Hello!

 On May 28, I had a problem with pup and seamonkey.  I was doing an
 update via pup and reading a page via seamonkey; seamonkey froze with a
 plain brown screen.  I waited awhile, and then did the
 press-the-power-button-until-it-shuts-off.   However, I don't know
 whether it was seamonkey or pup that actually caused the freeze, but
 apparently pup did not do its updating job correctly.  There's a number
 of icons that are missing, so (for example) open office won't start from
 the menu.  Centos starts, but the desktop background doesn't appear
 (although I can select desktop background and get it to appear).
 Finally, attempts to attach anything to an email via seamonkey (17 or
 2.04) or thunderbird show the requestor momentarily and then crashes
 seamonkey/thunderbird.

 Is there a log somewhere of what was updated (I didn't see it in
 /var/log/messages) and can I force pup to do the update manually?

 Any other suggestions for getting things back to normal?


For future reference, before cycling the power on a machine with a
hung process, I would suggest:

1) Wait at least fifteen minutes before you try anything.  If the
machine is not completely hogtied, this sometimes allows whatever is
stuck to finish.  Sometimes it's just a matter of patience.

2) Attempt to close the window of the hung process.  Use Force Quit as needed.

3) Use the kill command if the above does not work.  Use kill -9
if a plain kill does not work.

4) If the hung process refuses to go away, run top or some other
process monitor to see if any other critical processes are running.
In particular, if you are doing an update, go out of your way not to
interrupt it except as a last ditch desperate resort.

5) Try using one of the consoles to find out which process is hung and
kill it from there (ctlaltF[1-6] should do this for you;
ctlaltF7 brings you back to the graphics console).

6) If none of that works, try logging out of your gdm.
ctlbackspace is an emergency escape method for this if the GUI or
command lines don't work.

7) Only if none of the above gets you anywhere should you reboot.


I don't use pup to update (ever) - I prefer to use yum directly, but I
don't think I've ever seen this particular problem.  Seamonkey has its
own peculiar characteristics, and I've seen it hang many times.
Usually, I just kill it and it comes back just fine.  I have a shell
script for ensuring a complete kill for the hard cases (for both
seamonkey and firefox, but not both at once) where Force Quit doesn't
work:

#!/bin/bash

# A shell script to kill that annoying runaway seamonkey that won't die

case `basename $0` in
seakill)  cmd=seamonkey;;
foxkill)  cmd=firefox;;
*)  echo Unrecognized command.; exit 1;;
esac

kill -9 `ps -ef | grep $cmd | grep -v grep | tail -1 | awk '{print $2}'`
ps -ef | grep $cmd | grep -v grep

If it works, nothing is displayed.  If seamonkey/firefox is already
gone, it give me kill's error for not finding the process (or for a
missing process number because 'ps' couldn't find it, either).

HTH

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


Re: [CentOS] pup problem

2010-06-02 Thread Bowie Bailey
MHR wrote:
 #!/bin/bash

 # A shell script to kill that annoying runaway seamonkey that won't die

 case `basename $0` in
 seakill)  cmd=seamonkey;;
 foxkill)  cmd=firefox;;
 *)  echo Unrecognized command.; exit 1;;
 esac

 kill -9 `ps -ef | grep $cmd | grep -v grep | tail -1 | awk '{print $2}'`
 ps -ef | grep $cmd | grep -v grep

 If it works, nothing is displayed.  If seamonkey/firefox is already
 gone, it give me kill's error for not finding the process (or for a
 missing process number because 'ps' couldn't find it, either).
   

Isn't that command line a bit complex?  Why not use ps options to get
what you want rather than using grep, tail, and awk to pull the PID out
of the standard output?

ps -C $cmd -o pid= | xargs kill -9
ps -fC $cmd

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


Re: [CentOS] pup problem

2010-06-02 Thread m . roth
 MHR wrote:
 #!/bin/bash

 # A shell script to kill that annoying runaway seamonkey that won't die
snip
Runaway seamonkey? I've seen runaway firefox that won't die... but that's
under gag! Vista.

Of course, when I log in in the morning at work, CentOS 5.5 (and 5.4
before), firefox comes up... but with *no* add-ons. If I kill it, then
restart, the add-ons are there

   mark no idea


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


Re: [CentOS] pup problem

2010-06-02 Thread MHR
On Wed, Jun 2, 2010 at 9:40 AM, Bowie Bailey bowie_bai...@buc.com wrote:
 MHR wrote:
 #!/bin/bash

 # A shell script to kill that annoying runaway seamonkey that won't die

 case `basename $0` in
         seakill)      cmd=seamonkey;;
         foxkill)      cmd=firefox;;
         *)                      echo Unrecognized command.; exit 1;;
 esac

 kill -9 `ps -ef | grep $cmd | grep -v grep | tail -1 | awk '{print $2}'`
 ps -ef | grep $cmd | grep -v grep

 If it works, nothing is displayed.  If seamonkey/firefox is already
 gone, it give me kill's error for not finding the process (or for a
 missing process number because 'ps' couldn't find it, either).


 Isn't that command line a bit complex?  Why not use ps options to get
 what you want rather than using grep, tail, and awk to pull the PID out
 of the standard output?

    ps -C $cmd -o pid= | xargs kill -9
    ps -fC $cmd


It's an old script I rarely use.  Yours looks better - I'm taking it.  :-)

Thanks

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


Re: [CentOS] pup problem

2010-06-02 Thread Owen Beckley
 From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On
 Behalf Of MHR
 Sent: Wednesday, June 02, 2010 12:21 PM
 To: CentOS mailing list
 Subject: Re: [CentOS] pup problem
 
 On Wed, Jun 2, 2010 at 9:40 AM, Bowie Bailey bowie_bai...@buc.com
 wrote:
  MHR wrote:
  #!/bin/bash
 
  # A shell script to kill that annoying runaway seamonkey that won't
 die
 
  case `basename $0` in
          seakill)      cmd=seamonkey;;
          foxkill)      cmd=firefox;;
          *)                      echo Unrecognized command.; exit
 1;;
  esac
 
  kill -9 `ps -ef | grep $cmd | grep -v grep | tail -1 | awk '{print
 $2}'`
  ps -ef | grep $cmd | grep -v grep
 
  If it works, nothing is displayed.  If seamonkey/firefox is already
  gone, it give me kill's error for not finding the process (or for a
  missing process number because 'ps' couldn't find it, either).
 
 
  Isn't that command line a bit complex?  Why not use ps options to get
  what you want rather than using grep, tail, and awk to pull the PID
 out
  of the standard output?
 
     ps -C $cmd -o pid= | xargs kill -9
     ps -fC $cmd
 
 
 It's an old script I rarely use.  Yours looks better - I'm taking it.
 :-)
 
 Thanks
 
 mhr

How about pkill?

pkill $cmd# be nice
pkill -9 $cmd # be nasty
ps -fC $cmd   # see what still didn't die

--
Owen Beckley  -  ow...@foxriver.com


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


[CentOS] 24G running on centos 5 desktop.

2010-06-02 Thread Steve Brooks

Hi All,

Thought I would let those that are interested know that I had success in 
running 24G on an Asus P6T with 24G kit of Kingston DDR3. While I was 
putting this together I saw lots of forum posts asking if anyone had tried 
it. Well we did here at our work and all looks great including running 
memtest86 overnight.

I have a fluid dynamics simulation running on it with 90% memory usage and 
all looks great.

Intel(R) Core(TM) i7 CPU  960  @ 3.20GHz 
MemTotal: 24676112 kB


Cheers,

Steve


-- 
Dr Stephen Brooks

http://www-solar.mcs.st-and.ac.uk/
Solar MHD Theory Group
Tel::  01334 463735
Fax::  01334 463748
E-mail :: ste...@mcs.st-andrews.ac.uk
---
Mathematical Institute
North Haugh
University of St. Andrews
St Andrews, Fife KY16 9SS
SCOTLAND
---

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


Re: [CentOS] 24G running on centos 5 desktop.

2010-06-02 Thread prasul
Sounds great! Congrats
--Original Message--
From: Steve Brooks
Sender: centos-boun...@centos.org
To: CentOS mailing list
ReplyTo: CentOS mailing list
Subject: [CentOS] 24G running on centos 5 desktop.
Sent: Jun 3, 2010 12:26 AM


Hi All,

Thought I would let those that are interested know that I had success in 
running 24G on an Asus P6T with 24G kit of Kingston DDR3. While I was 
putting this together I saw lots of forum posts asking if anyone had tried 
it. Well we did here at our work and all looks great including running 
memtest86 overnight.

I have a fluid dynamics simulation running on it with 90% memory usage and 
all looks great.

Intel(R) Core(TM) i7 CPU  960  @ 3.20GHz 
MemTotal: 24676112 kB


Cheers,

Steve


-- 
Dr Stephen Brooks

http://www-solar.mcs.st-and.ac.uk/
Solar MHD Theory Group
Tel::  01334 463735
Fax::  01334 463748
E-mail :: ste...@mcs.st-andrews.ac.uk
---
Mathematical Institute
North Haugh
University of St. Andrews
St Andrews, Fife KY16 9SS
SCOTLAND
---

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


Sent from BlackBerry® on Airtel
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] 24G running on centos 5 desktop.

2010-06-02 Thread Kwan Lowe
On Wed, Jun 2, 2010 at 2:56 PM, Steve Brooks ste...@mcs.st-and.ac.uk wrote:

 Hi All,

 Thought I would let those that are interested know that I had success in
 running 24G on an Asus P6T with 24G kit of Kingston DDR3. While I was
 putting this together I saw lots of forum posts asking if anyone had tried
 it. Well we did here at our work and all looks great including running
 memtest86 overnight.

 I have a fluid dynamics simulation running on it with 90% memory usage and
 all looks great.


Wow, pretty nice... 24G in a desktop :)  Remember when 2M was a big deal??
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] 24G running on centos 5 desktop.

2010-06-02 Thread John R Pierce
Kwan Lowe wrote:
 Wow, pretty nice... 24G in a desktop :)  Remember when 2M was a big deal??
   

heck, I remember when 64k was a big deal.


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


Re: [CentOS] 24G running on centos 5 desktop.

2010-06-02 Thread Mike McCarty
John R Pierce wrote:
 Kwan Lowe wrote:
 Wow, pretty nice... 24G in a desktop :)  Remember when 2M was a big deal??
   
 
 heck, I remember when 64k was a big deal.

Yes, but we were running CP/M, not Linux.

Mike
-- 
p=p=%c%s%c;main(){printf(p,34,p,34);};main(){printf(p,34,p,34);}
Oppose globalization and One World Governments like the UN.
This message made from 100% recycled bits.
You have found the bank of Larn.
I speak only for myself, and I am unanimous in that!
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] 24G running on centos 5 desktop.

2010-06-02 Thread m . roth
 Kwan Lowe wrote:
 Wow, pretty nice... 24G in a desktop :)  Remember when 2M was a big
 deal??

 heck, I remember when 64k was a big deal.

64K? You had that much? I remember when, as a b'day present, my CoCo got
upgraded (violating its warranty) from 16k to 32k

mark and I used magnets to program the 1's and 0's

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


Re: [CentOS] 24G running on centos 5 desktop.

2010-06-02 Thread John R Pierce
m.r...@5-cent.us wrote:
 heck, I remember when 64k was a big deal.
 

 64K? You had that much? I remember when, as a b'day present, my CoCo got
 upgraded (violating its warranty) from 16k to 32k
   


16 4x6 vector cards with 4K each of static memory, using Intel 2102, 
wt!took weeks to sort out all the flaky connections and 
stabilize it, then it ran for a year or two without a glitch.   I later 
replaced that array with 4 STD bus cards of 16k each using i2114's  
mostly to downsize the power supply and card cage.

and, yes, it ran CP/M, 1.4, then later 2.2



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


Re: [CentOS] 24G running on centos 5 desktop.

2010-06-02 Thread Whit Blauvelt
On Wed, Jun 02, 2010 at 12:44:41PM -0700, John R Pierce wrote:

 and, yes, it ran CP/M, 1.4, then later 2.2

With ZCPR?

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


Re: [CentOS] pup problem

2010-06-02 Thread Bowie Bailey
Owen Beckley wrote:
 How about pkill?

 pkill $cmd# be nice
 pkill -9 $cmd # be nasty
 ps -fC $cmd   # see what still didn't die
   

Don't remember coming across that one before.  I'll have to remember it! :)

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


Re: [CentOS] 24G running on centos 5 desktop.

2010-06-02 Thread John R Pierce
Whit Blauvelt wrote:
 On Wed, Jun 02, 2010 at 12:44:41PM -0700, John R Pierce wrote:

   
 and, yes, it ran CP/M, 1.4, then later 2.2
 

 With ZCPR?
   

nope, was originally a 8080a 2Mhz, then later a 8085 5Mhz processor 
(more crusty neurons are blinking in with the obsolete knowledge that 
the upgrade to the 5Mhz 8085 was an important reason for the memory 
upgrade from 2102 to 2114  the system ran 0 wait state).   zcpr was 
Z80 specific, and came quite a bit later, I built the first gen circa 
1977, and upgraded it to the 5Mhz 8085 circa 1979

anyways, we're *WAY* off topic here.   sound like a bunch of geezers 
lamenting their old Ford flatheads while the kids go zooming off in 
their Subaru WRX's.





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


Re: [CentOS] 24G running on centos 5 desktop.

2010-06-02 Thread Kwan Lowe
On Wed, Jun 2, 2010 at 3:32 PM,  m.r...@5-cent.us wrote:
 Kwan Lowe wrote:
 Wow, pretty nice... 24G in a desktop :)  Remember when 2M was a big
 deal??

 heck, I remember when 64k was a big deal.

 64K? You had that much? I remember when, as a b'day present, my CoCo got
 upgraded (violating its warranty) from 16k to 32k

Hehe.. My Vic20 had 5K..Didn't do much with it though..  When I got my
TI-99/4A things changed.. I loved that machine.

Before that, I ran CP/M on a Z80 card in Apple IIe's and Franklin Ace
1000s (??? forget the exact model).  It ran Borland Turbo Pascal from
a 5.25 floppy :)

Hell, this is what I love about Linux... Makes me feel just as I did
back then... Except now I'm running POVRay and Blender, crunching data
for 1000 stock symbols ever 30 minutes, serving a PDF library of 2000
books (searchable)... pretty cool :)

        mark and I used magnets to program the 1's and 0's

You had magnets?? :D
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Firefox slower on GMail since update to CentOS 5.5

2010-06-02 Thread Andrej Moravcik
Hi Mathieu, I had the same problem with Firefox since I upgraded to 
CentOS 5.5.

I noticed very slow (almost unusable) Oracle Enterprise Manager 10g 
(Database Control, Grid Control and Application Server Control) and MS 
SharePoint pages, high X.org cpu usage and noisy fans activity.

I couldn't find anything about this on the web. Firefox downgrade didn't 
help, but finaly I realized that I upgraded nvidia driver too - problem 
disapeared right after downgrade to nvidia driver 
NVIDIA-Linux-x86_64-180.22-pkg2.run. There are alse other versions 
between, but this one is the last one IMHO where PowerMizer works as 
expected (at least on my laptop).

My configuration is CentOS 5.5 x86_64 @ Dell Latitude D830, Nvidia 
Quadro NVS 140M.


Bye, Andrej

Mathieu Baudier wrote:
 Hello,
 
 since I upgraded from CentOS x86_64 5.4 to 5.5, I noticed that Firefox
 has become significantly slower on GMail (or Google Apps Mail).
 
 The page becomes slow to scroll as soon as there are more than a few
 mails in a conversation (like in a typical CentOS mailing list
 thread).
 
 Did anyone else notice that as well?
 (I guess that I'm not the only GMail user around)
 Could I have missed something / do something wrong?
 
 More details:
 - I did a fresh install from the 5.5 install DVD, keeping only the
 home directories
 - I'm using the Nvidia driver from elrepo (but I had the pb also with
 the default driver)
 
 Cheers,
 
 Mathieu
 ___
 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] Firefox slower on GMail since update to CentOS 5.5

2010-06-02 Thread chaohacker
 I couldn't find anything about this on the web. Firefox downgrade didn't 
 help, but finaly I realized that I upgraded nvidia driver too - problem 
 disapeared right after downgrade to nvidia driver 
 NVIDIA-Linux-x86_64-180.22-pkg2.run. 

Do you think this worth filing a bug report against?

On Wed, Jun 02, 2010 at 10:29:03PM +0200, Andrej Moravcik wrote:
 Hi Mathieu, I had the same problem with Firefox since I upgraded to 
 CentOS 5.5.
 
 I noticed very slow (almost unusable) Oracle Enterprise Manager 10g 
 (Database Control, Grid Control and Application Server Control) and MS 
 SharePoint pages, high X.org cpu usage and noisy fans activity.
 
 I couldn't find anything about this on the web. Firefox downgrade didn't 
 help, but finaly I realized that I upgraded nvidia driver too - problem 
 disapeared right after downgrade to nvidia driver 
 NVIDIA-Linux-x86_64-180.22-pkg2.run. There are alse other versions 
 between, but this one is the last one IMHO where PowerMizer works as 
 expected (at least on my laptop).
 
 My configuration is CentOS 5.5 x86_64 @ Dell Latitude D830, Nvidia 
 Quadro NVS 140M.
 
 
 Bye, Andrej
 
 Mathieu Baudier wrote:
  Hello,
  
  since I upgraded from CentOS x86_64 5.4 to 5.5, I noticed that Firefox
  has become significantly slower on GMail (or Google Apps Mail).
  
  The page becomes slow to scroll as soon as there are more than a few
  mails in a conversation (like in a typical CentOS mailing list
  thread).
  
  Did anyone else notice that as well?
  (I guess that I'm not the only GMail user around)
  Could I have missed something / do something wrong?
  
  More details:
  - I did a fresh install from the 5.5 install DVD, keeping only the
  home directories
  - I'm using the Nvidia driver from elrepo (but I had the pb also with
  the default driver)
  
  Cheers,
  
  Mathieu
  ___
  CentOS mailing list
  CentOS@centos.org
  http://lists.centos.org/mailman/listinfo/centos
  
 
 ___
 CentOS mailing list
 CentOS@centos.org
 http://lists.centos.org/mailman/listinfo/centos
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Can't print a pdf?

2010-06-02 Thread MHR
Follow-up

On Tue, Jun 1, 2010 at 11:33 AM, MHR mhullr...@gmail.com wrote:

 I looked up the drivers at
 http://www.openprinting.org/printer/Brother/Brother-HL-2140 and
 decided to try the hpijs-pcl5e (recommended driver), and it prints a
 test page just fine, also odts, pdfs, jpgs and pngs, but it doesn't
 print this particular pdf either.  The main difference is that it
 hangs the print job and lpstat shows this:

 $ lpstat -t
 scheduler is running
 system default destination: Brother2140
 device for Brother2140: usb://Brother/HL-2140%20series
 device for HPOJ4315: hp:/usb/Officejet_4300_series?serial=CN7AJH318W04GQ
 Brother2140 accepting requests since Tue 01 Jun 2010 11:14:16 AM PDT
 HPOJ4315 accepting requests since Thu 22 Apr 2010 10:47:46 AM PDT
 printer Brother2140 is idle.  enabled since Tue 01 Jun 2010 11:14:16 AM PDT
        /undefined in --get--
 printer HPOJ4315 is idle.  enabled since Thu 22 Apr 2010 10:47:46 AM PDT
 Brother2140-5135        mhr             200704   Tue 01 Jun 2010 11:11:09 AM 
 PDT

 So at least I get an error indication, not just silence.


OTOH, the hpijs driver is about 1/3 as fast as the CUPS driver.

It also seems to keep the printer humming a lot longer after each
print job is done (not 100% sure about that).

I'm going back to the CUPS driver.

Foo.

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


[CentOS] Calendar server

2010-06-02 Thread sync
Hi ,all :

I recently switched to using Thunderbird for my email and installed the
Lightning calendar add-on.  Now all I need is a remote calendar server.
I just need a simple server to support a few personal calendars and a
 shared calendar.  Any recommendations for a CentOS / Apache based
 calendar server?*
*
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Calendar server

2010-06-02 Thread Eero Volotinen
2010/6/3 sync jian...@gmail.com:
 Hi ,all :

 I recently switched to using Thunderbird for my email and installed the
 Lightning calendar add-on.  Now all I need is a remote calendar server.
 I just need a simple server to support a few personal calendars and a

  shared calendar.  Any recommendations for a CentOS / Apache based
  calendar server?

This is a bit complex issue.

maybe davical.

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


Re: [CentOS] Calendar server

2010-06-02 Thread Kahlil Hodgson
On 03/06/10 13:21, sync wrote:
 Hi ,all :
 
 I recently switched to using Thunderbird for my email and installed the
 Lightning calendar add-on.  Now all I need is a remote calendar server.
 I just need a simple server to support a few personal calendars and a
  shared calendar.  Any recommendations for a CentOS / Apache based
  calendar server?*
 *

In the past I've used Apache with mod_dav and HTTP Auth over SSL to
store the ICS files. Works okay with Thunderbird/Lightning. I'm now
accessing my Google Calendar via Lightning which is okay for light use
(updates are quite slow) and I don't have to maintain yet another server.

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