Hello,
I am running Ubuntu Jaunty on the BeagleBoard Rev C3.
I followed the Ubuntu tutorial and also edited the xorg.conf file and
rebooted several times to make sure it installed. I verified through
nano that the contents of it are correct. When I do xvinfo I get an
error that there is no display.
I am running Ubuntu Jaunty on the BeagleBoard Rev C3.
I followed the Ubuntu tutorial and also edited the xorg.conf file and
rebooted several times to make sure it installed. I verified through
nano that the contents of it are correct. When I do xvinfo I get an
error that there is no display.
So I boot up the BeagleBoard and I see the console prompt through
serial port.
It asks for username and password and I enter it in correctly. Now I
see terminal through the serial port ( I'm using minicom). What
terminal commands should I enter to start up Xorg or GDM? Or is GDM or
Xorg running by default?
Based on that, your seeing the correct message from xvinfo...
if you installed xorg/gdm via, "sudo apt-get install gdm lxde" it
should be running by default on the next boot.. "top" would prove
it.. Your boot message should have a "starting gdm", "starting xorg"
or something... can't seem to grep the right syntax at the moment...
Installed XVNC server : sudo apt-get install x11vnc
Reboot
Setup the gateway over USB
Set IP Address: sudo ifconfig usb0 10.10.10.11
Add gateway : sudo route add default gw 10.10.10.10
Then on my host computer I did
Set IP address : sudo ifconfig usb0 10.10.10.10
Test connection, this should return succesful ping times: ping
10.10.10.11
Back to BeagleBoard I did:
Start X11 server: x11vnc -create
I looked at the x11vnc output and saw that my port was 5900
Back to host computer
sudo apt-get install xtightvncviewer
xtightvncviewer 10.10.10.11:5900
And all of a sudden the screen of the BeagelBoard popped up on my host
computer and I was able to do everything. Hoorah!
I'll probably post up a tutorial or a wiki detailing this all. Thanks
for all the assistance!