Re: [CentOS] mysqldump file fails to load

2012-11-27 Thread Marko A. Jennings
On Tue, November 27, 2012 3:53 pm, Rob Kampen wrote:
snip
 I have a newly developed app that has some 30+ tables, most with few
 records at this time. However, it does contain a streets table with some
 43K records.

 I regularly dump the database using
  mysqldump -u rkampen -p databasename databasenamedatetime.sql

 and load it onto other machines via

 mysql -u rkampen -p -D databasename databasenamedatetime.sql

snip

 Now I am needing to load this database file onto a debian host running
 Plesk 9.5.4 via their system admin and it is unreliable - after four
 attempts we have all except the streets table loaded - but this table
 will not load.

Rob,

I have experienced a similar problem a few months back between two different 
versions of mySQL,
both running on CentOS 5.  The problem was caused by mysqldump writing a bad 
CREATE TABLE
statement into the dump file for one of the tables.  More specifically, one 
column had to small of
a size allocated to it (and definitely different than what was in the 
originating database) so the
import kept failing because UTF-8 characters could not fit into it.  Manually 
fixing the size in
the dump file took care of the problem.

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


Re: [CentOS] PostgreSQL database design tool

2011-09-23 Thread Marko A. Jennings
On Fri, September 23, 2011 8:54 am, Steve Campbell wrote:
 Been thinking about playing with PostgreSQL. When I did my research, on
 the PostgreSQL site, there were a few tools they recommended for
 design, display of schemas, etc.

I use pgAdmin III from the rpmforge repo.  The name of the package is
pgadmin3.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] What package contains ifconfig?

2011-07-15 Thread Marko A. Jennings
On Fri, July 15, 2011 2:39 pm, John J. Boyer wrote:
 I don't have ifconfig on my new installation of CentOS 5.6, but it is on
 my server in the cloud. What package contains it?

net-tools

Make sure /sbin is in the PATH of the account you are using.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] perl PDF parser

2011-06-29 Thread Marko A. Jennings
On Wed, June 29, 2011 4:26 pm, m.r...@5-cent.us wrote:
 Anyone know the package name that contains the perl PDF parser?

I use PDF::API2 and PDF::API2::Simple (from rpmforge).
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS-docs] New page TipsAndTricks/IdentifyHardDisk

2011-06-10 Thread Marko A. Jennings
On Fri, June 10, 2011 11:18 am, Phil Schaffner wrote:
 For the inspection of the docs group:

 http://wiki.centos.org/TipsAndTricks/IdentifyHardDisk

hdparm -I fails on 4 of my machines with SATA disks attached to 3ware RAID
controllers in JBOD configuration and a fifth one with SCSI disks attached
to an LSI Logic RAID controller (JBOD as well) with the following message:

[root@host ~]# hdparm -I /dev/sd?

/dev/sda:
 HDIO_DRIVE_CMD(identify) failed: Invalid argument

/dev/sdb:
 HDIO_DRIVE_CMD(identify) failed: Invalid argument

Might be good to include a note that the command does not work for all
disk/controller configurations.
___
CentOS-docs mailing list
CentOS-docs@centos.org
http://lists.centos.org/mailman/listinfo/centos-docs


Re: [CentOS] The delays on CentOS 5.6 are causing EPEL incompatibilities

2011-03-21 Thread Marko A. Jennings
On Mon, March 21, 2011 5:51 am, Dag Wieers wrote:
 On Sun, 20 Mar 2011, Marko A. Jennings wrote:
 On Sun, March 20, 2011 7:29 pm, William Warren wrote:
 their changes are really aimed at oracle..the rest is smoke and
 mirrors..:)  oracle is basically(pardon me here) Centos with charges.
 That's basically all oracle is going with unbreakable Linux.

 Not just Oracle.  Novell is actively pursuing Red Hat customers and
 offering to support their Red Hat installations cheaper than Read Hat
 does.  I know a large international technology company which buys RHEL
 licenses only for the first year and then switches to Novell for support
 after that.

 Does Novell provide their own updates (RHEL rebuilds) or how does this
 exactly work ? I doubt Novell can redistribute RHEL binaries in this case.

As far as I understand (I don't have first-hand knowledge of this aspect
of their offering), Novell is providing their own updates.

Here is the link to their web page that advertises 30 day free support for
RHEL: http://www.novell.com/promo/suse/free-30days-expanded-support.html

Marko

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


Re: [CentOS] The delays on CentOS 5.6 are causing EPEL incompatibilities

2011-03-20 Thread Marko A. Jennings
On Sun, March 20, 2011 7:29 pm, William Warren wrote:
 their changes are really aimed at oracle..the rest is smoke and
 mirrors..:)  oracle is basically(pardon me here) Centos with charges.
 That's basically all oracle is going with unbreakable Linux.

Not just Oracle.  Novell is actively pursuing Red Hat customers and
offering to support their Red Hat installations cheaper than Read Hat
does.  I know a large international technology company which buys RHEL
licenses only for the first year and then switches to Novell for support
after that.

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


Re: [CentOS] Duplex networkprinter for Linux

2010-10-05 Thread Marko A. Jennings
On Tue, October 5, 2010 9:18 am, kim.gabriel...@get2net.dk wrote:

 does anybody know about a duplex (color) printer with linux support?
 either with centos as print server or - preferably - as a stand alone
 network printer?

HP Color LaserJet CP2025
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] System Resources Graphing

2010-04-26 Thread Marko A. Jennings
On Mon, April 26, 2010 12:09 pm, 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?

Take a look at Munin (available from RPMforge): http://munin-monitoring.org

Marko

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


Re: [CentOS] Permissions problem

