동행(同行)


VM에 ubuntu server 설치 후,


1. UI 설치

  

  sudo apt-get update

  sudo apt-get upgrade

  sudo aptitude install ubuntu-desktop 

  * 선택 패키지를 설치하지 않는 옵션을 추가하면, 대시홈 등도 정상적으로 동작하지 않는다. 고로, 전체 desktop 설치

 reboot


2. vmtools 설치

  (http://shmd01.tistory.com/entry/%EC%9A%B0%EB%B6%84%ED%88%AC-1204-%EC%84%A4%EC%B9%98-3VMware-Tools%EC%84%A4%EC%B9%98%ED%95%98%EA%B8%B0 참조)


 1) vm에서 제공하는 메뉴를 사용한다. manage > install vm tools

 2) tar.gz 파일의 압축 해제  

 3) pl 파일 실행


3. 한글 설정

  apt-get install language-pack-ko language-pack-gnome-ko-base

  locale-gen ko_KR.UTF-8

  dpkg-reconfigure locales

  update-locale LANG=ko_KR.UTF-8

  reboot

  locale (확인)

  

4. 한글 입력기 설정

 apt-get install nabi

 시스템설정 > 언어지원 > 키보드입력기 nabi 선택

 gsettings set com.canonical.Unity.Panel systray-whitelist "['JavaEmbeddedFrame', 'Wine', 'Update-notifier', 'Nabi']"

 reboot

 

5. 한영전환키 설정

 1) HUD 단축키 삭제 (시스템설정 > 키보드 > 바로가기 > 실행아이콘 > 허드를 표시할 키 에서 백스페이스)

 2) 나비 기본설정 > 한글 > 한글키 추가


6. 해상도 설정

(http://www.ubuntu.or.kr/viewtopic.php?p=117371 참조)

 콘솔모드 진입 (ctrl + alt + f1)

 sudo service lightdm stop

 sudo Xorg -configure (xorg.config.new 파일 생성)

 sudo service lightdm start 

 xrandr (현재 모니터 확인 ex: Virtual1 )

 cvt 1920 1080

  * Modeline 부분 복사 ex: Modeline "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync

 

sudo vi xorg.config.new 하여, 아래 부분에 복사한 내용 붙여넣기

=======

Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
Modeline "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
ModelName "Monitor Model"
EndSection

Section "Monitor"
Identifier "Monitor1"
VendorName "Monitor Vendor"
Modeline "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
ModelName "Monitor Model"
EndSection

=======

Section 부분에 Modes "1920x1080" 추가

=======

Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Viewport 0 0
Depth 1
Modes "1920x1080"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 4
Modes "1920x1080"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 8
Modes "1920x1080"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 15
Modes "1920x1080"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 16
Modes "1920x1080"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1920x1080"
EndSubSection
EndSection

Section "Screen"
Identifier "Screen1"
Device "Card1"
Monitor "Monitor1"
SubSection "Display"
Viewport 0 0
Depth 1
Modes "1920x1080"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 4
Modes "1920x1080"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 8
Modes "1920x1080"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 15
Modes "1920x1080"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 16
Modes "1920x1080"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1920x1080"
EndSubSection
EndSection

=======

 sudo mv xorg.conf.new xorg.conf

 sudo mv xorg.conf /etc/X11/

 reboot


Posted by CU@THETOP