XFCE

From OLPC
Revision as of 09:45, 26 January 2008 by 84.165.69.72 (talk) (Install Packages: various adjustments)
Jump to: navigation, search

XCFE is a lightweight but powerful desktop environment that will work well on the XO. The following is a tutorial for using XFCE on the XO based on the article from the Free Like GNU article and several forum posts.

Preamble

Please read the following steps before proceeding to make sure you understand what is involved! We take no responsibility for you making your XO unbootable. Although the process is reasonably safe for your XO, you should know how to and have the ability to wipe the XO and start fresh using a USB stick incase you get into trouble!

Instructions

Get Root

  • Establish a connection to the internet. You will need the ability to connect to the internet to retrieve and update files from the OPLC's repositories. "yum" is the command that will retrieve the files you request and it will automatically install them. You will need to have "root" access to use yum.
  • Get "root"! To gain root, use the terminal activity and type "su" at the prompt and hit the return key. Your command prompt will now end with "#" this means you have "root" and can change any file on the computer.
$ su
#

Install Packages

  • Install xfce, this will give you a very basic desktop environment and the ability to customize it. This will download about 40MBs to ram then install the files automatically.
# yum install xfdesktop xfce-utils xfce-mcs-plugins xfce4-session
  • optional packages: orage (calendar), xfce-mixer (volume control), system-config-date (set datetime/timezone), genmon (generic monitor - can be used to output battery status, for example), systemload (shows CPU and memory usage)
# yum install orage xfce4-mixer system-config-date xfce4-genmon-plugin xfce4-systemload-plugin
  • installing firefox requires that you remove its exclusion from the XO's repository list
# nano /etc/yum.repos.d/olpc-koji-ship2.repo
# yum install firefox
  • tuxpaint, gimp, and gcompris and other popular applications can be found in the repos. Simply install with yum!
# yum install tuxpaint gimp gcompris
  • start tuxpaint with 1024x768 and fullscreen!
$ tuxpaint --1024x768 --fullscreen

Manage WiFi Networks

You can use wifi-radar to manage your wireless connection within xfce

# yum install wifi-radar

You can run wifi-radar through the xfce menu under "Networking". After running it once, a file will be created at /etc/wifi-radar/wifi-radar.conf. Open this file in a text editor, and change the line which reads:

interface = eth1

to read:

interface = eth0

Now, running wifi-radar should allow you to see the available wireless networks and connect to one. You may need to disable the default wireless network manager, by running:

# /etc/init.d/NetworkManager stop

You can permanently disable network manager by

# chkconfig NetworkManager off

If you want to run wifi-radar as a daemon which will automatically connect to a preferred network:

$ wifi-radar -d

Controlling the Backlight

The backlight can be controlled with a simple script:

#!/bin/sh
F="/sys/class/backlight/dcon-bl/brightness"
if [ "$1" -a "$1" -lt 16 -a "$1" -ge 0 ] ; then 
   su -c "echo $1 > $F "
else
   echo -e "useage:\n  $0 number"
   echo "where number is between 0 and 15."
fi

Make XFCE the default environment

  • copy /home/olpc/.xsession-example to /home/olpc/.xsession
#cp /home/olpc/.xsession-example to /home/olpc/.xsession 
  • edit the .xsession file to make xfce start
# nano /home/olpc/.xsession
  • find the commented line that reads #exec xterm
    • below that line, add exec startxfce4 (without quotes or # sign)
  • use CTRL+X to save and exit
  • use CTRL+ALT+BACKSPACE to restart X, starting Xfce

Trouble?

  • If you reboot and get stuck at the XO logo (with circle around it), hold down power to shutdown then power up again.
    • You can prevent this behavior by disabling the startup logo animation:
      • Open the startup animation logo file /etc/init.d/0-boot-anim-start
      • Above the line saying "# i'm the child", change if os.fork() == 0: to if os.fork() == 'debug': to prevent the animation code from being executed
    • You can still have the startup logo animation and launch xfce:
      • Login as root
      • Disable z-boot-anim-stop
chkconfig --del z-boot-anim-stop
      • Create a shell script /etc/init.d/unfreeze.sh with the following content
#!/bin/sh
mount -t sysfs /sys /sys
# unfreeze the display, which gets frozen at the end of the boot-anim
echo 0 >  /sys/devices/platform/dcon/freeze
umount /sys
      • Link /etc/rc.d/rc5.d/S99unfreeze.sh with /etc/init.d/unfreeze.sh
cd /etc/rc.d/rc5.d
ln -s ../init.d/unfreeze.sh /etc/rc.d/rc5.d/S99unfreeze.sh
      • Edit /etc/init.d/z-boot-anim-stop to change the string "5 99 99" to "5 98 98"
      • Add z-boot-anim-stop with the updated sequence number
chkconfig --add z-boot-anim-stop
  • To make the original XO Sugar desktop the default boot again, rename the .xsession file to anything other than .xsession (.xsession.xfce for instance).

References