Table of Contents

mirrors

http://ftp.daum.net/ubuntu/

10.04 with gma500

xorg.conf

Section "Monitor"
        Identifier      "Configured Monitor"
EndSection
 
Section "Screen"
        Identifier      "Default Screen"
        Monitor         "Configured Monitor"
        Device          "Configured Video Device"
EndSection
 
Section "Device"
        Identifier      "Configured Video Device"
        Option "AccelMethod" "EXA"
        Option "DRI" "on"
        Option "MigrationHeuristic" "greedy"
EndSection
 
Section "ServerFlags"
        Option  "DontZap"       "False"
EndSection
$ gtf 1280 1024 60

grub

 sudo vi /boot/grub/menu.lst
title           Ubuntu 9.04, kernel 2.6.28-14-generic
uuid            ...
kernel          /boot/vmlinuz-2.6.28-14-generic root=UUID=... ro quiet quiet nosplash mem=786mb
initrd          /boot/initrd.img-2.6.28-14-generic

compiz

$ sudo apt-get install compiz compizconfig-settings-manager fusion-icon 

add psb to compiz whitelist

$ sudo vi /usr/bin/compiz
...
# Driver whitelist
WHITELIST="psb nvidia intel ati radeon i810 fglrxi"
...

단축키 모음

꾸미기

바탕화면

테마

9종 테마팩

xfce theme example

font

application twiks

그놈2 환경에서 compiz twik

compiz 환경 설정; gconf-editor

compiz 없이 AWN 쓰기 위해

firefox

mplayer

touchpad

아래 내용의 파일 생성

sudo vi /etc/hal/fdi/policy/shmconfig.fdi
<?xml version="1.0" encoding="UTF-8"?>
<deviceinfo version="0.2">
  <device>
    <match key="input.x11_driver" string="synaptics">
      <merge key="input.x11_options.SHMConfig" type="string">True</merge>
    </match>
  </device>
</deviceinfo>

~/bin/ToggleTouchpad 를 아래 내용으로 생성 후 적당한 단축키에 bind

#!/bin/bash
 
STATE=`synclient -l | grep TouchpadOff | awk '{ print $3 }'`
 
if [ "$STATE" == "0" ]
then
synclient TouchpadOff=1 | notify-send -i "touchpad" "터치패드" "터치패드를 껏습니다."
else
synclient TouchpadOff=0 | notify-send -i "touchpad" "터치패드" "터치패드를 켰습니다."
fi

test

2D

$ x11perf --aa10text
Sync time adjustment is 0.2049 msecs.
 400000 reps @   0.0153 msec ( 65200.0/sec): Char in 80-char aa line (Charter 10)
 400000 reps @   0.0152 msec ( 66000.0/sec): Char in 80-char aa line (Charter 10)
 400000 reps @   0.0154 msec ( 65100.0/sec): Char in 80-char aa line (Charter 10)
 400000 reps @   0.0153 msec ( 65500.0/sec): Char in 80-char aa line (Charter 10)
 400000 reps @   0.0152 msec ( 66000.0/sec): Char in 80-char aa line (Charter 10)
2000000 trep @   0.0153 msec ( 65500.0/sec): Char in 80-char aa line (Charter 10)

3D

with compiz

$ glxgears
1116 frames in 5.0 seconds = 223.110 FPS
1457 frames in 5.0 seconds = 291.243 FPS
1317 frames in 5.0 seconds = 263.272 FPS

suspend resume error fix

운용팁

시스템이 멈췄을때의 대처법

references