Grokbase
Topics Posts Groups | in
x
[ help ]

Kai Schaetzl (mail...@conactive.com)

Profile | Posts (62)Page 4 of 4: << < 2 3 4
61) Kai Schaetzl Re: [CentOS] RAID 1 Post Install
| +1 vote
Tom Brown wrote on Tue, 02 Dec 2008 17:29:06 +0000: unfortunately that and the mini-howto are both...
CentOS
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Tom Brown wrote on Tue, 02 Dec 2008 17:29:06 +0000:

> http://tldp.org/HOWTO/Software-RAID-HOWTO-5.html

unfortunately that and the mini-howto are both very much outdated. Many of =

the stuff it mentions (like mkraid, /etc/raidtab) is not part of the =

distro anymore. You use mdadm nowadays. Those parts that contain mdadm =

commands are still valid.

Does this "Silicon Image SATA controller" not include Hardware RAID by =

chance? =

The basic steps for software-RAID are:
- decide about the partitions the RAID devices will be based on
- if it is used only for data you may probably want to have just one RAID =

partition:
mdadm --create /dev/md0 --level=3D1 --raid-devices=3D2 /dev/sda /dev/sdb
(I assume you can use sda and sdb. I always use several RAID partitions, =

so I never used the whole disk.)
put LVM on it:
  pvcreate /dev/md0
  vgcreate myvolumegroupname /dev/md0
  - creates vg myvolumegroupname on it
- start adding your logical volumes:
  lvcreate -L50G --name myname myvolumegroupname
  - adds a 50G logical volume named myname
  - format that lv:
    mkfs.ext3 /dev/myvolumegroupname/myname
- copy any data you like from the old drives
- add the mount points to fstab
- if you don't boot from the RAID partition you are done now


Kai

-- =

Kai Sch=E4tzl, Berlin, Germany
Get your web at Conactive Internet Services: http://www.conactive.com



_______________________________________________
CentOS mailing list
[email protected: C...@centos.org]
http://lists.centos.org/mailman/listinfo/centos
62) Kai Schaetzl Re: [CentOS] My God, it is full of stars
| +1 vote
Ralph Angenendt wrote on Tue, 2 Dec 2008 00:07:08 +0100: I recognized the switch must have been...
CentOS
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Ralph Angenendt wrote on Tue, 2 Dec 2008 00:07:08 +0100:

> What is? The new CentOS mail server is, which coincidentally also hosts =

> the mailing lists you are reading right now.

I recognized the switch must have been happened once I started getting =

replies before the answers ;-)

Kai

-- =

Kai Sch=E4tzl, Berlin, Germany
Get your web at Conactive Internet Services: http://www.conactive.com



_______________________________________________
CentOS mailing list
[email protected: C...@centos.org]
http://lists.centos.org/mailman/listinfo/centos
63) Kai Schaetzl Re: [CentOS] following Centos wiki headless install, but applying to FC10
| +1 vote
Robert Moskowitz wrote on Mon, 1 Dec 2008 13:10:32 -0500: I'd say you want to set prompt 0 if you...
CentOS
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Robert Moskowitz wrote on Mon, 1 Dec 2008 13:10:32 -0500:

> prompt 1
> timeout 0

I'd say you want to set prompt 0 if you don't want a prompt. A short
timeout should basically do the same, but an 0 sometimes means
"indefinite".

>
> I still get prompted.

> Any pointers to where to get help on this?

That very fedoraforum ? After all, there may indeed by something
different/new in that isolinux. ;-)

Kai

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



_______________________________________________
CentOS mailing list
[email protected: C...@centos.org]
http://lists.centos.org/mailman/listinfo/centos
64) Kai Schaetzl Re: [CentOS] Stop the FUD Xen is not deprecated
| +1 vote
Pasi Kärkkäinen wrote on Mon, 1 Dec 2008 09:51:45 +0200: Of course, it's the current state of...
CentOS
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Pasi Kärkkäinen wrote on Mon, 1 Dec 2008 09:51:45 +0200:

> Then again Redhat guys have not yet commented about planned features for
> RHEL6..

Of course, it's the current state of affairs as we think we know it.

Kai

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



