linux-raid.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* (no subject)
@ 2002-08-21 18:48 Eddie Johnson
  0 siblings, 0 replies; 8+ messages in thread
From: Eddie Johnson @ 2002-08-21 18:48 UTC (permalink / raw)
  To: linux-raid

echo subscribe linux-raid | mail majordomo@vger.kernel.org


^ permalink raw reply	[flat|nested] 8+ messages in thread

* (no subject)
@ 2002-09-11 18:27 Eddie Johnson
  2002-09-11 19:50 ` Alvin Oga
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Eddie Johnson @ 2002-09-11 18:27 UTC (permalink / raw)
  To: linux-raid; +Cc: ejohnson

I installed Suse Linux Professional 8 on a HP Netserver LC3 PII/450.  An
AHA-2940 UW Scsi host adapter with a AIC-78XX Scsi Protocol Chip/50 pin
high density scsi-2 control.  I have a raid (3 drives) off the host
adapter and a 80 gig scsi drive off the mother board. After launching
yast2 the first raid has the following device: LD0 raid 5 34730R:
device_name /dev/sda, vendor megaraid.  Disk two (80 gig drive) has LD1
raid 0 70006R: device name /dev/sdb vendor the same as above.  There was
no raidtab file so I created one with the following:

raiddev /dev/md0
raid-level 5
nr-raid-disks 1(little sketchy on this because it is three drives that
make up the raid)
nr-spare-disks 0
persistent superblock 1
parity-algorithm left-symmetric
chunk-size 2048
device /dev/sda
raid-disk 0 (sketchy here as well)

#Second drive
raiddev /dev/md1
raid-level 5
nr-raid-disks 1
nr-spare-disks 0
persistent-superblock 1
chunk-size 2048
device /dev/sdb
raid-disks 1 (sketchy as well)

Trying to follow the procedures and I type:
mkraid /dev/md0 and I get:

Handling md device /dev/md0
analyzing super-block
disk 0: /dev/sda, 35563520kb, raid superblock at 35563456kb

Second drive I get:

Handling md deviice /dev/md1
analyzing super-block
disk 0: /dev/sdb, 71686144kb, raid superblock at 71686080kb

I then type cat /proc/mdstat and get the following:

Personalities [RAID5]
read_ahead not set
md1: inactive sdb [0]
     71684096 blocks
md0: inactive sda [0]
     35561472 blocks
unused devices: <none>

If I read this correctly both are inactive when it should be stating
that they are active.  At this point I am baffled any suggestions or
possible directions would greatly be appreciated.


Thanks in advance,
Ed


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: (no subject)
  2002-09-11 18:27 (no subject) Eddie Johnson
@ 2002-09-11 19:50 ` Alvin Oga
  2002-09-11 20:42 ` Neil Brown
  2002-09-12  5:48 ` Luca Berra
  2 siblings, 0 replies; 8+ messages in thread
From: Alvin Oga @ 2002-09-11 19:50 UTC (permalink / raw)
  To: Eddie Johnson; +Cc: linux-raid


hiya eddie

i think you want raid5 w/ 3 disks instead of 3 copies of the same
data on 3 disks w/ raid1

watch our for old raid commands (mkraid ) vs new raid commands (raidstart)

More raid commands
       http://www.1U-Raid5.net/HowTo/Commands.uhow2.txt

have fun raiding
alvin

#
#
# sample /etc/raidtab
#
# To start it up
# --------------
#	fdsisk /dev/sda
#	--> use FD raid partion ( 1 partition - the whole disk ?)
#
#	raidstart /dev/md0
#	cat /proc/mdstat	--> see if all 3 disks is listed
#	mke2fs -j /dev/md0
#	mount /dev/md0 /RAID
#
#	dd if=/dev/random of=/RAID/test.big count=1000000
#
#
#
raiddev /dev/md0
raid-level 5
#
nr-raid-disks 3
#  note the above
#
nr-spare-disks 0
persistent superblock 1
parity-algorithm left-symmetric
#
#
# That's a huge chunk .... units are 1024 block * chunk-size 
# chunk-size 2048
chunk-size	8
#
#
# use the "partition" on the disk and define the raiddev device /dev/md0
#
device /dev/sda1
raid-disk 0
#
device /dev/sdb1
raid-disk 1
# 
device /dev/sdc1
raid-disk 2
#
# end of raidtab file


On Wed, 11 Sep 2002, Eddie Johnson wrote:

