Hi,
the problem is, that restore from an mksysb only restores the default and found devices. To get the custom devices back, you need to restore all files from the /dev of the mksysb. Just Google for:
aix restore files mksysb
Else here is an AIX newsletter we use, if we have to do it:
Restoring individual files from a mksysb tape
To restore individual files or directories from a mksysb tape, find out the blocksize of the fourth image. To obtain this information, run the following commands:
cd /tmp
tctl -f /dev/rmt# rewind (# to be replaced by a number)
chdev -l rmt# -a block_size=512
restore -s2 -xqdvf /dev/rmt#.1 ./tapeblksz
cat ./tapeblksz
The output that is given is the blocksize to which the tape drive was set when the mksysb was made.
Next, set the blocksize of the tape drive accordingly by running the following command:
chdev -l rmt# -a block_size=[number in the
./tapeblksz file]
Restore the files or directories by running the following commands:
cd / (if the file is to be restored to its original place)
tctl -f /dev/rmt# rewind
restore -s4 -xqdvf /dev/rmt#.1 ./dir/filename (for one file)
OR
restore -s4 -xqdvf /dev/rmt#.1 ./dir (for all files in dir)
laters
zaxxon