LVMパーティションに単一のディスクを備えたUbuntu 18.04LTSを搭載したサーバーにいます。ブートパーティションはext2、ルートパーティションはボリュームグループベータルートのext4です(以下を参照)。
Filesystem Size Used Avail Use% Mounted on
udev 3.9G 0 3.9G 0% /dev
tmpfs 798M 3.3M 795M 1% /run
/dev/mapper/beta-root 293G 129G 152G 46% /
tmpfs 3.9G 0 3.9G 0% /dev/shm
tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs 3.9G 0 3.9G 0% /sys/fs/cgroup
tmpfs 512M 0 512M 0% /clam-tmp
/dev/sda1 228M 111M 106M 52% /boot
tmpfs 798M 0 798M 0% /run/user/1001
tmpfs 798M 0 798M 0% /run/user/0
Disk /dev/sda: 300 GiB, 322122547200 bytes, 629145600 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x000456c7
Device Boot Start End Sectors Size Id Type
/dev/sda1 * 2048 499711 497664 243M 83 Linux
/dev/sda2 501758 125827071 125325314 59.8G 5 Extended
/dev/sda3 125827072 629145599 503318528 240G 8e Linux LVM
/dev/sda5 501760 125827071 125325312 59.8G 8e Linux LVM
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc nodev,noexec,nosuid 0 0
/dev/mapper/beta-root / ext4 errors=remount-ro,acl 0 1
# /boot was on /dev/sda1 during installation
UUID=9b35bbcc-61f6-410a-bc43-f06516bfedd6 /boot ext2 defaults 0 2
/dev/mapper/beta-swap_1 none swap sw 0 0
tmpfs /dev/shm tmpfs defaults,noexec,nosuid 0 0
tmpfs /clam-tmp tmpfs defaults,noatime,nosuid,nodev,noexec,mode=1777,size=512M 0 0
フルシステムを混合環境(LVMと非LVM)から新しいハードディスク(/ dev/sdbとしましょう)に同じレイアウトでLVMをまったく使用せずに移行するには、理解できる方法がありますか?
サポートありがとうございます!
一言で言えば、私が従うステップは次のとおりです。
インストール Boot-Repair :
Sudo add-apt-repository ppa:yannubuntu/boot-repair
Sudo apt-get update
Sudo apt-get install -y boot-repair
説明に従ってLVMドライブをインストールしてマウントします ここ
Sudo apt-get install software-properties-common
Sudo apt-get install lvm2 #This step may or may not be required.
Sudo pvscan #Use this to verify your LVM partition(s) is/are detected.
Sudo vgscan #Scans for LVM Volume Group(s)
Sudo vgchange -ay #Activates LVM Volume Group(s)
Sudo lvscan #Scans for available Logical Volumes
Sudo mount /dev/YourVolGroup00/YourLogVol00 /YourMountPoint
データを移動するドライブをマウントします
古いドライブから新しいドライブにデータをコピーします。
ブートパーティションをコピーします。
Sudo dd if=/dev/sda1 of=/dev/sdb1 bs=4096
ルートパーティションをコピーします。
Sudo dd if=/dev/beta/root | pv -s 300G | dd of=/dev/sdb2 bs=4096
Sudo boot-repair
リブート
注1:これには非常に時間がかかる場合があります。