CentOS에서 Display를 선택 할 수 없는 경우 xorg.conf 파일을 작성하면 해결이 가능하다.


- 루트권한으로  xorg.conf를 작성한다









Section "Device"
Identifier "Videocard0" Driver "vesa" End Section Section "Monitor" Identifier "Monitor0" HorizSync 1.0 - 10000.0 VertRefresh 1.0 - 10000.0 EndSection Section "Screen" Identifier "Screen0" Device "Videocard0" Monitor "Monitor0" DefaultDepth 24 SubSection "Display" Viewport 0 0 Depth 24 Modes "1600x1200""1280x1024" "1024x768" EndSubSection EndSection



- 적용 후  Display 설정화면




'프로그램 언어 > 유닉스' 카테고리의 다른 글

unix find 명령어  (0) 2010.03.15
find ./ -name "[fileName].[extension]" | xargs grep "[find text]"


 

ex ) find ./ -name "*.jsp" | xargs grep "zeus"

       find ./ -name "*.jsp" | xargs grep "zeus" > zeus.txt

 

 find ./ -name "[fileName].[extension]" -exec grep -nr [find text] {} \;


 

ex) find ./ -name "*.jsp" -exec grep -nr 메모리변조 {} \;


'프로그램 언어 > 유닉스' 카테고리의 다른 글

[CentOS 7] 해상도 설정  (0) 2019.01.30

+ Recent posts