Solved automatically restart

My computer will automatically restart when it goes to sleep in the KDE environment, what could be the problem?
 
Probably an edge case with graphics drivers. Can you describe the graphics hardware?

Which version of FreeBSD, exactly? And so on. Please share outputs from the following commands:

  1. sysrc kld_list
  2. freebsd-version -kru ; uname -aKU
  3. pkg info -x gpu-firmware-kmod drm-fbsd13-kmod drm-current-kmod drm-devel-kmod
  4. pkg -vv | grep -e url -e enabled
 
Last edited:
Probably an edge case with graphics drivers. Can you describe the graphics hardware?

Which version of FreeBSD, exactly? And so on. Please share outputs from the following commands:

  1. sysrc kld_list
  2. freebsd-version -kru ; uname -aKU
  3. pkg info -x gpu-firmware-kmod drm-fbsd13-kmod drm-current-kmod drm-devel-kmod
  4. pkg -vv | grep -e url -e enabled
Thank grahamperrin for your very fast reply!
My Computer's CPU is AMD 3500X,Grpphics Card is RX560XT.
I have taken screenshots of the output of those commands.
Thank you very much.
Screenshot_20220203_223731.png
 
Thanks. Two key points:
  1. the operating system is outdated
  2. as far as I can tell, you have not installed what's required to properly drive the graphics hardware.
For the update:
  1. freebsd-update fetch install
  2. restart the system.
For graphics, try this:
  1. pkg install drm-kmod
  2. sysrc -f /etc/rc.conf kld_list+=amdgpu
References

<https://wiki.freebsd.org/Graphics#AMD_GPU>

<https://bsd-hardware.info/?probe=e0c2a150f7#pci:1002-731f-1462-3810>, where it's reported that AMD Navi 10 [Radeon RX 5600 OEM/5600 XT / 5700/5700 XT] works with the amdgpu kernel module.

<https://community.kde.org/FreeBSD/Setup#Quick_start> Graphics first, KDE and the rest.
 
Thanks. Two key points:
  1. the operating system is outdated
  2. as far as I can tell, you have not installed what's required to properly drive the graphics hardware.
For the update:
  1. freebsd-update fetch install
  2. restart the system.
For graphics, try this:
  1. pkg install drm-kmod
  2. sysrc -f /etc/rc.conf kld_list+=amdgpu
References

<https://wiki.freebsd.org/Graphics#AMD_GPU>

<https://bsd-hardware.info/?probe=e0c2a150f7#pci:1002-731f-1462-3810>, where it's reported that AMD Navi 10 [Radeon RX 5600 OEM/5600 XT / 5700/5700 XT] works with the amdgpu kernel module.

<https://community.kde.org/FreeBSD/Setup#Quick_start> Graphics first, KDE and the rest.
Thank you so much. I changed as you said and everything seems to be fine now. I'll keep testing for a few more days, thank you again.
 
Back
Top