#keywords Ubuntu, Linux, Free, PC [[목차]] == 소개 == [[Ubuntu]] 계열의 리눅스 배포판 == 팁 == === 설치부터 꾸미기까지 === 출처: [http://blog.daum.net/bagjunggyu/120 elementary OS luna 설치부터 꾸미기까지 총정리] === 노트북 화면 밝기 조정 === 출처1: [http://ubuntuforums.org/showthread.php?t=1907928&page=5 brightness problem in laptop] 출처2: [http://halcyonera.tistory.com/194 우분투에서 일부 노트북의 화면 밝기 조정이 안될때] 1. ctrl+alt+t를 눌러서 터미널 호출 1. 현재 사용중인 Display name 확인 {{{ssun@ssun-PBL21:~$ xrandr Screen 0: minimum 8 x 8, current 1920 x 1080, maximum 16384 x 16384 VGA-0 disconnected (normal left inverted right x axis y axis) LVDS-0 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 344mm x 193mm 1920x1080 60.0*+ HDMI-0 disconnected (normal left inverted right x axis y axis)}}} 1. 화면 밝기 설정(0~1){{{ ssun@ssun-PBL21:~$ xrandr --output LVDS-0 --brightness 0.7 }}} 1. 부팅할 때마다 화면 밝기 설정 적용하기 1. rc.local 열기{{{ ssun@ssun-PBL21:~$ sudo gedit /etc/rc.local }}} 1. rc.local 수정{{{sleep 5 xrandr --output LVDS-0 --brightness 0.7 exit 0 }}}