2010-03-04 Thread Marko A. Jennings
On Thu, March 4, 2010 2:00 pm, Sean Carolan wrote:
 What am I doing wrong here?  I need to be able to write to /var/cvs.
 This used to work before I moved these groups into an LDAP directory
 instead of /etc/group:

 [scaro...@watcher:/var/cvs]$ touch test.txt
 touch: cannot touch `test.txt': Permission denied

 [scaro...@watcher:/var/cvs]$ ls -ld
 drwxrwsr-x 4 cvs cvsgrp 4096 May 18  2008 .

 [scaro...@watcher:/var/cvs]$ id scarolan
 uid=4002(scarolan) gid=4002(scarolan)
 groups=1(operations),10001(cvsgrp),4002(scarolan)

One possibility is that test.txt already exists in that directory and that
the group cvsgrp does not have write permissions to it.

What is the output of 'ls -l /var/cvs/test.txt' ?

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


Re: [CentOS] Display a warning message at a certain time ?

2010-02-04 Thread Marko A. Jennings
On Thu, February 4, 2010 11:26 am, Geoff Galitz wrote:

 I think the problem boils down to this :

 How can I run a graphical application from crontab ?

 I gave it a shot with a simple one (/usr/bin/gcalctool) and didn't
 succeed either.




 I think if you did something like this:

 --

 #!/bin/sh

 # set DISPLAY
 export DISPLAY=localhost:0

 # send the message
 /usr/bin/xmessage -timeout 120 This is my message

 # exit cleanly
 exit 0

 -


 You'd be ok.  Run that as a script, making changes for your system where
 appropriate and then run that script from cron.  Cron makes very few
 assumptions about your environment, your PATHS and other environmental
 variables are not getting set. If you run this a script suing #!/bin/sh
 you should get a default environment as defined by your installation.

The following worked fine for me on a stock 64-bit CentOS 5 box:

17 11 * * * export DISPLAY=:0  /usr/bin/xmessage -nearmouse test
message

However, that was executed from a non-root crontab and the same user was
the owner of the X Windows session at the time.  When I tried to run the
same thing from root's crontab a minute later, it failed because root
could not open the display.  Executing xhost + did the trick, so you
might want to take a look at display permissions.

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


Re: [CentOS] Display a warning message at a certain time ?

2010-02-04 Thread Marko A. Jennings
On Thu, February 4, 2010 12:07 pm, Niki Kovacs wrote:
 I'm really grateful for all the responses. But could someone please just
 simply write down a *working* crontab line for this ?

*If* the issue has to do with one user trying to display the message on a
desktop owned by another user, that might not be easy. :-)

Since the crontab entry I posted earlier works for me, I would concentrate
on trying to determine why exactly yours is failing.  Which user owns the
desktop and which user's crontab is used to run the command?  The latter
should receive an email from cron when something goes wrong.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Skype and problem with ALSA mixer driver?

2010-01-30 Thread Marko A. Jennings
On Sat, January 30, 2010 1:42 pm, Andrew wrote:
 I've only had this problem since I upgraded to CentOS 5.3 - skype worked
 absolutely fine with CentOS 5.0, so I'm wondering if anybody else has
 experienced this with CentOS 5.3?

I have experienced the same problem with three different (in practically
every way) CentOS 5 machines.

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


Re: [CentOS] Gathering information about RAM in sockets

2009-09-30 Thread Marko A. Jennings
On Wed, September 30, 2009 12:56 pm, Timo Schoeler wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 Hi list,

 I have an IBM xseries 345, running CentOS 5.3, hosting a few Xen domUs.

 However, I need more RAM -- but cannot remember if all (four) RAM
 sockets are populated (which would mean to buy higher capacity modules)
 or if there are two slots left to use.

 However, I'd like (and think that it's possible, but don't remember how)
 to check remotely.

Take a look at dmidecode.

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


Re: [CentOS] CentOS Project Infrastructure

2009-08-08 Thread Marko A. Jennings
On Sat, August 8, 2009 4:04 pm, Lanny Marcus wrote:
 On Sat, Aug 8, 2009 at 2:22 PM, Robertlist...@abbacomm.net wrote:
 snip

 please stop poking the bears...  ;-

 it isn't productive and many of you that are critical of CentOS and the
 people running it should just move on and go away as asked

 +1  How easy it is to criticize people who have put in a
 tremendous amount of hours, without pay, working on the CentOS
 project. There is always room for improvement, but the criticism from
 those who have not put in the hours over the past years is not
 deserved.

Lanny,

Your statement implies that people that have not contributed to a certain
goal cannot possibly have a good suggestion.  Following that line of
thought, we should all shut up and let our respective governments do
whatever they please because most of us have not been public servants.

And even if the suggestion (or criticism, as lots of suggestions have been
labeled as of lately) is not valid, there are kinder and more polite ways
of responding to them than those we have experienced in this thread.

Marko

Following that line of thought, we should all shut up and let our
respective governments do whatever
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] CentOS Project Infrastructure

2009-08-08 Thread Marko A. Jennings
On Sat, August 8, 2009 8:44 pm, Johnny Hughes wrote:
 Marko A. Jennings wrote:
 On Sat, August 8, 2009 4:04 pm, Lanny Marcus wrote:
 On Sat, Aug 8, 2009 at 2:22 PM, Robertlist...@abbacomm.net wrote:
 snip

 please stop poking the bears...  ;-

 it isn't productive and many of you that are critical of CentOS and
 the
 people running it should just move on and go away as asked
 +1  How easy it is to criticize people who have put in a
 tremendous amount of hours, without pay, working on the CentOS
 project. There is always room for improvement, but the criticism from
 those who have not put in the hours over the past years is not
 deserved.

 Lanny,

 Your statement implies that people that have not contributed to a
 certain
 goal cannot possibly have a good suggestion.  Following that line of
 thought, we should all shut up and let our respective governments do
 whatever they please because most of us have not been public servants.

 And even if the suggestion (or criticism, as lots of suggestions have
 been
 labeled as of lately) is not valid, there are kinder and more polite
 ways
 of responding to them than those we have experienced in this thread.

 Marko

 Following that line of thought, we should all shut up and let our
 respective governments do whatever

 CentOS is not a government or a Democracy ... it was not designed to be.
  It is a product that we produce for people to use or not use.

 They get to choose to participate in the mailing lists, the forums, etc.

 They get to choose to donate money or servers or bandwidth to the project.

 They do NOT get to tell us what to build, when to build it, how to use
 donated resources, etc.  Just like I don't get to login to your servers
 and do what I want when you use CentOS.

Where exactly have I said, or even implied that?  All I have tried to
convey is that when people offer suggestions, they ought to be considered
and answered in a polite manner.  As I said before, it's not what is being
said, but rather how.

Do we agree on this?
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] CentOS Project Infrastructure

2009-08-07 Thread Marko A. Jennings
On Fri, August 7, 2009 12:54 pm, Johnny Hughes wrote:
 Bob Taylor wrote:
 On Fri, 2009-08-07 at 10:40 -0500, Johnny Hughes wrote:
 Ned Slider wrote:
 Marcus Moeller wrote:
 Dear Russ,

 [huge snip]

 Look ... if you understand how build work, and I know you do, then you
 understand that one can not release updates that are built on 4.8
 without releasing 4.8.

 If you need the updates faster, feel free to pay Redhat for them.

 There - I feel so much better getting that lot off my chest :)
 There are always other distros if you don't like this one ...

 Exactly the *wrong* response. I wonder if responses similar to this
 loses potential users or loses existing customers. Personally, it
 disgusts me.

 It is not *wrong* ... any more than your response is *wrong*.

 Your opinion is for you and my opinion is for me.

 And the GREAT thing about open source is, there is always another
 project if you don't like the current one.

 My point is, the CentOS team has put in an unbelievable amount of time
 and effort to build this distribution.  We will continue to do so.  If
 you like it use it. If you don't like it, don't use it.

 If someone has a major problem with the distro, then they should find
 one that they don't have a major problem with.  I don't want hard
 feelings or anyone to be upset, but if we are not meeting your
 expectations then you might be able to find another that does.  I do not
 think you will ... but trying is certainly better than being upset.

Johnny,

With all due respect, it is not what you are saying but how, especially
considering your prominent role on the project.

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


Re: [CentOS] Using ramdisks on CentOS

2009-07-22 Thread Marko A. Jennings
On Wed, July 22, 2009 4:46 pm, maillis...@gmail.com wrote:
 I'm running the 2.6 xen kernel on CentOS 5.3. My goal is to use
 larger-than-normal ramdisks.

tmpfs will do that for you: http://en.wikipedia.org/wiki/TMPFS

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


Re: [CentOS] CENTOS 4.8 available time????

2009-07-17 Thread Marko A. Jennings
On Fri, July 17, 2009 4:59 pm, Radosław Lidak wrote:
 mcclnx mcc pisze:
  Anyone know when CENTOS 4.8 will available??

  Thanks.

 Chill out, what's a difference?
 No offence, but what are you waiting for?

 Radek

No offense Radek, but what do you care why he wants to know?  He asked a
question an Karanbir answered it.  That ought to be the end of it.

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


Re: [CentOS] OT: Linux WYSIWYG HTML Editors

2009-07-02 Thread Marko A. Jennings
On Thu, July 2, 2009 4:19 pm, Lanny Marcus wrote:
  I will begin learning...

O'Reilly's Head First HTML with CSS  XHTML would not be a bad place to
start: http://www.bestwebbuys.com/books/compare/isbn/059610197x

Marko

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


Re: [CentOS] good small registrar?

2009-06-23 Thread Marko A. Jennings
On Tue, June 23, 2009 8:22 pm, Eugene Vilensky wrote:

 What are some  registrars that members of this list have had good
 experience with?

I have been using http://www.changeip.com for many years and I like them a
lot.  It's a small outfit that provides good, personalized, customer
service.

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


Re: [CentOS] Missing Thunderbird Updates

2009-05-20 Thread Marko A. Jennings
On Wed, May 20, 2009 7:04 pm, Karanbir Singh wrote:
 On 05/20/2009 11:55 PM, Marko A. Jennings wrote:
 Would it be possible to increase the number of developers?  Is there a
 way
 additional bodies can be put to work to relieve some of the pressure off
 of the current team members?

 There are a lot of things going on around the edges that could use
 attention and to be honest, are much easier for new people to get into -
 that goes a *long* way in creating the resource pool and more focused
 groups.

I am an RHCE with, among other things, 20 years of Unix experience.  How
exactly can I contribute, aside from answering occasional question on the
mailing list?
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Missing Thunderbird Updates

2009-05-20 Thread Marko A. Jennings
On Wed, May 20, 2009 8:15 pm, Karanbir Singh wrote:
 On 05/21/2009 12:59 AM, Marko A. Jennings wrote:
 I am an RHCE with, among other things, 20 years of Unix experience.
 How exactly can I contribute, aside from answering occasional question
 on the mailing list?

 Current requirements are actually quite developer heavy - howse your
 python foo ? Atleast a couple of things in the wiki need attention.

Sorry, I have only basic knowledge of Python, so I am not your man for that.

snip

 The centos-devel list, as always, is a good place to keep your eyes on,
 there must have been atleast a dozen various things that are open to
 contributions and help that have gone through there in the last few
 months.

Thank you.  I will subscribe to the devel list and watch for things that I
can help with.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Is there a web-based server status package?

2009-03-24 Thread Marko A. Jennings
On Tue, March 24, 2009 12:02 pm, Xn Nooby wrote:
 I have a small squirrelmail server using Postfix  Dovecot, and I
 would like to add a web-based status screen to remotely check its
 health. Is there a preferred packaged for doing this?

 I mostly want to monitor disk space usage, and CPU utilization.

You might want to try munin: http://munin.projects.linpro.no/
It is available through the rpmforge repo and is easy to set up.

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


Re: [CentOS] Getting ready for CentOS 5.4

2009-03-24 Thread Marko A. Jennings
On Tue, March 24, 2009 1:13 pm, Karanbir Singh wrote:
 Karanbir Singh wrote:
 Money donated to the project goes to sit in a pot. Resources that we use
 to do things on and with are on machines that we ( developers, centos
 team and contributors ) pay for, manage and run ourselves. CentOS does
 not subsidise or pay for any of it.

 Just to clarify - this is about the machines we use, the centos team.

 mirror.centos.org runs off donated hardware, sitting in donated space,
 using only donated network. This also includes the webserver, the
 mailserver and almost everything inside *.centos.org. It costs the
 project nothing.


Karanbir, what is the donated money used for?

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


Re: [CentOS] wireshark

2009-03-20 Thread Marko A. Jennings
On Fri, March 20, 2009 12:39 pm, Jerry Geis wrote:
 I did a yum -y install wireshark and it was successful.

 After the is type wireshark and nothing.

 Is there a problem with this package or am I missing something.

wireshark binary is located in /usr/sbin .  My guess is that you are
probably trying to run it as a user other than root and /usr/sbin is not
in your PATH.

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


Re: [CentOS] Disk usage for small files in ext3 in CentOS 5

2009-03-11 Thread Marko A. Jennings
On Wed, March 11, 2009 5:51 pm, Nicolas Thierry-Mieg wrote:

 Filipe Brandenburger wrote:
 Hello,

 I noticed something unusual today.

 If I du a small file (couple of bytes) in CentOS 5, it tells me the
 file is using 8kb, while I was expecting 4kb which is the block size
 I'm using.

 I tried this on several CentOS 5 machines, both x86_64 and i386:

 $ echo test test.txt
 $ ls -l test.txt
 -rw-rw-r-- 1 filbranden filbranden 5 Mar 11 17:24 test.txt
 $ du -h test.txt
 8.0K test.txt
 snip
 I could not find any differences that would explain the behaviour.
 Have you seen this before? Can you reproduce it on your systems? Do
 you know how to get the CentOS 4 behaviour?

 strange.
 I don't reproduce on an x86_64 centos 5 machine:
 [nthie...@localhost ~]$ echo test test.txt
 [nthie...@localhost ~]$ ls -l test.txt
 -rw-rw-r-- 1 nthierry nthierry 5 Mar 11 22:44 test.txt
 [nthie...@localhost ~]$ du -h test.txt
 4.0Ktest.txt

 I'm pretty sure I did nothing special when making the fs.

I just did it on a 32 bit machine and got 4.0K.  The file system was
created using default parameters.

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


Re: [CentOS] SquirrelMail Prefs Deleted

2009-02-09 Thread Marko A. Jennings
On Mon, February 9, 2009 5:14 pm, John Hinton wrote:
 FYI. I just had all of the squirrelmail prefs for all the users on one
 of my servers disappear. I have never had anything like this happen ever
 before.

I have seen this couple of times several years ago (more than 3) with an
older version of SquirrelMail, but not since then.  Which version are you
running?

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


Re: [CentOS] e-sata

2009-01-25 Thread Marko A. Jennings
On Sun, January 25, 2009 5:02 pm, cen...@911networks.com wrote:
 Does anybody has any experience with e-sata on CentOS5.2?

 - How fast is it? Same as an internal sata?
 - Does it support sata-2?
 - Does it hot-plug like a USB?

I use one ExpressCard eSATA II controller with a laptop under CentOS 5. 
The controller requires reboot in order to be recognized (at least I don't
know a way to make it work any other way), but the disks are hot-pluggable
just like with USB.  No idea how the speed compares to internal SATA.

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


Re: [CentOS] Intrusion Attempt Prevension - iptables problems

2009-01-12 Thread Marko A. Jennings
On Mon, January 12, 2009 1:37 pm, James B. Byrne wrote:
 I have these rules in effect:
snip
 1DROP   all  --  202.14.0.0/24anywhere
 2DROP   all  --  220.232.0.0/24   anywhere
sniP

 Note particularly line 2.

 Now, notwithstanding the above, I see this in my /var/log/secure file:

 Jan 12 13:36:02 inet01 sshd[16056]: Received disconnect from
 220.232.152.137: 11: Bye Bye
 Jan 12 13:36:13 inet01 sshd[16062]: pam_unix(sshd:auth): authentication
 failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=avalon.aty-group.com
 user=root
 Jan 12 13:36:15 inet01 sshd[16062]: Failed password for root from
 220.232.152.137 port 38722 ssh2
snip

 What is wrong with my IPTABLES rules that this connection is permitted?

Your netmask.  You might want to consider changing it to /16.

Marko

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


Re: [CentOS] non-restraint; was: CentOS 4 update backlog

2009-01-12 Thread Marko A. Jennings
On Mon, January 12, 2009 2:32 pm, R P Herrold wrote:
snip
 How about just NOT popping off with whatever little thought
 wanders into your head for two days running?

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


Re: [CentOS] CentOS 4 update backlog

2009-01-12 Thread Marko A. Jennings
On Mon, January 12, 2009 5:04 pm, Vandaman wrote:
snip
 Members of the CentOS community should, in a free world be able
 to ask valid questions aand offer to volunteer if that is needed.
 Off course some don't live in the free world so its
 unfortunate.

 Regards,
 Vandaman.

Vandaman,

From where I stand, it's not so much what you are saying bit how.  To me,
your posts (generally speaking) appear condescending and aggressive.  Just
saying Regards at the end of each posting is not enough.  It is nice to
show some from time to time.

Marko

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


Re: [CentOS-docs] Permission to add an entry to the Webcams page

2009-01-02 Thread Marko A. Jennings
On Fri, January 2, 2009 5:18 am, Ralph Angenendt wrote:
 Marko A. Jennings wrote:
 On Thu, January 1, 2009 1:00 pm, Ralph Angenendt wrote:
 Marko A. Jennings wrote:
 I would like to add an entry for the Logitech QuickCam Communicate STX
 to this page:
 http://wiki.centos.org/AdditionalResources/HardwareList/Webcams

 I need your WikiName for that ...

 So sorry, getting old and forgetful:  MarkoJennings

 Done.

Ralph, please remove edit permissions for this page for my WikiName, I am
done adding content.

Thank you.

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


[CentOS-docs] Permission to add an entry to the Webcams page

2009-01-01 Thread Marko A. Jennings
I would like to add an entry for the Logitech QuickCam Communicate STX to
this page:

http://wiki.centos.org/AdditionalResources/HardwareList/Webcams

Thank you.

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


Re: [CentOS-docs] Permission to add an entry to the Webcams page

2009-01-01 Thread Marko A. Jennings
On Thu, January 1, 2009 1:00 pm, Ralph Angenendt wrote:
 Marko A. Jennings wrote:
 I would like to add an entry for the Logitech QuickCam Communicate STX
 to this page:

 http://wiki.centos.org/AdditionalResources/HardwareList/Webcams

 I need your WikiName for that ...

So sorry, getting old and forgetful:  MarkoJennings
___
CentOS-docs mailing list
CentOS-docs@centos.org
http://lists.centos.org/mailman/listinfo/centos-docs


Re: [CentOS] Where do I find perl XML::Parser module

2008-11-18 Thread Marko A. Jennings
On Tue, November 18, 2008 1:06 pm, Chris Geldenhuis wrote:
 Hi,
 I am trying to install a package that requires the perl XML::Parser
 module.

 So far I have:

 Googled
 Installed rpmforge and yum priorities
 set priorities for all repositories used with rpmforge at 10
 tried yum install perl-XML, yum install mod_perl-XML etc. and get
 response Nothing to do
 so what is the correct yum request to get this package installed.

If you have rpmforge repository set up correctly, you should be able to
download it this way:

yum install perl-XML-Parser
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] More on Linux on the OQO

2008-09-23 Thread Marko A. Jennings
 23, 2008 4:07 pm, Robert Moskowitz wrote:
 What is the crusoe processor?

I have to believe that you have heard of Wikipedia:

http://en.wikipedia.org/wiki/Crusoe_processor

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


Re: [CentOS] How to detect whether running on VMware?

2008-07-24 Thread Marko A. Jennings
On Thu, July 24, 2008 7:47 am, Tony Mountifield wrote:
 Does anyone know how a program, script or shell user can best determine
 whether the machine is running on bare metal or is a VMware guest?

dmidecode | grep -iq  vmware 

This returns 0 if it is a VMware system and 1 it it isn't.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Simple IP Question

2008-07-17 Thread Marko A. Jennings
On Thu, July 17, 2008 12:39 pm, Matt wrote:
 I have a server located remotely running CentOS 5.x.  I need to have
 two IP's on the same interface.  So I have this:

 /etc/sysconfig/network-scripts/ifcfg-eth0
 DEVICE=eth0
 BOOTPROTO=none
 BROADCAST=69.x.x.199
 HWADDR=00:x:x:x:c6:10
 IPADDR=69.x.x.194
 NETMASK=255.255.255.248
 NETWORK=69.x.x.192
 ONBOOT=yes
 GATEWAY=69.x.x.193
 TYPE=Ethernet

 So I added this:

 /etc/sysconfig/network-scripts/ifcfg-eth0:0
 DEVICE=eth0
 BOOTPROTO=none
 BROADCAST=69.x.x.199
 HWADDR=00:x:x:x:c6:10
 IPADDR=69.x.x.195
 NETMASK=255.255.255.248
 NETWORK=69.x.x.192
 ONBOOT=yes
 GATEWAY=69.x.x.193
 TYPE=Ethernet

 Now the only IP that works is the second one.  What am I doing wrong?

In ifcfg-eth0:0, DEVICE line should look like this:

DEVICE=eth0:0

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


Re: [CentOS] OT: anything in CentOS 5.2 that uses opendns.com when browsing web?

2008-07-08 Thread Marko A. Jennings
On Tue, July 8, 2008 9:56 pm, Lanny Marcus wrote:
 On 7/8/08, Lanny Marcus [EMAIL PROTECTED] wrote:
 On Tue, Jul 8, 2008 at 8:00 PM, Ross Cavanagh
 [EMAIL PROTECTED] wrote:
 snip

 As for the SME documentation, you can select to view as one page [the
  option is at the bottom of the page when you are browse to the
 specific documentattion].

 eg.
 http://wiki.contribs.org/SME_Server:Documentation:Administration_Manu
 al:Booklet

 Then, you can print it to PDF if you want.


 Ross: I tried that, once before and it didn't work. I just tried it,
 again, after reading your post. Not only did Firefox 3.0 (which I got
 in an update today) crash, but I crashed out of GNOME, back to the
 login screen where you select which Desktop to use. I will send this
 reply  and try it again. If I can get the SME Server documentation in
 one .pdf document on my hard drive, I'm quite interested in SME Server.
 Thanks. Lanny

 This is unrelated to the opendns.com thread that I began. There is
 something wrong with GNOME and Firefox. At this time, I am using KDE and
 Konqueror. I can view the SME Server document Ross has the link for,
 without any problem, and without my browser and desktop crashing. I
 haven't found the place where you view the entire document as one page
 yet, but this is huge improvement, after having Firefox 3.0 and GNOME
 crash, while trying to view the document.

The same happens on my machine with Firefox under KDE.  After the crash,
in /var/log/messages I see the following:

Jul  8 21:45:50  gconfd (root-12641): Received signal 15, shutting
down cleanly
Jul  8 21:45:50  gconfd (root-12641): Exiting

I have experienced this several months ago on a different CentOS 5
machine, but only when I tried to access documentation on the SME Server
web site (contribs.org).

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


Re: [CentOS] OT: anything in CentOS 5.2 that uses opendns.com when browsing web?

2008-07-08 Thread Marko A. Jennings
On Tue, July 8, 2008 10:03 pm, Stephen John Smoogen wrote:
 On Tue, Jul 8, 2008 at 7:56 PM, Lanny Marcus [EMAIL PROTECTED]
 wrote:
 On 7/8/08, Lanny Marcus [EMAIL PROTECTED] wrote:
 On Tue, Jul 8, 2008 at 8:00 PM, Ross Cavanagh
 [EMAIL PROTECTED] wrote:
 snip

 As for the SME documentation, you can select to view as one page
 [the option is at the bottom of the page when you are browse to the
  specific documentattion].

 eg.
 http://wiki.contribs.org/SME_Server:Documentation:Administration_Ma
 nual:Booklet

 Then, you can print it to PDF if you want.


 Ross: I tried that, once before and it didn't work. I just tried it,
 again, after reading your post. Not only did Firefox 3.0 (which I got
 in an update today) crash, but I crashed out of GNOME, back to the
 login screen where you select which Desktop to use. I will send this
 reply  and try it again. If I can get the SME Server documentation in
 one .pdf document on my hard drive, I'm quite interested in SME
 Server. Thanks. Lanny

 This is unrelated to the opendns.com thread that I began. There is
 something wrong with GNOME and Firefox. At this time, I am using KDE
 and Konqueror. I can view the SME Server document Ross has the link
 for, without any problem, and without my browser and desktop crashing.
 I haven't found the place where you view the entire document as one
 page yet, but this is huge improvement, after having Firefox 3.0 and
 GNOME crash, while trying to view the document.

 I can't replicate a crash. EG the infamous, it works for me. I think
 there is something up with your system/network.

I can replicate it every time I try with Firefox under CentOS 5, but it
works fine with Konqueror.  An EeePC and a laptop running Ubuntu don't
have any problems accessing this page with Firefox.

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


Re: [CentOS] Couple of CentOS 5.2 dhcp notes

2008-07-06 Thread Marko A. Jennings
On Sun, July 6, 2008 6:57 pm, Ian Forde wrote:
 1. Apparently, since I updated from 5.1 to 5.2, dhcpd no longer wants to
 stay running.  The config is sound, and I can start it from the
 command-line with the -d flag and it serves up leases.  But without
 the -d flag, it just silently dies...

Mine has been working without any problems before and after the 5.2
update.  You might want to consider posting your configuration file.

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


Re: [CentOS] Couple of CentOS 5.2 dhcp notes

2008-07-06 Thread Marko A. Jennings
On Sun, July 6, 2008 6:57 pm, Ian Forde wrote:
 1. Apparently, since I updated from 5.1 to 5.2, dhcpd no longer wants to
 stay running.  The config is sound, and I can start it from the
 command-line with the -d flag and it serves up leases.  But without
 the -d flag, it just silently dies...

What exit code does it return when you execute it from the command line
without the -d flag?
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Desktop: After yum update and power off, cannot boot new Kernel

2008-06-25 Thread Marko A. Jennings
On Wed, June 25, 2008 11:01 am, Lanny Marcus wrote:

 FOLLOW ON: On my box, when it is trying to boot the latest Kernel
 (2.6.18-92.1.1el5) the last thing I see on the CRT is starting udev
 and after that, the screen goes blank and there is no HD activity.

This sounds a lot like the problem with the nvidia-drv-x11 package from
RPMForge.  Are you, by any chance, using it?  If so, you should be able to
boot into run level 3 without any problems, and X (run level 5) should
start working after you remove it.  That is, at least, my experience.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Problem with nvidia-drv-x11 when upgrading to CentOS 5.2

2008-06-24 Thread Marko A. Jennings
On Tue, June 24, 2008 3:08 pm, Bernhard Gschaider wrote:

 Hi!

 I know that the nvidia-drv-x11-package is from RPMForge, but I thought
 I might mention it here.

 I have a machine with a NVidia-card and because of the ease of use I
 use the rpmforge-package for that.

 After upgrading the problem was that during rebooting as soon as the
 machine hit the RHGB (which implicitly uses that driver) the machine
 froze. I booted into the old kernel removed rhgb, rebooted. Now the
 machine froze when starting X. Same procedure: Old Kernel. Remove
 nvidia-drv-x11. Reboot into the new kernel and reinstall
 nvidia-drv-x11. After a reboot everything works as it used to.

 The cause of the problem could have been (sorry, I didn't do any
 thorough forensic) that the nvidia.ko that was used in the new kernel
 was a symbolic link from the weak-updates-directory into the old
 kernel extra-directory. Is it possible that this only works inside
 of kernels with the same x in CentOS 5.x ?

 For the other machines I am upgrading I plan to

 1. deinstall nvidia-x11-drv
 2. do a regular yum upgrade
 3. reinstall nvidia-x11-drv after reboot

That is exactly what I did and my machine hangs again after nvidia-x11-drv
is installed.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] General CentOS 5.1 (or Gnome) instability?

2008-06-04 Thread Marko A. Jennings
On Wed, June 4, 2008 4:14 pm, Alfred von Campe wrote:
snip
 So, does anyone else have the perception that CentOS 5.X
 (particularly Gnome) is a little less stable than CentOS 4.X or is it
 just me?

Alfred,

I can tell you that five (very different) desktop machines that I manage
work without any problems under CentOS 5, but they all run KDE.  Based on
my experience, I would be inclined to believe that your problems are
somehow Gnome related.

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


Re: [CentOS] General CentOS 5.1 (or Gnome) instability?

2008-06-04 Thread Marko A. Jennings
On Wed, June 4, 2008 4:52 pm, Ralph Angenendt wrote:
 Marko A. Jennings wrote:
 On Wed, June 4, 2008 4:14 pm, Alfred von Campe wrote:
 snip
  So, does anyone else have the perception that CentOS 5.X
  (particularly Gnome) is a little less stable than CentOS 4.X or is it
  just me?

 I can tell you that five (very different) desktop machines that I manage
 work without any problems under CentOS 5, but they all run KDE.  Based
 on
 my experience, I would be inclined to believe that your problems are
 somehow Gnome related.

 As I know of several CentOS 5 machines which have no problem running
 Gnome, we seem to have a problem :)

Are you implying that Alfred's problems might be Alfred related?  ;-)
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] 40 second delay on automounts with 2.6.18-53.1.21.el5 kernel

2008-05-24 Thread Marko A. Jennings
On Sat, May 24, 2008 12:47 pm, Joe Pruett wrote:
 after this latest centos 5 kernel update, i am seeing 40 second delays on
 automount points.  nothing in the rpm changelog looks obviously related to
 autofs and the autofs module seems to be the same as the previous kernel.
 i'm starting to do some strace'ing and other debugging, but nothing has
 jumped out at me yet.  i'm hoping someone else has seen it so i know i'm
 not alone :-).

What type(s) of filesystems are you experiencing this with?  I am seeing
no additional delays with CIFS filesystems after the upgrade.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] sendmail: fatal message, sudo bash

2008-02-06 Thread Marko A. Jennings
On Wed, February 6, 2008 12:02 pm, Farid Hamjavar wrote:


 Centos 5

 Hello

 I successfully converted my mta from sendmail to postfix.
 no problem. mail is ok.

 A by-product of that, as bizarre as it may seem is this:


 As regular user, when I do 'su -' to become root, all is well.


 As regular user, when I do 'sudo bash' I become root
 alright but I also get:

 sendmail: fatal: Recipient addresses must be specified on the command line
 or via the -t option

Mail program used by sudo defaults to sendmail.  Take a look at mailerpath
and mailerflags settings in the sudoers file.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


RE: [CentOS] Connect to local console from SSH session

2008-02-04 Thread Marko A. Jennings
On Mon, February 4, 2008 1:16 pm, Joseph L. Casale wrote:
By 'console' do you mean a text-mode console or the GUI desktop running
a local session?  There are ways to connect to the latter remotely via
 vnc.

 Sorry, I mean the text based console. I am familiar with the VNC method.
 jlc

You might want to take a look at conspy (Dag's repository), it does
exactly that:

http://dag.wieers.com/rpm/packages/conspy/
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] rsync and swapping

2008-01-30 Thread Marko A. Jennings
On Wed, January 30, 2008 1:36 pm, MHR wrote:
snip
 As long as the majority of the files are not plain text - I have had
 really bad results using bzip2 on text files - specifically, massive
 file corruption.  I have had to go back to pre-bzipped archives to
 rebuild these files - not a fun task.

Why do you think that the corruption you experienced had something to do
with bzip2?  I have been using it on a regular basis for the last several
years to compress files of all sizes (ranging from very small to several
gigabytes) and have yet to experience any corruption whatsoever.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos



Re: [CentOS] crontab - corrected version

2008-01-23 Thread Marko A. Jennings
On Wed, January 23, 2008 8:16 pm, Scott Ehrlich wrote:
 So I want to see if there is a way to restrict crontab from running an
 executable or anything else from a world-writable directory, or
 subdirectory thereof.

One way of accomplishing that is to mount the file system that holds the
directory in question with the noexec option.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] find switch to find files of a certain size?

2008-01-10 Thread Marko A. Jennings
On Thu, January 10, 2008 11:21 am, [EMAIL PROTECTED] wrote:

 Is there a switch in find (or some other command besides find) that'll
 let you find files larger than a specified size?

-size

Read the man page.


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


Re: [CentOS] Fwd: Securing Linux laptops

2008-01-08 Thread Marko A. Jennings
On Tue, January 8, 2008 9:14 am, Robert Moskowitz wrote:
snip
 So what options do we have for encrypting partitions.
snip

I found this article helpful:
http://www.redhatmagazine.com/2007/01/18/disk-encryption-in-fedora-past-present-and-future/

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


Re: [CentOS] OT: writing upside down :)

2008-01-08 Thread Marko A. Jennings
Please take your excitement somewhere else.  This list is definitely not
an appropriate venue for it.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Firewall frustration

2008-01-03 Thread Marko A. Jennings
On Thu, January 3, 2008 8:18 am, Robert Moskowitz wrote:
 Steven Haigh wrote:
 On 03/01/2008, at 3:34 PM, Robert Moskowitz wrote:
 Christopher Chan wrote:

 I spent much of the past 24 hours trying to find out how to set up
 iptables for firewall routing WITHOUT NATing. Could not find
 anything.


 Eh? You just need to enable ip forwarding to enable routing. After
 that, it is put up the firewall rules as is necessary, build the
 appropriate routing tables on the firewall box and the boxes on the
 intranet(s).

 iptables does not handle routing.
 No, but iptables controls what is allowed to route,

 I think this is where you are getting confused and causing yourself
 issues. iptables has ZERO effect on what is allowed to route. It is a
 simple YES or NO as to if it should be allowed to pass or be filtered.
 I have been tested as having a significant language usage problem, and
 am working on it. 'what is allowed to route', was a poor choice of
 wording. What you wrote above is much closer to what I wanted to say.

 ip src/dest is used for routing decisions by the kernel. The IP state
 machine (check the RFC or any decent TCP/IP textbook) is really quite
 simple. But iptables sticks its nose into the center of that state
 machine and can mangle addresses to change how packets flow through the
 machine, or just simplely yank packets right out of the machine with a
 simple NO (drop).

 So in my mind's eye of the IP state machine (my MSU CPS 410 prof was
 death on state machines; turn in a perfectly executing assignment
 without one and there went half your grade. See HIP for its state
 machine) is dictated by iptables as to what it is allowed to route.

 Those little words, put up the firewall rules as necessary are
 equivalent to and magic happens here.

 It's actually not magical at all... Work with the mindset of I want
 to allow X, Y, and Z, then deny everything else. This translates
 easily into iptables rules -j ACCEPT and then your last rule (or
 policy) should be a deny/drop/reject.
 That is exactly what I tried to do. I just used the wrong bit of pixie
 dust (during some of the 'heated' IPsec meeting debates one fellow would
 try to sneak up a speaker 'that just did not get it' and sprinkle some
 glitter on them. He had labeled his tube of glitter as 'security pixie
 dust').

If you are interested in learning how iptables work, I suggest reading
this book:

Linux Firewalls, Second Edition
by Robert L. Ziegler
ISBN 0-7357-1099-6

It covers everything from packet filtering concepts to practical examples.

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


Re: [CentOS] Swap files

2007-10-28 Thread Marko A. Jennings
On Sun, October 28, 2007 11:05 pm, [EMAIL PROTECTED] wrote:
 Hello

 Is there any way to find out which files are in swap space ?

swapon -s

 is there any proc option that we can see the current and real time
 swaped files.

cat /proc/swaps

The two are equivalent.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Conversion of text in shell

2007-10-12 Thread Marko A. Jennings
On Fri, October 12, 2007 4:54 pm, roland hellström wrote:

 Hi! I want to convert the lines
 1.1,3.19e-4
 1.2,3.05e-3
 10.5,9.14e8
 (as example)

 to

 1,1  $3,19 \cdot 10^{-4}$\\
 etc.. from one file and save these in a new file
 Rly lost here except I know I should use regexp and MAYBE sed somehow :)
 Thx for any help

Assuming that you have those lines in a file called numbers.txt, you can
execute the following (all on one line):

cat numbers.txt | tr '.,e' ',^^' | awk -F^ '{printf(%s  $%s \\cdot
10^{%s}$\n, $1, $2, $3);}'

The output will be:

1,1  $3,19 \cdot 10^{-4}$\\
1,2  $3,05 \cdot 10^{-3}$\\
10,5  $9,14 \cdot 10^{8}$\\

Not the most elegant solution, but it works.  I hope this is what you were
looking for.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Postgres Config File (eg: PGDATA)

2007-09-25 Thread Marko A. Jennings
On Tue, September 25, 2007 3:34 am, Ow Mun Heng wrote:
 Hi guys,

 need some clarification on whether there is a config file sourced by the
 init script to determine where PGDATA is located.

 Right now, it seems like it's not sourced from anywhere by located on
 the init file itself.

 Appreciate if you guys can let me know if this is the correct place for
 altering it.

Multiple instances of Postgres database will have separate init scripts. 
The location of the config file for each init script is

/etc/sysconfig/pgsql/init-script-name

For example, for the default init script (/etc/init.d/postgresql) that
gets installed with Postgres, the config file is
/etc/sysconfig/pgsql/postgresql .  Although the /etc/sysconfig/pgsql
directory gets created when Postgres is installed, you will not find any
config files in it initially.  In order to change the default PGDATA
(and/or PGPORT) values, you sill need to create appropriately named config
file that will look like this:

PGDATA=/data/pg
PGPORT=3456

You don't need to set both values in it if you are changing only one
default value.

I hope this helps.

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


Re: [CentOS] CentOS vs RedHat releases

2007-08-04 Thread Marko A. Jennings
On Sat, August 4, 2007 10:35 am, Scott Ehrlich wrote:
 In comparing CentOS to RedHat releases, it seems to me CentOS is the
 Desktop/Workstation class distro from RedHat.   Does the CentOS project
 then not have a Server class distro, or am I missing something?   Granted,
 most any operating system can act as a server, but there are some
 fundamental components of a server-class OS that help is stand out versus
 a workstation version.

 Thanks for any insights.

 Scott

Your question is answered in the CentOS FAQ: 
http://www.centos.org/modules/smartfaq/faq.php?faqid=31
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] how to export and import VMware servers

2007-08-02 Thread Marko A. Jennings
On Thu, August 2, 2007 6:27 pm, Rogelio Bastardo wrote:
 I recently build a CentOS-based VMware server (the free ver) and now
 need to move all of the virtual machines off my old Windows-based
 VMware server (also the free ver) to this next CentOS-based one.

 I have successfully FTP'd all of the files to the new CentOS box and
 have even opened the server in the console Window, but cannot start
 it.
snip

Take a look at file and directory permissions.  I've seen this kind of
behavior where some (or all) VMware files were not writable by appropriate
users.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos