I have a CentOS6.9 Linux server remotely on a VPS Provider and I need to clone my remote server on my local computer as a Virtual Machine for examination purposes.
I made a full server backup without compression to another remote server (rsync.net) by using the following rsync
command:
rsync -auHxv --numeric-ids --delete-after --progress --exclude="/etc/fstab" --exclude="/dev/*" --exclude="/proc/*" --exclude="/sys/*" --exclude="/tmp/*" --exclude="/boot/*" --exclude="/run/*" --exclude="/mnt/*" --exclude="/media/*" --exclude="/backup/*" --exclude="/lost+found" / -e ssh user@server.rsync.net:backup_directory
Would it be possible to use this backup as an image for cloning through Virtual Machine on my local computer, either by using VMWare Workstation
or Virtual Box
or any other Virtual Machine Platform ?