#keywords Ubuntu, Linux, Free, PC [[목차]] == 소개 == [[Ubuntu]] 계열의 리눅스 배포판. 이쁘다. attachment:elementary%20os%20scr.jpg == 팁 == === 설치부터 꾸미기까지 === 출처: [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 우분투에서 일부 노트북의 화면 밝기 조정이 안될때] 적용 모델: 한성노트북 [GTX55] 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 #rc.local 자동실행 후, 5초간 hold xrandr --output LVDS-0 --brightness 0.7 exit 0 }}} 1. 재부팅 후, 화면 밝기가 설정한 대로 고정되는지 확인한다. 1. rc.local이 실행되지 않는다면, [http://askubuntu.com/questions/243044/why-isnt-rc-local-executed 다음] 내용을 확인한다.{{{ ssun@ssun-PBL21:~$ update-rc.d rc.local remove ssun@ssun-PBL21:~$ update-rc.d rc.local defaults }}} === [안드로이드] 핫스팟 만들기 === 출처: [http://ubuntuhandbook.org/index.php/2014/02/wifi-hotspot-ubuntu-laptop-android/ Create Wifi Hotspot in Ubuntu Laptop For Android Phones] 1. ctrl+alt+t를 눌러서 터미널 호출 1. ap-hotspot 설치{{{sudo add-apt-repository ppa:nilarimogard/webupd8 sudo apt-get update sudo apt-get install ap-hotspot}}} 1. [Ubuntu] 14.04인 경우에는 [http://ubuntuhandbook.org/index.php/2014/02/wifi-hotspot-ubuntu-laptop-android/ 출처] 글을 참조하여 버그를 방지한다. 1. ap-hotspot 설정{{{ sudo ap-hotspot configure}}} 1. enter 2번 → hotspot name 설정 → 비번 설정 {{{ssun@ssun-PBL21:~$ sudo ap-hotspot configure Detecting main network interface... Detected eth0 as the network interface connected to the Internet. Press ENTER if this is correct or enter the desired interface below (e.g.- eth0, ppp0 etc.): Detected wlan0 as your WiFi interface. Press ENTER if this is correct or enter the desired interface (e.g.- wlan1): Enter the desired Access Point name or press ENTER to use the default one (myhotspot): notebook Enter the desired WPA Passphrase below or press ENTER to use the default one (qwerty0987): 9876543210}}} 1. Hotspot 실행{{{ sudo ap-hotspot start}}} 1. 만약 아래와 같은 에러 메시지가 나타나면, 무선 네트워크를 껐다가 켠다.{{{ ssun@ssun-PBL21:~$ sudo ap-hotspot start Please disconnect WiFi before proceeding}}} 1. Hotspot 중지{{{ sudo ap-hotspot stop}}}