Menambah Custom Resolution di Debian Wheezy

2 comments
Sore ini saya meminjam LED Samsung 22 inch kepunyaan @fafa_shiro dengan kemampuan resolusi maksimal Full HD (1920x1080). Sayangnya ketika dicolokkan di PC Debian Wheezy saya, resolusi layar Full HD belum tersedia, maksimal masih di angka 1024*768.
Berbekal tutorial lama disini saya mencoba menambahkan resolusi sendiri, berikut caranya:
1. Dapatkan informasi interface display port dari xrandr
~$ xrandr
Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 8192 x 8192 
VGA1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 0mm x 0mm 
   1024x768       60.0   
   800x600        60.3     56.2   
   848x480        60.0   
   640x480        59.9
note: VGA1 adalah nama dari interface display port yang terdeteksi. Hasilnya akan berbeda jika menggunakan interface yang berbeda, misalnya DVI, HDMI, atau port LVDS pada laptop.

2. dapatkan nilai modeline untuk resolusi 1920x1080 menggunakan cvt
~$ cvt 1920 1080
# 1920x1080 59.96 Hz (CVT 2.07M9) hsync: 67.16 kHz; pclk: 173.00 MHz
Modeline "1920x1080_60.00"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync
3. Tambahkan mode resolusi full HD ke xrandr
~$ xrandr --newmode "1920x1080_60.00"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync
4. Tambahkan mode resolusi full HD ke interface VGA1
~$ xrandr --addmode VGA1 "1920x1080_60.00"
5. jika lancar sampai langkah ke-4, xrandr akan mengenali mode resolusi baru, cek dengan perintah xrandr
~$ xrandr
Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 8192 x 8192
VGA1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1024x768       60.0  
800x600        60.3     56.2  
848x480        60.0  
640x480        59.9
1920x1080_60.00   60.0*
5. Rubah resolusi ke Full HD
~$ xrandr --output VGA1 --mode "1920x1080_60.00"
6. Agar pilihan resolusi full HD bisa permanen tambahkan beberapa parameter ke file xorg.conf
~$ nano /usr/share/X11/xorg.conf.d/10-monitor.conf
isi dengan teks berikut:
Section "Monitor"
        Identifier      "Monitor0"
        Modeline        "1920x1080_60.00"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync
EndSection
Section "Screen"
        Identifier      "Screen0"
        Device          "Card0"
        Monitor         "Monitor0"
        SubSection      "Display"
                Modes   "1920x1080_60.00"
        EndSubSection
EndSection

Section "Device"
        Identifier      "Card0"
        Driver          "intel"
EndSection
note:"intel" pada section "Device" merupakan nama chip VGA saya. sesuaikan dengan milik anda. misal ATI atau nvidia. 
7. Simpan lalu reboot mesin Debian. Selamat mencoba. semoga bermanfaat
Referensi:

2 komentar