I've got an Amazon EC2 m1.small that I am trying to migrate over to t2.small. I'm aware that because of the virtualization type being different on both types that there is no direct upgrade path.
Someone over at https://forums.aws.amazon.com/thread.jspa?threadID=155526 suggested that I could take a snapshop of each and then create a volume from those snapshots, mount the volumes on a common server instance, remove the /boot
folder from the /source
system (old system) and remove the rest of the data from the new system other than /boot
and then run: rsync -aAXHPv /mnt/source/ /mnt/target
Having said that I'm trying to mount each disk to perform the rsync
and I'm running into a problem.
It seems that /dev/xvdn
(new mnt/target
) has a partition (dev/xvdn1
) but dev/xvdo
does not so when I try to mount the disk /dev/xvdn
I can't and get an error that it's already been mounted or is busy.
I think the problem is that /dev/xvdn
is auto mounting on boot but I don't know how to stop that from happening now am I really sure that's the issue.
Any help would be appreciated.
Thanks!