Download the image from here: https://1drv.ms/u/s!Asov5XVfbr4hm1Vh8YBTTey5r8rD
On first boot, GRUB2 will fail to boot Ubuntu because a partition is supposedly missing (even though this partition actually exists). To fix this, enter 'c' to drop to the GRUB2 command prompt, and enter 'reboot'. Once rebooted, you should be able to boot Ubuntu without issue.
This image is configured to be booted from a microSD card. To boot from a USB storage device instead, flash the image to the USB storage device but do not plug it into the Pi immediately. Edit the /etc/fstab of the root partition of your USB storage device and replace 'mmcblk0p' with 'sda'. Save the changes and then plug the USB storage device into the Pi and then boot.
To resize your root partition to make use of your entire microSD card or USB storage device, run:
Code: Select all
sudo fdisk /dev/mmcblk0Code: Select all
sudo fdisk /dev/sdaCode: Select all
sudo resize2fs /dev/mmcblk0p2Code: Select all
sudo resize2fs /dev/sda2This is a minimal ubuntu-standard image. If you want a full desktop environment, go ahead and run one of the following commands:
Code: Select all
sudo apt install lubuntu-desktop
sudo apt install xubuntu-desktop
sudo apt install kubuntu-desktopCode: Select all
sudo apt install lubuntu-desktop --no-install-recommends