linux

This magazine is from a federated server and may be incomplete. Browse more on the original instance.

bizdelnick, (edited ) in how can I change Ubuntu to have default settings (everything, apps, icon size, color, etc) without losing any other software or files??

mv ~/.config{,.bk}

Better do this from console, when graphical session is not started. But this will only drop your user settings, not system-wide.

TerkErJerbs, in LACT: Linux AMDGPU Controller for overclocking and fan curve control

Dope, thank you for posting. Been using ‘Core CTRL’ for quite awhile but Imma give this a rip. For some reason the former tool never could control the fan curve for my GPU (all the other fans in the box worked fine with it) so this might be profit.

Hildegarde, in how can I change Ubuntu to have default settings (everything, apps, icon size, color, etc) without losing any other software or files??

Nearly all settings are stored in .config in your home directory. It’s a hidden directory so you may need to find that option in your file browser.

Rename .config to something else, .config_old for example, then reboot. The system will notice the lack of config files and generate new default ones.

Some settings are stored elsewhere like .local/share but this should reset most of the settings while still allowing you to restore the old configurations if needed.

01adrianrdgz,
@01adrianrdgz@lemmy.world avatar

that worked :3 thank you very much, I will not touch anything now. (Except installing new apps)

jvrava9, in How to increase max memory speed in CoreCTRL
@jvrava9@lemmy.dbzer0.com avatar

I overclocked my RX580 recently. Here is how to do it in CoreCTRL.

gitlab.com/corectrl/corectrl/-/wikis/Setup

Currently, to have full control of your AMD GPU while using the amdgpu driver, you need to append the boot parameter amdgpu.ppfeaturemask=0xffffffff to your bootloader configuration and reboot. NOTE: The following instructions are for guidance only. Check your distribution documentation on how to add boot parameters.

GRUB bootloader Edit the file /etc/default/grub as root and append amdgpu.ppfeaturemask=0xffffffff to GRUB_CMDLINE_LINUX_DEFAULT:

GRUB_CMDLINE_LINUX_DEFAULT=“… amdgpu.ppfeaturemask=0xffffffff”

NOTE: In the above example, … represent other existing parameters. Do not add … to your GRUB_CMDLINE_LINUX_DEFAULT. You should only add amdgpu.ppfeaturemask=0xffffffff. Then regenerate the bootloader configuration file with the command:

sudo grub-mkconfig -o /boot/grub/grub.cfg

Reboot your system. You should have more controls when you select Advanced as Performance mode where you can tweak the mhz and voltage easily.

Ljubi,

I did this and i can tweak the voltage and stuff. Just max memory is wrong. On amd adrenalin i was running vram 2124mhz and here only 1075mhz. And how does the voltage work in CoreCTRL i only know how to do it in amd app in mv but i dont know what -30 is.

neurospice,

For the 6000 series amd gpus corectrl can only offset the voltage and not control each voltage step like adrenalin can. The -30 would probably be a 30mV reduction to the gpu voltage, but it should tell you exactly what you’re doing.

jvrava9,
@jvrava9@lemmy.dbzer0.com avatar

In CoreCTRL, you tweak the voltage for each state. -30 in your case would reduce the voltage by 30 mv in every state which is not ideal. Just deduct 30 mv in each state in CoreCTRL.

oscardejarjayes, in LACT: Linux AMDGPU Controller for overclocking and fan curve control

CoreCTRL, but written in Rust? Based. I’ll try it out when I have the time.

Railison, in kando: 🥧 The Cross-Platform Pie Menu.

Getting Sims 1.0 nostalgia

andruid, in Anyone want to try this "nyancat" docker image? It's pretty big -- 23kIB. :^)

Neat! What proccess did you follow for building distroless? I was using buildah, mounting dir, yum installing into the mount, and exporting that container off.

GustavoM,
@GustavoM@lemmy.world avatar

Eh…the usual “FROM: alpine:edge”, pull everything in with git, change the code as needed, static compiling everything, strip dead code out of the binary, send the binary in a scratch image and then assigning a non-root user to it.

dinckelman, in Fedora Kinoite Nightly available with Plasma 6 to test!

I got a stick with Neon unstable on it, and so far the experience is pretty damn good. Haven’t tried anything gaming related, but the shell itself is functioning really well. The only thing that’s straight up not working is Discover, but when did it, really

Pantherina,

Its always changing. When I rebooted the VM into the nightly kinoite image it was completely messed up graphically. Lets see. Its alpha alpha

bjoern_tantau, in Any experience with teaching kids Linux?
@bjoern_tantau@swg-empire.de avatar

My kids have always been using Linux because that’s what I use on my gaming PC. When it was time for my eldest to get his own computer I tried to educate him on the differences between Linux and Windows (admittedly with my bias) and he chose Linux. I feel like wobbly windows played a big part in that.

He moans about some unsupported multiplayer games now and then and I have told him that we have a spare SSD he may use to install Windows. But so far his suffering wasn’t big enough to help me step him through that process.

war, in Selecting the New Face of openSUSE is Underway
@war@kbin.social avatar

deleted_by_author

  • Loading...
  • Kusimulkku,

    I like the chameleon

    Kusimulkku, in Selecting the New Face of openSUSE is Underway

    Most of them are pretty good IMO

    MrCamel999, in Mullvad has Deb and RPM repositories now!
    @MrCamel999@programming.dev avatar

    Yay!

    sebsch,

    Paru!

    roi,

    Yaourt!

    pastermil,

    Yum!

    reallyzen,
    @reallyzen@lemmy.ml avatar

    zypper!

    Pantherina,

    Dnf on Opensuse !

    Aatube, (edited ) in Arch on semi-critical pc? (Also EndeavourOS vs raw Arch?)
    @Aatube@kbin.social avatar

    so is there any point in using Arch apart from the learning experience and being able to say “I use arch btw”?

    No. Except Arch support forums only allows raw Arch for some reason, but EndeavourOS also has a forum.

    bizdelnick, in Mullvad has Deb and RPM repositories now!

    wget https://repository.mullvad.net/rpm/stable/mullvad.repo | sudo tee /etc/yum.repos.d/mullvad.repo

    This command won’t work.

    Pantherina,

    Better? I was not sure did it with cd and forgot the parameters for wget XD isnt it -O /path/to/destination/ ?

    BautAufWasEuchAufbaut, (edited )
    @BautAufWasEuchAufbaut@lemmy.blahaj.zone avatar

    I think you can just replace wget with curl.
    Alternatively -O - I think.
    You can’t use the path directly because of permissions. And you shouldn’t run wget with root permissions.

    Pantherina, (edited )

    Yes thats why I did that and seperated it from the wget as I also think thats not the best idea

    Okay fixed it. Damn thats weird, I think I just used sudo wget X -O /path/ but not a good idea I guess.

    qaz, (edited )

    Why won’t it work?

    Kazumara, (edited )

    Because wget doesn’t use standard output for the downloaded file by default, instead it creates a file with the name in the url in the workingdir. If you want it to use standard output you need -O -

    ChaoticNeutralCzech, in GIMP 3.0 finally has a release schedule

    This is controversial but will I be able to map right click to erase or another tool/brush preset/color? It just feels wrong to keep switchimg with N and Shift+E while making pixel art.

    Darkpepito_tux,
    @Darkpepito_tux@lemmy.world avatar

    Why not use Pixelorama or Libresprite ? They are both really easy and nice

  • All
  • Subscribed
  • Moderated
  • Favorites
  • linux@lemmy.ml
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #