The hard drive the backup is being restored to is a freshly partitioned file system so there is not an existing proc or dev directory. I'll try "dd if=/dev/zero of=/dev/hdaX" and see what happens. I guess that clears or formats the drive?
I'll let you know what happens. I just thought the backup script backed up my existing proc and dev if I did the full, interactive backup telling it to backup everything. No biggie.
EDIT: I reviewed the script. Seems it does backup the proc and dev folders. So no problem then. Thanks. See below:
Code: Select all
# these files/directories are always excluded. don't add trailing slashes.
# don't touch it unless you know what you are doing!
# /var/db and /var/cache/edb are intentionally added here. they are listed
# in $default_include_folders
default_exclude_list="
/dev
/lost+found
/mnt
/proc
/sys
/tmp
/usr/portage
/usr/src
/var/log
/var/tmp
/var/db
/var/cache/edb
$stage4Location
`echo $CCACHE_DIR`"
# files/devices/folders, which need to be backed up (preserve folder structure).
# don't touch it unless you know what you are doing! no recursive backup of folders.
# use $default_include_folders instead.
default_include_files="
/dev/null
/dev/console
/home
/mnt
/proc
/sys
/tmp
/usr/portage
/usr/src
/var/log/emerge.log"