Changes between Version 4 and Version 5 of linux/debootstrap-install


Ignore:
Timestamp:
2020-06-16T06:21:10Z (4 years ago)
Author:
root
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • linux/debootstrap-install

    v4 v5  
    3636 tar xzf -
    3737debootstrap/debootstrap --include locales,linux-image-amd64,grub-pc --arch amd64 buster /mnt http://mirror.yandex.ru/debian
    38 
    39 mount -o bind /dev /mnt/dev
    40 mount -o bind /sys /mnt/sys
    41 mount -o bind /proc /mnt/proc
    4238
    4339#/mnt/debootstrap/debootstrap.log
     
    8480chroot /mnt apt-get update
    8581echo 'GRUB_CMDLINE_LINUX_DEFAULT="--verbose nosplash debug"' >>/mnt/etc/default/grub
     82for d in dev sys proc; do mount -o bind /${d} /mnt/${d}; done
     83
    8684chroot /mnt update-initramfs -u
    8785chroot /mnt update-grub2