Changes between Version 5 and Version 6 of linux/debootstrap-install
- Timestamp:
- 2020-06-16T06:29:20Z (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
linux/debootstrap-install
v5 v6 81 81 echo 'GRUB_CMDLINE_LINUX_DEFAULT="--verbose nosplash debug"' >>/mnt/etc/default/grub 82 82 for d in dev sys proc; do mount -o bind /${d} /mnt/${d}; done 83 84 chroot /mnt update-initramfs -u85 83 chroot /mnt update-grub2 86 84 … … 98 96 umount /mnt/proc 99 97 chroot /mnt apt-get -y install lvm2 100 98 for d in proc; do mount -o bind /${d} /mnt/${d}; done 99 chroot /mnt update-initramfs -u 101 100 umount -R /mnt 102 101 sync