disk-to-disk dump fails on DS5800/DS5400

Andreas Karrer karrer at bernina.ethz.ch
Fri Feb 8 21:44:41 AEST 1991


On our DECsystem 5840 and 5400, both equipped with RA90 disks and running
Ultrix 4.0, we used to do disk-to-disk backups of the root filesystem using 
the following script:

	#!/bin/sh
	BACKROOT=ra1a
	ROOT=ra0a
	/bin/umount /dev/$BACKROOT >/dev/null 2>&1
	/bin/newfs /dev/r$BACKROOT ra90
	if [ $? = 0 ]; then
        	if [ ! -d /backroot$$ ]; then
                	mkdir /backroot$$
        	fi
        	mount /dev/$BACKROOT /backroot$$
        	cd /backroot$$
        	/bin/dump 0f - /dev/$ROOT|/bin/restore rf - > /dev/console 2>&1
        	cd /
        	umount /backroot$$
        	rmdir /backroot$$
	fi

The partition sizes of /dev/ra0a and /dev/ra1a are exactly identical.

This has suddenly ceased to work. Now we get lots (15+) error messages
(from restore):
	expected next file 4194, got 4193
	expected next file 4205, got 4204
	expected next file 4219, got 4218
	...
	cannot find directory inode 11
	abort? [yn]

Am I missing something? 

+-----------
  Andi Karrer, Communication Systems, ETH Zuerich, Switzerland
  karrer at bernina.ethz.ch



More information about the Comp.unix.ultrix mailing list