I'v made a couple different Ubuntu 15.04 Vivid images for the Raspberry Pi 2 using a modified version of Ryan Finnie's (fo0bar) build script. http://www.finnie.org/software/raspberr ... d-image.sh
This is NOT the Snappy Ubuntu Core image
I'm not a developer in any real capacity, so providing any type of support is out of the question. Mostly because I don't have enough knowledge or time to really be helpful. I would have to google the answer just like you. Please feel free to use, test and distribute these images as you see fit. The only thing I ask of you. That you please post your feedback and try to be helpful to other users of these Raspberry Pi2 Ubuntu 15.04 (vivid) images.
History
If you decide to use these images make sure to read Ryan's post over at the official Ubuntu wiki. He provides allot of useful Raspberry Pi 2 specific details https://wiki.ubuntu.com/ARM/RaspberryPi. Another good read is his original blog posting http://www.finnie.org/2015/02/16/raspbe ... available/.
Downloads
• Ubuntu 15.04 (vivid) server image for Raspberry Pi 2
• Ubuntu 15.04 (vivid) standard image for Raspberry Pi 2
Checksum: http://www.mrengles.com/raspberry/ubunt ... SHA256SUMS
Downloads: http://www.mrengles.com/raspberry/ubuntu/vivid/
Update: All images are now being created with fo0bar's Raspberry specific packages from step 6. You will no longer need to install them during your initial setup.
The modified build scripts used to create these images can be downloaded at http://www.mrengles.com/raspberry/ubuntu/vivid/Scripts/
Username: ubuntu
Password: ubuntu
Install
Installation is the same as every other Raspberry Pi image.
https://www.raspberrypi.org/documentati ... /README.md
Setup
After I make and boot my Ubuntu sdcard for the first time, here are the basic steps taken to setup my Raspberry PI 2.
1. Enable the root user.
Code: Select all
sudo passwd root
Code: Select all
usermod -l robert -m -d /home/robert ubuntu
groupmod -n robert ubuntu
passwd robert
Code: Select all
sudo passwd -dl root
Code: Select all
sudo nano /etc/hosts
sudo nano /etc/hostname
Code: Select all
sudo dpkg-reconfigure tzdata
Code: Select all
sudo apt-get update && sudo apt-get upgrade && sudo apt-get dist-upgrade
sudo apt-get install linux-firmware libraspberrypi-bin libraspberrypi-bin-nonfree libraspberrypi-dev
sudo ln -s /usr /opt/vc
Code: Select all
sudo apt-get install tasksel
Code: Select all
https://www.raspberrypi.org/forums/viewtopic.php?f=29&t=44177
Code: Select all
sudo apt-get install dphys-swapfile
Code: Select all
sudo shutdown -r now
11. Install a desktop environment. This will take some time, so grab a coffee or beer.
Code: Select all
sudo apt-get install lubuntu-desktop #or
sudo apt-get install mate-desktop #or
sudo apt-get install xubuntu-desktop #etc
Code: Select all
sudo nano /etc/X11/xorg.conf
Code: Select all
Section "Device"
Identifier "Raspberry Pi FBDEV"
Driver "fbturbo"
Option "fbdev" "/dev/fb0"
Option "SwapbuffersWait" "true"
EndSection
Code: Select all
sudo apt-get install xserver-xorg-video-fbturbo
Code: Select all
sudo shutdown -r now
I hope you have as much success with this image as myself.
Robert aka Mrengles