_______________________________________________
CentOS mailing list
[email protected: C...@centos.org]
http://lists.centos.org/mailman/listinfo/centos
65) Kai Schaetzl Re: [CentOS] KDE4
| +1 vote
Martin Marques wrote on Sun, 30 Nov 2008 14:30:46 -0200: please search the archives of this list...
CentOS
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Martin Marques wrote on Sun, 30 Nov 2008 14:30:46 -0200:

> Is there any repo with binary rpm of KDE 4.1 for CentOS 5?

please search the archives of this list for "KDE 4".

Kai

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



_______________________________________________
CentOS mailing list
[email protected: C...@centos.org]
http://lists.centos.org/mailman/listinfo/centos
66) Kai Schaetzl Re: [CentOS] Reassemble software RAID
| +1 vote
> /dev/md2 with / (made only from sda2)
CentOS
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
> /dev/md2 with / (made only from sda2)


_______________________________________________
CentOS mailing list
[email protected: C...@centos.org]
http://lists.centos.org/mailman/listinfo/centos
67) Kai Schaetzl Re: [CentOS] Reassemble software RAID
| +1 vote
I'm still having a problem with this software-RAID setup. I restructured the disk layout, so that I...
CentOS
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
I'm still having a problem with this software-RAID setup. I restructured
the disk layout, so that I have the exact same partition layout on both
disks. But now I cannot boot from the new md device.
The important devices are:

/dev/md0 with /boot (made from sda1 and sdb1)
/dev/md2 with / (made only from sda1)
/dev/sdb2 with / (to be added to md2 once booting from md2 works)

The problem is that if I boot the kernel into /dev/md2 it errors out with
"cannot mount /dev/root" when switching root. I can boot fine by using the
/ filesystem on /dev/sdb2. initrd contains raid1.ko, so the mdraid driver
is not missing driver.

Any hints what could be wrong?


Kai

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



_______________________________________________
CentOS mailing list
[email protected: C...@centos.org]
http://lists.centos.org/mailman/listinfo/centos
68) Kai Schaetzl Re: [CentOS] Looking for a method to keep at least 5% CPU
| +1 vote
Ryan J M wrote on Fri, 28 Nov 2008 08:50:39 +0800: Anyxone is able to loghin anytime, if youw ant...
CentOS
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Ryan J M wrote on Fri, 28 Nov 2008 08:50:39 +0800:

> PS: I think, you know, root should be loginable in any condition
> unless the system is down. Shouldn't it?

Anyxone is able to loghin anytime, if youw ant to see it that way ;-) But
the system needs the ressources to make this happen before the timeout ;-)
It might also not be a CPU issue, but a bandwidth issue. If bandwidth is
occupied by other users it may take a time for your packets to get thru.
In any case, you may want to lower the load for that machine or give it
more "power" if you can. If you cannot login as root with ssh because it
times out this also means that the others experience a less than optimal
performance.

Kai

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



_______________________________________________
CentOS mailing list
[email protected: C...@centos.org]
http://lists.centos.org/mailman/listinfo/centos
69) Kai Schaetzl Re: [CentOS] Stop the FUD Xen is not deprecated
| +1 vote
Pasi Kärkkäinen wrote on Thu, 27 Nov 2008 12:04:16 +0200: Yeah. The point behind my asking was if...
CentOS
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Pasi Kärkkäinen wrote on Thu, 27 Nov 2008 12:04:16 +0200:

> There are many options.

Yeah. The point behind my asking was if one would be able to run
RHEL/CentOS 6 as a dom0 - as it is derived from Fedora and reflects the
available bits at the time of the OS freeze. In other words, if there is a
normal upgrade path concerning Xen from RHEL/CentOS 5 to 6 or not. So, at
the moment it looks like you can't run RHEL 6 as a dom0, but this may
change until it's release depending on the upstream (kernel.org?) kernel
having the relevant xen bits in time for an RHEL release (which is
promised for 2.6.29 or so at the moment).
You can probably run RHEL 6 paravirtualized on a RHEL 5 dom0.
Correct interpretation so far?

Kai

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



_______________________________________________
CentOS mailing list
[email protected: C...@centos.org]
http://lists.centos.org/mailman/listinfo/centos
70) Kai Schaetzl Re: [CentOS] clamav-update and missing dependencies
| +1 vote
Timothy Kesten wrote on Tue, 25 Nov 2008 14:17:38 +0100: do you *really* need this package? If not,...
CentOS
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Timothy Kesten wrote on Tue, 25 Nov 2008 14:17:38 +0100:

