This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| deb http://raspbian.raspberrypi.org/raspbian/ buster main contrib non-free rpi | |
| deb http://archive.raspberrypi.org/debian/ buster main | |
| # Uncomment line below then 'apt-get update' to enable 'apt-get source' | |
| #deb-src http://raspbian.raspberrypi.org/raspbian/ buster main contrib non-free rpi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| fdisk -lu | |
| pvscan | |
| vgscan | |
| vgchange -a y | |
| lvscan | |
| mount /dev/ubuntu-vg/root /mnt | |
| mount --bind /dev /mnt/dev | |
| mount --bind /proc /mnt/proc |