> I installed Suse Linux Professional 8 on a HP Netserver LC3 PII/450.  An
> AHA-2940 UW Scsi host adapter with a AIC-78XX Scsi Protocol Chip/50 pin
> high density scsi-2 control.  I have a raid (3 drives) off the host
> adapter and a 80 gig scsi drive off the mother board. After launching
> yast2 the first raid has the following device: LD0 raid 5 34730R:
> device_name /dev/sda, vendor megaraid.  Disk two (80 gig drive) has LD1
> raid 0 70006R: device name /dev/sdb vendor the same as above.  There was
> no raidtab file so I created one with the following:
> 
> raiddev /dev/md0
> raid-level 5
> nr-raid-disks 1(little sketchy on this because it is three drives that
> make up the raid)
> nr-spare-disks 0
> persistent superblock 1
> parity-algorithm left-symmetric
> chunk-size 2048
> device /dev/sda
> raid-disk 0 (sketchy here as well)
> 
> #Second drive
> raiddev /dev/md1
> raid-level 5
> nr-raid-disks 1
> nr-spare-disks 0
> persistent-superblock 1
> chunk-size 2048
> device /dev/sdb
> raid-disks 1 (sketchy as well)
> 
> Trying to follow the procedures and I type:
> mkraid /dev/md0 and I get:
> 
> Handling md device /dev/md0
> analyzing super-block
> disk 0: /dev/sda, 35563520kb, raid superblock at 35563456kb
> 
> Second drive I get:
> 
> Handling md deviice /dev/md1
> analyzing super-block
> disk 0: /dev/sdb, 71686144kb, raid superblock at 71686080kb
> 
> I then type cat /proc/mdstat and get the following:
> 
> Personalities [RAID5]
> read_ahead not set
> md1: inactive sdb [0]
>      71684096 blocks
> md0: inactive sda [0]
>      35561472 blocks
> unused devices: <none>
> 
> If I read this correctly both are inactive when it should be stating
> that they are active.  At this point I am baffled any suggestions or
> possible directions would greatly be appreciated.
> 
> 
> Thanks in advance,
> Ed
> 
> -
> To unsubscribe from this list: send the line "unsubscribe linux-raid" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: (no subject)
  2002-09-11 18:27 (no subject) Eddie Johnson
  2002-09-11 19:50 ` Alvin Oga
@ 2002-09-11 20:42 ` Neil Brown
  2002-09-12  5:48 ` Luca Berra
  2 siblings, 0 replies; 8+ messages in thread
From: Neil Brown @ 2002-09-11 20:42 UTC (permalink / raw)
  To: Eddie Johnson; +Cc: linux-raid

On Wednesday September 11, ejohnson@milleraa.com wrote:
> I installed Suse Linux Professional 8 on a HP Netserver LC3 PII/450.  An
> AHA-2940 UW Scsi host adapter with a AIC-78XX Scsi Protocol Chip/50 pin
> high density scsi-2 control.  I have a raid (3 drives) off the host
> adapter and a 80 gig scsi drive off the mother board. After launching
> yast2 the first raid has the following device: LD0 raid 5 34730R:
> device_name /dev/sda, vendor megaraid.  Disk two (80 gig drive) has LD1
> raid 0 70006R: device name /dev/sdb vendor the same as above.  There was
> no raidtab file so I created one with the following:

It sounds like you have hardware raid (megaraid) that presents the two
raid devices as /dev/sda and /dev/sdb so they look like scsi devices,
but are really raid arrays.
In this case, you don't need raidtab or mkraid at all.  These are for
'software' raid which is quite separate from hardware raid.

software raid:  Linux kernel does all raid management.
hardware raid: special card knows about raid and does lots of the work
		rest of work done in the driver for the card.

NeilBrown

> 
> raiddev /dev/md0
> raid-level 5
> nr-raid-disks 1(little sketchy on this because it is three drives that
> make up the raid)
> nr-spare-disks 0
> persistent superblock 1
> parity-algorithm left-symmetric
> chunk-size 2048
> device /dev/sda
> raid-disk 0 (sketchy here as well)
> 
> #Second drive
> raiddev /dev/md1
> raid-level 5
> nr-raid-disks 1
> nr-spare-disks 0
> persistent-superblock 1
> chunk-size 2048
> device /dev/sdb
> raid-disks 1 (sketchy as well)
> 
> Trying to follow the procedures and I type:
> mkraid /dev/md0 and I get:
> 
> Handling md device /dev/md0
> analyzing super-block
> disk 0: /dev/sda, 35563520kb, raid superblock at 35563456kb
> 
> Second drive I get:
> 
> Handling md deviice /dev/md1
> analyzing super-block
> disk 0: /dev/sdb, 71686144kb, raid superblock at 71686080kb
> 
> I then type cat /proc/mdstat and get the following:
> 
> Personalities [RAID5]
> read_ahead not set
> md1: inactive sdb [0]
>      71684096 blocks
> md0: inactive sda [0]
>      35561472 blocks
> unused devices: <none>
> 
> If I read this correctly both are inactive when it should be stating
> that they are active.  At this point I am baffled any suggestions or
> possible directions would greatly be appreciated.
> 
> 
> Thanks in advance,
> Ed
> 
> -
> To unsubscribe from this list: send the line "unsubscribe linux-raid" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: (no subject)
  2002-09-11 18:27 (no subject) Eddie Johnson
  2002-09-11 19:50 ` Alvin Oga
  2002-09-11 20:42 ` Neil Brown
@ 2002-09-12  5:48 ` Luca Berra
  2 siblings, 0 replies; 8+ messages in thread