> Missing Dependency: libclamav.so.4(CLAMAV_PUBLIC) is needed by package
> perl-Mail-ClamAV
> Missing Dependency: libclamav.so.4 is needed by package perl-Mail-ClamAV

do you *really* need this package? If not, uninstall it and your problem
is gone. I didn't check, but I assume this package is somewhat older than
your to-be-updated 94.1 rpmforge packages and not compatible anymore.
AFAIK the clamav perl module isn't really maintained for some time now, so
there is nothing new to package.

Kai

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



_______________________________________________
CentOS mailing list
[email protected: C...@centos.org]
http://lists.centos.org/mailman/listinfo/centos
71) Kai Schaetzl Re: [CentOS] bioinformatics repository?
| +1 vote
Davide Cittaro wrote on Tue, 25 Nov 2008 11:23:44 +0100: but they may well be your only ressource...
CentOS
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Davide Cittaro wrote on Tue, 25 Nov 2008 11:23:44 +0100:

> repo.bioinformatics.upenn.edu
>
> and others but they seem to be seldom updated...

but they may well be your only ressource here, bioinformatics surely isn't
a widespread task given the whole userbase ;-)
You may want to contact the maintainers of such a repo and ask if they can
provide updates more often. I gather that, apart from time constraints
etc., they may also need some encouragement as they are not catering too
so many users.

Kai

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



_______________________________________________
CentOS mailing list
[email protected: C...@centos.org]
http://lists.centos.org/mailman/listinfo/centos
72) Kai Schaetzl Re: [CentOS] Configure sendmail to only send to one domain
| +1 vote
Sean Carolan wrote on Mon, 24 Nov 2008 09:35:20 -0600: Not clear what you mean. Kai...
CentOS
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Sean Carolan wrote on Mon, 24 Nov 2008 09:35:20 -0600:

> Is there an easy way to configure sendmail to only send mail to
> addresses in one particular domain?

Not clear what you mean.

Kai

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



_______________________________________________
CentOS mailing list
[email protected: C...@centos.org]
http://lists.centos.org/mailman/listinfo/centos
73) Kai Schaetzl Re: [CentOS] Cluster fail over database getting stopped
| +1 vote
Linux-crazy wrote on Sun, 23 Nov 2008 20:31:37 +0530: Bored of naming yourself whoami or lingu? Or...
CentOS
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Linux-crazy wrote on Sun, 23 Nov 2008 20:31:37 +0530:

> I am running RHEL3u8  two node cluster,

Bored of naming yourself whoami or lingu? Or just realized that you posted
a few off-topic questions too many with these names?
Please stop abusing this list for your RHEL3 cluster problems. Thanks.

Kai

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



_______________________________________________
CentOS mailing list
[email protected: C...@centos.org]
http://lists.centos.org/mailman/listinfo/centos
74) Kai Schaetzl Re: [CentOS] Location of 5.2 .iso without XEN
| +1 vote
Sam, please don't abandon threads you initiated yourself about the same topic, this is noob...
CentOS
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Sam, please don't abandon threads you initiated yourself about the same
topic, this is noob behavior. You should know better by now. You waste
other people's time as they cannot know all content of all threads.

Kai

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



_______________________________________________
CentOS mailing list
[email protected: C...@centos.org]
http://lists.centos.org/mailman/listinfo/centos
75) Kai Schaetzl Re: [CentOS] SYD flood dropped on Sendmail (centos 4.x)
| +1 vote
Scott Silva wrote on Thu, 20 Nov 2008 16:03:04 -0800: The dovecot in CentOS 5 exhibits the same...
CentOS
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Scott Silva wrote on Thu, 20 Nov 2008 16:03:04 -0800:

> CentOS 4 comes with a very OLD version of dovecot.
> If you are using dovecot, you can get a much newer version at atrpms.net.
> The upgrade might be all you need to fix it.

The dovecot in CentOS 5 exhibits the same problem when hammered by
dictionary attacks. Is the atrpms version newer?

Kai

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



_______________________________________________
CentOS mailing list
[email protected: C...@centos.org]
http://lists.centos.org/mailman/listinfo/centos