Changes between Version 4 and Version 5 of linux/debootstrap-install
- Timestamp:
- 2020-06-16T06:21:10Z (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
linux/debootstrap-install
v4 v5 36 36 tar xzf - 37 37 debootstrap/debootstrap --include locales,linux-image-amd64,grub-pc --arch amd64 buster /mnt http://mirror.yandex.ru/debian 38 39 mount -o bind /dev /mnt/dev40 mount -o bind /sys /mnt/sys41 mount -o bind /proc /mnt/proc42 38 43 39 #/mnt/debootstrap/debootstrap.log … … 84 80 chroot /mnt apt-get update 85 81 echo 'GRUB_CMDLINE_LINUX_DEFAULT="--verbose nosplash debug"' >>/mnt/etc/default/grub 82 for d in dev sys proc; do mount -o bind /${d} /mnt/${d}; done 83 86 84 chroot /mnt update-initramfs -u 87 85 chroot /mnt update-grub2