Re: Software RAID configuration in hamm install?

1998-04-17 Thread Remco Blaakmeer
On Thu, 16 Apr 1998, Remco Blaakmeer wrote:

 On 15 Apr 1998, Jens Ritter wrote:
 
  Remco Blaakmeer [EMAIL PROTECTED] writes:
  
...but... you have make a mistake ;-) 
in hamm mdutils has been replaced by raidtools
   
   Yes, silly me. I knew that, I just didn't think of it.
  
  I always though raidtools is for 2.1.XX and mdutils for 2.0.xx
  
  Am I wrong?
 
 I think so. I couldn't find any requirements for 2.1 kernels in the
 raidtools package. From /usr/doc/raidtools/readme.txt.gz:
 
 =
 This is the release of the MD tools + RAIDtools.  This merges the
 utilities required to support for RAID-0 and Linear modes and 
 the RAID-1 tools.
 =
 
 The mdutils package only supports Linear and RAID0 modes, IIRC.

OOPS. The above is not true. You need kernel 2.1.63 or newer for the
raidtools package.

Remco


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


Re: Software RAID configuration in hamm install?

1998-04-16 Thread Remco Blaakmeer
On 15 Apr 1998, Jens Ritter wrote:

 Remco Blaakmeer [EMAIL PROTECTED] writes:
 
   ...but... you have make a mistake ;-) 
   in hamm mdutils has been replaced by raidtools
  
  Yes, silly me. I knew that, I just didn't think of it.
 
 I always though raidtools is for 2.1.XX and mdutils for 2.0.xx
 
 Am I wrong?

I think so. I couldn't find any requirements for 2.1 kernels in the
raidtools package. From /usr/doc/raidtools/readme.txt.gz:

=
This is the release of the MD tools + RAIDtools.  This merges the
utilities required to support for RAID-0 and Linear modes and 
the RAID-1 tools.
=

The mdutils package only supports Linear and RAID0 modes, IIRC.

Remco


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


Re: Software RAID configuration in hamm install?

1998-04-15 Thread Remco Blaakmeer
On Wed, 8 Apr 1998, Ulisses Alonso Camaro wrote:

 Hi all,
 
 I'm novice to RAID, and I want to try with it. I would like to know if
 hamm provices in its installation the tools to setup a RAID0 (stripping)
 installation. Also I would like to know if the menu for installation has
 RAID0 configuration options
 
 Thanks in advance,
 
   Ulisses
 
 PD: Does debian.org ships hamm?

Sorry for the late reply, I am catching up with the mailing list.

Yes, hamm has tools for RAID0. You'll want the mdutils package, which
contains all tools you need. I don't know about the standard kernel, you
might have to compile your own with support for MD and RAID0 turned on. I
don't think there is a menu that configures the whole thing for you, but
it is not difficult to do it by hand. Basically, you do this:

1. get a kernel that supports RAID0 (and boot it).
2. instal the mdutils package.
3. choose the partitions (or whole disks) that will form the RAID0 device.
   for example, say these are /dev/hda1 and /dev/hdc3
4. run these commands:
# mdcreate raid0 /dev/md0 /dev/hda1 /dev/hdc3
# mdadd -ar
# mke2fs /dev/md0
5. mount the RAID0 partition where you want it.

Note, that it will be difficult to get the root filesystem on the RAID0
device since the RAID0 device is only active after the mdadd program is
run (Debian does this automatically at boot time if you have configured
any MD devices). This is approximately how my setup used to be when I had
a RAID0 device:

DOS partition: /dev/hda1
extended partition: /dev/hda2
root file system: /dev/hda5
RAID0 system: /dev/hda6 and /dev/hdc2
swap: /dev/hda7 and /dev/hdc1

RAID0 device mounted on /mddrive
/mddrive contains home, usr and var
root filesystem contains symlinks for /home, /usr and /var

For more (detailed) information, look at these documents on a Debian
system:

