解析度不同的ubuntu擴充套件顯示器記錄

2021-10-05 15:27:34 字數 986 閱讀 5771

老的上網本n148,解析度只有1024600,安裝了lubuntu後想用vga線連線到大螢幕上玩,用xrandr命令,其中複製模式時,

xrandr --output lvds1 --same-as vga1 --auto

xrandr --output vga1 --same-as lvds1 --auto

這兩種效果是不同的,第2種是在19201080的左上方1024*600的區域顯示lvds1的效果,所以如果複製模式不能達到效果,就換換順序試一下啊

linux下檢視顯示器輸出狀態以及修改顯示器工作模式(複製 or 擴充套件)

//關閉顯示器vga1

xrandr --output vga1 --off

//開啟顯示器vga1

xrandr --output vga1 --auto

//關閉顯示器lvds1

xrandr --output lvds1 --off

//開啟顯示器lvds1

xrandr --output lvds1 --auto

//開啟vga1,同時關閉lvds1

xrandr --output vga1 --auto --output lvds1 --off

//關閉vga1,同時開啟lvds1

xrandr --output vga1 --off --output lvds1 --auto

//擴充套件模式時,將lvds1顯示在vga1的左側

xrandr --output lvds1 --left-of vga1 --auto

//擴充套件模式時,將lvds1顯示在vga1右側.

xrandr --output lvds1 --right-of vga1 --auto

//從擴充套件模式變成複製模式.

xrandr --output lvds1 --same-as vga1 --auto

//設定主顯示器.

xrandr --output hdmi1 --auto --primary

Ubuntu解析度設定

我的一台11寸上網本,裝的ubuntu。最近外接了乙個19寸顯示器。解析度最多只能是1024x768。顯示器設定裡顯示 未知 顯示器。用下面的命令可以看到顯示卡的資訊 lspci grep vga 00 02.0 vga compatible controller intel corporation...

ubuntu設定解析度

裝過ubuntu的虛擬機器人應該都知道,剛剛裝完系統時,解析度小的令人髮指,根本就不能愉快的使用,所以必須調整,但是有些解析度ubuntu裡面也沒有,這就需要我們自己自定義。1.輸入 cvt 1920 1080 返回的結果是 1920x1080 59.96 hz cvt 2.07m9 hsync 6...

ubuntu 解析度調整

版本資訊描述 ubuntu 18.04 lts 安裝了ubuntu後解析度和顯示器不匹配。xrandr命令不能給出相關資訊。因此嘗試了不同的方法。這是別人在stackoverflow上回答的最多的一種方法 gtf 1920 1080 601920x1080的解析度,60hz重新整理頻率 於是可以得到...