ubuntu20 設定外接螢幕的解析度

2021-10-16 04:58:15 字數 1387 閱讀 7906

使用cvt設定乙個解析度

cvt 1600 900
shell輸出

modeline "1600x900_60.00"  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync
使用xrandr檢視不同螢幕的解析度

xrandr
會輸出不同螢幕的解析度

使用xrandr新增乙個解析度

xrandr --newmode "1600x900_60.00"  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync
一般沒有輸出,但是在xrandr中建立了乙個新的解析度

使用xrandr將解析度新增外接螢幕中去

xrandr --addmode dp-1-1 "1600x900_60.00"  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync
使用xrandr更改外接螢幕的解析度

xrandr --output dp-1-1 --mode "1600x900_60.00"
使用xrandr設定主屏和副屏及其位置和主屏

xrandr --output dp-1-1 --primary 副屏設定為主屏

xrandr --output dp-1-1 --right-of edp-1-1 副屏在主屏的左側

xrandr --output dp-1-1 --left-of edp-1-1 副屏在主屏的右側

這種更改方式,一旦重啟系統就會恢復到原先的設定,需要重新設定一遍。

在.profile最後面新增以下命令

cvt 1600 900

xrandr --output dp-1-1 --left-of edp-1-1

xrandr --newmode "1600x900_60.00" 118.25 1600 1696 1856 2112 900 903 908 934 -hsync +vsync

xrandr --addmode dp-1-1 "1600x900_60.00" 118.25 1600 1696 1856 2112 900 903 908 934 -hsync +vsync

xrandr --output dp-1-1 --mode "1600x900_60.00"

重啟系統或者使用如下命令

source .profile
執行.profile檔案,更新系統設定。

ubuntu20編譯TensorFlow 原始碼

參考 1.安裝依賴 2.安裝bazel git clone現在的最新master開發分支應該是tensorflow 2.x版本的。4.配置build cd tensorflow configure5.構建 pip 軟體包 bazel build tensorflow tools pip packag...

ubuntu20 基礎配置整理

安裝openconnect並連線校園網 參考 安裝openssh sever。參考 安裝oh my zsh 參考1 參考2注 如果github太慢可以用gitee上的映象 如clone oh my zsh時可將命令git clone oh my zsh修改為git clone oh my zsh.g...

ubuntu20 增加root使用者

1.第一步 以普通使用者登入系統,建立root使用者的密碼 在終端輸入命令 sudo passwd root 然後輸入設定的密碼,輸入兩次,這樣就完成了設定root使用者密碼了 注意linux系統下密碼是沒有回顯的 2.第二步 修改 50 ubuntu.conf 檔案 在終端輸入命令 sudo ge...