What package do I need to install for my Nvidia card
Hello, I have read part of the https://rpmfusion.org/Howto/NVIDIA guide to know how to install proprietary drivers for my Nvidia card. My laptop comes with a regular Intel Graphics card alongside an Nvidia Geforce GTX 960M card. I am on Fedora 36, Gnome (Wayland). I don't want to mess up my system, so I just want to ask; what is the simplest procedure install drivers for this card on my system? When these drivers are installed, will I still be able to do regular work with my Intel card and launch specific applications (games) with the Nvidia card? My card supports CUDA and Optimus. Do I need to disable Secure Boot? Note: I have already enabled the free and non-free RPM fusion repositores. I know there is a specific rpmfusion Nvidia driver repository, do I need that also? ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure
Re: What package do I need to install for my Nvidia card
On Fri, 2022-06-17 at 09:15 -0500, Thomas Cameron wrote: > sudo dnf update -y # and reboot if you are not on the latest kernel > sudo dnf install akmod-nvidia # rhel/centos users can use kmod-nvidia > instead > sudo dnf install xorg-x11-drv-nvidia-cuda #optional for > cuda/nvdec/nvenc > support I have done this, I installed both packages above. Now, at bootup I am getting some errors (still, these were present before installing the new drivers, less I think) related to nouveau: https://pastebin.com/VFwQBbEq I also think I saw some other message regarding power management at bootup but it is not contained in the above paste from dmesg. Is there a way for me to test if my card has been properly installed and the driver is in use? How do I know which card is used for normal computing and what card is used for specific applications? Note: Gnome has an option to "Launch using discrete graphics card" when right clicking on any app installed. thanks for your help. ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure
Re: What package do I need to install for my Nvidia card
So now I have noticed at boot time I am getting a message about "NVIDIA kernel module missing, falling back to Nouveau". I think I have Secure Boot enabled, could this be why it didn't work? I have now followed the instructions in: https://rpmfusion.org/Howto/Secure%20Boot And I think I went through the whole process of importing the key (Im not sure I did everything right). If I have now imported the key correctly, do I need to reinstall those packages to get the driver to work? What do I need to do now to get the driver to load? thanks for your help, ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure
Re: What package do I need to install for my Nvidia card
On Sat, 2022-06-18 at 08:07 +0100, Barry wrote: > > Two things. The people working on this are on the rpmfusion lists you > might want to ask for information there. Thanks for your response Barry. I just sent an email to rpmfusion-us...@lists.rpmfusion.org , but it seems like that list is dead. > My guess is that your system has not built new nvidia Kmods since you > added the signing key. > > You will need to force the mod to be rebuilt so that is signed. > I do not know what the reliable way to do the rebuild is. Does anyone know how to do this? I already tried sudo depmod -ae, didn't work. > I do know that uninstall and install of nvidia rpms does not help as > the kmod > Is left after the uninstall and its presence prevents a rebuild. > > Once you update and get a new kernel it will rebuid. ok, thats cool, this happens relatively often, I think I can wait, thanks a lot Barry. > ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure
how to change environment variable permanently
hello, I would like to change the $PATH environment variable permanently, to be able to execute a program more quickly. I have tried adding a new line: export PATH=$PATH:/my/path , to my .bashrc . When I log in again, I see that $PATH is now: $PATH:/my/path/:/my/path, my directory has been appended twice. I don't know exactly what the "export" command actually does, so I am lost here. thanks for your help. ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure
Re: how to change environment variable permanently
On Fri, 2022-06-24 at 11:49 -0300, George N. White III wrote: > > You can add your program to the GUI configuration to start it with an > icon, put a > symbolic link to the program in a directory that is already in the > PATH, such as > $HOME/bin, create a shell script that runs the program with > additional environment > settings, and many more depending on how the program is used. Thanks George. I know I can create a Gnome launcher to do this, but thats not really what I wanted. In Gnome, alt-F2 will open a little window that lets me issue a command line instruction (like executing a program), I like that, its fast and easy. I like the idea of just adding a symbolic link to ~/bin, that path is in my $PATH variable but the folder doesn't exist, yet. > Once your linux usage moves beyond web browsing it is important to > master some > basic command-line/shell tools. Ouch, web browsing, that hurt a little. > There are many dangerously misleading youtube > tutorials (avoid those that claim to be easy or fast!) and a few that > are excellent, but I > suggest starting with LinuxCommand.org as it has been used by many > people for > years. Thanks for this reference, I will look it up. Right now I am reading a book called, How Linux Works by Brian Ward. > If the directory you want to add to the PATH contains a single > program, other methods > are probably more appropriate. Ok, that makes sense. > The reason the PATH is added twice is that ~/.bashrc > gets run each time bash is invoked. If you log in on a text console > you normally see one > entry in the PATH. If you are in a bash terminal session and see 2 > entries, starting bash > again will give 3 entries. > > On Fedora, /etc/profile defines a shell function called pathmunge > that checks to see if > a directory is already in the PATH before adding it to the PATH. Ok, I will look into pathmunge, just to learn something new. thanks a lot for this. Anil ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure
Re: how to change environment variable permanently
On Fri, 2022-06-24 at 07:36 -0800, Roger Heflin wrote: > Trick is add this around the path add. > > If [ $path_add -ne 1 ] ; then > Path addition code > Path_add=1 > Fi Thanks for this Roger, I will try it and let you know, ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure
Monitor id detection via HDMI is variable
hello, I am noticing that my new Dell S2421HS is detected and identified differently depending on when I connect it. If the monitor is connected when I boot up the laptop, the monitor is detected as "Dell Inc. DELL S2421HS". If the monitor is connected after logging in, it is detected as something like "HDMI 1 Unknown - A" (approximately). Does anyone have some insight into why this is happening? I using KDE Plasma desktiop, thank you, Anil ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam, report it: https://pagure.io/fedora-infrastructure/new_issue
Re: Monitor id detection via HDMI is variable
On Wednesday, August 24, 2022 11:46:24 AM -05 Barry wrote: > Check dmesg for any messages about the video interface or monitor. > Are there any messages about edid? Hello Barry, I tried looking in dmesg but cannot find anything mentioning edid. I'm not sure this would help me. Detection appears to be working fine when I boot with the monitor connected. It does not do the nice detection when I connect the monitor after logging in. Dmesg would not show me anything that happens after login right? I will try checking again, when I have the monitor available again to see if maybe I can find something related to the monitor in dmesg. thank you, ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam, report it: https://pagure.io/fedora-infrastructure/new_issue
dragon (KDE app) not playing video, only sound
hello, I had some issues playing videos online on my newly installed Fedora 36. I solved this by adding the rpmfusion repository and installing ffmpeg., Now, the Dragon player is playing a video only outputing sound, no video is shown. Ffprobe of the movie I want to watch outputs: Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'Videos/movies/Everything Everywhere All At Once (2022) [1080p] [BluRay] [5.1] [YTS.MX]/ Everything.Everywhere.All.At.Once.2022.1080p.BluRay.x264.AAC5.1-[YTS.MX].mp4': Metadata: major_brand : isom minor_version : 512 compatible_brands: isomiso2avc1mp41 encoder : Lavf58.67.100 Duration: 02:19:19.39, start: 0.00, bitrate: 2638 kb/s Stream #0:0[0x1](und): Video: h264 (High) (avc1 / 0x31637661), yuv420p(tv, bt709, progressive), 1920x1036 [SAR 1:1 DAR 480:259], 2249 kb/s, 23.98 fps, 23.98 tbr, 24k tbn (default) Metadata: handler_name: VideoHandler vendor_id : [0][0][0][0] Stream #0:1[0x2](und): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, 5.1, fltp, 384 kb/s (default) Metadata: handler_name: SoundHandler vendor_id : [0][0][0][0] Thanks for your help. Anil ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam, report it: https://pagure.io/fedora-infrastructure/new_issue
Error notification after suspend
hello, I am getting an error notification after resuming from suspend. kernel:__common_interrupt: 5.33 No irq handler for vector Very funny other people with the same laptop have complained about this issue before. https://ask.fedoraproject.org/t/machine-never-recovers-from-suspend/15207 https://superuser.com/questions/1585322/why-do-i-see-the-message-do-irq-5-33-no-irq-handler-for-vector-on-my-dell-xps However, my computer resumes successfully without any issues I can see, only this notification. any ideas? thank you, ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam, report it: https://pagure.io/fedora-infrastructure/new_issue
Re: dragon (KDE app) not playing video, only sound
On Sunday, August 28, 2022 8:59:15 AM -05 Branko Grubić wrote: > Dragon uses some kde library which uses gstreamer (there are other > options but most distros use gstreamer) most likely in the backend, you > could try installing `gstreamer1-libav` package from rpmfusion and see > if it helps. That did it, my video is playing, thank you! ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam, report it: https://pagure.io/fedora-infrastructure/new_issue
Firefox tab switch looks bad in high-dpi scaled Gnome
hello, When switching tabs in Firefox on a high-dpi display that has been scaled (200%) in Gnome. The tabs appear on top of each other. All tabs are shown, but they are on top of each other in a cascade sort of layout. It looks really bad. Does anyone have any suggestions as to how to fix this? So that tabs are shown spread out, even if not all tabs are shown on the screen at one time. thank you, ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure
errors and weird touchpad behavior
hello, I am running Fedora 33 on a Dell XPS 9550. My touchpad appears to be working ok, except for the fact that doing actual clicks (pressing on the touchpad is not working), but that appears to be a problem with the touchpad (because it also is not working really on Windows). I am getting the following error on startup: [ 2.770865] psmouse serio1: synaptics: device claims to have min coordinates query, but I'm not able to read it. [ 2.770870] psmouse serio1: synaptics: Your touchpad (PNP: DLL06e4 PNP0f13) says it can support a different bus. If i2c-hid and hid-rmi are not used, you might want to try setting psmouse.synaptics_intertouch to 1 and report this to linux-in...@vger.kernel.org. [ 2.978865] psmouse serio1: synaptics: Unable to initialize device. Can anyone tell me if this might be an actual hardware issue at this point? Is there a possibility this error is telling me why "clicking" is not working? Is there any firmware of software I could install that might fix this problem (for any OS)? thank you, ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure
how to scale Gnome to user defined percentage
hello, I am struggling more than enjoying the high-DPI display on my new laptop. Gnome allows me to scale my display, to 200, 300, 400 %. Is there an easy way to scale to 250% for example? Does scaling like this in Gnome affect peformance of displaying? thank you, ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure
Re: how to scale Gnome to user defined percentage
On 6/15/21 5:29 PM, George N. White III wrote: On Tue, 15 Jun 2021 at 18:46, Anil F Duggirala mailto:anilduggir...@fastmail.fm>> wrote: hello, I am struggling more than enjoying the high-DPI display on my new laptop. Gnome allows me to scale my display, to 200, 300, 400 %. Is there an easy way to scale to 250% for example? Does scaling like this in Gnome affect peformance of displaying? Are you using Xorg? <https://bugzilla.gnome.org/show_bug.cgi?id=765011 <https://bugzilla.gnome.org/show_bug.cgi?id=765011>> indicates that fractional scaling in Gnome was available in Wayland 2 years ago, but not easily implemented for Xorg. Hello George, I am on Wayland. I am not having any perceivable issues right now (I'm at 200 %). I would like to know how to set scaling to a 250%, thanks, ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure
slow startup process and dmesg times
hello, I am looking at output from dmesg on my laptop and there appears to be a time when a process takes longer than what might be expected and I think this may be reducing my startup speed. My question is, is it normal for there to be a jump in time (timestamp) from 7 seconds to 18 seconds. And then from 21 seconds to 30 seconds? Are these processes slowing down my startup? dmesg output: https://pastebin.com/HhDyURjd thank you. ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure
Re: slow startup process and dmesg times
On 6/28/21 11:12 AM, Chris Murphy wrote: [ 8.611345] psmouse serio1: Failed to enable mouse on isa0060/serio1 [ 17.872494] IPv6: ADDRCONF(NETDEV_CHANGE): wlp2s0: link becomes ready I'm not sure exactly how it works, but NetworkManager-wait-online.service is intended to slow things down in case there are other services (like automounts, FreeIPA or AD) that depend on networking being up. I don't have such a setup so I disable NetworkManager-wait-online.service. I have one computer where this makes a difference in boot time. With that off, other services can be started while networking comes up whenever it's going to come up, and overall improve boot time. Thank you Chris. Could you tell me how I would go about disabling the NetworkManager-wait-online.service ? [ 21.458981] Bluetooth: RFCOMM ver 1.11 [ 30.323705] nouveau :01:00.0: Enabling HDA controller The 2nd one strikes me as a bug because it was reported almost 11 seconds earlier. There was a report on reddit someone having really slow boot times and it was resolved by installing the proprietary nvidia driver; but also seemed to be the consensus to install it. https://rpmfusion.org/Howto/NVIDIA Installing the proprietary Nvidia driver does not seem easy. I am on a hybrid graphics laptop; the graphics on Gnome, which uses my integrated graphics card, are not looking very nice. I found these instructions suggesting the use of an auto-installer. https://ask.fedoraproject.org/t/nvidia-auto-installer-for-fedora-now-works-with-fedora-34/13765 I guess I could give that a try, but I would still like to know if there is a chance that might mess up graphics all around on my laptop. Thanks again, ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure
Re: slow startup process and dmesg times
On 6/28/21 10:27 AM, Roger Heflin wrote: Run: systemd-analyze blame Thanks very much Roger. I ran that and got 14.955s NetworkManager-wait-online.service 3.983s plymouth-quit-wait.service 1.726s systemd-udev-settle.service 1.128s fwupd.service (and so on ) It seems to be that the NetworkM..service is taking quite a bit of time. As Chris pointed out. Find one of the last critical services that indicates the machine is "up". systemd-analyze critical-chain(this will show you what took how long prior to that service) I did this on on the NetworkM...service and got: NetworkManager-wait-online.service +14.955s └─NetworkManager.service @1.841s +26ms └─network-pre.target @1.839s └─firewalld.service @1.241s +597ms └─polkit.service @1.417s +122ms └─basic.target @1.235s └─dbus-broker.service @1.278s +54ms └─dbus.socket @1.229s └─sysinit.target @1.225s └─systemd-userdbd.service @16.936s +22ms └─systemd-userdbd.socket @368ms └─system.slice └─-.slice at 18seconds it looks like your network and the graphics drivers are getting loaded, so all before this is initing the system, but all "kernel" drivers were loaded at 8 sec so it seems from 8 sec -> 18 sec the userspace pieces are being started, but those pieces do not load any kernel pieces so they do not show the work happening in userspace. If you look at messages file it likely has a lot of userspace pieces starting up. Thanks for educating me. I don't know what you mean by the "messages file" here though. Thank you. ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure
Re: Light Night
I am succesfully using Night Light on F34, I am setting the activation times manually. Geoclue only makes sense if you are constantly traveling. ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure
Re: slow startup process and dmesg times
On 6/29/21 10:23 AM, Qiyu Yan wrote: sudo systemctl disable NetworkManager-wait-online.service This should not cause any problem unless some services needs network to be accessible. Thank you Qiyu Yan, I did this and my bootup is much faster now, much faster. I still wonder why one would expect the system to be online before allowing one to login. By the time I login and the Gnome interface is fully loaded, my system is online. thanks again. ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure
laptop remains on after closing lid
Hello, I have been experiencing an issue on sporadic occasions. Having worked on my laptop, I close the lid and expect it to suspend. An hour later I open the lid, I see that it is on (not suspended) and am shown a black screen and the laptop is smoking hot (really hot). I hard shutdown turns the system off (havent tried any other way to get the system working because the temperature is so high I get scared, I dont really remember if the fans were on at this point, although I believe they are not because the temperature is really high). This has happened a few times, but is not happening always. How can I test suspend action when laptop lid is closed? How can I test the laptop lid close sensor is working? What can I do if this happens again? Is there a way to log temperatures to make sure the system is shutting down when high temperatures are reached? System: Fedora WS 34 on Dell XPS 15 with 4K touchscreen (this screen is heavy and I believe could generate a lot of heat too if it is left on). thank you, ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure
Re: laptop remains on after closing lid
On 9/8/21 14:11, Joe Zeff wrote: When you leave your laptop on but closed, is it sitting on a hard surface, and is there adequate ventilation? If not, you may want to prop up one side and/or shift it to someplace with better circulation. This won't eliminate the suspend issue, but it should help avoid future overheating while you're solving the problem. Hello Joe. I actually put the laptop in my backpack when this happened. I am usually on the move. Thanks for your suggestion though. ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure
Re: laptop remains on after closing lid
On 9/8/21 15:22, Roger Heflin wrote: if you have ssh setup on the laptop you can ssh into the laptop remotely and/or ping it. If ping works or you can ssh into it it did not suspend. I have mine so that suspend is disabled when the lid is close but in place I have this script started up in rc.local: Thanks for that Roger. I actually do want it to suspend. As I said in my op, the laptop has a heavy display, I dont think under any circumstance the display should be ON, even if it is blank. Some day I wil learn more about scripting in linux, seems like fun. ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure
Re: laptop remains on after closing lid
On 9/8/21 16:07, Geoffrey Leach wrote: On Wed, 8 Sep 2021 15:22:10 -0500 Roger Heflin wrote: Have you considered the possibility that you have a loose connection between the lid and the motherboard? Yes, I have considered that. When I open the laptop again, it is smoking hot and the screen is on but black. I am not sure if it is black because the heat switched it to that state or because the laptop is simply stuck and it never performed the suspend. The first thing I considered was that the switch for lid closing was not working, but that doesnt fully explain why the laptop is stuck when I open it again (unless the freeze is caused by the heat). thank you, ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure