Related Application and/or Package Version (run apt policy $PACKAGE NAME):
GRUB
Issue/Bug Description:
PopOS detects two monitors when I only have one and I can't see the applications open because they open in the non-existent monitor.
Steps to reproduce (if you know):
I have the issue either in Live PopOS USB and in installed PopOS.
Expected behavior:
There should be only one monitor.
Other Notes:
I have this issue only in my Acer Aspire 5750G.
and at the line GRUB_CMDLINE_LINUX=""you have write:
GRUB_CMDLINE_LINUX="video=VGA-1:d"
But:
If your output was VGA-1-1, set video=VGA-1:d (setting video=VGA-1-1:d won't work).
If your output was VGA-1-2, set video=VGA-2:d (setting video=VGA-1-2:d or video=VGA-1:d does not seem to work, although one may still try them out separately to be certain).
Then just run:
sudo update-grub
Even though I fixed it, I just wanted to report it so you can fix it to help new Linux people.
Distribution (run
cat /etc/os-release
):Related Application and/or Package Version (run
apt policy $PACKAGE NAME
): GRUBIssue/Bug Description: PopOS detects two monitors when I only have one and I can't see the applications open because they open in the non-existent monitor.
Steps to reproduce (if you know): I have the issue either in Live PopOS USB and in installed PopOS.
Expected behavior: There should be only one monitor.
Other Notes: I have this issue only in my Acer Aspire 5750G.
I found the solution here: https://askubuntu.com/a/365017
So basically you open the terminal and you run:
xrandr | grep VGA
and you note that output.
Now you run
sudo gedit /etc/default/grub
and at the line
GRUB_CMDLINE_LINUX=""
you have write:GRUB_CMDLINE_LINUX="video=VGA-1:d"
But:
Then just run:
sudo update-grub
Even though I fixed it, I just wanted to report it so you can fix it to help new Linux people.