this post was submitted on 06 Sep 2023
17 points (100.0% liked)
Linux
48012 readers
590 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
There are a bunch of options most are kind of complicated. As mentioned here before ventoy will get clonezilla running from a network boot. Without clonezilla, a few things I can think of are:
#1 just clone the system while it's running. Get a large external drive and sudo dd if=/dev/your_internal_disk of=/path/to/disk/image.img
If you want you can boot into single user mode to do this, it's will be less risky and you may be able to mount root read only. Note that this carries no risk for the source machine if dd is used correctly, only that the filesystem of a target machine may have to be repaired after the clone.
If you'd rather just clone partitions that would work this way as well.
The target machine would need a live bootable is to copy the disk image onto the target disk. Dd is a inefficient option but it's on almost every system. Use partclone instead of you can, same as clonezilla uses.
#2 expose your disks with network block devices. You'll need kernel support I think, but then it's basically the same as #1 but you can do the clone from a remote machine
#3 build empty filesystems on the other machines just copy all of the files. You can use nfs or samba but it would probably be better to tar everything to preserve file ownership and permissions using these protocols. Rsync would probably be best. after copying the files a bootloader would need to be installed and configured.