Elektrine lite

← Feed

@ferricoxide@blahaj.zone

Post #2087725

2026-05-06 12:01 UTC

@corbden@defcon.social @iris@neuromatch.social @tito_swineflu@sfba.social For UNIX/Linux environments, something like: 1. Stop Chrome 2. Execute: sudo -i SUDO_HOME="$( eval echo "~${SUDO_USER}" )" for TARG in $( find ${SUDO_HOME} -name weights.bin 2> /dev/null ); do rm "${TARG}" install -bDm 0600 -o root -g root /dev/null "${TARG}" done Ought to work? Notes: * If you use multiple profiles and suspect you might have more than one such file, that should take care of them all * Depending on your sudo version, explicitly setting SUDO_HOME might be unnecessary

Replies (1)

  • @tito_swineflu@sfba.social 2026-05-06 14:33

    @ferricoxide@blahaj.zone @corbden@defcon.social @iris@neuromatch.social i just piped /dev/null into the file. It wasn't rewritten upon restarting chrome.

    Open ##2087724