Skip to content

Instantly share code, notes, and snippets.

@onmoving
Last active December 11, 2015 10:59
Show Gist options
  • Save onmoving/4590964 to your computer and use it in GitHub Desktop.
Save onmoving/4590964 to your computer and use it in GitHub Desktop.

#설치

##vmware에 설치

  • fedora version: fedora 18
  • vmware version: 8.0.4 build-744019

가상 머신을 설정할 때 display의 3D 가속 기능을 꺼놓은 상태에서 설치해야 설치가 진행된다. 설치 후 활성화 함

참고 URL: http://www.greebo.net/2013/01/18/installing-fedora-18-rtm-to-vmware-fusion-5-or-vmware-workstation-9/

###업데이트

terminal을 띄운다(Activities -> type in "Terminal")

$ sudo yum update
$ sudo reboot
$ sudo yum install kernel-devel kernel-headers gcc make
$ sudo reboot

####Fix missing kernel headers

vmware tools를 설치할 때 header 파일의 위치를 인식할 수 있도록 아래 헤더 파일을 복사한다.

$ sudo cp /usr/include/linux/version.h /lib/modules/`uname -r`/build/include/linux/

###Mount VMWare Tools

Virtual Machine -> Install VMWare Tools

###Build VMWare Tools

$ tar zxf /run/media/`whoami`/VMware\ Tools/VMw*.tar.gz
$ cd vmware-tools-distrib
$ sudo ./vmware-install.pl

참고: 만일 perl이 설치되치 않아 pl 스크립트를 실행하지 못할 경우에는 perl을 먼저 설치한다.

perl 확인

$ yum --showduplicates list perl
$ yum install perl.i686

설치 완료후 재부팅

$ sudo reboot

###vmware에서 3D가속 기능 활성화 문제

현재로서는 vmware 8에서 fedor 18의 3D가속을 활성화 하면 X서버로 로그인을 할 수 없다. 대신 가벼운 Cinnamon 이나 Mate를 사용하는 방법이 있다.

  • Activities -> Software -> Packages -> Cinnamon for a more modern desktop appearance or
  • Activities -> Software -> Packages -> MATE for old school Gnome 2 desktop appearance
  • Apply
  • Logout
  • From the session pull down, change across to Cinnamon or Mate and log back in

###한글설정

시스템 설정--> 입력소스 탭 --> 한국어(hangul) 추가 --> 항목에서 첫번째로 이동

바로가기 설정 링크를 클릭하면 키보드 --> 바로가기 탭이 뜬다.

자판입력 항목 선택 --> 다음 입력 소스로 전환 --> <ctrl>+<space>

##최초 설치 후 설정

  • 텍스트 선택 시 shift와 numeric Home, End 키 조합 사용가능하게 만들기: System Settings --> Keyboard(키보드), 키보드 설정 창 --> 키 배치 탭 --> options 버튼 --> Miscellaneous compatibility options(기타 호환성 옵션) --> Shift with numeric keypads keys works as in MS Windows(Shift와 동시에 숫자 키패드 키를 누르면 MS 윈도우즈와 동일하게 동작) 체크

###terminal 단축키 설정

터미널을 띄우기 위한 단축키를 지정한다.

System Settings --> Keyboard

Under the "Keyboard Shortcuts" tab, click the '+' for custom shortcut.

  • Name: Terminal
  • command: gnome-terminal
  • shortcut: <ctrl>+<alt>+T

###vim 설치

$ sudo yum install vim

###gvim 설치

$ sudo yum install gvim

###janus for vim 설치

prerequisites

$ sudo yum install ack ctags git ruby rake
$ curl -Lo- https://bit.ly/janus-bootstrap | bash

###시스템 폰트 바꾸기

나눔고딕 설치

$ sudo yum install nhn-nanum*

gnome tweak tool 설치

$ sudo yum install gnome-tweak-tool

###참고사이트

###개발에 필요한 Libraries & tools 설치

$ sudo yum groupinstall "Development Tools" "Development Libraries"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment