Skip to content Skip to sidebar Skip to footer

add resolution on linux

1. Dapatkan informasi interface display port dari "xrandr"


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


3. Tambahkan mode resolusi full HD ke xrandr  
xrandr --newmode "1368x768_60.00"   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync
 

4. Tambahkan mode resolusi full HD ke interface VGA1
xrandr --addmode VGA1 "1920x1080_60.00" 

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 dibawah ini: 

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 :
https://dnaite.blogspot.com/2013/10/menambah-custom-resolution-di-debian.html

Post a Comment for "add resolution on linux"