Skip to content

Instantly share code, notes, and snippets.

@LeandroFranciscato
Last active September 5, 2018 12:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LeandroFranciscato/81ee3de8a7be9c1c7cf602f4fc0ec3ba to your computer and use it in GitHub Desktop.
Save LeandroFranciscato/81ee3de8a7be9c1c7cf602f4fc0ec3ba to your computer and use it in GitHub Desktop.
Creating your own iso with Systemback

Creating your own iso with Systemback

Installing Systemback on your system

sudo apt-add-repository ppa:nemh/systemback
sudo apt-get update
sudo apt-get install systemback

After the installing process, open the App and select Live System Create option. After the iso's creation, you can burn your usb stick using the option send to target.

Reinstalling

Configure your BIOS to boot the usb stick and select the option Install. Now you just have to define your HD partitions and install the new S.O.

Note

if you are using some UEFI bios/boot option, you might have to install the system without /boot/efi and do it after the installation using the Live optioon of Systemback.

To install grub on a EFI boot partition, do the follow:

  • remember to replace XXX and XX with your /dev/sd correct partition
  • Use Gparted to tag the /boot/efi partition with boot option
  • The EFI partition must be FAT32
sudo mount /dev/sdXXX /mnt
sudo mount /dev/sdXX /mnt/boot/efi
for i in /dev /dev/pts /proc /sys /run; do sudo mount -B $i /mnt$i; done
sudo chroot /mnt
grub-install /dev/sdX
update-grub  
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment