Displaying 1 result from an estimated 1 matches for "alt_root".
Did you mean:
alp_root
2007 Feb 20
2
Backing up ext3 root partition with dd
...e scripts, and is mostly seen
when mirroring the root partition.
Here is the script which reproduces this ext3 corruption after running
it 5-6 times:
------------------------------------------
#!/usr/bin/perl -w
my $ret;
##
## Determine the backup partitions
##
my @temp = `cat /etc/fstab | grep alt_root`;
my (@temp2, @alt_parts, @parts, @part);
my $cnt = 0;
foreach (@temp)
{
@temp2 = split / /;
push @alt_parts, $temp2[0];
}
##
## Determine the active partitions
##
@temp = `cat /etc/fstab | grep Active_Update | grep -v alt_root | grep
-v log | grep -v swap`;
foreach (@temp)
{
@temp2 = spl...