User Tools

Site Tools


ubuntu_mini12

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"
...

단축키 모음

  • 윈도키+휠 : 화면 확대 축소
  • 윈도키+m : 전체화면 고대비
  • 윈도키+n : 현재 창 고대비
  • 윈도키+e : 작업공간 펼치기

꾸미기

바탕화면

  • 바탕화면 path : /usr/share/backgrounds
  • xfce 바탕화면 path : /usr/share/xfce4/backdrops

테마

font

application twiks

그놈2 환경에서 compiz twik

compiz 환경 설정; gconf-editor

  • /apps/compiz/plugins/decoration/allscreens/options/shadow_match : “!type=dock&any”
  • /apps/panel/toplevels/top_panel_screen0/auto_hide_size : 0

compiz 없이 AWN 쓰기 위해

  • /apps/metacity/general/compositing_manager : true

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

운용팁

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

  • Alt + Fn + F7를 누른 상태로 R E I S U B를 차례로 누름. → 재부팅

references

ubuntu_mini12.txt · Last modified: 2013/08/03 05:04 (external edit)