this post was submitted on 21 Nov 2023
7 points (100.0% liked)
linux4noobs
2704 readers
1 users here now
linux4noobs
Noob Friendly, Expert Enabling
Whether you're a seasoned pro or the noobiest of noobs, you've found the right place for Linux support and information. With a dedication to supporting free and open source software, this community aims to ensure Linux fits your needs and works for you. From troubleshooting to tutorials, practical tips, news and more, all aspects of Linux are warmly welcomed. Join a community of like-minded enthusiasts and professionals driving Linux's ongoing evolution.
Seeking Support?
- Mention your Linux distro and relevant system details.
- Describe what you've tried so far.
- Share your solution even if you found it yourself.
- Do not delete your post. This allows other people to see possible solutions if they have a similar problem.
- Properly format any scripts, code, logs, or error messages.
- Be mindful to omit any sensitive information such as usernames, passwords, IP addresses, etc.
Community Rules
- Keep discussions respectful and amiable. This community is a space where individuals may freely inquire, exchange thoughts, express viewpoints, and extend help without encountering belittlement. We were all a noob at one point. Differing opinions and ideas is a normal part of discourse, but it must remain civil. Offenders will be warned and/or removed.
- Posts must be Linux oriented
- Spam or affiliate links will not be tolerated.
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Can you go to a TTY (
CTRL+ALT+F2
for example), login there, and then show the output ofjournalctl -b 0
?You can share it online directly from your terminal by using the termbin service (https://termbin.com/ ), ie if you do:
then as a result you'll get a link of the form
https://termbin.com/SOME_CHARACTERS
that you can then share with us here.You have to replace
your_username
andyour_hostname
with respectively your username and hostname inside thesed
command there (basically a search & replace on the output ofjournalctl
) so that they get censored out of the logs before they get shared on termbin.Also, make sure you have
netcat
installed (otherwise you won't be able to use thenc
command):Thank you for the response :)
Do I change the bit, [censored_username], with my username or some unknown variant of it, or is that a command to censor the username?
Those are what will replace your username and hostname as the goal is to have
sed
replace your username withcensored_username
(and same for hostname), so you should leave those as is.:D Success! http://termbin.com/tybe
What a nifty little thing
You have 2 displays (your laptop and your Dell monitor) and an NVidia GPU but you also seem to have an AMD APU? What laptop do you have? I haven't encountered that case before but maybe there's some way in the BIOS to disable the AMD GPU.
But before that, can you try to kill
Xorg
with:and remove and then reinstall your Nvidia drivers with (be careful with the spaces, there's no space between
nvidia-
and*
):and then reboot with
sudo reboot
.Maybe a reinstall of the drivers like that will solve the issue by itself.
Ehhrrm yes, so about those 2 displays...
My desktop is connected to my dell monitor and my samsung TV so I can watch stuff in bed, but it's always off and I never thought my log-in page was appearing on that monitor considering it isn't enabled... but it is, just for that instance.
So, that mystery is resolved.
But it's unwanted. The second monitor isn't active. Despite being on single-display mode, it still activates my other monitor, but ONLY for the log-in (Samsung is 'on' but no signal any other time). I tried fiddling with '~/.config/monitors.xml', but that didn't go well haha...
Regarding the two GPU's, I'm glad I wasn't just trippin' on myself - that looked weird, right? But I haven't encountered a single notable issue I can trace back to it. 'nvidia-smi' is displaying happy numbers, my high-demands are being met. I'm hoping to ignore it until it becomes a major culprit down the line.
Regarding drivers - I've actually already had to reinstall my Nvidia drivers since the ones I had were causing constant crashing. Apparently a common issue. At the very least, it did not resolve my issue. Hopefully the above revelations help though :)
Oh my bad so both were external monitors, don't remember why I thought one of them was a laptop screen. At least the issue got narrowed down a bit. I haven't touched GNOME or GDM in years so I'm not sure but shouldn't you also copy your
monitors.xml
to/var/lib/gdm/.config/
? There's also this about changing that file and which assumes the existence of agdm
user under which thegdm
process runs but I'm not sure if that's applicable to Pop OS: https://discourse.gnome.org/t/how-do-you-configure-your-displays-for-gdm/13762About the AMD APU, if it's not causing any issues it's probably not worth the hassle to disable it in the BIOS (if that's even possible), I'm not familiar with those setups but modern Nvidia GPUs can switch to the integrated GPU to save power and that's normally supported on Linux.