On Fri, 2023-08-18 at 09:17 +0100, pete wrote: > https://browse-tutorials.com/tutorial/arch-linux-move-root-partition-hdd-ssd
Hi Pete,
consider to change
cp -a /mnt/hdd_mount/* /mnt/ssd_mount/
to
cp -Tai /mnt/hdd_mount/ /mnt/ssd_mount/
Why?
-T just in case a source mount point should contain hidden files
-i because you never know ;)
Regards,
Ralf