From: Luca Berra @ 2002-09-12  5:48 UTC (permalink / raw)
  To: linux-raid

Eddie Johnson wrote:
> I installed Suse Linux Professional 8 on a HP Netserver LC3 PII/450.  An
> AHA-2940 UW Scsi host adapter with a AIC-78XX Scsi Protocol Chip/50 pin
> high density scsi-2 control.  I have a raid (3 drives) off the host
No, you have an HP NetRaid Adapter (Aka AMI megaraid)
> adapter and a 80 gig scsi drive off the mother board. After launching
> yast2 the first raid has the following device: LD0 raid 5 34730R:
> device_name /dev/sda, vendor megaraid.  Disk two (80 gig drive) has LD1
> raid 0 70006R: device name /dev/sdb vendor the same as above.  There was
> no raidtab file so I created one with the following: >
.........
> If I read this correctly both are inactive when it should be stating
> that they are active.  At this point I am baffled any suggestions or
> possible directions would greatly be appreciated.

you don't need md, mkraid or such,
if you want to configure your hw raid just press Ctrl-M at boot
or start the server from the Navigator CD

L.



^ permalink raw reply	[flat|nested] 8+ messages in thread

* (no subject)
@ 2003-06-04  7:14 Compte centre de calcul UCP
  0 siblings, 0 replies; 8+ messages in thread
From: Compte centre de calcul UCP @ 2003-06-04  7:14 UTC (permalink / raw)
  To: linux-raid

subscribe

-- 
Cordialement,
L'equipe du Service Informatique Recherche
Universite de Cergy-Pontoise
http://www.cdc.u-cergy.fr

^ permalink raw reply	[flat|nested] 8+ messages in thread

* (no subject)
@ 2008-01-16 18:38 Jed Davidow
  0 siblings, 0 replies; 8+ messages in thread
From: Jed Davidow @ 2008-01-16 18:38 UTC (permalink / raw)
  To: linux-raid

unsubscribe linux-raid

^ permalink raw reply	[flat|nested] 8+ messages in thread

* (no subject)
  2017-01-13 10:46   ` [PATCH v3 4/8] x86: stop exporting msr-index.h to userland Nicolas Dichtel
@ 2017-01-13 15:43     ` David Howells
  0 siblings, 0 replies; 8+ messages in thread
From: David Howells @ 2017-01-13 15:43 UTC (permalink / raw)
  To: Nicolas Dichtel
  Cc: dhowells, arnd, linux-kbuild, linux-doc, linux-kernel,
	linux-alpha, linux-snps-arc, linux-arm-kernel,
	adi-buildroot-devel, linux-c6x-dev, linux-cris-kernel,
	uclinux-h8-devel, linux-hexagon, linux-ia64, linux-m68k,
	linux-metag, linux-mips, linux-am33-list, nios2-dev, openrisc,
	linux-parisc, linuxppc-dev, linux-s390, linux-sh, sparclinux,
	linux-xtensa, linux-arc

> -header-y += msr-index.h

I see it on my desktop as /usr/include/asm/msr-index.h and it's been there at
least four years - and as such it's part of the UAPI.  I don't think you can
remove it unless you can guarantee there are no userspace users.

David

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-01-13 15:43 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-09-11 18:27 (no subject) Eddie Johnson
2002-09-11 19:50 ` Alvin Oga
2002-09-11 20:42 ` Neil Brown
2002-09-12  5:48 ` Luca Berra
  -- strict thread matches above, loose matches on Subject: below --
2017-01-09 11:33 [PATCH v2 0/7] uapi: export all headers under uapi directories Arnd Bergmann
2017-01-13 10:46 ` [PATCH v3 0/8] " Nicolas Dichtel
2017-01-13 10:46   ` [PATCH v3 4/8] x86: stop exporting msr-index.h to userland Nicolas Dichtel
2017-01-13 15:43     ` (no subject) David Howells
2008-01-16 18:38 Jed Davidow
2003-06-04  7:14 Compte centre de calcul UCP
2002-08-21 18:48 Eddie Johnson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).