debian리눅스 터미널에서 xwindow최대해상도를 제한하는 방법이 있나요?

supermassive의 이미지

중고로 Cubox-I라는걸 씬클라이언트겸 리눅스용으로 쓰려고 사왔는데 처음부터 막히네요
debian기반인 armbian을 설치했는데요
이게 성능이 좋은 그래픽칩이 아니다보니 최대 해상도 출력이 1920x1080이 최대인것 같네요
근데 제 모니터는 2560X1600이라 부팅시켜보면 처음 터미널은 잘 뜨는데
startx만 입력하면 모니터가 신호없음이 뜨면서 끊기네요(지금 확인해보니 시스템전체가 과부하로 뻗어버리는것 같습니다)
지금은 라즈베리 파이용으로 쓰던 800x480짜리 미니모니터로 쓰고 있는데요
너무 작네요.
xwindows를 실핼할 수 없는 상황이라 터미널상에서 xwindows상의 최대해상도를 제한해야할것 같은데 1920x1080으로 제한 할 수 있는 방법이 있는지 궁금합니다.

andysheep의 이미지

https://wiki.debian.org/Xorg 에 따르면 /etc/X11 디렉토리에 간 뒤 xorg.conf 파일을 루트 계정으로 만드네요.

$ cd /etc/X11/
# Xorg -configure

그 다음 xorg.conf 파일에서 모니터 해상도를 직접 정해줍니다.

나는 몇년 전에는 xorg.conf 파일에 삼성 LCD 모니터 설정을 아래와같이 사용해서 썼습니다.

# To calculate correct DisplaySize
# X = (native resolution of Width) x dot pitch
# Y = (native resolution of Height) x dot pitch
# native resolution: 1440x900
# X = 1440 x 0.285 (mm)
# Y = 900 x 0.285 (mm)
Section "Monitor"
        Identifier "Monitor0"
        VendorName "SAM"
        ModelName "SyncMaster 951BW"
        DisplaySize 410 256
        HorizSync 30-81
        VertRefresh 56-75
        Modeline "1440x900" 106.50 1440 1520 1672 1904 900 903 909 934
EndSection

다른 방법은 /etc/X11/xorg.conf.d 디렉토리에 아래처럼 40-monitor.conf 파일 만들면 Xorg가 시작하며 읽어 해상도를 정해요. Xorg는 xorg.conf.d 디렉토리에 있는.conf 파일들을 읽습니다.

https://wiki.gentoo.org/wiki/Xorg/Guide

root #nano -w /etc/X11/xorg.conf.d/40-monitor.conf
 
Section "Device"
  Identifier  "RadeonHD 4550"
  Option      "Monitor-DVI-0" "DVI screen"
EndSection
Section "Monitor"
  Identifier  "DVI screen"
  Option      "PreferredMode" "1440x900"
EndSection

현재 내 xorg.conf.d 디렉토리 파일들 이전 데비안 버젼에서는 섰었는데 필요없어 bak로 바꾼 상태.

 ls -lh
total 8.0K
-rw-r--r-- 1 root root  109 Aug 21 09:18 20-fglrx.conf.bak
-rw-r--r-- 1 root root 1.2K Nov 11  2015 52-wacom-options.conf.bak

해상도 설정 안내
https://wiki.ubuntu.com/X/Config/Resolution

Section "Monitor"
    Identifier      "External DVI"
    Modeline        "1280x1024_60.00"  108.88  1280 1360 1496 1712  1024 1025 1028 1060  -HSync +Vsync
    Option          "PreferredMode" "1280x1024_60.00"
EndSection
Section "Device"
    Identifier      "ATI Technologies, Inc. M22 [Radeon Mobility M300]"
    Driver          "ati"
    Option          "Monitor-DVI-0" "External DVI"
EndSection
Section "Screen"
    Identifier      "Primary Screen"
    Device          "ATI Technologies, Inc. M22 [Radeon Mobility M300]"
    DefaultDepth    24
    SubSection "Display"
        Depth           24
        Modes   "1280x1024" "1024x768" "640x480"
    EndSubSection
EndSection
 
Section "ServerLayout"
        Identifier      "Default Layout"
        Screen          "Primary Screen"
EndSection

Devuan 1.0 (Debian without systemd)
amd64 station: AMD FX(tm)-6100 Six-Core Processor, 8 GB memory, 1 TB HDD
amd64 laptop: HP Touchsmart

글쇠판: 세벌 최종식, 콜맥 (Colemak)

supermassive의 이미지

장문의 답변 정말 감사드립니다. xorg.conf파일이 정말 존재하지 않아 루트 계정으로 Xorg -configure을 실행해보았는데 no device to configure라고 나오네요. 아마 armbian이 포팅시키느라 많이 수정이 된 배포판이라 그런것 같습니다. 그냥 메인 모니터에는 연결 안하는 걸로 해야겠습니다. 다시한번 감사드립니다.

bushi의 이미지

xorg.conf 손 대는 것 보다 xorg 의 로그를 보는게 우선입니다.

supermassive의 이미지

감사합니다. startx를 입력하고난뒤 화면이 나가고 재부팅후 /var/log/xorg.0.log를 보았는데 아무내용이 없네요. 과부하로 시스템이 전체가 죽어버리는것 같습니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.