• 34 Posts
  • 748 Comments
Joined 3 years ago
Aquileo | cake
Cake day: June 5th, 2023

Aquileo | help-circle

  • gnuhaut@lemmy.mltoLinux@lemmy.mlCan I overclock an android tablet with termux?
    Aquileo | link
    Aquileo | fedilink
    Aquileo | arrow-up
    3
    ·
    Aquileo | edit-2
    2 months ago

    Usually (on laptops anyway) setting the performance governor only marginally increases throughput and/or latency, while significantly increasing power use. This is because the default behavior of ondemand governor is, almost always, to go to max clock speed practically instantly when there’s actual work to do.

    In theory it can even have detrimental effect, especially with passive/inadequate cooling (which I assume an Android tablet would have), because the CPU will throttle automatically if it gets too warm, and disabling power saving features means it’ll run generally hotter.



  • There should not be a space between the entries in $PATH, just :. Plus, this is syntactically wrong: export allows to set multiple variables separated by space, like export A=a B=b. You’re essentially doing export A=a B which makes it ignore the B part as it is nonsensical.

    Also path should contain directories, and /usr/sbin/grub-install/grub-install isn’t a directory. In fact it almost certainly does not exist at all.

    Path should contain at least /usr/bin. That’s why no command works, they’re all in /usr/bin. The shell looks through all the directories in $PATH (separated by :) to find commands.




  • gnuhaut@lemmy.mltoAsklemmy@lemmy.mlWhat are your opinions on anti-natalism?
    Aquileo | link
    Aquileo | fedilink
    Aquileo | arrow-up
    1
    Aquileo | arrow-down
    1
    ·
    11 months ago

    Oh come on, I can recognize my common interest with other humans without mediating this through overly abstracted “values” and then arguing from that. Plus, you know, little kids and even many animals show empathy and they’re not doing any moral reasoning or have any concept of a moral value. It seems to me that, more often than not, moral reasoning is employed to rationalize away empathy.

    It would also be nice if you could not imply that I’m a threat to humanity. My comment about shooting philosophers was clearly a joke as should be obvious from the rest of the comment, whereas yours strikes me as deadly serious.

    Also you didn’t actually argue my points about how this benefits existing authorities, nor about how this incentivizes motivated reasoning.


  • gnuhaut@lemmy.mltoAsklemmy@lemmy.mlWhat are your opinions on anti-natalism?
    Aquileo | link
    Aquileo | fedilink
    Aquileo | arrow-up
    1
    Aquileo | arrow-down
    4
    ·
    11 months ago

    Yeah that’s not what I was thinking about.

    The way moral reasoning works is this: You have something you want, be it is your material interest or it is due to your belief or feelings. If this is to become a norm or law or widely adopted in some way, you’re not supposed to argue that way though. You have to do a whole derivation down from Universal Values™, meaning you’re now not arguing from your own POV, but from some common good, and, in practice, especially the interest of the ruling order that you want to adopt your position. This means you’re already inclined to compromise your position before you’ve even voiced it.

    This is why ruling institutions encourage moral reasoning, they teach it in school, on TV etc. It makes you argue from their POV–that of the nation, the state, the existing order–instead of your own.

    It also means that your moral argument is sophistry–motivated reasoning–if you have constructed it for a position you hold for a completely different reason, which is not conducive to clear thinking.






  • I guess because that adds extra complexity that isn’t inherently necessary and can be added on top, plus it eats resources. You’ll spend the cycles either way basically, at least this way it’s optional. I don’t bother with a file indexer because with SSDs nowadays, find is pretty fast, and how often do you search for files anyway?

    Linux has APIs to get notified on file system events (fanotify, inotify) which would allow such a service to update itself whenever files are created/delete immediately, but locate is way older than that, from the 80s. I think popular DEs have something like that.

    There’s also ways to search for specific files that come with packages (e.g. dpkg -S), because the package manager already maintains an index of files that were installed by it, so you can use that for most stuff outside /home.



  • That “U=xxx” is the IMAP UID, which is a unique identifier that message has in the IMAP mailbox. mbsync adds that to the filename just so it can track which (local) message corresponds to what message on the IMAP server.

    When moving a message from one mailbox (folder) to another, this UID changes, because it’s per-mailbox only. If you read the manpage for mbsync, it says explicitly that the MUA should strip the U=xxx when moving between maildirs, so the behavior of aerc here is correct.

    In order to get to the bottom of this, you’d probably have to enable the debug output of mbsync and look at exactly what IMAP commands it sends to Gmail, then decipher the relevant command(s) by looking at the RFC, and then decide whether it’s Gmail or mbsync’s fault this gets lost. You could also contact the mbsync devs with this I guess.

    I found someone complaining about the same issue, without getting a reply, 7 years ago, except that person was using mutt: https://stackoverflow.com/questions/52218254/isync-mbsync-on-gmail-marks-mail-as-new-after-move-to-another-folder

    That doesn’t help you obviously but from this we might guess it’s probably not aerc’s fault.







  • First, check if you can login, with your new user, on the Linux console (i.e. Ctrl-Alt-F1 through F7). If you can, the username change probably went through correctly. Report back if you cannot login via console or you get warnings/errors.

    Your login session does automatically terminate if the session process for Cinnamon exits, booting you back to GDM (or whatever login manager you have). So probably the Cinnamon session process, started by GDM, craps out for some reason. The reason is probably, I suspect, that it cannot access or cannot find some file it wants to open.

    Check ~/.xsession-errors, it might tell you what went wrong.

    Also check the permissions of your home folder, the files in your home folder, and check if you correctly set up the symbolic link from /home/olduser to /home/newuser as the guide suggests.