/usr/doc/HOWTO/Root-RAID-HOWTO.gz
/usr/doc/HOWTO/mini/Software-RAID.gz
and the man pages for mdadd, mdcreate, etc.

Remco


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


Re: Software RAID configuration in hamm install?

1998-04-15 Thread Ulisses Alonso Camaro
-BEGIN PGP SIGNED MESSAGE-

Hello Remco!

On Wed, 15 Apr 1998, Remco Blaakmeer wrote:

 On Wed, 8 Apr 1998, Ulisses Alonso Camaro wrote:
 
  Hi all,
  
  I'm novice to RAID, and I want to try with it. I would like to know if
  hamm provices in its installation the tools to setup a RAID0 (stripping)
  installation. Also I would like to know if the menu for installation has
  RAID0 configuration options
  
  Thanks in advance,
  
  Ulisses
  
  PD: Does debian.org ships hamm?
 
 Sorry for the late reply, I am catching up with the mailing list.

Thanks for your reply! :-)

Your info is great for me!

...but... you have make a mistake ;-) 
in hamm mdutils has been replaced by raidtools


 Yes, hamm has tools for RAID0. You'll want the mdutils package, which
 contains all tools you need. I don't know about the standard kernel, you
 might have to compile your own with support for MD and RAID0 turned on. I
 don't think there is a menu that configures the whole thing for you, but
 it is not difficult to do it by hand. Basically, you do this:

[...]


Regards,

Ulisses
- -
Computers are useless. They can only give answers.Pablo Picasso

-BEGIN PGP SIGNATURE-
Version: 2.6.3a
Charset: latin1
Comment: PGP public key avaliable at http://www.rediris.es/cert/keyserver

iQB1AwUBNTRl+Q/N+5+NQ63pAQHBpgMAmeB0DVGhuy/zgocr+2vm1CB24xMV5+Z4
qp5V84hE2sMqt1aHiVh0v8JB8MPKwS8tV39crezvNXGlOKbHzzwpI+fDkOK95nMq
G6e/fdF86wIibZG3Frb06T6n9JyeH5jA
=f+1Z
-END PGP SIGNATURE-


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


Re: Software RAID configuration in hamm install?

1998-04-15 Thread Remco Blaakmeer
On Wed, 15 Apr 1998, Ulisses Alonso Camaro wrote:

 -BEGIN PGP SIGNED MESSAGE-
 
 Hello Remco!
 
 On Wed, 15 Apr 1998, Remco Blaakmeer wrote:
 
  On Wed, 8 Apr 1998, Ulisses Alonso Camaro wrote:
  
   Hi all,
   
   I'm novice to RAID, and I want to try with it. I would like to know if
   hamm provices in its installation the tools to setup a RAID0 (stripping)
   installation. Also I would like to know if the menu for installation has
   RAID0 configuration options
   
   Thanks in advance,
   
 Ulisses
   
   PD: Does debian.org ships hamm?
  
  Sorry for the late reply, I am catching up with the mailing list.
 
 Thanks for your reply! :-)
 
 Your info is great for me!
 
 ...but... you have make a mistake ;-) 
 in hamm mdutils has been replaced by raidtools

Yes, silly me. I knew that, I just didn't think of it.

Remco


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


Re: Software RAID configuration in hamm install?

1998-04-15 Thread Jens Ritter
Remco Blaakmeer [EMAIL PROTECTED] writes:

  ...but... you have make a mistake ;-) 
  in hamm mdutils has been replaced by raidtools
 
 Yes, silly me. I knew that, I just didn't think of it.

I always though raidtools is for 2.1.XX and mdutils for 2.0.xx

Am I wrong?

---
[EMAIL PROTECTED]   [EMAIL PROTECTED]
Key ID: 2048/E451C639 Jens Ritter
Key fingerprint: 5F 3D 43 1E 24 1E CC 48  1E 05 93 3A A7 10 73 37 


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]