Bloved Madman@lemmy.world to Linux@lemmy.mlEnglish · 10 months agoSurface Laptop 3 running Kubuntu, such an improvement over what it was "designed" for.lemmy.worldimagemessage-square73fedilinkarrow-up1345arrow-down119
arrow-up1326arrow-down1imageSurface Laptop 3 running Kubuntu, such an improvement over what it was "designed" for.lemmy.worldBloved Madman@lemmy.world to Linux@lemmy.mlEnglish · 10 months agomessage-square73fedilink
minus-squareMonkderZweite@feddit.chlinkfedilinkarrow-up2·edit-29 months agoFrom your live stick, bevor install, do # cp /dev/your-disk /your/image.img or to save space: # gzip < /dev/your-disk > /your/image.img.gz or faster but might need to install it first: # lz4 /dev/your-disk /your/image.img.lz4 To get a list of your disks, there’s lsblk. I recommend partition-wise backup, it’s always a bother to extract/shrink individual partitions in images of whole disks. That would be /dev/your-disk1 etc
From your live stick, bevor install, do
# cp /dev/your-disk /your/image.img
or to save space:
# gzip < /dev/your-disk > /your/image.img.gz
or faster but might need to install it first:
# lz4 /dev/your-disk /your/image.img.lz4
To get a list of your disks, there’s
lsblk
.I recommend partition-wise backup, it’s always a bother to extract/shrink individual partitions in images of whole disks. That would be
/dev/your-disk
1 etc