Back up/ clonning/ repack iso

ini adalah OS yang saya cari selama ini.

apakah ada cara untuk memback up/ cloning Endless OS yang sudah saya perlengkap isi softwarenya.

atau ada versi endless OS yang memuat semua aplikasi Endless/sudah terdownload semua.

jadi saya tidak perlu mendownload aplikasi tambahan lagi

nb. kapasitas tidak penting
walaupun kapasitas 1 terabyte sekalipun.

In theory, that should be possible. I haven’t testet it extensively, but this script should allow you to install every application in the repositories:

#!/bin/bash
flatpak search "" --columns=application,branch | while read line
do
	APP=$(echo ${line} | awk '{print $1}')
	BRA=$(echo ${line} | awk '{print $2}')

	echo flatpak install -y ${APP}//${BRA}
done

When you’re done and want to clone the HDD, use the dd command:

  1. Connect the source and destination disk to the same computer
  2. Boot with a live cd
  3. Open a terminal and run:
sudo dd if=/dev/sda of=/dev/sdb bs=1M conv=sync,noerror

Replace sda and sdb with the actual source and destination disk names (use dmesg to find out) and make sure that the destination is at least as big as the source.

1 Like

Selamat mencoba cara ini

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.