• 0 Posts
  • 15 Comments
Joined 1 month ago
cake
Cake day: February 10th, 2025

help-circle
  • 75C is fine, the CPU will throttle in order to avoid max temps. This isn’t something that should cause instability.

    It’s POSSIBLE that this is a bug that’s fixed with a microcode update, see here for installing it: https://wiki.archlinux.org/title/Microcode

    TL;DR:

    1. Install amd-ucode
    2. Edit /etc/mkinitcpio.conf, add microcode after autodetect
    3. sudo mkinitcpio -P
    4. reboot

    If that doesn’t fix it, and it crashes in Windows too, it may be a hardware problem. There isn’t much you need to do in order to get a CPU working.




  • There are plenty of responses from people trying to help.

    If the OP isn’t willing to try any steps or provide feedback to the people who offered suggestions that’s on them.

    On the other hand, you’re engaging in exactly the kind of zero effort flame posts that you’re also complaining about. It is hypocritical to complain about toxic Linux communities while being part of the toxicity.




  • Ah.

    Yes, if they’re directly through an Oracle partnership with your job that’s legit then.

    Your company likely gets this as part of a package that they buy from Oracle. I’d guess that they offer certifications as part of the courses that they teach.

    They likely have a partnership with Oracle to buy (some of) the certifications. You’re just getting that same deal (free first try, costs money afterwards).

    So, if you’ve already studied for a certification, then it can save you money.

    But unless it says otherwise, assume that it is just the test portion. In addition, some certifications require proctoring and that may at your expense. This is probably part of “the necessary info” package, but you can ask a supervisor about the details.


  • I was under the impression, from reading one of the developers write of his interaction with the owner, that they’re just selling dropped shipped white label laptops.

    They’re simply add branding and a disk image which the white label manufacturer applies before shipping.

    So it doesn’t even seem to be an OEM… Just some guy trying to make an easy buck with some slick marketing and white label laptops… he just couldn’t get the image setup and failed spectacularly in collaboration with the people who could help him.



  • Your things may be owned by root and have unusual permissions.

    So, to make your NTFS drive be owned by your user and group and to set the permissions you can:

    # Change owner to user:user
    sudo chown -R username:group your_directory
    
    # Change permissions to default (typically 755 for directories and 644 for files)
    
    # For directories
    find your_directory -type d -exec chmod 755 {} \;
    
     #files
    find your_directory -type f -exec chmod 644 {} \;