• 6 Posts
  • 527 Comments
Joined 1 year ago
cake
Cake day: June 2nd, 2023

help-circle







  • I haven’t had great success, it causes more problems than it is worth if you aren’t willing and knowledgeable to troubleshoot any finicky behavior. The nvidia drivers just end up causing a headache. I would never recommend anyone buy an nvidia GPU if they dont have a specific requirement like run local AI/LLMs using CUDA or raytracing (I guess). AMD can also run local LLMs using ROCm, just not supported for 5000 series or lower.

    The only Linux distro I (and my friends) have had any success with nvidia GPUs is Bazzite/Aurora. Bazzite is gaming focused and has special nvidia OS images.




  • The one-line command I recommend for install Mullvad’s RPM repo is as follows:
    curl --tlsv1.3 -fsS https://repository.mullvad.net/rpm/stable/mullvad.repo | pkexec tee -a "/etc/yum.repos.d/mullvad.repo"

    My explanation: This curl command enforces strong TLS encryption and pipes the fetched repo file to the tee (append) command, which requests to run with root permissions and appends the file to the specified path. pkexec is useful instead of plain sudo because if the current user isn’t in wheel/sudo groul it requests the local admin account to authenticate.