Vous n’êtes pas connecté.
![]() |
Code source |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
/dev/md0: Version : 00.90 Creation Time : Tue Sep 1 09:05:20 2009 Raid Level : raid5 Array Size : 1943511296 (1853.48 GiB 1990.16 GB) Used Dev Size : 971755648 (926.74 GiB 995.08 GB) Raid Devices : 3 Total Devices : 3 Preferred Minor : 0 Persistence : Superblock is persistent Update Time : Tue Sep 1 09:05:20 2009 State : clean Active Devices : 3 Working Devices : 3 Failed Devices : 0 Spare Devices : 0 Layout : left-symmetric Chunk Size : 64K UUID : fa566525:b879f9d9:a6207b33:a0e20965 Events : 0.1 Number Major Minor RaidDevice State 0 8 17 0 active sync /dev/sdb1 1 8 33 1 active sync /dev/sdc1 2 8 49 2 active sync /dev/sdd1 |
![]() |
Code source |
1 2 3 4 5 6 |
Personalities : [raid6] [raid5] [raid4] md0 : active (auto-read-only) raid5 sdb1[0] sdd1[2] sdc1[1] 1943511296 blocks level 5, 64k chunk, algorithm 2 [3/3] [UUU] resync=PENDING unused devices: <none> |
![]() |
Code source |
1 2 3 4 5 6 7 8 9 |
# /etc/fstab: static file system information. # # <file system> <mount point> <type> <options> <dump> <pass> proc /proc proc defaults 0 0 /dev/sda1 / ext3 errors=remount-ro 0 1 /dev/sda5 none swap sw 0 0 /dev/hda /media/cdrom0 udf,iso9660 user,noauto 0 0 #manuell eingefügte Zeile; Raid5 /dev/md0 / ext3 defaults 0 0 |
![]() |
Code source |
1 2 |
mkdir /mnt/RAID mount /mnt/md0 /mnt/RAID |
![]() |
Code source |
1 2 3 4 |
mount: wrong fs type, bad option, bad superblock on /dev/md0, missing codepage or helper program, or other error In some cases useful info is found in syslog - try dmesg | tail or so |
![]() |
Code source |
1 |
mount /dev/md0 /mnt/RAID |
![]() |
Code source |
1 2 3 4 5 6 7 8 9 |
mdadm --stop /dev/md0 mdadm --zero-superblock /dev/sdb1 mdadm --zero-superblock /dev/sdc1 mdadm --zero-superblock /dev/sdd1 mdadm --create /dev/md0 -c 128 -l 5 -n 3 /dev/sdb1 /dev/sdc1 /dev/sdd1 -x 0 -f -R aptitude install xfsprogs mkfs.xfs /dev/md0 mkdir /mnt/RAID mount /dev/md0 /mnt/RAID |
![]() |
Code source |
1 |
/dev/md0 /mnt/RAID xfs defaults 0 0 |
Ce message a été modifié 1 fois. Dernière modification effectuée par "Labrat" (1 septembre 2009, 16:08)
![]() |
Code source |
1 2 3 4 5 |
sonnengott:/home/dau# mount /dev/md0 /mnt/RAID mount: wrong fs type, bad option, bad superblock on /dev/md0, missing codepage or helper program, or other error In some cases useful info is found in syslog - try dmesg | tail or so |
Ce message a été modifié 1 fois. Dernière modification effectuée par "Sonni" (1 septembre 2009, 16:16)
![]() |
Code source |
1 2 3 4 5 6 |
mdadm --create /dev/md0 -c 128 -l 5 -n 3 /dev/sdb1 /dev/sdc1 /dev/sdd1 -x 0 -f -R mdadm --detail --scan > /etc/mdadm.conf fdisk -l mkfs.ext3 /dev/md0 mkdir /mnt/RAID mount /dev/md0 /mnt/RAID |
![]() |
Code source |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
sonnengott:/home/dau# cat /proc/mdstat Personalities : [raid6] [raid5] [raid4] md0 : active raid5 sdb1[0] sdd1[2] sdc1[1] 1943511296 blocks level 5, 128k chunk, algorithm 2 [3/3] [UUU] unused devices: <none> sonnengott:/home/dau# mdadm --detail --scan /dev/md0 mdadm: Unknown keyword EMAILADDR /dev/md0: Version : 00.90 Creation Time : Wed Sep 2 08:34:24 2009 Raid Level : raid5 Array Size : 1943511296 (1853.48 GiB 1990.16 GB) Used Dev Size : 971755648 (926.74 GiB 995.08 GB) Raid Devices : 3 Total Devices : 3 Preferred Minor : 0 Persistence : Superblock is persistent Update Time : Wed Sep 2 18:20:37 2009 State : clean Active Devices : 3 Working Devices : 3 Failed Devices : 0 Spare Devices : 0 Layout : left-symmetric Chunk Size : 128K UUID : 487229c4:c2021c5d:c9cc1c39:cf08bea4 Events : 0.8 Number Major Minor RaidDevice State 0 8 17 0 active sync /dev/sdb1 1 8 33 1 active sync /dev/sdc1 2 8 49 2 active sync /dev/sdd1 |
![]() |
Code source |
1 2 |
sonnengott:/home/dau# mkdir /mnt/test2 sonnengott:/home/dau# mount /dev/md0 /mnt/test2 |
![]() |
Code source |
1 2 |
04:00.0 RAID bus controller: Silicon Image, Inc. SiI 3114 [SATALink/SATARaid] Serial ATA Controller (rev 02) sonnengott:/home/dau# |
Ce message a été modifié 2 fois. Dernière modification effectuée par "Sonni" (2 septembre 2009, 18:32)
Ce message a été modifié 1 fois. Dernière modification effectuée par "hurra" (3 septembre 2009, 11:16)
server installiert man normal ohne grafische oberfläche. das ist einfach praktischer, weil du zum administrieren i.d.R. eh nur die shell verwendest (z.b. über putty).
deswegen kann dir hier auch keiner helfen, weil wir solche probleme nicht kennen.![]()
-