Install Ubuntu 14.04.3 GUI in Beaglebone Black Board......

First, I installed Ubuntu 14.04.3 in beaglebone black board.
Then, I tried to install GUI on this board, but I failed.
Searching the instructions how to install GUI, I found this question in this group:

https://groups.google.com/forum/#!searchin/beagleboard/ubuntu$2014.04$20gui/beagleboard/eSZgRa65L-I/-1tEMq-IKUgJ

So, I tried to install xorg.conf. Here is the result:

login as: ubuntu
Ubuntu 14.04.3 LTS

rcn-ee.net console Ubuntu Image 2015-09-11

Support/FAQ: http://elinux.org/BeagleBoardUbuntu

default username:password is [ubuntu:temppwd]

ubuntu@192.168.7.2’s password:
Welcome to Ubuntu 14.04.3 LTS (GNU/Linux 4.1.6-ti-r15 armv7l)

  • Documentation: https://help.ubuntu.com/
    Last login: Mon Oct 5 00:51:32 2015 from 192.168.7.1
    ubuntu@arm:~$ cd /opt/scripts/tools/graphics/
    ubuntu@arm:/opt/scripts/tools/graphics$ ./ti-tilcdc.sh

Installing: xserver-xorg-video-modesetting x11-xserver-utils
[sudo] password for ubuntu:
Err http://repos.rcn-ee.com trusty InRelease

Err http://repos.rcn-ee.com trusty Release.gpg
Could not resolve ‘repos.rcn-ee.com
Err http://ports.ubuntu.com trusty InRelease

Err http://ports.ubuntu.com trusty-updates InRelease

Err http://ports.ubuntu.com trusty Release.gpg
Could not resolve ‘ports.ubuntu.com
Err http://ports.ubuntu.com trusty-updates Release.gpg
Could not resolve ‘ports.ubuntu.com
Reading package lists… Done
W: Failed to fetch http://ports.ubuntu.com/ubuntu-ports/dists/trusty/InRelease

W: Failed to fetch http://ports.ubuntu.com/ubuntu-ports/dists/trusty-updates/InRelease

W: Failed to fetch http://repos.rcn-ee.com/ubuntu/dists/trusty/InRelease

W: Failed to fetch http://repos.rcn-ee.com/ubuntu/dists/trusty/Release.gpg Could not resolve ‘repos.rcn-ee.com

W: Failed to fetch http://ports.ubuntu.com/ubuntu-ports/dists/trusty/Release.gpg Could not resolve ‘ports.ubuntu.com

W: Failed to fetch http://ports.ubuntu.com/ubuntu-ports/dists/trusty-updates/Release.gpg Could not resolve ‘ports.ubuntu.com

W: Some index files failed to download. They have been ignored, or old ones used instead.
Reading package lists… Done
Building dependency tree
Reading state information… Done
E: Unable to locate package xserver-xorg-video-modesetting
E: Unable to locate package x11-xserver-utils
ubuntu@arm:/opt/scripts/tools/graphics$

I don’t know anything why this message log continuously stated…
NEED SOME(or MUCH MORE) HELP!!!

See that silver ethernet connector next to the 5volt dc power
supply... Plug that into your network..

sudo ifconfig -a
sudo dhclient eth0

Regards,

spits coke at screen

I had the same issue.

After adding the following line to the /etc/hosts file solved the issue:

91.189.88.151 ports.ubuntu.com

Source of the solution: http://talk.radxa.com/topic/313/solved-issue-with-ports-ubuntu-com/22

G.

I’m running bone-ubuntu-14.04.3-console-armhf-2015-12-11-2gb.img. My BBB is connected to my LAN with an Ethernet cable to a router that is configured to pickup DNS from the WAN from my ISP. My installation negotiated a valid DHCP lease, however, it couldn’t resolve DNS. When I inspected /etc/resolv.conf, it showed,

Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)

DO NOT EDIT THIS FILE BY HAND – YOUR CHANGES WILL BE OVERWRITTEN

nameserver 192.168.1.1

where 192.168.1.1 is not valid on my network. To solve this problem, I edited /etc/resolvconf/resolv.conf.d/head to add the DNS server entries for my network,

nameserver 192.168.2.1
nameserver 8.8.8.8

and rebooted. This had the effect of adding the nameserver entries to /etc/resolv.conf, and Ubuntu could resolve DNS.