答案1
您提供的视频链接对我来说不起作用。您能修复这个问题吗?
您正在运行 Xorg 还是 Wayland?如果您使用的是 Wayland,我认为除非使用特定于您的合成器的工具,否则无法进行屏幕录制。
对于 Xorg,您是否尝试过TearFree
按如下方式将选项添加到您的 Xorg 配置中?在文件中/etc/X11/xorg.conf.d/20-intel.conf
:
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
# attempting to solve screen recording glitches
Option "TearFree" "true"
EndSection
另一个可以尝试的选项是使用modesetting
驱动程序而不是intel
驱动程序。定义一个像这样的 Xorg 配置/etc/X11/xorg.conf.d/20-graphics.conf
:
Section "Device"
Identifier "Intel Graphics"
Driver "modesetting"
Option "AccelMethod" "glamor"
EndSection
抱歉,我问了这么多问题,但是我的声誉不足以评论您的问题。
在某些 Linux 发行版上,您可能需要更改/etc/X11/xorg.conf.d/
为/usr/share/X11/xorg.conf.d/
注释中所标识的版本。
答案2
删除 xf86-video-intel
对我有用。
我猜相关行是sudo apt-get remove xf86-video-intel
。但是现在我还没有 Ubuntu 可以测试。