五月综合激情婷婷六月,日韩欧美国产一区不卡,他扒开我内裤强吻我下面视频 ,无套内射无矿码免费看黄,天天躁,日日躁,狠狠躁

新聞動態(tài)

linux連接投影機方法介紹

發(fā)布日期:2022-04-02 09:14 | 文章來源:腳本之家
方案一:
一般來說,需要筆記本當前使用的分辨率和投影儀的分辨率相同,才能在投影儀上顯示筆記本的X。那么,可以先運行這個命令:
$xrandr
比如在我的電腦上,結(jié)果如下:
[2007-04-11 09:03:20]zhangsen@zhangsen-desktop:/opt/src/emacs
$xrandr
SZ: Pixels Physical Refresh
*0 1280 x 1024 ( 433mm x 346mm ) *50 54
1 1024 x 768 ( 346mm x 260mm ) 51 60 61
2 800 x 600 ( 270mm x 203mm ) 52 65 66 67 68
3 640 x 480 ( 216mm x 162mm ) 53 73 74 75
4 1280 x 960 ( 433mm x 325mm ) 55
5 1280 x 800 ( 433mm x 270mm ) 56
6 1280 x 768 ( 433mm x 260mm ) 57
7 1152 x 864 ( 390mm x 292mm ) 58
8 1152 x 768 ( 390mm x 260mm ) 59
9 960 x 600 ( 325mm x 203mm ) 62
10 840 x 525 ( 284mm x 177mm ) 63
11 832 x 624 ( 281mm x 211mm ) 64
12 800 x 512 ( 270mm x 173mm ) 69
13 720 x 450 ( 243mm x 152mm ) 70
14 640 x 512 ( 216mm x 173mm ) 71 72
15 640 x 400 ( 216mm x 135mm ) 76
16 640 x 384 ( 216mm x 130mm ) 77
17 576 x 432 ( 195mm x 146mm ) 78
18 576 x 384 ( 195mm x 130mm ) 79
19 512 x 384 ( 173mm x 130mm ) 80 81 82
20 416 x 312 ( 140mm x 105mm ) 83
21 400 x 300 ( 135mm x 101mm ) 84 85 86 87
22 320 x 240 ( 108mm x 81mm ) 88 89 90
Current rotation - normal
Current reflection - none
Rotations possible - normal
Reflections possible - none
第0條加了*號,說明這是筆記本電腦當前使用的分辨率。如果投影儀的分辨率是1024x768,那么就需要改變筆記本電腦的分辨率。因為在上面的結(jié)果中,1024x768對應(yīng)第1條,所以運行這個命令來改變分辨率:
$xrandr -s 1
這樣就切換了分辨率。等待投影儀的搜索吧。
首先接上VGA,執(zhí)行命令(VGA代表顯示器,LVDS代表筆記本液晶屏):
$ xrandr --output VGA --auto
當前桌面會復(fù)制到VGA上面,此時執(zhí)行xrandr會看到有了VGA-0
斷開VGA-0:
$ xrandr --output VGA-0 --auto
按照當前的配置擴展桌面:
$xrandr --output VGA-0 --auto --left-of LVDS
這是需修改xorg.conf,先用不帶參數(shù)執(zhí)行xrandr能夠列出當前的顯示設(shè)備和每個設(shè)備支持的模式。Screen代表了總顯示區(qū)域,VGA代表顯示器,LVDS代表筆記本液晶屏。
Screen 0: minimum 320 x 200, current 1280 x 768, maximum 1280 x 1280
VGA connected (normal left inverted right x axis y axis)
1280x1024 75.0 + 69.8 59.9
1024x768 75.1 70.1 60.0
800x600 72.2 75.0 60.3
640x480 75.0 72.8 65.4 60.0
720x400 70.1
LVDS connected 1024x768+0+0 (normal left inverted right x axis y axis) 246mm x 184mm
1024x768 50.0*+ 60.0 40.0
800x600 60.3
640x480 60.0 59.9
修改:
gksudo gedit /etc/X11/xorg.conf
修改后如下:
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
SubSection "Display"
Virtual 2304 1024 #左右擴展雙屏,2304=1280+1024,1024=max(1024,768)
EndSubSection
EndSection
注意:Ubuntu 8.04中的xorg.conf已經(jīng)非常精簡,Subsection "Display" 可能要自己添加,別忘記 EndSubSection
xrandr 命令行可以很方便地切換雙屏,常用方式如下,其他的可以自己探索:
xrandr --output VGA --same-as LVDS --auto
打開外接顯示器(最高分辨率),與筆記本液晶屏幕顯示同樣內(nèi)容(克隆)
xrandr --output VGA --same-as LVDS --mode 1024x768
打開外接顯示器(分辨率為1024x768),與筆記本液晶屏幕顯示同樣內(nèi)容(克隆)
xrandr --output VGA --right-of LVDS --auto
打開外接顯示器(最高分辨率),設(shè)置為右側(cè)擴展屏幕
xrandr --output VGA --off
關(guān)閉外接顯示器
xrandr --output VGA --auto --output LVDS --off
打開外接顯示器,同時關(guān)閉筆記本液晶屏幕(只用外接顯示器工作)
xrandr --output VGA --off --output LVDS --auto
關(guān)閉外接顯示器,同時打開筆記本液晶屏幕 (只用筆記本液晶屏)
方案二:
打開xorg.conf
gksudo gedit /etc/X11/xorg.conf
修改Section “Device”如下:
Section "Device"
Identifier "Configured Video Device"
Option "TwinView" "True" #打開雙顯支持
Option "TwinViewOrientation" "Clone" #復(fù)制模式,Relative為擴展模式
Option "UseEdidFreqs" "True" #打開刷新頻率設(shè)置
Option "Metamodes" "1024x768_60, 1024x768; 1024x768_60,800x600" #刷新頻率模式,指明這兩個設(shè)備的分辨率,逗號前的第一個是本機顯示設(shè)備,逗號后的第二個是外部設(shè)備,分號分隔開多套模式,可以設(shè)兩套方案或更多。
EndSection
保存。連接好投影儀,重新啟動Xwindows(Ctrl+Alt+Backspace)就OK了。

美國服務(wù)器租用

版權(quán)聲明:本站文章來源標注為YINGSOO的內(nèi)容版權(quán)均為本站所有,歡迎引用、轉(zhuǎn)載,請保持原文完整并注明來源及原文鏈接。禁止復(fù)制或仿造本網(wǎng)站,禁止在非maisonbaluchon.cn所屬的服務(wù)器上建立鏡像,否則將依法追究法律責任。本站部分內(nèi)容來源于網(wǎng)友推薦、互聯(lián)網(wǎng)收集整理而來,僅供學習參考,不代表本站立場,如有內(nèi)容涉嫌侵權(quán),請聯(lián)系alex-e#qq.com處理。

實時開通

自選配置、實時開通

免備案

全球線路精選!

全天候客戶服務(wù)

7x24全年不間斷在線

專屬顧問服務(wù)

1對1客戶咨詢顧問

在線
客服

在線客服:7*24小時在線

客服
熱線

400-630-3752
7*24小時客服服務(wù)熱線

關(guān)注
微信

關(guān)注官方微信
頂部