You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like VIRTUAL* is not enabled by default on old X11. According to the [Arch Linux Wiki](https://wiki.archlinux.org/index.php/Extreme_Multihead#VNC) you can enable VIRTUAL* by adding the following configuration for X11:
#95
Open
YaoLiMuMu opened this issue
Apr 3, 2021
· 3 comments
It looks like VIRTUAL* is not enabled by default on old X11. According to the Arch Linux Wiki you can enable VIRTUAL* by adding the following configuration for X11:
Copy/paste the above code in /etc/X11/xorg.conf.d/20-intel.conf or /usr/share/X11/xorg.conf.d/20-intel.conf, and then reboot the system. This tells the Intel driver to create one virtual display, VIRTUAL1. You can change the number "1" in Option "VirtualHeads" "1" to any number to create VIRTUAL1, VIRTUAL2, ... and VIRTUALn (which is unnecessary for VirtScreen use case),
The name of the output will normally be VIRTUAL1 (you can check with xrandr without any argument). The virtual display can then be activated using.
$ xrandr --output VIRTUAL1 --mode
I can see VIRTUAL1 when running 'xrandr', however, in the display manager, or other tools it's not shown. Xrandr shows it as 'disconnected'.
I tried 'connecting' it by running xrandr --output VIRTUAL1 --mode<resolution>, but it just says 'cannot find mode'. How do I add a mode to a virtual display?
Edit: I tried adding a mode by using xrandr --addmode VIRTUAL1 1920x1080 and then ```xrandr --output VIRTUAL1 --mode 1920x1080 --right-of eDP1``
But this just corrupts my screen and crashes Cinnamon.
It looks like VIRTUAL* is not enabled by default on old X11. According to the Arch Linux Wiki you can enable VIRTUAL* by adding the following configuration for X11:
Copy/paste the above code in
/etc/X11/xorg.conf.d/20-intel.conf
or/usr/share/X11/xorg.conf.d/20-intel.conf
, and then reboot the system. This tells the Intel driver to create one virtual display, VIRTUAL1. You can change the number"1"
inOption "VirtualHeads" "1"
to any number to create VIRTUAL1, VIRTUAL2, ... and VIRTUALn (which is unnecessary for VirtScreen use case),Originally posted by @kbumsik in #16 (comment)
The text was updated successfully, but these errors were encountered: