Just wondering if you were to restore from a shared mount wouldn't you need to do this step:
"
Setting up the mount and fstab
The Linux convention is to mount removable media from /mnt. Create a directory called /mnt/backup to act as mount point for the share created previously. Using your favourite editor, add an entry to /etc/fstab for the share:
[root@e-smith]# pico /etc/fstab
//servername/sharename /mnt/backup smbfs username=name,password=pword
where "servername" and "sharename" are the name of the PC and the share you created previously. /mnt/backup identifies the mount point, while the username and password pair are the userid and password used to logon to the PC (required for NT and Win2K systems).
"
instead of this step in the retore howto: ???
"
STEP 2: Creating the restore script
As root, in root's home directory, create the following script using your favourite editor:
[root@e-smith]# vi flexbackup_restore
mount /mnt/backup
cd /
/usr/bin/flexbackup -extract /mnt/backup/root.0.YYYYMMDD.dump.gz -files /root/extract-list
umount /mnt/backup
"
Because in the second step it just says to mount /mnt/backup but if you have not put it in the fstab then you cannt mount it right?
Sorry for the newbie questions

Cyrus Bharda