我有一台联想 x230t,最近开始重试让屏幕旋转功能正常工作。我一直在使用以下方法:https://github.com/martin-ueding/thinkpad-scripts。但是调用 xrandr --output display --rotate inverted 会导致显示屏变黑。但是调用 --rotate left/right/normal 都可以正常工作。显示屏显示它有反转选项,但显然没有按预期工作,我不确定如何让它工作。
答案1
这是 Linux 内核的一个当前错误
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1446979
此错误发生在反转和正常模式之间切换时。临时解决方案是按如下步骤旋转 90°
xrandr -o left && xrandr -o inverted
这对我在戴尔 Inspiron 13 上有用。希望它对你也有用
答案2
时间修复
xrandr -o normal
持续修复
归档
/usr/share/X11/xorg.conf.d/10-quirks.conf
添加线条
Section "Monitor"
Option "Rotate" "normal"
EndSection
它修复了
Lenovo-Yoga710-14ISK
Ubuntu 20.04 LTS
GNOME Shell 3.36.1
更多信息:
- https://wiki.archlinux.org/index.php/Xrandr
- https://xorg-team.pages.debian.net/xorg/howto/use-xrandr.html
- https://unix.stackexchange.com/questions/103460/how-to-change-gnome-default-screen-rotation
- http://manpages.ubuntu.com/manpages/bionic/man5/xorg.conf.5.html
- X.org 配置文件在哪里?如何在那里配置 X?
- https://www.x.org/releases/current/doc/man/man5/xorg.conf.5.xhtml#heading12