Unofficial Ubuntu 19.04 alpha image for the Raspberry Pi 3 now available
Posted: Wed Jan 30, 2019 6:33 pm
An unofficial Ubuntu 19.04 alpha image is available for testing on the Raspberry Pi 3. This image uses the generic arm64 kernel which is booted through GRUB2. It works on all Pi 3 models, as well as the Pi 2 v1.2 (which uses the same SoC as the 3B). The default username is 'ubuntu', default password is 'ubuntu'.
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:
If booting from USB, run the following instead:
Delete the second partition (d, 2), recreate it using the defaults (n, 2, p, enter, enter)and then write the changes (w). Reboot your Pi and then run:
If booting from USB, run the following instead:
Reboot and the entire of the microSD card or USB storage device should be available.
This is a minimal ubuntu-standard image. If you want a full desktop environment, go ahead and run one of the following commands:
If you want only the 'core' of one of the desktop environments without the recommended software (such as Firefox), then add '--no-install-recommends' to the end of one of the above commands. For example, to install a minimal Lubuntu desktop, run:
Enjoy!
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