Displaying 20 results from an estimated 346 matches for "md1".
Did you mean:
md
2007 Apr 25
2
Raid 1 newbie question
Hi
I have a Raid 1 centos 4.4 setup and now have this /proc/mdstat output:
[root at server admin]# cat /proc/mdstat
Personalities : [raid1]
md2 : active raid1 hdc2[1] hda2[0]
1052160 blocks [2/2] [UU]
md1 : active raid1 hda3[0]
77023552 blocks [2/1] [U_]
md0 : active raid1 hdc1[1] hda1[0]
104320 blocks [2/2] [UU]
What happens with md1 ?
My dmesg output is:
[root at server admin]# dmesg | grep md1
Kernel command line: ro root=/dev/md1 rhgb quiet
md: created md1
raid1: raid set md1...
2007 Sep 25
2
mdadm problem.
...y doing a CentOS-4 install on /dev/sda1 as root, and with
/dev/sda2 as my swap.
I finish the install, yum update, and then I want to make the mirrors.
I copy the partition table from one disk to the other:
# sfdisk -d /dev/sda | sfdisk /dev/sdb
I create my metadevices:
# mdadm -Cv -l1 -n2 /dev/md1 /dev/sdb1 missing
# mdadm -Cv -l1 -n2 /dev/md2 /dev/sdb2 missing
I create my filesystems:
# mkfs.ext3 /dev/md1
# mkswap /dev/md2
I change the /etc/fstab to use /dev/md1 for / and /dev/md2 for swap.
I change the /etc/grub.conf to use /dev/md1 for the root= parameter on my kernel.
I build myself...
2010 Apr 24
2
include/exclude Problem
...T:/dest
There are some huge files in /home which I want to exclued
I have set up an include/exclude file but I still get too much files. Also
the excluded file is synced
/usr/bin/rsync -av --exclude-from=excl --delete --numeric-ids --relative
--delete-excluded / REOMOTEHOST:/dest
cat excl
+ /mnt/md1/backup/akazia.0/
+ /mnt/md1/backup/akazia.0/etc/
+ /mnt/md1/backup/akazia.0/etc/**
+ /mnt/md1/backup/akazia.0/home/
+ /mnt/md1/backup/akazia.0/home/**
+ /mnt/md1/backup/akazia.0/usr/local/
+ /mnt/md1/backup/akazia.0/usr/local/**
- /mnt/md1/backup/akazia.0/home/installsrc/opensuse112.iso
- *
Any hi...
2006 Aug 28
2
Cannot get simple data.frame binding.
...t;)
bb <- length(names(data1))
mat1 <- as.matrix(data1[,aa:bb])
food <- apply( mat1, 1, sum , na.rm=T)
food
abba <- data.frame(data1[, 1:6], food)
abba
----------------------------------
Real life problem
>load("C:/start/R.objects/partly.corrected.materials.Rdata")
> md1<-partly.corrected.materials
> aa <- which(names(md1)=="oaks")
> bb <- length(names(md1))
>
> # sum the values of the "other" variables
> mat1 <- as.matrix( md1[, aa:bb] )
> other <- apply(mat1,1, sum, na.rm=T)
> ire1 <- data.frame(md1[, 1:...
2015 Mar 17
3
unable to recover software raid1 install
Hello All,
on a Centos5 system installed with software raid I'm getting:
raid1: raid set md127 active with 2 out of 2 mirrors
md:.... autorun DONE
md: Autodetecting RAID arrays
md: autorun.....
md : autorun DONE
trying to resume form /dev/md1
creating root device
mounting root device
mounting root filesystem
ext3-fs : unable to read superblock
mount : error mo...
2007 May 06
1
OT: Quick ext3 command
Hello,
Sorry for the off-topic, but I've just installed CentOS 5 on my home
box and I want to put the journal on another drive. I created a
software RAID-1 device, /dev/md1, and formatted an ext3 file
system on it. Now I want to move the journal to /dev/hda5. I've
googled for this and the process appears to be:
mkfs.ext3 -b 4096 -O journal_dev /dev/hda5
mkfs.ext3 -b 4096 -J device=/dev/hda5 /dev/md1
Now, here's the fun part. I've already put data on /dev...
2009 Jul 02
4
Upgrading drives in raid 1
...At this point drive c has 250gb worth of partioned space in raid/lvm.
I then add a 500gb drive b and repeat above pulling out drive a.
Now I have two 500gb drives (b and c) with 250gb worth of partitions
mirrored.
I am thinking I would next forget about md0 (the boot part) and concentrate
on the md1, where the whole system lies.
# mdadm --grow /dev/md1 --size=max
I believe this will grow out the size of md1 to fill the 500gb of the drive.
I would then wrestle with expanding the LVMs that fill the md1 up as I wish.
After that, I would add drive 'a' 500gb to the mix by cloning the pa...
2009 Apr 28
2
new install and software raid
Is there a reason why after a software raid install (from kickstart)
that md1 is always unclean. md0 seems fine.
boot screen says md1 is dirty and
cat /proc/mdstat show md1 as being rebuilt.
Any ideas?
Jerry
--------------- my kickstart --------------
echo "bootloader --location=mbr --driveorder=$HD1SHORT --append=\"rhgb
quiet\"...
2006 Mar 14
2
Help. Failed event on md1
Hi all,
This morning I received this notification from mdadm:
This is an automatically generated mail message from mdadm
running on server-mail.mydomain.kom
A Fail event had been detected on md device /dev/md1.
Faithfully yours, etc.
In /proc/mdstat I see this:
Personalities : [raid1]
md1 : active raid1 sdb2[2](F) sda2[0]
77842880 blocks [2/1] [U_]
md0 : active raid1 sdb1[1] sda1[0]
305088 blocks [2/2] [UU]
unused devices: <none>
Pls help me. What should I do?
Thank you very much,...
2016 Mar 12
4
C7 + UEFI + GPT + RAID1
Hi list,
I'm new with UEFI and GPT.
For several years I've used MBR partition table. I've installed my
system on software raid1 (mdadm) using md0(sda1,sdb1) for swap,
md1(sda2, sdb2) for /, md2 (sda3,sdb3) for /home. From several how-to
concerning raid1 installation, I must put each partition on a different
md devices. I've asked times ago if it's more correct create the md
device, partitioning it and create fs on each partition created on md
device:
m...
2010 Jul 01
1
Superblock Problem
...ing: Attempted to kill init!
I booted the server (rescue mode) with CentOS 5.4 x64 i have used to
initially install it. It recognizes all the RAID1 partitions i have.
cat /mnt/sysimage/proc/mdstat
============================
md3 : active raid1 sdb2[1] sda2[0]
2048192 blocks [2/2] [UU]
md1 : active raid1 sdb3[1] sda3[0]
486134848 blocks [2/2] [UU]
md0 : active raid1 sdb1[0] sda1[1]
200704 blocks [2/2] [UU]
unused devices: <none>
cat /mnt/sysimage/boot/grub/menu.lst
===================================
# grub.conf generated by anaconda
#
# Note that you do not h...
2012 Aug 13
3
Using the effects package to plot logit probabilities
...run a logit model and plot the probability curve for a number
of the important predictors. I'm trying to do this
with the Effects package.
df=data.frame(income=c(5,5,3,3,6,5),
won=c(0,0,1,1,1,0),
age=c(18,18,23,50,19,39),
home=c(0,0,1,0,0,1))
str(df)
md1 = glm(factor(won) ~ income + age + home,
data=df, family=binomial(link="logit"))
summary(md1)
plot(effect("income", md1), grid=TRUE)
But I want to know how to plot a graph so that it shows the probability of
won (response) based on income (or any of the other predi...
2008 Aug 29
3
new software raid installs
I have noticed that when I do software raid installed (RAID1)
that I reboot and one of the first things it says is
md1 is not in sync doing background reconstruction...
md0 is my /root partition
md1 is my /home partition
why would md1 not be in sync after an install.
Jerry
2008 Apr 01
1
RAID1 migration - /dev/md1 is not there
I am trying to convert an existing IDE one-disk system to RAID1 using the
general strategy found here:
http://lists.centos.org/pipermail/centos/2005-March/003813.html
But I am stuck on one thing - when I went to create the second md device with
mdadm,
# mdadm --create /dev/md1 --level=1 --raid-devices=2 /dev/hdb2 missing
mdadm: error opening /dev/md1: No such file or directory
And indeed, ls /dev/md* shows only md0, which worked fine.
I do have the 'raid1' kernel module loaded.
What am I missing? Do I need to create the nodes manually now?
thanks
-S
2005 Jun 05
11
Cannot open root device
...mailing archive.
This is the start command:
''xm create -c ttyvm'' where ttyvm is the config file
It starts booting and then halts with the error:
Root-NFS: No NFS server available, giving up.
VFS: Unable to mount root fs via NFS, trying floppy.
VFS: Cannot open root device "md1" or unknown-block(2,0)
Please append a correct "root=" boot option
Kernel panic - not syncing: VFS: Unable to mount root fs on
unknown-block(2,0)
My hd is a scsi HD known as md1 to the Xen host, output of ''df'':
Filesystem 1K-blocks Used Available Us...
2007 Nov 29
1
RAID, LVM, extra disks...
Hi,
This is my current config:
/dev/md0 -> 200 MB -> sda1 + sdd1 -> /boot
/dev/md1 -> 36 GB -> sda2 + sdd2 -> form VolGroup00 with md2
/dev/md2 -> 18 GB -> sdb1 + sde1 -> form VolGroup00 with md1
sda,sdd -> 36 GB 10k SCSI HDDs
sdb,sde -> 18 GB 10k SCSI HDDs
I have added 2 36 GB 10K SCSI drives in it, they are detected as sdc and
sdf.
What should I do...
2003 Aug 06
2
Re: ext3 badness in 2.6.0-test2
...the journal aborted, and then nfsd Oopsed inside ext3.
I rebooted and fscked the filesystem and it found nothing interesting
- see output below.
So I suspect ext3 has a problem somewhere.
I'll see if I can break it again :-)
NeilBrown
Aug 6 15:22:05 adams kernel: EXT3-fs error (device md1): ext3_add_entry: bad entry in directory #41
009295: rec_len is smaller than minimal - offset=0, inode=3265411686, rec_len=0, name_len=0
Aug 6 15:22:05 adams kernel: Aborting journal on device sda4.
Aug 6 15:22:05 adams kernel: ext3_abort called.
Aug 6 15:22:05 adams kernel: EXT3-fs abort (devic...
2012 Jul 22
1
btrfs-convert complains that fs is mounted even if it isn't
Hi,
I''m trying to run btrfs-convert on a system that has three raid
partitions (boot/md1, swap/md2 and root/md3). When I boot a rescue
system from md1, and try to run "btrfs-convert /dev/md3", it complains
that /dev/md3 is already mounted, although it definitely is not. The
only partition mounted is /dev/md1 because of the rescue system. When I
replicate the setup in a lo...
2008 Nov 26
2
Reassemble software RAID
I have a machine on CentOS 5 with two disks in RAID1 using Linux software
RAID. /dev/md0 is a small boot partition, /dev/md1 spans the rest of the
disk(s). /dev/md1 is managed by LVM and holds the system partition and
several other partitions. I had to take out disk sda from the RAID and low
level format it with the tool provided by Samsung. Now I put it back and
want to reassemble the array.
Machine boots fine from...
2019 Feb 25
7
Problem with mdadm, raid1 and automatically adds any disk to raid
Hi.
CENTOS 7.6.1810, fresh install - use this as a base to create/upgrade new/old machines.
I was trying to setup two disks as a RAID1 array, using these lines
mdadm --create --verbose /dev/md0 --level=0 --raid-devices=2 /dev/sdb1 /dev/sdc1
mdadm --create --verbose /dev/md1 --level=0 --raid-devices=2 /dev/sdb2 /dev/sdc2
mdadm --create --verbose /dev/md2 --level=0 --raid-devices=2 /dev/sdb3 /dev/sdc3
then I did a lsblk and realized that I used --level=0 instead of --level=1 (spelling mistake)
The SIZE was reported double as I created a striped set by mistake, yet I...