resolution @debain

有時候anydesk過去解析度太小用起來不太順, google了一下怎麼搞.

先用這個算你想要的大小, 這裡先用1440 900

cvt 1440 900

會顯示Modeline, 複制以後的字

cvt 1440 900 # 1440×900 59.89 Hz (CVT 1.30MA) hsync: 55.93 kHz; pclk: 106.50 MHz Modeline “1440x900_60.00” 106.50 1440 1528 1672 1904 900 903 909 934 -hsync +vsync

複制這段

“1440x900_60.00” 106.50 1440 1528 1672 1904 900 903 909 934 -hsync +vsync

xrandr –newmode “1440x900_60.00” 106.50 1440 1528 1672 1904 900 903 909 934 -hsync +vsync

先輸入一次xrandr, 看看這顆螢幕叫什麼, 這裡的例子是叫VGA-1

xrandr –addmode VGA-1 1440x900_60.00

然後在xfce的display就可以改了

另外最近搞了一台M$ surface pro, 解析度有點太高了, 來搞低一點. 照常還是使用Debian + xfce.
按著音量上跟開機鈕是進去它BIOS設定, 按著音量下不放, 點一下開機鈕是強制USB開機.
進桌面就沒問題了用setting->display改解析度, 我是用1400×900.

首先是grub的解析度.

# vim /etc/default/grub
GRUB_GFXMODE=1920x1080
我是用
GRUB_GFXMODE=800x600

再來是lightdm的解析度, 這裡別打錯字, 不然lightdm就不啟動了. 那就按ctrl+alt+f1進去慢慢敲字只是字超小.
再不然比較保險就是 在安裝完vim後先把sshd打開.

# 找到 connected 前面的那串, 以surface來說我找到 eDP-1
# xrandr -q

# vim /usr/share/lightdm/lightdmxrandr.sh
#!/bin/sh
xrandr --output eDP-1 --primary --mode 1400x900
# chown lightdm:lightdm /usr/share/lightdm/lightdmxrandr.sh
# chmod a+x /usr/share/lightdm/lightdmxrandr.sh

# vim /etc/lightdm/lightdm.conf
# 在這一行 [Seat:*] 的下面加入
display-setup-script=/usr/share/lightdm/lightdmxrandr.sh
到這裡我是OK了, 如果不行試著改成
greeter-setup-script=/usr/share/lightdm/lightdmxrandr.sh

# 這裡如果是要登入畫面用虛擬鍵盤的話
# apt install onboard mousetweaks
# vim /etc/lightdm/lightdm-gtk-greeter.conf 
keyboard=onboard
# 那麼在登入畫面右上有個人形圖案, 點一下選onboard(或按f3, 只是它媽的就是沒鍵盤才用這種桌面的還要我按f3)

最後
# update-grub
# reboot

再來就是搞一下surface特殊的驅動. 參考自 https://github.com/linux-surface/linux-surface

# wget -qO - https://raw.githubusercontent.com/linux-surface/linux-surface/master/pkg/keys/surface.asc \
    | gpg --dearmor | sudo dd of=/etc/apt/trusted.gpg.d/linux-surface.gpg
# echo "deb [arch=amd64] https://pkg.surfacelinux.com/debian release main" \
	| sudo tee /etc/apt/sources.list.d/linux-surface.list
# apt update
# apt install linux-image-surface linux-headers-surface libwacom-surface iptsd
# update-grub

解決一下剛買的藍芽鍵盤一些問題. 參考自 https://www.ywnz.com/linux/6185.html

# 藍芽連線, 確認狀態啟用中
# systemctl status bluetooth.service
# 確認有沒有被硬體或其它軟體停用
# rfkill
# 如果有就解開它
# rfkill unblock X

# 開啟工具連線藍芽
# bluetoothctl
Agent registered
show
list
help

# power on
# scan on
# pair 20:79:18:5E:4B:64   找到設備的MAC ADDRESS
# trust 20:79:18:5E:4B:64 
# paired-devices
# devices
# info
# ctrl+d 退出

# 開機啟動
# vim /etc/bluetooth/main.conf
[Policy]
AutoEnable=true
# 再來是 touchpad tapping 沒有作用
# cp /usr/share/X11/xorg.conf.d/40-libinput.conf /etc/X11/xorg.conf.d/
# vim /etc/X11/xorg.conf.d/40-libinput.conf
# 在 libinput touchpad catchall 那一段落裡新增
# option "tapping" "on"
# 重開機
不搞camera了, 直接停用掉.
# 安裝其它的套件, 這是sublime text, rustdesk, tabby, dbeaver用deb裝
# wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/sublimehq-archive.gpg > /dev/null
# echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
# apt update
# apt install gcin* chromium* fonts-wqy* gimp inkscape fonts-ubuntu \
    openvpn qterminal net-tools nmap wireshark iptables stacer gftp command-not-found \
    translate-shell tesseract-ocr vlc yt-dlp orage k3b \
    wbar tint2 conky-all ncal locate wmctrl onboard rfkill \
    lm-sensor glances hardinfo linux-cpupower acpi hwinfo \
    kazam  flameshot volumeicon-alsa \ 
    apache2 mariadb-server php8.2 php8.2-mysql php8.2-gd php8.2-curl php8.2-mbstring \

發佈留言