Re: [CentOS] upgrade python to python2.6.4 using yum

2010-10-05 Thread Marcelo M. Garcia
Agnello George wrote:
 Hi
 
 How would i upgrade python to python2.6.4 using a yum repository ( on 
 all my servers ) and cause manual configuration is time consuming, i am 
 using cent OS 5.4 32 bit
 
 Is there an already available repository to do this.?
 
Hi

Python26 is available from EPEL repository:
python26-2.6.5-3.el5

mg.

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


Re: [CentOS] Transferring system to new drive

2010-09-14 Thread Marcelo M. Garcia
Timothy Murphy wrote:
 I was thinking of copying the old root partition with
   sudo cp -a -P /* /mnt/hd
 (after mounting the prospective new root partition).
 Then I'd have to modify the new /etc/fstab .

Hi

I think the command rsync is a better approach for this task. It has 
much more features, for example, you can exclude certain files.

Regards

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


Re: [CentOS] centos 5.5 oscar: gcc41, gcc44 and gfortran41, gfortran44

2010-09-03 Thread Marcelo M. Garcia
giggzounet wrote:

 
 So I must have a directory (for example /opt/compiler/gcc) with the
 different versions of gcc (4.1 and 4.4 in my case). Then the module tcl
 script chooses one and exclude the other, does it ?
 
 in order to have these gcc directories can I just copy the files from
 the installed rpm ? or must I compile the different gcc versions by myself ?
 
Hi

To be honest, I'm a little bit confused. If you install from the rpms 
the binaries will have different names : gcc, gcc34, etc. So why the 
hassle to differentiate them?

Unless, instead, you only set environment variables CC=gcc or CC=gcc34. 
But sounds silly.

I think this make more sense if you have different MPI compilers, like, 
one mpicc (gcc34), other mpicc(gcc41), etc. Or different BLAS libraries, 
like libblas or libgoto etc.


Regards

mg.

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


Re: [CentOS] centos 5.5 oscar: gcc41, gcc44 and gfortran41, gfortran44

2010-09-03 Thread Marcelo M. Garcia
 
 ok. but if script are using direct gcc...and not the varaible CC ?
 
 I think this make more sense if you have different MPI compilers, like, 
 one mpicc (gcc34), other mpicc(gcc41), etc. Or different BLAS libraries, 
 like libblas or libgoto etc.

 
 it is my problem...with mpicc for example. And I though I could solve it
 with a gcc44 module or a gcc41 module. For example I have gcc 4.4
 installed, how can say to mpicc to use it ?
 

Hi

I suggest you to edit script, and replace gcc with CC[1]. Or put an 
alias at the beginning of the script: alias gcc=gcc34(?).

For mpi, it's much easier because you set everything: CC=gcc34, 
PREFIX=/data/mpi/gcc34, etc. Then you build the other one, CC=gcc, 
PREFIX=/data/mpi/gcc41, etc. Now you build you modules.

Probably in the FAQ or documentation of your MPI explains how to create 
your libraries, etc.

There a few good tutorials about parallel computing and MPI, etc here:
https://computing.llnl.gov/tutorials/parallel_comp/
https://computing.llnl.gov/tutorials/mpi/

Regards

mg.

[1]
You can replace inside vi, for example, or use something like 'sed':
http://www.grymoire.com/Unix/Sed.html#uh-0
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] centos 5.5 oscar: gcc41, gcc44 and gfortran41, gfortran44

2010-09-02 Thread Marcelo M. Garcia
 
 ok that's the right way. Do you know where I can find documentation
 about it ?
Hi

There is the main web site:
http://modules.sourceforge.net/

Or, maybe the best way, it's to start from the modules provided by 
OSCAR, and change to your needs.

In my case, we use Bright (former ClusterVisionOS), the module files are 
at /cm/shared/modulefiles. They are TCL scripts:
-sh-3.2$ pwd
/cm/shared/modulefiles/gcc
-sh-3.2$
-sh-3.2$
-sh-3.2$ ls
4.3.4
-sh-3.2$
-sh-3.2$ more 4.3.4
#%Module -*- tcl -*-
##
## modulefile
##
proc ModulesHelp { } {

   puts stderr \tAdds GNU Cross Compilers to your environment variables,
}

module-whatis adds GNU Cross Compilers to your environment variables

set   root  /cm/shared/apps/gcc/4.3.4
prepend-path  PATH  $root/bin
prepend-path  LD_LIBRARY_PATH   $root/lib:$root/lib64
-sh-3.2$
-sh-3.2$

Regards

mg.

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


Re: [CentOS] centos 5.5 oscar: gcc41, gcc44 and gfortran41, gfortran44

2010-09-01 Thread Marcelo M. Garcia
giggzounet wrote:
 Hi,
 
 I'm totally new with centos...we have a cluster in our labo with centos
 oscar. 
 But the gcc is not a link to gcc41 or gcc44. it is just an executable.
 idem for gfortran. So which is the good way on centOS to choose the
 gcc44 and gfortran44 per default.
 

Hi

I not sure if I understood the problem, but if your are using OSCAR, and 
if I remember right, you can install as many compiler as you want, but 
you select using the utility module, like module load gcc41 or 
module load gcc44. Of course, you have to configure the environment.

Then you put the right module in your configuration file: bashrc or 
bash_profile.

Hope this helps

Marcelo


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


Re: [CentOS] where to download CENTOS 5.5 DVD version??

2010-06-11 Thread Marcelo M. Garcia
Miguel Medalha wrote:
 I want to CENTOS download side and tried to download CENTOS 5.5 X86_64 DVD 
 version.  I can NOT find on any site
 
 Somebody already answered to you, but I will repeat:
 
 http://isoredirect.centos.org/centos/5/isos/x86_64/
Hi

I think he means the proper DVD iso image not torrent.

I can't use torrent, so what I do is to download the CD images (with 
wget) and build the DVD using the script in CentOS wiki page:
http://wiki.centos.org/TipsAndTricks/CDtoDVDMedia

Regards

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


Re: [CentOS] where to download CENTOS 5.5 DVD version??

2010-06-11 Thread Marcelo M. Garcia
Miguel Medalha wrote:
 ISOs here:
 
 http://mirror.chpc.utah.edu/pub/centos/5.5/isos/x86_64/

That is interesting.

When I try to download, none of the mirrors in UK seems to have these 
isos, nor in the nearby countries mirrors.

mg.




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


Re: [CentOS] Creating a user defined service in Cent os

2010-05-24 Thread Marcelo M. Garcia
Chaitanya Yanamadala wrote:
 hai all
  thank you for your replies.
 but can you send me some examples so that i can understand the things 
 more better..
Hi

Have a look in the scripts in /etc/init.d/, some of them can be little 
bit complex, but worth the time to learn. You can start with 
/etc/init.d/atd.

Regards

mg.

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


Re: [CentOS] Creating a user defined service in Cent os

2010-05-24 Thread Marcelo M. Garcia
Chaitanya Yanamadala wrote:
 so after creating a file how do i add it to service list.
 coz when  i create a new file in /etc/init.d it is not appearing in the 
 services list..
 
 Chaitanya
 
Hi

Then you use chkconfig to manage when the service will start, 
something like chkconfig --add service, or simply chkconfig 
service on, I'm not sure the best to way to do this.

There is a proper way of making the header for chkconfig, if I remember 
right. I think the man page give you this information.


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


Re: [CentOS] setup firewall with 3 nic cards

2010-05-12 Thread Marcelo M. Garcia
Dominik Zyla wrote:
 -- 
 Dominik Zyla
 I read through the document. I dont see what I have done wrong still.

 Do my routing rules not look correct from my previous post?

 Sorry I am not catching on. Thanks for your assistance.
 
 Try to add iproute2 rules for eth1. You only paste iptables rules.
 
Hi

I saw this document yesterday and maybe helpful:
http://www.shorewall.net/three-interface.htm

You can install shorewall from EPEL repo.

Regards

mg.


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


Re: [CentOS] Resolving dependencies from the command-line

2010-05-06 Thread Marcelo M. Garcia
Marco Shaw wrote:
 CenOS 5.4 x64
  
 Is there a command-line utility that I can force to automatically
 install all the dependencies for a particular package?  

yum?

mg.


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


Re: [CentOS] Math?

2010-05-04 Thread Marcelo M. Garcia
Peter Kjellstrom wrote:
 
 Ocatave is a free matlab-like tool available from EPEL in packages suitable 
 for CentOS.
 
There is also an interesting package called scipy[1] from EPEL.

Regards

mg.

[1] http://www.scipy.org/

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


[CentOS] [off-topic] RHEL6 and NIS/YP

2010-04-27 Thread Marcelo M. Garcia
Hi

Did anyone managed to configure RHEL 6 beta to authenticate using NIS?

During the installation the option to use NIS as authentication method 
is disable. When I tried to install with yum, I got the following message:
Installed size: 222 k
Is this ok [y/N]: y
Downloading Packages:
ftp://ftp.redhat.com/pub/redhat/rhel/beta/6/i386/os/Packages/yp-tools-2.9-8.1.el6.i686.rpm:
 
[Errno 14] PYCURL ERROR 6 - 
Trying other mirror.
ftp://ftp.redhat.com/pub/redhat/rhel/beta/6/i386/os/Packages/ypbind-1.20.4-21.el6.i686.rpm:
 
[Errno 14] PYCURL ERROR 6 - 
Trying other mirror.


Error Downloading Packages:
   3:ypbind-1.20.4-21.el6.i686: failure: 
Packages/ypbind-1.20.4-21.el6.i686.rpm from rhel-beta: [Errno 256] No 
more mirrors to try.
   yp-tools-2.9-8.1.el6.i686: failure: 
Packages/yp-tools-2.9-8.1.el6.i686.rpm from rhel-beta: [Errno 256] No 
more mirrors to try.

Thanks

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


Re: [CentOS] NFS mount problem

2010-04-26 Thread Marcelo M. Garcia
sync wrote:
 The contents of  /etc/exports on the server is the following :
 
 /home/test   192.168.7.67(rw)
 
 Is there anything error ?
 
Hi

First, do not top-post[1].

In general you can find more information in /var/log/messages.

You watch with
  # (as root) tail -f /var/log/messages
and from another window, try to mount.

Regards

mg.





[1]
Please do not top post to the mailing list when replying to a post. (See 
the Quoting Style link above, and use the Interleaved text method, 
deleting non-applicable text as required. If you need to reply to a 
message, and you do not need to post in interleaved mode, please bottom 
post instead of top posting.
http://www.centos.org/modules/tinycontent/index.php?id=16

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


Re: [CentOS] System Resources Graphing

2010-04-26 Thread Marcelo M. Garcia
Matt wrote:
 Is there a package I can get that will graph system resources such as
 CPU and disk I/O to an html file or something?
 
 Matt
Hi

I recommend Ganglia.
http://ganglia.sourceforge.net/

If you are using for a single system can be an overkill.

Regards

mg.

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


Re: [CentOS] wher cam i get the kickstart's rpm or gz?

2010-04-18 Thread Marcelo M. Garcia

hqm8512 wrote:

HI erveryone,
   I want to install some machines with the kickstart,but i can't 
find the kickstart's rpm or gz,anyone know it? my server is suse 
10.3,thank you!


OpenSuSE uses autoyast.

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


Re: [CentOS] CentOS-friendly wiki engine ?

2010-04-16 Thread Marcelo M. Garcia
Niki Kovacs wrote:
 Hi,
 
 I've never used any wiki engines myself. Is there any one you can 
 recommend in particular ? I'm using CentOS 5 on the server, so I would 
 be glad to use a solution where I don't have to jump through burning 
 loops (e. g. install a more recent version of PHP/Python/whatever) to 
 make it work.
 
 Cheers,
 
 Niki

Hi

Mediawiki is available in EPEL repo.

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


Re: [CentOS] how to debug pxe boot problems

2010-04-13 Thread Marcelo M. Garcia
Rudi Ahlers wrote:

 The others does nothing when I try and boot them
 
 
 And why you are trying to boot a DOS disk when you want to boot CentOS, I
 don't know.
 
 Cause I used the sample configation on the WIKI, and the DOS option is
 listed. Why is it listed on the Wiki if ppl are going to question it's
 usage?
 

Hi

Which others? Are you sure that are you using the right vmlinuz and initrd?

Which Wiki did you use? Was this one?
http://wiki.centos.org/HowTos/PXE/PXE_Setup
I don't see any reference to DOS.

Regards

mg.


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


Re: [CentOS] Swap = 0

2010-04-13 Thread Marcelo M. Garcia
cahit Eyigünlü wrote:
 My server returning an error sth. like swap =  0 then locking httpd and 
 all other services 
 is this normal 
 this is a virtual machine and i give it 3 gb ram and 4cpu of i7 920 
 i have 1 gbit connection on this machine 
 finally i have 4000+ clients at one time :S
 
No. This is not normal.

Did you create a swap partition when you were installing the system?

If you do a fdisk /dev/sda, change sda to your disk, you'll see 
something like this:
Device Boot   Start End  Blocks   Id  System
/dev/sda1   *1  13  104391   83  Linux
/dev/sda214 535 4192965   82  Linux swap / Solaris
/dev/sda3536442731262490   83  Linux


The command free can give you a hint about your swap space:
newt (Linux)$ free
  total   used   free sharedbuffers cached
Mem:   20749561926248 148708  0  279001252224
-/+ buffers/cache: 6461241428832
Swap:  41929561244192832
newt (Linux)$

Regards

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


Re: [CentOS] PXE Boot : Clonezilla

2010-04-13 Thread Marcelo M. Garcia
premr...@digilink.in wrote:
 I wanted to set up Clonezilla Tools on my client machine via PXE Boot. 
 How do I do it. I got information from the
 web, but after making changes in the dhcpd.conf file, the dhcpd fails to 
 start. In the BIOS after enabling the PXE Boot,
 iam not able to see an Clonezilla menu options that i have placed in 
 /pxelinux.cfg file. Iam using centos-5.3 on Intel Board
 
 Please provide me with some more information on the same.
 
 Regards,
 Premraj
 

Hi

I think you are the who should provide more information. The sentence 
after making changes in the dhcpd.conf file, the dhcpd fails to start 
doesn't help.

What change?

There are plenty of documentation on the web about how to set up a dhcp 
server, for example:
http://www.centos.org/docs/5/html/Deployment_Guide-en-US/s1-dhcp-configuring-server.html

Regards

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


[CentOS] Dependency problem with yum-utils when installing Cobbler on CentOS

2010-02-19 Thread Marcelo M. Garcia
Hi

I'm trying to set up a Cobbler server, and when I run cobbler check, I 
got the following message:
The following potential problems were detected:
#0: yum-utils need to be at least version 1.1.17 for reposync -l, 
current version is 1.1.16
[r...@tannat ~]#

I'm using Cobbler 1.6.6-1, CentOS-5.4 (x86_64), and (as the message 
says), yum-utils 1.1.16.

Is there a way to fool Cobbler check?

Thanks

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


Re: [CentOS] best practice: how to setup a central network installation server?

2010-02-18 Thread Marcelo M. Garcia
Rudi Ahlers wrote:
 Hi, 
 
 I want to setup a central installation server, but haven't done this 
 before, so I want to find out what would be best practices for this?
 
 The server I have already runs as a central repo, which is updated from 
 one or our local centos mirrors, and the other CentOS servers (both i386 
  x64), as well as CentOS VPS's get their updates from this server. 
 
 But, now I want to allow a client to perform a quick network 
 installation, using either a netbood CD, or preferably with the server's 
 network bootrom. I understand this can be done with bootp, or am I on 
 the wrong track?
 
 the server is a general file server and also acts as our in-office 
 internet gateway, and has Webmin installed for convenience sake. I don't 
 know if this is of any use?
 
 Generally we would be (re)installing CentOS servers  desktops, but I 
 guess it could be useful for other distro's like Fedora Core / Debian / 
 FreeBSD? / etc. What would be a good option to go for, or could someone 
 point me to a good documentation? Doing a google search I found a lot of 
 instructions on how to perform a network installation on the client 
 PC's, but not how to configure the server. Maybe I used the wrong key words?
 
 -- 

Hi

I'm starting to play with Cobbler. Besides to central installation 
server, it also supports other distributions, like SuSE and Debian 
(Ubuntu?).

https://fedorahosted.org/cobbler/

Regards

mg.

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


Re: [CentOS] best practice: how to setup a central network installation server?

2010-02-18 Thread Marcelo M. Garcia
Rudi Ahlers wrote:
 
 
 
 
 
 kickstart file, if you are familiar with text based configurations?
 
 Is kickstart REALLY the only way? 
 
 How do I configure the server so that the client can use network boot, 
 without a CD?

Hi

You can use PXE. You have to set up a tftp and a DHCP server. Sometimes 
you have to enable PXE in the BIOS - I always to do this with Dell machines.

Regards

mg.

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


Re: [CentOS] processor affinity

2010-02-18 Thread Marcelo M. Garcia
John Doe wrote:
 From: Simon Billis si...@houxou.com
 To: CentOS mailing list centos@centos.org
 Sent: Thu, February 18, 2010 11:25:41 AM
 Subject: Re: [CentOS] processor affinity

 Adam Grossman sent a missive on 2010-02-17:

 On Wed, 2010-02-17 at 13:26 -0500, Adam Grossman wrote:
 On Wed, 2010-02-17 at 18:17 +, Simon Billis wrote:
 Adam Grossman sent a missive on 2010-02-17:

 Hello,

 i am running CentOS 5.4.  i have a requirement where i need to have 1
 application have a single processor all to its self, and the rest of
 the system run on the other processors.  taskman lets me bind the
 process to a processor(s), but it does not make it exclusive.   Is
 this possible to do? i have even tried mucking around with the
 rc.sysinit, but to no avail.

 thank you very much,
 Have you considered running through the pids of the all tasks and then
 using taskset to change their affinities. You could also change all
 the init scripts to invoke the process using something like taskset
 -p [mask] [pid] and limit the mask to only the first few CPU's that
 you want them to have access to.

 that's probably a good idea.  have it be the last service that runs
 which moves everything to the processors i want.  i am going to give
 that an try.
 i was asked to do this for increased performance.  but does centos
 have any SMP load balancing which would probably work better then
 manually doing load balancing?

 Linux does have cpu load balancing to maximise performance, but performance
 of an application/process relies on many things. You may have to tune the
 system for that particular application and also reduce the number of other
 processes running to maximise the performance. Application tuning may also
 be required for maximum performance gains.
 
 What about renicing processes...?
 
 JD
 
 
Hi

I don't this helps, but in the BIOS of Dell Precision I have to option 
of choose the memory management to be SMP or NUMA, the default is SMP. 
If you choose to NUMA than you have a better affinity.

Regards

mg.

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


Re: [CentOS] x86_64 package mess ?

2010-02-18 Thread Marcelo M. Garcia
Niki Kovacs wrote:
 Hi,
 
 I just installed CentOS 5.4 on a 64bit-server. It's the first time I 
 work with this sort of hardware. Doing rpm -qa | sort | less shows that 
 most of the packages seem to be installed twice: once for i386 
 architecture, and then again for x86_64.
 
 Is this normal? Or did I mess up something during install (thought I 
 wouldn't know what)?
 
 Niki
 ___
 CentOS mailing list
 CentOS@centos.org
 http://lists.centos.org/mailman/listinfo/centos
Hi

I think this is OK. Some programs (32bit ones) expects to find 32bit 
libraries, so just to be on the safe side (and a little bit lazy),and if 
I have the options, I install for both architectures.

Regards

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


Re: [CentOS] x86_64 package mess ?

2010-02-18 Thread Marcelo M. Garcia
Mathieu Baudier wrote:
 The 32-bit packages are installed for backward-compatibility with any
 32-bit programs you may want to run.
 
 Regarding security, is it less safe to have these *.i386 packages
 installed? (esp. on a server)
 (according to the principle that less is always more secure)
Hi

I'm not sure if it's that simple. Although this seems to be a good 
general principle, it will depend how expose it's the system, or if you 
(or the sysadmin) do the updates, etc.

Regards

mg.

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


Re: [CentOS] How to display laptop screen on LCD TV?

2010-02-14 Thread Marcelo M. Garcia
hce wrote:
 Hi,
 
 I am running CentOS 5.2 on Acer laptop, I try to display laptop screen
 on a LCD TV via VGA cable. It was fine while PC was booting in text
 mode, but as soon as I started X Window, the LCD TV has error
 Unsupported signal, adjust your PC out.
 
Hi

Resolution?

Or, you have to configure something like xinerama or twinview. I not 
sure but I think twinview is a NVIDIA feature.

Regards


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


Re: [CentOS] best parallel / cluster SSH

2010-02-05 Thread Marcelo M. Garcia
Alan McKay wrote:
 It depends on what you need to do.  If you really have enough machines
 or long-running jobs that a shell loop through them isn't practical, you
 might want something higher-level like cfengine or puppet, or at least
 something running under cron to make them independent.
 
 cfengine or puppet (or something else - slackmaster?) are where I want
 to be eventually - but in the immediate term something like this would
 help a lot.e.g bouncing my 4 front-end apache servers on 4
 different boxes.   That sort of thing.
 
 I was actually going to start another configuration management redux
 thread as a follow up to a thread I started a few months ago.
 
 
Hi

This is another interesting tool:
https://fedorahosted.org/func/

Regards

mg.

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


Re: [CentOS] The directory that I am trying to clean up is huge

2010-01-23 Thread Marcelo M. Garcia
Anas Alnaffar wrote:
 The directory that I am trying to clean up is huge … every time get this 
 error msg
 
  
 
 -bash: /usr/bin/find: Argument list too long
 
  
 
  
 
 Please advise
 
  
 
 *Anas *
Hi

Could you put the complete command? Please provide more details.

Regards

mg.

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


Re: [CentOS] The directory that I am trying to clean up is huge

2010-01-23 Thread Marcelo M. Garcia
Robert Heller wrote:
 At Sat, 23 Jan 2010 15:23:58 +0300 CentOS mailing list centos@centos.org 
 wrote:
 
 Content-Language: en-us


 The directory that I am trying to clean up is huge . every time get this
 error msg 

  

 -bash: /usr/bin/find: Argument list too long
 
 'man xargs'
 
 find mumble -print | xargs rm 
 
Hi

Just curious. What is the difference between the command above and find 
numble -exec rm -f {} \; ?

Thanks

mg.

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


[CentOS] Strange problem updating machine

2010-01-12 Thread Marcelo M. Garcia
Hi

Today I updated one machine with CentOS-5.4 (2.6.18-164.6.1.el5) x86_64 
(Intel(R) Xeon(R) CPU X5450 @ 3.00GHz) to 2.6.18-164.10.1.el5, but in 
some places, like /boot[1] and in the menu /boot/grub/menu.lst[2], 
appeared as 2.6.18-164.1.10 - the 1 and the 10 swapped.

Did anybody else had similar problems? The update worked fine in i686 
workstation and x86_64 xen kernels.

Thanks

Marcelo

[1]
config-2.6.18-128.1.10.el5
initrd-2.6.18-128.10.1.el5.img
vmlinuz-2.6.18-128.1.10.el5
System.map-2.6.18-128.1.10.el5

[2]
title CentOS (2.6.18-128.1.10.el5)
 root (hd0,0)
 kernel /vmlinuz-2.6.18-128.1.10.el5 ro root=LABEL=/ rhgb quiet
 initrd /initrd-2.6.18-128.1.10.el5.img


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


Re: [CentOS] Laptop for CentOS-5

2010-01-08 Thread Marcelo M. Garcia
James B. Byrne wrote:
 CentOS-5+
 
 Your system suggestions, both for hardware and OS, are most welcome.
 
Hi

The Dell Precision line can come with RHEL 5, so will work fine with 
CentOS. I'm sure about M4400.

Regards

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


[CentOS] [Off-topic] Search in acrobat reader plugin

2010-01-08 Thread Marcelo M. Garcia
Hi

I installed CentOS-5.4 x86_64 and Acrobat Reader 9.1[1].

When I look a pdf within the browser, I can't search the document, but 
if save it, then the search works fine.

Does anyone else have similar problem?

Thanks

marcelo



[1] AdbeRdr9.1.2-1_i486linux_enu.bin
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] environment-modules

2009-12-27 Thread Marcelo M. Garcia
On 26/12/2009 03:21, mark wrote:
 xiaoyunpeng wrote:
 I think you should give the user a path list of javas you've installed. More
 step on, a script with a sun-java or openjdk as input for switching the
 java type would be better.

 Ok, so I guess no one's ever used environment-modules. Thanks anyway.

   mark
Hi

I used environment-modules a few years a go with OSCAR[1], and I 
remember to simply coping and editing files to create a intel-mpi, 
intel-cc, etc, based on modules provided by OSCAR.

The document Drag Your Design Environment Kicking and Screaming into 
the 90's With Modules! in project page[2] seems to be pretty complete.

In fact I'm considering using environment-modules as an alternative to 
put a lot of configuration in .cshrc.

Regards

mg.


[1] http://svn.oscar.openclustergroup.org/trac/oscar
[2] http://modules.sourceforge.net/
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Monitor Network Traffic

2009-12-21 Thread Marcelo M. Garcia
On 21/12/2009 16:05, Thomas Harold wrote:

 You can also (ab)use MRTG to graph things like CPU usage  CPU
 temperature, disk utilization, or anything else that you can query via a
 remote shell command or SNMP query.

Hi

In this case why not use Ganglia. Look how MediaWiki uses Ganglia with 
Nagios, and other tools:
http://ganglia.wikimedia.org/

Regards

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


Re: [CentOS] CentOS 5.4 x86_64 only detects 32GB RAM while Fedora x86_64 correctly lists 128GB

2009-12-07 Thread Marcelo M. Garcia
Diederick Stoffers wrote:
 Hi,
 
 We have a new 24-core Dell PowerEdge R905 server with 128GB's RAM. The 
 64 bits version of Fedora 12 lists the correct amount of 128GB, CentOS 
 only finds 32GB (and so does Scientific Linux). I would much prefer to 
 use CentOS (most of the software we use is specifically designed for 
 CentOS). Does anyone know what is causing this/how to fix it?
 
 Many Thanks,
 
 Diederick
 
Hi

Very strange. I have a Dell Precision T7500 with 48GB of memory and 
CentOS-5.4 finds everything:
kalyke (Linux)$ uname -rm; free
2.6.18-164.6.1.el5 x86_64
  total   used   free sharedbuffers cached
Mem:  49453972   482735921180380  0 219116   41775056
-/+ buffers/cache:6279420   43174552
Swap: 50331604  0   50331604
kalyke (Linux)$

Regards

mg.

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


Re: [CentOS] Docx format ?

2009-11-26 Thread Marcelo M. Garcia
Niki Kovacs wrote:
 Hi,
 
 Is there any way I can read a .docx file on my CentOS desktop ?
 
 Cheers,
 
 Niki


Hi

I don't install the CentOS Openoffice, instead install 3.1 from 
Openoffice web site. Seems to work fine with MS documents.

Regards

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


Re: [CentOS] OT: Using rdesktop as terminal client to Windows 2008 R2

2009-11-18 Thread Marcelo M. Garcia
carlopmart wrote:
 Hi all,
 
   I am using rdesktop as a terminal client to connect to Windows Terminal 
 Server 
 over years without problems until now. I have a problems with five Windows 
 2008 R2 
 servers: point cursor turns black when I connect to them. But this problem 
 disappears if I turn on windows 7 theme on these servers, but performance it 
 is very 
 very bad.
 
   This problem only appears with windows 2008 R2 and not on Windows 2008 SP2 
 or 
 Windows 2003 R2 servers.
 
   I have tried to add: Option SWcursor true (nvidia graphics card using 
 native 
 nvidia drivers), on my xorg.conf without luck.
 
   My laptop is centOS 5.4 fully updated with rdesktop-1.6.0-3.
 
   Any ideas??
 
   Thanks.
Hi

I had the same problem and seems to be the version of rdesktop. I solved 
  compiling the new version (1.6).

Regards

mg.

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


Re: [CentOS] allowing users to issue the shutdown command

2009-10-17 Thread Marcelo M. Garcia
Buz Davis wrote:
 I am running CentOS 5.3 and have just the two accounts root and 
 buz.  I would like to be able to issue shutdown from the account 
 buz, and thus created
 /etc/shutdown.allow with the single entry  buz (without any quotes).  
 I still
 get the error message only root can do this (or something similar) 
 even if I include the '-a' option on the shutdown command.  What am I 
 missing ?
Hi

You can use sudo and issue sudo shutdown from your buz account.

Regards

mg.

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


Re: [CentOS] CentOS 5.4? anyone?

2009-10-16 Thread Marcelo M. Garcia
Toby Bluhm wrote:
 You Centos guys just aren't getting the message are you?
 
 We need to know EXACTLY what is going on with the release! None of this 
 soon crap will do. Please post a progress report on packages built, 
 isos transfered, server update progress by region, hours worked, 
 keystrokes typed, bathroom breaks, hours slept, family time taken. Bar 
 charts would be a nice touch. We need to know these things! Our very 
 lives hang upon this release. Strap a wireless webcam to your head for 
 god's sake and broadcast your every move. Verbalized every action. Quit 
 leaving us in the lurch!
 
 
 Thank you
Hey!!!

Calm down dude. Just take it easy man, go and what some Big Lebowski.

mg.



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


Re: [CentOS] CentOS 5.4? anyone?

2009-10-16 Thread Marcelo M. Garcia
Nicolas Thierry-Mieg wrote:
 Marcelo M. Garcia wrote:
 Toby Bluhm wrote:
 You Centos guys just aren't getting the message are you?

 We need to know EXACTLY what is going on with the release! None of this 
 soon crap will do. Please post a progress report on packages built, 
 isos transfered, server update progress by region, hours worked, 
 keystrokes typed, bathroom breaks, hours slept, family time taken. Bar 
 charts would be a nice touch. We need to know these things! Our very 
 lives hang upon this release. Strap a wireless webcam to your head for 
 god's sake and broadcast your every move. Verbalized every action. Quit 
 leaving us in the lurch!


 Thank you
 Hey!!!

 Calm down dude. Just take it easy man, go and what some Big Lebowski.
 
 lol!
 can't believe some people took Toby's post seriously :-D
 strapped wireless webcam? come on!
 

You never know these days. You can expecting everything.

mg.

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


[CentOS] [off-topic] Build packages in virtual machine

2009-10-16 Thread Marcelo M. Garcia
Hi

Sorry for the silly question, but is it safe to build packages, like 
rpms, in virtual machines (virtualbox) and use this packages in real 
machines? Some of these machines are CentOS and others ares Opensuse.

I need to build (or would be very useful to have) Ganglia 3.1.x

Thanks

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


Re: [CentOS] CentOS 5.4? anyone?

2009-10-15 Thread Marcelo M. Garcia
Jeremy Rosengren wrote:
 On Thu, Oct 15, 2009 at 7:07 AM, Miguel Di Ciurcio Filho 
 mig...@ic.unicamp.br mailto:mig...@ic.unicamp.br wrote:
 
 mbneto wrote:
   Hi,
  
   The last status (from twitter) is 2 days old with the '5.4 is baked!
   centos internal network will start syncing up today. Release ~
 soon!'.
   Any ETA?
  
 
 Just relax and wait, this is a _volunteer_ based project. Want a release
 date? Go pay for RHEL.
 
 
 This response is just as annoying as the request for an update.
 
 -- j
+1

Annoying and rude.

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


Re: [CentOS] Sparc?

2009-10-15 Thread Marcelo M. Garcia
ML wrote:
 HI All,
 
 
 Can anyone recommend a good OS for a machine that will do apache,  
 postfix, mysql, etc.
 
 
 -Jason

Hi

There are some options, like Debian or Fedora 11 in case of Linux or 
something different try FreeBSD.

Regards

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


Re: [CentOS] customized centos 5.4 install, core install?

2009-10-12 Thread Marcelo M. Garcia
Rajagopal Swaminathan wrote:
 Greetings,
 
 On Mon, Oct 12, 2009 at 8:23 PM, David Mehler dave.meh...@gmail.com wrote:
 Hello,
 This might be called a core build not completely positive. What i want
 to do is make a completely customized centos 5.4 unattended CD or DVt
 not only installs a specific list of apps apps that i want on each
 system, but configures them automatically perhaps via scripts, and
 enables or disables services etc. Basically, i want to drop the CD or
 DVD in a box which will probably not have a monitor anyway, and walk
 away. I then come back or ssh in and everything is already installed,
 any repos are added, configured and ready to go. Is this a core build?
 I'd appreciate any pointers on this.
 Thanks.
 Dave.
 
 cobbler??
 
 spacewalk??
 
 Regards,
 
 Rajagopal
Hi

First kickstart, then cfengine or puppet.


Regards

mg.

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


Re: [CentOS] CentOS 5.3 on X86_64: yum installs both i386 and x86_64 packages

2009-10-12 Thread Marcelo M. Garcia
Patrick McEvoy wrote:
 Hello,
 
 Is it advisable to clean up the system by deleting the i386 rpms?

 Patrick

Hi

I don't think this is a good idea. If we are talking about a workstation 
for a user, better keep, but if you talking about a server, maybe.

Most probably you will have to install some i386 packages at some point.

Regards

mg.

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


Re: [CentOS] resolv.conf rewritten every reboot. How to figure out who and why?

2009-10-09 Thread Marcelo M. Garcia
Dave wrote:
 My machine has a static IP, with dhcp and IPv6 disabled. Every time I
 reboot, some process rewrites /etc/resolv.conf, including a comment
 about dhcpclient. The only package I have installed that shows up in
 rpm -qa|grep -i dhcp is dhcpv6-client-1.0.10-16.el5, and nothing in
 there is named dhcpclient.
 
 I'd like to figure out what software is rewriting this file and why.
 man 5 resolv.conf  and man resolver are unhelpful in this case. rpm
 reports /etc/resolv.conf is not owned by any package.
 
 At this point, I am as (or more) interested in pointers regarding how
 to find the answer as I am in the actual answer. Please teach me to
 fish.
 
 mahalo,
 Dave
Hi

Is network-manager enabled?

Regards

mg.

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


Re: [CentOS] Can't download large files

2009-10-09 Thread Marcelo M. Garcia
David Suhendrik wrote:
 John R Pierce wrote:
 David Suhendrik wrote:
 Hi All,
 I've finish setup vsftpd as anonymous FTP server, and I also setup 
 apache for web service on my linux box. yesterday, I'm tried to put 
 CentOS 64 bit  image (.iso) size is 4.5GB and tried to download from my 
 computer. Apache and vsftpd work great, but I get some problem with 
 download size..

 When I download CentOS iso image [4.5GB], download process always 
 stopped at 4.2GB with errors:
 == SIZE CentOS-5.3-x86_64-bin-DVD.iso ... 4557455360
 == PASV ... done.== REST 4294967295 ... done.   
 == RETR CentOS-5.3-x86_64-bin-DVD.iso ... done.
 Length: 4557455360 (4.2G), 262488065 (250M) remaining

 94% [++   ] 4,294,967,295 --.-K/s   in 
 0.001s 

 CentOS-5.3-x86_64-bin-DVD.iso: File too large, closing control connection.
   
  


 *Well, FWIW, 2^32 = 4 ,294 ,967 ,296*


 I've used SCP on  4GB files without a problem.




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

 Hi John,
 I've tried using rsync and scp but the problem has no left and make me 
 confused...
 Any idea?
 And I need to know cause of my problem :(
 
Hi

Just curious, are you using ext2? If I remember right, a long time ago, 
I had similar problems with Debian.

Regards

mg.

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


Re: [CentOS] how to turn off update info on /var/log/messages

2009-10-09 Thread Marcelo M. Garcia
Benjamin Donnachie wrote:
 2009/10/8 Lanny Marcus lmmailingli...@gmail.com:
 +1Excellent advice. He should not be disabling updates.  Advice
 that's worth a lot more than 2 cents
 
 Depends upon your point of view.  I like to know what my servers are
 doing and to have the opportunity to test that updates will not break
 anything that we rely upon first.
 
 Ben
+1

I agree. I should decide if a server should be updated or not.

Regards

mg.

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


Re: [CentOS] xen guest system - install source - NOT

2009-10-08 Thread Marcelo M. Garcia
 
 Hm, not so simple. Now I got the installation (with program 
 virt-install) to begin, but then I would see a dialog screen asking for 
 ftp server, and path containing OS for my architecture. I gave for 
 example the following two values:
   ftp.funet.fi
   pub/mirrors/centos.org/5.3/os/i386
 (the latter with and without slashes at beginning and end),
 but always I get the same dialog screen back after a couple of minutes 
 of blank screen. No error messages.
 
 So I am baffled again. Has someone been here before?
 
Hi

I was trying to install using virt-manager whit FTP to point to the 
files (mounted with loop) in the field Install Media URL, but it was 
always failing with the message was not finding the installation files.
For me works only if I extract the files from the iso image and access 
using NFS.

The FTP works fine if I use inside the kickstart.

Regards

mg.

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


Re: [CentOS] CentOS for non-tech user

2009-09-30 Thread Marcelo M. Garcia
Christopher Chan wrote:
  And I can't believe I just write that...! I sound like a linux
 die-hard...
   
 Just try Solaris or FreeBSD then. That should make you a Linux die-hard. :-D

Oh yes. I tried Opensolaris for a while and now I'm more convinced of 
Linux than ever.

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


Re: [CentOS] CentOS for non-tech user

2009-09-30 Thread Marcelo M. Garcia
Sorin Srbu wrote:
 HTH.
 Hi Sorin

 You can sudo bash and you will have a root terminal. In it, you can
 set the root password for root.
 
 Yupp, as I said, at the time I was testing Ubuntu, I was rather green and
 didn't know about those little tricks. Now is a another matter, but I still
 prefer CentOS. Besides, opening a terminal and typing in su - is way
 faster. Saves keystrokes. 
Hi

The reason for Ubuntu in the laptop is simply because CentOS didn't work 
  very well. I followed the wiki about XPS M1530[1] and everything 
almost work. At the office one of the developers uses a Dell Precision 
laptop with RHEL 5.3 (it came from Dell with RHEL) and works really 
fine. So, I image that some laptops are more CentOS/RHEL-friendly than 
others.

Now I'm used to use sudo. It is a great tool. I use it everywhere. And 
everything I do appears in the logwatch.

Regards

mg.

[1] http://wiki.centos.org/HowTos/Laptops/Dell/XPS_M1530
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] How to autoconfigure network?

2009-09-30 Thread Marcelo M. Garcia
happymaster23 wrote:
 Hello,
 
 I have installed new network card under CentOS 5.3, but there are some
 problems. I want delete existing ifcfg-eth0 and automatically make new
 on as it is during OS installation process. Is it possible?
 
 Thank you
Hi

I'm not sure if I understood your problem, but here it goes. Have you 
tried system-config-network? Are you using Network-Manger?

Regards

mg.

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


Re: [CentOS] CentOS for non-tech user

2009-09-29 Thread Marcelo M. Garcia
Sorin Srbu wrote:
 -Original Message-
 From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On
 Behalf
 Of Matt
 Sent: Monday, September 28, 2009 11:29 PM
 To: CentOS mailing list
 Subject: Re: [CentOS] CentOS for non-tech user

 Thats my thought as well.  Ubuntu desktop and CentOS for servers.
 Just wandering if anyone is using the 'Ubuntu Server Edition's'?  They
 seem appealing but CentOS is what I am used too on servers now.
 Thought about loading it up on a box to just try though.
 
 Not using, but I've tried it in a LAMP-configuration couple of years ago.
 Stability seems ok, but personally I don't like the sudo this and sudo that
 and sudo everywhere. Besides, it felt somehow clunky. CentOS seemed slim,
 slick and fast compared at the time, so CentOS is what I got stuck with (in
 an endearing sense of course).
 
 HTH.
Hi Sorin

You can sudo bash and you will have a root terminal. In it, you can 
set the root password for root.

Regards

mg.


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


Re: [CentOS] CentOS for non-tech user

2009-09-28 Thread Marcelo M. Garcia
Sorin Srbu wrote:
 -Original Message-
 From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On
 Behalf
 Of Marcelo M. Garcia
 Sent: Thursday, September 24, 2009 8:57 PM
 To: CentOS mailing list
 Subject: Re: [CentOS] CentOS for non-tech user

 Sorry, but Fedora is no longer a good desktop choice. I was a Fedora
 user, but the distribution is pushing to far the idea of cutting edge
 features.
 
 Would you mind elaborating your view here?
 
Hi

To be honest there isn't much to elaborate. I understand the goal Fedora 
project to test the latest software available. In this way, Fedora isn't 
for everyone. At least is not for your main system, but if you have a 
spare machine to install and play with it, it's probably a good idea. In 
my case, the rpmfusion NVIDIA driver didn't like my card, a Quadro NVS280.

I there are too many updates, and sometimes they crash something. I 
remember while using Fedora 10, after disappointment with F9, after an 
update, the sound stopped to work. I didn't like the idea of Thunderbird 
beta in F 12. Also, the external drives are mounted using the uuid(?) 
name, so instead of /media/disk, appears something like 
/media/88299233ddd22, which breaks my backup/recover script. And a few 
other thinks. My general option was that the experience wasn't good, or 
put in another way, Ubuntu works better.

None of this is critical, but it is annoying. For me, a good 
distribuition would be something seating between Fedora and CentOS. In 
the last months I started thinking that Ubuntu feel this gap. I still 
believe that CentOS is best option for servers and technical 
workstations, but not for my laptop, a Dell XPS M1530.

Regards

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


Re: [CentOS] CentOS for non-tech user

2009-09-24 Thread Marcelo M. Garcia
Tiago Almeida wrote:
 IMHO,
 
 I think Fedora is a good choice for Desktop (Although i'm a Debian
 fan), because it's RPM based distro and if you get used to it you'll
 be also at CentOS.
 
 I totally agree that for servers CentOS or RHCE is a good choice.
 
Hi

Sorry, but Fedora is no longer a good desktop choice. I was a Fedora 
user, but the distribution is pushing to far the idea of cutting edge 
features.

Now I use Ubuntu in my laptop for the same reason presented before by 
others. CentOS in great for technical workstations (I use and install 
for the engineers in the company) and servers.

Regards

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


Re: [CentOS] Problems setting terminal size in termcap/xterm

2009-09-14 Thread Marcelo M. Garcia
Filipe Brandenburger wrote:
 Hi,
 
 On Thu, Sep 10, 2009 at 09:55, Marcelo M. Garcia
 marcelo.maia.gar...@googlemail.com wrote:
 I'm trying to set the terminal size in /usr/share/vte/termcap/xterm, but
 it seems that CentOS doesn't look at this file.
 
 Works for me (CentOS 4, opening gnome-terminal).
 
 What does echo $TERM output for you? If it does not output xterm
 that might be the reason why it does not work...
 
 HTH,
 Filipe

Hi
Here is the output of $TERM
 newt (Linux)$ echo $TERM
 xterm
 newt (Linux)$ 

I know this works in RHEL/CentOS 4.x and Fedora 10, but not in CentOS 
5.x (I'm not sure about RHEL 5.x).

The question is if someone else has the same problem.

Thanks

Marcelo

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


[CentOS] [off-topic] Question about csh.

2009-08-28 Thread Marcelo M. Garcia
Hi

I received this request from a user and could not find the solution. I 
would like to know if someone already solved this:
At the command prompt I used to be able to type the first letter of a 
line command and then by using the up arrow key, scroll through all of 
the line commands, that begin with that letter, that I had previously 
executed.

It's a machine with CentOS-5.3, x86_64, and tcsh-6.14-14.el5, but his 
shell is 'csh'.

Thanks

Marcelo



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


Re: [CentOS] apache virtual host load monitoring

2009-08-26 Thread Marcelo M. Garcia
Sergey Smirnov wrote:
 Hi All,
 
 is there any tools/mods for apache2 which are you using to monitor the
 load of every virtual host? (e.g. mod_proctitle)
 
 thanks
 
Hi

What about Ganglia[1]? You can monitor everything that produces a number[2].

Regards

mg.

[1] http://ganglia.info/
[2] http://www.ibm.com/developerworks/wikis/display/WikiPtype/ganglia


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


Re: [CentOS] Using Thunderbird as local mail reader

2009-08-24 Thread Marcelo M. Garcia
fred smith wrote:
 Hi!
 
 I'm trying to figure out how to use Thunderbird as a local mail reader.
 
 So far I don't see any way to configure it other than as a POP3 or IMAP mail 
 reader,
 but I get my mail locally and would like to try using Tbird to read it.
 What am I overlooking?
 
 Thanks in advance!
 
Hi

Have you tried fetchmail?

Regards

mg.

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


Re: [CentOS] virt-manager crashes Host during installation of guest

2009-08-19 Thread Marcelo M. Garcia
Bernhard Gschaider wrote:
 Hi!
 
 I have the following problem: I have a server (CentOS 5.3 x86_64) on
 which I want to install a virtual Xen-machine (CentOS 5.3 x86_64), I
 ssh from my workstation (Centos 5.3 x86_64  do you see the pattern ;) )
 to that server and start the virt-manager. I create a new Guest
 (Paravirtualiuzed) and point it to the server with the installation
 files (CentOS 5.3, but I already said that). The manager creates the
 disk image an then opens the Graphical console for
 installation. Sometime around the point where the installation program
 wants me to select the keyboard the graphical console it freezes. The
 server is completely dead (no console, no disk activity, no ping, only
 a reset will repair it)
 
 My question: am I doing something stupid? But I figured They're all
 the same system, this must work
 
 I don't want to play around with it too much as the server is also our
 file-server and people start complaining.
 
 So any hint will be greatly appreciated (otherwise I'll have to setup
 another machine for the guests)
 
 Bernhard
 
 
 
 
 
 ___
 CentOS mailing list
 CentOS@centos.org
 http://lists.centos.org/mailman/listinfo/centos
Hi

I use the virt-manager, but I always use a kickstart to do the 
installation and I never had problems.

Regards

mg.

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


Re: [CentOS] Open Letter to Lance Davis

2009-07-31 Thread Marcelo M. Garcia
Connie Sieh wrote:
 
 On Thu, 30 Jul 2009, Les Mikesell wrote:
 
 Ralph Angenendt wrote:
 Les Mikesell wrote:
 Has anyone considered joining forces with Scientific Linux to reduce the
   workload and give both a more robust infrastructure?
 Yes, but the goals are rather different.
 I thought both had upstream compatibility as the main goal - and both
 seem competent enough that I wouldn't expect many problems in this
 regard.  SL also claims a secondary goal of making site customization
 easy - perhaps Centos as we know it could simply be one of those
 customizations and going forward other variations would be easy.  If the
 people doing the work aren't getting any value out of the brand name, I
 don't see the point of fragmenting the user community for what is
 essentially the same thing.
 
 I was expecting it to be the other way around.  With Centos the base and 
 SL a site(or something like it). In RHEL 6 I expect the distro rebuild tools 
 to make sites easier.  This 
 comment is based on the distro rebuild tools in Fedora.  We built a custom 
 Fedora 10 to test this idea.  These are pungi, revisor and the iso image 
 tool(forgot its name).
 
 -Connie Sieh
 
 --
  Les Mikesell
lesmikes...@gmail.c

CentOS and Scientific Linux together would be like dream come true.

Regards

mg.




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


Re: [CentOS] Open Letter to Lance Davis

2009-07-31 Thread Marcelo M. Garcia
Les Mikesell wrote:
 Marcelo M. Garcia wrote:
 Connie Sieh wrote:
 Ralph Angenendt wrote:
 Les Mikesell wrote:
 Has anyone considered joining forces with Scientific Linux to reduce the
   workload and give both a more robust infrastructure?
 Yes, but the goals are rather different.
 I thought both had upstream compatibility as the main goal - and both
 seem competent enough that I wouldn't expect many problems in this
 regard.  SL also claims a secondary goal of making site customization
 easy - perhaps Centos as we know it could simply be one of those
 customizations and going forward other variations would be easy.  If the
 people doing the work aren't getting any value out of the brand name, I
 don't see the point of fragmenting the user community for what is
 essentially the same thing.
 I was expecting it to be the other way around.  With Centos the base and 
 SL a site(or something like it). In RHEL 6 I expect the distro rebuild 
 tools to make sites easier.  This 
 comment is based on the distro rebuild tools in Fedora.  We built a custom 
 Fedora 10 to test this idea.  These are pungi, revisor and the iso image 
 tool(forgot its name).
 CentOS and Scientific Linux together would be like dream come true.
 
 My 'dream' OS has always been one where the base install was extremely 
 minimal - just enough to install the rest over the network.  Then there 
 would be a way that anyone could 'publish' their installed list of 
 repositories and packages and anyone else could duplicate that machine's 
 setup just by picking that list from a set of choices with the installer 
 dealing with the hardware differences for you.  This would eliminate 
 most of the need for custom rebuilds and respins - at least for anyone 
 with network access, and in my opinion the optimal combination of many 
 thousands of packages is something that deserves to be be crowdsourced. 
   But, so far no one has done it and whenever the discussion of modified 
 CentOS respins comes up the developers have seemed pretty lukewarm to 
 the idea, as though it would devalue their brand.
 
Hi

The idea of a minimal installation is interesting. Could this be done 
with a kickstart or a installation CD? Then you download/customize with
yum groupinstall something.

I think I didn't understand it would devalue their brand. How could do 
it if you reaching a wider public, working with more people with (more 
or less) same goal? I would say more than less. To me, as user, 
seems that you will your brand more appealing.

Besides, it seems, from the comment about the Fedora 10 tools, that the 
customization could be easier in RHEL 6.

Regards

mg.


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


[CentOS] Off-topic: strange problem with file size

2009-07-29 Thread Marcelo M. Garcia
Hi

I'm having a curious problem with some files. The account has 77GB of 
data[1], but there some files with more than 100GB[2], in fact, two of 
then have more than 200GB[3].

The OS is Opensuse 10.2 x86_64.

Has anyone seem something like this? How can I inspect more closely what 
  is going on?

Thanks

Marcelo



[1]
maryland:/maryland2 # du -sh alireza/
77G alireza/
maryland:/maryland2 #

[2]
maryland:~ # find /maryland2/alireza/ -size +100G -print
/maryland2/alireza/Restart/1to1-2/events-cfluid-rem-add-pasi/test.rsi
/maryland2/alireza/Restart/1to1-2/lqfCyclic/Restart/a.rsi
/maryland2/alireza/Restart/1to1-2/lqfCyclic/a.rsi
maryland:~ #

[3]
maryland:~ # ls -lh 
/maryland2/alireza/Restart/1to1-2/lqfCyclic/Restart/a.rsi
-rw-r--r-- 1 alireza cdrom 223G Jul 13 09:56 
/maryland2/alireza/Restart/1to1-2/lqfCyclic/Restart/a.rsi
maryland:~ #
maryland:~ #
maryland:~ # ls -lh /maryland2/alireza/Restart/1to1-2/lqfCyclic/a.rsi
-rw-r--r-- 1 alireza cdrom 223G Jul 13 09:56 
/maryland2/alireza/Restart/1to1-2/lqfCyclic/a.rsi
maryland:~ #
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] YUM Proxy

2009-07-20 Thread Marcelo M. Garcia
Alberto García Gómez wrote:
 Dear Fellows:
 
 I'm under a proxy server (squid) and I need to update my centos but every 
 time that I run yum -y update tells me that I can no find a file that 
 exists. The problems is that this machine that I'm trying to update has no 
 graphic shell, so I need to make all by console.
 
 Saludos Fraternales
 _
 Atte.
 Alberto García Gómez M:.M:.
 Administrador de Redes/Webmaster
 IPI Carlos Marx, Matanzas. Cuba.
 - Original Message - 
 From: Sean Carolan scaro...@gmail.com
 To: CentOS mailing list centos@centos.org
 Sent: Monday, July 20, 2009 11:28 AM
 Subject: [CentOS] Limit RAM used by a perl script
 
 
 I have a perl script which runs from a cron job.  How would you limit
 the amount of RAM that this script is allowed to consume?  Is there a
 ulimit setting that will accomplish this?  If so does ulimit have to
 be run each time the script is run, or is there a way to set it
 permanently?
 ___
 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

Hi

To use yum with proxy you have to configure 3 files:
/etc/yum.conf: add the line
proxy=http://xxx.xxx.xxx.xxx:yyy
where yyy is the port.

/etc/wgetrc: There are 2 lines that you have to edit:
http_proxy=http://(...):yyy
ftp_proxy=http://xxx.(...):yyy

/root/.bash_profile
export http_proxy=http://xxx(...):
export ftp_proxy=http://xxx(...):

Regards

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


Re: [CentOS] [OT] Batch Job Scheduler/Manager

2009-07-01 Thread Marcelo M. Garcia
Mauriat Miranda wrote:
 Hi.  Looking for suggestions/ideas.
 
 I have pretty loose requirements at this point, but I am looking for a
 tool (or set of tools) where I can automate and control a large group
 of tasks by a basic web front end.
 
 I have a series of scripts that do various conversions of data or
 media, as well as analysis and I want to be able check their status,
 see if they completed or if they failed.  Then possibly react or setup
 alternate jobs if they passed or failed, etc. - some basic logic.
 
 I want to avoid building something for this.  But if there already
 exists a tool(s) that I could tailor that would be good too.
 Something Perl would be perfect, but PHP could be made to work.  Free
 or not would be acceptable.
 
 Thanks for any ideas.
 
 -Mauriat
 ___
 CentOS mailing list
 CentOS@centos.org
 http://lists.centos.org/mailman/listinfo/centos
Hi

I suggest sge. It doesn't have a web interface, but a GUI. Or torque.

Regards

mg.

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


Re: [CentOS] Fortran90 and 77 on CentOS

2009-07-01 Thread Marcelo M. Garcia
Sorin Srbu wrote:
 Hi all,
 
 Is anybody here using Fortran90 and Fortran77 on their CentOS-machine(s)?
 
 If so, did you get that from a repo or something? One of our PhD-students
 needs a software that requires the Fortran compilers mentioned in order to
 make the sources for our i7-machines. 
 
 The Fortran stuff that is available to me is from the standard CentOS repos,
 as well as Rpmforge and EPEL repos, from which I got gcc43-fortran and some
 more dependencies and and such. But as far as I can tell, this is not going
 to work.
 
 This is all new territory to me, to have to compile stuff... Please let me
 know if this is off-topic and should be taken elsewhere.
 
 Thanks for any information.
 
 
 
 
 ___
 CentOS mailing list
 CentOS@centos.org
 http://lists.centos.org/mailman/listinfo/centos
Hi

Intel has non-commercial software download with FORTRAN, C/C++, MKL, etc:
http://software.intel.com/en-us/articles/non-commercial-software-download/

Regards

mg.

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


Re: [CentOS] [OT] Batch Job Scheduler/Manager

2009-07-01 Thread Marcelo M. Garcia
Mauriat Miranda wrote:
 On Wed, Jul 1, 2009 at 8:03 AM, Marcelo M.
 Garciamarcelo.maia.gar...@googlemail.com wrote:
 
 I suggest sge. It doesn't have a web interface, but a GUI. Or torque.
 
 Looks like most of the robust tools are Java based, including Hudson.
 
 I also found the following:
 https://computing.llnl.gov/linux/slurm/
 non free:
 http://www.nobix.com/JobQueX/JobQueX.aspx
 
 Thanks for all the ideas.  I will have to evaluate each option.
 
 -Mauriat
 ___
 CentOS mailing list
 CentOS@centos.org
 http://lists.centos.org/mailman/listinfo/centos
Hi

Nor sge neither torque are Java base. Sge has a GUI, but I don't think 
is Java-based.

Torque is purely text interface, the web administration is not free, but 
it's not expensive. Have a look at cluster resources:
http://www.clusterresources.com/

Regards

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


Re: [CentOS] CentOS 5.3 cbea

2009-06-12 Thread Marcelo M. Garcia
Dmitry Zaletnev wrote:
 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

Hi

I think you can use the System Simulator in CentOS-5.2.  But you'll need 
a quite powerful machine.

Or your if have a Cell processor, than I think you are better with Fedora 9.

Regards

mg.



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


Re: [CentOS] CentOS 5.3 cbea

2009-06-12 Thread Marcelo M. Garcia
Dmitry Zaletnev wrote:
 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
Hi

Just one question: do you just want to run linux in a PS3 or do you want 
to do development with IBM SDK?

If you just want to run Linux, then, there are several options. But if 
you want development than, F9 is your best option, or, of course, buy 
RHEL for ppc.

Regards

mg.

___
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


[CentOS] [Fwd: Re: How to generate a .template and .jigdo from an iso image?]

2009-05-13 Thread Marcelo M. Garcia

Hi Ralph

I received this e-mail from Fedora Infrastructure list. My problem at 
that moment was a proper syntax for the jigdo-file command.


Using the their script as reference, I made a simpler one to test the 
command[1]. And it's working:

newt (Linux) $pwd; ls -l *.jigdo *.template
/users/newt2/mgarcia/iso/dvd
-rw-r--r-- 1 mgarcia slocate214226 May 13 13:44 
CentOS-5.3-i386-bin-DVD.jigdo
-rw-r--r-- 1 mgarcia slocate 196853099 May 13 13:44 
CentOS-5.3-i386-bin-DVD.template

newt (Linux) $

I copy all the files in CentOS directory of the image to the directory 
/users/newt2/mgarcia/iso/os, so I could export as NFS.


I don't know if there is a better way to test, but what I did was to 
create a centos.conf in /etc/httpd/conf.d[2]. Then in the machine called 
prost, issued the command:

[r...@prost ~]# jigdo-lite http://newt/centos/CentOS-5.3-i386-bin-DVD.jigdo

Jigsaw Download lite
Copyright (C) 2001-2005  |  jigdo@
Richard Atterer  |  atterer.net
(...)

Regards

mg.



[1]
*=*
#!/bin/sh

ISO_DIR=/newt2/mgarcia/iso/dvd/CentOS-5.3-i386-bin-DVD.iso
ARCH=i386

jigdo-file make-template \
  --image=${ISO_DIR} \
  /users/newt2/mgarcia/iso/os \
  --label Base-${ARCH}=/users/newt2/mgarcia/iso/os \
  --uri Base-${ARCH}=http://mirror.centos.org/centos-5/5/os/i386; \
  --force
*=*

[2]
Alias /centos /users/newt2/mgarcia/iso/dvd/

Directory /users/newt2/mgarcia/iso/dvd/
  Options None
  Order allow,deny
  Allow from all
/Directory


 Original Message 
Subject: Re: How to generate a .template and .jigdo from an iso image?
Date: Sun, 10 May 2009 15:22:27 +0200
From: Jeroen van Meeuwen kana...@kanarip.com
Reply-To: Fedora Infrastructure fedora-infrastructure-l...@redhat.com
To: Fedora Infrastructure fedora-infrastructure-l...@redhat.com
References: 4a034bea.4000...@googlemail.com 
1241740929.12122.349.ca...@ignacio.lan	4a03d29d.7060...@googlemail.com


On 05/08/2009 08:35 AM, Marcelo M. Garcia wrote:

Hi

I read the man page. It says that I have to specify only one of the
options -i, -j or -t. OK. If I use only -i, my template has the
same size of image, then there is no point in using jigdo. There must be
something more.

My question is how Fedora generates the .template with only 11.1M? The
command jigdo-file -i CentOS-5.3-i386-bin-DVD.iso it's not enough.



Attached is the script Fedora Unity uses to jigdofy it's Re-Spins. Note
the function jigdofy() in the top that may just help you get the
syntax right.

Note the double slash in the two directories passed to the jigdo-file
make-template command, which functions as a delimiter for jigdo-file,
so that in the --label parameter, we can 'label' the path and then
attach a URI (--uri) to be used in the resulting .jigdo file instead.

$1 is the (fully qualified) path to the .iso image,
$2 is the base architecture for the .iso image (i386, x86_64 or ppc in
our case), and
${version} is the Fedora $releasever (9 or 10 right now).

Also note that /data/os/distr/fedora is a local, full mirror and that
/data/os/archive/fedora is a local, full archive (with package files
that have been removed from the mirror because for example they've
expired and have been superseeded by another update to said package).

Kind regards,

Jeroen van Meeuwen
-kanarip



jigdofy_everything.sh
Description: Bourne shell script
___
Fedora-infrastructure-list mailing list
fedora-infrastructure-l...@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-infrastructure-list

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


Re: [CentOS] [Fwd: Re: How to generate a .template and .jigdo from an iso image?]

2009-05-13 Thread Marcelo M. Garcia
Phil Schaffner wrote:
 Marcelo M. Garcia wrote:
 Hi Ralph
 ...
 I don't know if there is a better way to test, but what I did was to 
 create a centos.conf in /etc/httpd/conf.d[2]. Then in the machine called 
 prost, issued the command:
 [r...@prost ~]# jigdo-lite http://newt/centos/CentOS-5.3-i386-bin-DVD.jigdo
 
 The ultimate test of a jigdo image is a matching md5sum or sha1sum.
 
 This recent centos-devel thread may be of interest.
 
 http://lists.centos.org/pipermail/centos-devel/2009-May/004548.html
 ___
 CentOS mailing list
 CentOS@centos.org
 http://lists.centos.org/mailman/listinfo/centos

Hi Phil

The md5sum and the sha1sum matches[1]. The resulting .template file has 
188M, not as good as Fedora (11.1M), but better than 3.3G of the DVD.

You can notice that my md5sum is different from the DVD in web sites, I 
image that this is because I build the DVD from the CDs[2]. I don't know 
if this is a problem. My goal was just to test jigdo-file for now.

Regards

mg.

[1]
efb8212d4e45072ecfd6e409fec4582a  CentOS-5.3-i386-bin-DVD.iso (original)
efb8212d4e45072ecfd6e409fec4582a  CentOS-5.3-i386-bin-DVD.iso (jigdo)

4d7f8ba97a028a5244a15bc553d08124f746f6f0  CentOS-5.3-i386-bin-DVD.iso 
(original)
4d7f8ba97a028a5244a15bc553d08124f746f6f0  CentOS-5.3-i386-bin-DVD.iso 
(jigdo)

[2]
http://wiki.centos.org/TipsAndTricks/CDtoDVDMedia
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] [CentOS-devel] jigdo images

2009-05-07 Thread Marcelo M. Garcia
Ralph Angenendt wrote:
 Shad L. Lords wrote:
 Ralph Angenendt wrote:
 I have been looking what Fedora is (or was) doing with Jigdo. It seems 
 to solve some problems and create new ones[1].
 Let me look into that.
  From the os directory something like this should produce jigdo 
 files/templates for all associated iso files.

 
 Hm. H. Hmmm. Any Jigdo-Howto-For-Dummies out there? What am I
 supposed to do with those files then?
 
 After the files/templates are created they can be moved to a 
 different/better location as well as updating the Servers section if 
 desired.

 Hope this helps someone,
 
 Let's see :)
 
 Cheers,
 
 Ralph

Hi

I found this (almost) howto:
http://syiron.wordpress.com/2008/01/13/creating-jigsaw-download-jigdo-files-for-downloading-iso%E2%80%99s/

The interesting think is that he is creating CentOS image.

Regards

mg.


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


Re: [CentOS] SSH problems - command not found

2009-05-06 Thread Marcelo M. Garcia
George Alexandru Dudău wrote:
 Hi All,
 
 I have a strange problem with  ssh on CentOS 5.3:
 
 1. I make a ssh connection from computer X to Y = OK
 2. When i try to conect from Y to Z i receive a strange message:
 
 -bash: ssh: command not found
 
 (normal and root user)
 
 #which sshd
 /usr/sbin/sshd
 
 The sshd daemon it's on  (see nr.1)
 
 So connection to   Y it's OK, but from Y to another computer don't. Even 
 back to X don't work
 
 Any advice?
 
 Thank you!
 
 P.S - sorry for my bad english
 ___
 CentOS mailing list
 CentOS@centos.org
 http://lists.centos.org/mailman/listinfo/centos
Hi

I also think you have some packages missing. In my CentOS-5.3, I have 
the following packages:
# rpm -qa | grep ssh:
openssh-4.3p2-29.el5
openssh-clients-4.3p2-29.el5
openssh-server-4.3p2-29.el5
openssh-askpass-4.3p2-29.el5

Regards

mg.


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


Re: [CentOS] jigdo images

2009-05-06 Thread Marcelo M. Garcia
Ralph Angenendt wrote:
 Marcelo M. Garcia wrote:
 Hi

 Is there a jigdo image available for CentOS-5.3? 
 
 No. Several people have looked into it, but either haven't understood jigdo or
 lost interest in it.
 
 Or is there a jigdo project for CentOS?
 
 Want to start one? Join the centos-devel mailing list and make a thought out
 proposal on there :)
 
 Cheers,
 
 Ralph - who hasn't really understood jigdo and then lost interest =:)
 
Hi Raplh

The reason I'm asking about Jigdo is because some firewall blocks 
torrent and some proxies (like here in the office) block file with the 
kind of size of a DVD image. After using jigdo to download Debian 
images, which uses wget to download small files, I got the impression 
that was a good way to solve both problems.

I have been looking what Fedora is (or was) doing with Jigdo. It seems 
to solve some problems and create new ones[1].

Maybe now I understand why there is an entry in CentOS wiki on how to 
create a DVD from the CDs[2].

Regards

mg.

[1] http://fedoraproject.org/wiki/Features/JigdoRelease
[2] http://wiki.centos.org/TipsAndTricks/CDtoDVDMedia

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


[CentOS] jigdo images

2009-05-04 Thread Marcelo M. Garcia
Hi

Is there a jigdo image available for CentOS-5.3? Or is there a jigdo 
project for CentOS?

Thanks

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


[CentOS] Broken link in the documentation.

2009-03-25 Thread Marcelo M. Garcia
Hi

There is a broken link in the documentation of CentOS 5.2. I was reading 
about e-mail and when you follow the link from POP (24.1.2.1 in 
Deployment guide) to IMAP, you got the following message:
Not Found

The requested URL 
/docs/5/html/5.2/Deployment_Guide/s3-email-protocols-imap.html was not 
found on this server.

Cheers

Marcelo



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


[CentOS] wodim for CentOS?

2009-03-13 Thread Marcelo M. Garcia
Hi

Is the wodim package available for CentOS? I can only find cdrecord.

Thanks

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


[CentOS] epel-5.2 trying to upgrade to 5.3

2009-03-06 Thread Marcelo M. Garcia
Hi

I just installed CentOS 5.2 (x86_64), and everything was fine. After 
installing the epel-release-5-2.noarch.rpm, and issuing yum 
check-update, I can see that epel is trying to upgrade to version 5.3.

First I didn't notice the problem, and after upgrading, I got the 
message error sumary when updating the system.

It seems that the x86 (32bit) version is working fine.

Does anybody else having similar problem?

Thanks

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


[CentOS] Question about priorities

2009-03-06 Thread Marcelo M. Garcia
Hi

When adding priority to a repo, like rpmforge or epel, is it better to 
give the same priority or can give different priority to different 
repos, ranking them?

thanks

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


Re: [CentOS] (off-topic)Update sii-3512A serial ata controller - which flash memory?

2009-02-26 Thread Marcelo M. Garcia
Scott Silva wrote:
 on 2-25-2009 11:06 AM Marcelo M. Garcia spake the following:
 Scott Silva wrote:
 on 2-25-2009 7:33 AM Marcelo M. Garcia spake the following:
 Hi.

 I had to update the BIOS of a Silicon Image 3512A Serial ATA controller. 
 I'm not using RAID.

 When I run the updater program (updflash.exe), it asks me to choose 
 flash memory from a list, something like: AMD Am29F010B (1 Megabit), AMD 
 Am29LV01B (1 Megabit), etc.

 How can I find out which is flash memory of the controller?

 Thanks

 Marcelo
 Did you look at the controller? Maybe the flash chip is labeled.

 Hi

 I tried. I think the chip is under the raiser for the second processor. 
 Which I tried to remove but I couldn't. But it shouldn't ask this kind 
 of stuff, which flash memory is in the chip. It seems very strange.

 Thanks anyway.

 Marcelo
 True. A better written flash program should be able to query the chip and ID
 it. Silicon Image is a chip manufacturer, not a board designer. So the tools
 are usually more generic.
 
 Is it an add in card or is it built into the motherboard?
 
 If it is built into the motherboard, the flash image is sometimes bound in
 with the system bios, and is much harder to replace.
 
Hi

Good point. The controller is on-board. This gives me the idea that 
maybe I could find out the flash memory by the serial number of the 
motherboard.

Thanks

Marcelo


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


Re: [CentOS] package manager CentOS

2009-02-25 Thread Marcelo M. Garcia
Raghu Narasimhan wrote:
 Hi folks,
 
 I have some doubts with regards a Python module called paramiko (used to 
 automate ssh related stuff)
 
 1. Does Paramiko 1.7.2 and 1.6.4 work with CentOS 4
  
 2. If yes, what is the exact 'yum' command to install paramiko on CentOS 4?
 I have tried all possible ones without success.
  
 yum install paramiko
 yum install python-paramiko(with and without version numbers)
 python-paramiko.noarch
 
 /[ru...@host]# yum search paramiko
 Loading fastestmirror plugin
 Loading priorities plugin
 Searching Packages:
 Setting up repositories
 extras100% |=| 1.1 kB00:00
 update100% |=|  951 B00:00
 base  100% |=| 1.1 kB00:00
 addons100% |=|  951 B00:00
 Loading mirror speeds from cached hostfile
 Reading repository metadata in from local files
 0 packages excluded due to repository priority protections
 No Matches found
 /
 
 Installing it without yum throws dependency problems which are never 
 ending : starting with python-crypto and python(abi) - which I am unable 
 to find; which will no doubt lead to other dependencies.
  
 Is there any change that has to be made to the yum repository to point 
 it to look in a different place?
  
 3. Alternatively, I also have apt-get on the CentOS box - can you tell 
 me some repos that I can add for apt-get as well?
 
 
 Thanks,
 
 
 --
 Raghu Narasimhan
 
Hi

Maybe you need to add the rpmforge repository.
https://rpmrepo.org/RPMforge/Using

Regards

Marcelo

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


Re: [CentOS] package manager CentOS

2009-02-25 Thread Marcelo M. Garcia
Raghu Narasimhan wrote:
 Thanks Marcelo. That certainly helped.
 
 Although, now I keep seeing this message:
 
 /[r...@mpvmpc19 paramiko]# yum install Crypto.Util.randpool
 Loading fastestmirror plugin
 Loading priorities plugin
 Setting up Install Process
 Setting up repositories
 not using ftp, http[s], or file for repos, skipping - ~
 Loading mirror speeds from cached hostfile
 Reading repository metadata in from local files
 336 packages excluded due to repository priority protections
 Parsing package install arguments
 /
 
 In the yum configuration file, there are may mirrors listed in a few 
 files: What should the priorities be? (I wnt to make sure no packages 
 are excluded. 336 is a very large number)
 
 Second: I was able to install python-paramiko. It seems to work with 
 Python2.3 (Python2.3 comes as default with CentOS). I have installed 
 Python 2.4.6 and need the same to work with that. Any tips?
 --
 Raghu Narasimhan
 
 raghu.uni...@gmail.com mailto:raghu.uni...@gmail.com
 
 
 On Wed, Feb 25, 2009 at 3:08 PM, Marcelo M. Garcia 
 marcelo.maia.gar...@googlemail.com 
 mailto:marcelo.maia.gar...@googlemail.com wrote:
 
 Raghu Narasimhan wrote:
   Hi folks,
  
   I have some doubts with regards a Python module called paramiko
 (used to
   automate ssh related stuff)
  
   1. Does Paramiko 1.7.2 and 1.6.4 work with CentOS 4
  
   2. If yes, what is the exact 'yum' command to install paramiko on
 CentOS 4?
   I have tried all possible ones without success.
  
   yum install paramiko
   yum install python-paramiko(with and without version numbers)
   python-paramiko.noarch
  
   /[ru...@host]# yum search paramiko
   Loading fastestmirror plugin
   Loading priorities plugin
   Searching Packages:
   Setting up repositories
   extras100% |=| 1.1 kB
00:00
   update100% |=|  951 B
00:00
   base  100% |=| 1.1 kB
00:00
   addons100% |=|  951 B
00:00
   Loading mirror speeds from cached hostfile
   Reading repository metadata in from local files
   0 packages excluded due to repository priority protections
   No Matches found
   /
  
   Installing it without yum throws dependency problems which are never
   ending : starting with python-crypto and python(abi) - which I am
 unable
   to find; which will no doubt lead to other dependencies.
  
   Is there any change that has to be made to the yum repository to
 point
   it to look in a different place?
  
   3. Alternatively, I also have apt-get on the CentOS box - can you
 tell
   me some repos that I can add for apt-get as well?
  
  
   Thanks,
  
  
   --
   Raghu Narasimhan
  
 Hi
 
 Maybe you need to add the rpmforge repository.
 https://rpmrepo.org/RPMforge/Using
 
 Regards
 
 Marcelo
 
Hi

To be honest, I had never seen this messages before. I'm not familiar 
with CentOS 4, but seems that something is wrong.

About the python version. I would say that depends on how did you 
installed it. If you installed python from sources, then I think you 
have to build paramiko also. But I'm not sure.

Regards

M.

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


Re: [CentOS] (off-topic)Update sii-3512A serial ata controller - which flash memory?

2009-02-25 Thread Marcelo M. Garcia
Scott Silva wrote:
 on 2-25-2009 7:33 AM Marcelo M. Garcia spake the following:
 Hi.

 I had to update the BIOS of a Silicon Image 3512A Serial ATA controller. 
 I'm not using RAID.

 When I run the updater program (updflash.exe), it asks me to choose 
 flash memory from a list, something like: AMD Am29F010B (1 Megabit), AMD 
 Am29LV01B (1 Megabit), etc.

 How can I find out which is flash memory of the controller?

 Thanks

 Marcelo
 Did you look at the controller? Maybe the flash chip is labeled.
 

Hi

I tried. I think the chip is under the raiser for the second processor. 
Which I tried to remove but I couldn't. But it shouldn't ask this kind 
of stuff, which flash memory is in the chip. It seems very strange.

Thanks anyway.

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


[CentOS] Installing kernel RHEL-5.3 on CentOS 5.2 (x86_64)

2009-01-13 Thread Marcelo M. Garcia
Hi

I tried to install the kernel Red Hat 5.3 x86_64 (2.6.18-128.el5.x86_64) 
with the command:
  rpm -Uvh kernel-2.6.18-128.el5.x86_64.rpm
but there is problem with dependecy: ecryptfs-util  44. How to solve 
problems with depencies when installing a beta kernel?

I'm trying this kernel to see if I get CentOS working with the wireless 
iw4965. I tried the drivers from Intel, but the compilation failed.

Thanks

Marcelo

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


Re: [CentOS] bioinformatics repository?

2008-11-25 Thread Marcelo M. Garcia

Davide Cittaro wrote:

Hi all, I'm new to Centos, just moved here from Gentoo Linux.
I have to install a server for bioinformatics purposes and I see that 
default yum repositories do not include any bioinformatics software 
(i.e. ncbi-toolkit, blat, and others). I'm googling a bit but I can't 
find a valuable solution: which is (or which are) the best repository I 
should add to have a satisfying list of bioinfo rpm?


Thanks

d


/*
Davide Cittaro

Cogentech - Consortium for Genomic Technologies
via adamello, 16
20139 Milano
Italy


Hi

Maybe you can find in EPEL repository.

http://fedoraproject.org/wiki/EPEL


regards

Marcelo

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


Re: [CentOS] yum download

2008-11-24 Thread Marcelo M. Garcia

Robert Moskowitz wrote:

Can I just download an rpm from a repo without installing it?

I don't see anything like yum download or yum install --downonly

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

Hi

I think yumdownloader is what you are looking for.

Regards

Marcelo

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


Re: [CentOS] Printing to Windows’s share printer - epson lq 2090

2008-11-21 Thread Marcelo M. Garcia

Indunil Jayasooriya wrote:

Hi,

There is a Printer connected to Windows XP Pc and shared it. (its name
is epson lq 2090)

Now, I want print from a CentOS 4 box. by using printconf command,
Added the printer to Centos box. But, I could Not take print out.
Anyway. When I printed a test page, Printer worked, Paper also came
out. But, Paper is BLANK.

Then, I followed  below URL as well

http://infected.wordpress.com/

But, Still NO LUCK.

I think you have to configure SAMBA in your CentOS box. Is the firewall 
enabled?


Regards

Marcelo

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


[CentOS] nagios-plugins 1.4.13?

2008-11-18 Thread Marcelo M. Garcia

Hi

Does anyone knows when nagios-plugins 1.4.13 will be available?

Thanks

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


Re: [CentOS] nagios-plugins 1.4.13?

2008-11-18 Thread Marcelo M. Garcia

Tom Brown wrote:





Does anyone knows when nagios-plugins 1.4.13 will be available?



they were release at the end of september - what do you mean by 
'available' ?


I just built an rpm of them and they seem to compile fine etc - are you 
looking for an rpm of them already built ?


thanks

Hi

For 'avalable' I mean available from rpmforge, from where I downloaded 
nagios-3.0.5. The idea was to download both together. I don't know if 
this make any difference... But since the latest nagios is available, 
why not the plugins?


Regards

Marcelo

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


[CentOS] rpmforge i386 and x86_64?

2008-11-12 Thread Marcelo M. Garcia

Hi

Is it possible to have rpmforge for both architectures? Currently is 
only for 64bit, but I need some libraries 32bit (rrdtool) to install 
ganglia.


But if I try to install rpmforge i386, I got the message:
[EMAIL PROTECTED] mgarcia]# rpm -ivh rpmforge-release-0.3.6-1.el5.rf.i386.rpm
Preparing...### 
[100%]
file /etc/smart/channels/rpmforge.channel from install of 
rpmforge-release-0.3.6-1.el5.rf conflicts with file from package 
rpmforge-release-0.3.6-1.el5.rf
file /etc/sysconfig/rhn/sources.rpmforge.txt from install of 
rpmforge-release-0.3.6-1.el5.rf conflicts with file from package 
rpmforge-release-0.3.6-1.el5.rf

[EMAIL PROTECTED] mgarcia]#


Thanks

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


Re: [CentOS] rpmforge i386 and x86_64? Solved

2008-11-12 Thread Marcelo M. Garcia

Mogens Kjaer wrote:

Marcelo M. Garcia wrote:

Hi

Is it possible to have rpmforge for both architectures? Currently is
only for 64bit, but I need some libraries 32bit (rrdtool) to install
ganglia.


A problem is that the /etc/yum.repos.d/mirrors-rpmforge file has
$ARCH in it, which would still be x86_64 even if installed from
i386.

Couldn't you try to make a copy of /etc/yum.repos.d/rpmforge.repo
into, say, rpmforge32.repo, and change it into:

[rpmforge32]
name = Red Hat Enterprise $releasever - RPMforge.net - dag
baseurl = http://apt.sw.be/redhat/el5/en/i386/dag
enabled = 1
protect = 0
gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmforge-dag
gpgcheck = 1

and see if it works? Maybe you can pick another mirror,
but remember to replace $ARCH with i386.

Note: This is not tested, but I've done this with Livna
on a Fedora x86_64 machine without breaking anything.

Mogens


Hi

Thank you very much.

This solved the problem.

Thanks

Marcelo

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


[CentOS] nagios command-plugins: unexpected token

2008-11-11 Thread Marcelo M. Garcia

Hi

I just installed nagios et al[1] in my Centos-5.2 (x86). When I try to 
test the configuration file it fails[2] with the message Unexpected 
token or statement(...).


The line is:
command[notify-by-email]=/usr/bin/printf $OUTPUT$ | /bin/mail -s 
'$SERVICESTATE$ alert for $HOSTALIAS$/$SERVICEDESC$' $CONTACTEMAIL$
But if I comment this line, then I got the same message in the next 
line. I changed the path to printf, because I already have installed.


Is something missing? Are the rpm's enough?

Thanks

Marcelo




[1]
newt (Linux) $rpm -qa | grep nagios
nagios-plugins-1.4.12-1.el5.rf
nagios-3.0.5-1.el5.rf
nagios-plugins-setuid-1.4.12-1.el5.rf
nagios-nsca-2.7.2-2.el5.rf
nagios-devel-3.0.5-1.el5.rf
nagios-nrpe-2.5.2-1.el5.rf
nagios-nsca-client-2.7.2-2.el5.rf
newt (Linux) $

[2]
[EMAIL PROTECTED] nagios]# nagios -v nagios.cfg

Nagios 3.0.5
Copyright (c) 1999-2008 Ethan Galstad (http://www.nagios.org)
Last Modified: 11-04-2008
License: GPL

Reading configuration data...

Error: Unexpected token or statement in file 
'/etc/nagios/objects/command-plugins.cfg' on line 33.


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


Re: [CentOS] Parallel/Shared/Distributed Filesystems

2008-11-10 Thread Marcelo M. Garcia

Geoff Galitz wrote:



I'm looking at using GFS for parallel access to shared storage, most likely
an iSCSI resource.  It will most likely work just fine but I am curious if
folks are using anything with fewer system requisites (e.g. installing and
configuring the Cluster Suite).


Specifically to our case, we have 50 nodes running in-house code (some in
Java, some in C) which (among other things) receives JPGs, processes them
and stores them for later viewing.  We are looking to deploy this filesystem
specifically for this JPG storage component.

All nodes are running Centos 5.1 x86_64.


-geoff


Hi

Maybe you can consider pNFS, parallel NFS:
http://www.pnfs.com/

Regards

Marcelo

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


Re: [CentOS] Using CentOS repos in a RHEL machine

2008-11-05 Thread Marcelo M. Garcia

Matt Hyclak wrote:

On Thu, Oct 30, 2008 at 11:48:53AM +, Marcelo M. Garcia enlightened us:
I have 2 machines with RHEL 5.2 and I would like to use CentOS repos. I 
would like to know if the document Using CentOS Repositories on RHEL 
Machines[1] can be used in CentOS 5.2 without too much modifications.


Thanks

Marcelo

[1] http://wiki.centos.org/HowTos/PackageManagement/YumOnRHEL


You shouldn't need to bother since RHEL 5 has yum. Just add your repo
definitions into your /etc/yum.repos.d directory.

The only limitation I have been able to see with RHEL's yum is the lack of
the priorities plugin. You can use protectbase as a replacement. If I get a
chance today, maybe I'll try to update that wiki page.

Matt


Hi

A basic question, is enough to copy the files in /etc/yum.repos.d/ or is 
there another better way?


Thanks

Marcelo

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


[CentOS] Using CentOS repos in a RHEL machine

2008-10-30 Thread Marcelo M. Garcia

Hi

I have 2 machines with RHEL 5.2 and I would like to use CentOS repos. I 
would like to know if the document Using CentOS Repositories on RHEL 
Machines[1] can be used in CentOS 5.2 without too much modifications.


Thanks

Marcelo

[1] http://wiki.centos.org/HowTos/PackageManagement/YumOnRHEL
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] how to get rid of kerberos

2008-10-29 Thread Marcelo M. Garcia

Hi

How to get rid of kerberos, or at least to prevent to go into path? 
Where is defined the path for users?


I need to configure and use rtools (I know that I should use ssh, but I 
need rtools) and I think very annoying the messages from Kerberized rsh 
or rlogin, like this:

-sh-3.2$ rsh kitten02
connect to address 192.168.89.2 port 543: Connection refused
Trying krb4 rlogin...
connect to address 192.168.89.2 port 543: Connection refused
trying normal rlogin (/usr/bin/rlogin)
Last login: Tue Jun  3 20:17:32 from kitten01
-sh-3.2$

But if kerberos is not in path, everything works fine:
-sh-3.2$ rsh kitten02
Last login: Tue Jun  3 20:13:13 from kitten01
-sh-3.2$

Thanks

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


Re: [CentOS] new list proposal

2008-10-16 Thread Marcelo M. Garcia

Karanbir Singh wrote:
One thing that we are often blamed for is trying to stifle conversations 
and to discourage people from commenting / contributing / encouraging 
conversations. And that cant be further from the truth, really. We are 
all pro-community ( and when I say we, I mean everyone - including the 
contributors, developers, admins, users, abusers and hey upstream too ).


However, one thing that does get in the way, often, and something that 
we all feel creates a higher 'noise' ratio is conversations on this list 
about semi-related stuff, but not something that directly contributes to 
the general users of CentOS. Conversations that specifically address 
four areas:


- technologies
- best practices
- deployment strategies and tools
- management strategies and tools

And to better cater to these conversations, as well as further encourage 
such content, we'd like to propose creating a 'centos-tech' list.


Over a period of time, we would like to see the CentOS list become a 
more user help and distro specific list, with generic conversations 
moving to the centos-tech list.



Hi

I understand the eagerness to lower the noise ratio, but I think 
creating another list is not the solution, it will simply create an 
extra work for the people in the list centos in the sense that you 
will have to keep reminding people to use the tech list, or saying to 
newcomers that should sign for the tech list.


Noise is the side effect of the success of the project CentOS. As the 
project grows, more people will be joining the list, and there will be 
more noise.


In my opinion there aren't much off-topic/noise in this list.

Regards

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


  1   2   >