multipleΒ
- Hardware solution
- Software solution for Windows
- Software solution for Linux
- Software solution for macOS
Hardware solution
The device looks like this:
More information about the device is available here:
Software solution for Windows
Activating a Secondary Display on Windows 10 when no Monitor is Connected – Amyuni Technologies
β οΈ Note: this solution works properly with Windows10 and Windows 11 as well.
Software solution for Linux
Solution 1:
Setup Ubuntu Dummy Desktop & Remote Access – Thien-Minh Nguyen (brytsknguyen.github.io)
Solution 2:
https://gist.github.com/dragolabs/8e559113567faed32327ef24fdce775b?permalink_comment_id=4051635
Solution 3:
- First, install an Xorg dummy driver:
sudo apt-get install xserver-xorg-video-dummy
- Then write a config file for that driver that tells DWService this device is headless:
sudo nano /etc/X11/xorg.conf
- In this new file, copy and paste the following text:
Section "Device"
Identifier "Configured Video Device"
Driver "dummy"
# Default is 4MiB, this sets it to 16MiB
VideoRam 16384
EndSection
Section "Monitor"
Identifier "Configured Monitor"
HorizSync 31.5-48.5
VertRefresh 50-70
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024Γ800"
EndSubSection
EndSection
- Reboot the device.
β You should be able to use the Screen app.
Software solution for macOS