Difference between revisions of "Debian-wheezy-xfce-6 Build Notes"

From odroid US
Jump to: navigation, search
(Created page with "TBD")
 
Line 1: Line 1:
TBD
+
debian-wheezy-xfce-6.1 was build starting with debian-wheezy-base-6.1
 +
 
 +
Boot the odroid, login on the serial console as root. 
 +
 
 +
Fix permissions on resolv.conf so non-root users can resolve hostnames/URLs
 +
<pre>
 +
chmod oag+r /etc/resolv.conf
 +
</pre>
 +
 
 +
Install xfce and web browser:
 +
<pre>
 +
apt-get install  xfce4 xfce4-goodies xdm iceweasel
 +
 
 +
</pre>
 +
 
 +
Paste this "here document" into the console to create xorg.conf.  Use an editor if you prefer.  nano is installed.
 +
<pre>
 +
cat <<EOF_MARK >>/etc/X11/xorg.conf
 +
    Section "Device"
 +
      identifier "FBDEV"
 +
      Driver "fbdev"
 +
      Option "fbdev" "/dev/fb6"
 +
    EndSection
 +
 
 +
    Section "Screen"
 +
      identifier "Default Screen"
 +
      Device "FBDEV"
 +
      DefaultDepth 16
 +
    EndSection
 +
EOF_MARK
 +
 
 +
</pre>
 +
 
 +
reboot

Revision as of 19:45, 2 April 2013

debian-wheezy-xfce-6.1 was build starting with debian-wheezy-base-6.1

Boot the odroid, login on the serial console as root.

Fix permissions on resolv.conf so non-root users can resolve hostnames/URLs

chmod oag+r /etc/resolv.conf

Install xfce and web browser:

apt-get install  xfce4 xfce4-goodies xdm iceweasel 

Paste this "here document" into the console to create xorg.conf. Use an editor if you prefer. nano is installed.

cat <<EOF_MARK >>/etc/X11/xorg.conf
    Section "Device"
       identifier "FBDEV"
       Driver "fbdev"
       Option "fbdev" "/dev/fb6"
    EndSection

    Section "Screen"
       identifier "Default Screen"
       Device "FBDEV"
       DefaultDepth 16
    EndSection
EOF_MARK

reboot