talkingpumpkin

joined 3 years ago
[–] talkingpumpkin@lemmy.world 2 points 3 days ago

Yep, that's what I described and any CA accepted by the client can do it

[–] talkingpumpkin@lemmy.world 1 points 3 days ago (2 children)

They don't have your private key

[–] talkingpumpkin@lemmy.world 31 points 3 days ago (22 children)

What risk are you trying to mitigate, specifically?

If it's the CA taking over your site, control over your CA specifically doesn't really give any advantage to an attacker (they would have to hijack traffic and provide a new certificate - nobody will notice if the certificate is from a different CA).

Note that your CA cannot decrypt the exchanges between your server and its clients.

[–] talkingpumpkin@lemmy.world 34 points 3 days ago (3 children)

Didn't read the article but I love the braindead chart:

[–] talkingpumpkin@lemmy.world 4 points 3 days ago (1 children)
FILENAME='birthday_0' $(cat command_ffmpeg_SYNCAUD)  

cat prints out a file without altering it's contents.

If it's important to keep the commands in a separate file, you could use sed to find/replace, or use eval, or use some external template engine (lookup "bash expand variables in file").

What you probably want to do instead, I assume, is to replace the external files with regular bash variables:

filename="some-file"
command="ffmpg -i ${filename}.mpg -bla -blabla ${filename}.mkv"
echo "$command"
[–] talkingpumpkin@lemmy.world 3 points 3 days ago* (last edited 3 days ago) (2 children)

IDK what makes Eric Bailey prefer a cooperative to a non-profit, the article doesn't explain it.

Unlike corporations, co-ops don’t have to be motivated by profit. Not needing to focus growth at all costs means co-ops can instead prioritize and incentivise things like preservation and cultivation. It is also a successful model of operation [links to a page titled "employee ownership"], one that even already exists and flourishes in the tech space [links to a page about a specific software consultancy coop that doesn't publish a knowledge website].

I might be jumping the gun here, but... it would seem he doesn't really know what the point of a cooperative is?

[–] talkingpumpkin@lemmy.world 31 points 1 week ago* (last edited 1 week ago)

I agree.

Leaving so abruptly may not be the classiest move but it's not like one can't leave if he so decides.

The dev will be fine and so will void. Nothing to see here for now.

[–] talkingpumpkin@lemmy.world 16 points 1 week ago* (last edited 1 week ago)

I'm not saying you are wrong (not saying you are right either), but... your comment sounds a lot like "trust me, I have a conflict of interest" :)

[–] talkingpumpkin@lemmy.world 30 points 1 week ago (25 children)

I love this Omarchy thing: it's helping separate the wheat from the chaff.

I only wished there was a site that listed all the "bad" guys... they seem to be way more numerous than I imagined.

[–] talkingpumpkin@lemmy.world 2 points 2 weeks ago (1 children)
[–] talkingpumpkin@lemmy.world 3 points 2 weeks ago* (last edited 2 weeks ago) (4 children)

IIUC the EUPL is more similar to the GPL that the AGPL (ie. there's no "network use" clause)

edit: seems like IDUC - see comment below

[–] talkingpumpkin@lemmy.world 4 points 2 weeks ago (2 children)

is

: <<EOF
  text
  text
EOF

a bash-ism?

 

I'll copy the whole announcement here for those who don't want to click:

I regret to inform everyone that my copy of QBittorrent escaped its sandbox last night and downloaded a whole bunch of content owned by major corporations, and then my copy of Jellyfin broke containment and added those unfortunately-downloaded media files to its various libraries. I'm conducting an internal investigation to figure out how this happened, which will involve consuming these media files until the answers become apparent. Thank you for your cooperation during this trying time.

 

Here it is https://codeberg.org/gmg/concoctions/src/branch/main/sh-scripts/nixos-rebuild

(if you try it and find any bugs, please let me know)

edit: I didn't realize the screenshot shows just instead of nixos-rebuild... that runs a script ("recipe") that calls nixos-rebuild so the output shown is from the (wrapped) nixos-rebuild

 

I'm trying to get my scripts to have precedence over the home manager stuff.

Do you happen to know how to do that?

(not sure it's relevant, but I'm using home-manager in tumbleweed, not nixos)


edit:

Thanks for the replies - I finally got time to investigate this properly so here's a few notes (hopefully useful for someone somehow).

~/.nix-profile/bin is added (prepended) to the path by the files in /nix/var/nix/profiles/default/etc/profile.d/, sourced every time my shell (fish, but it should be the same for others) starts (rg -L nix/profiles /etc 2> /dev/null for how they are sourced).

The path I set in homemanager (via home.sessionPath, which is added (prepended) to home.sessionSearchVariables.PATH) ends up in .nix-profile/etc/profile.d/hm-session-vars.sh, which is sourced via ~/.profile once per session (I think? certainly not when I start fish or bash). This may be due to how I installed home-manager... I don't recall.

So... the solution is to set the path again in my shell (possibly via programs.fish.shellInitLast - I din't check yet).

47
submitted 8 months ago* (last edited 8 months ago) by talkingpumpkin@lemmy.world to c/selfhosted@lemmy.world
 

I'd like to give my users some private network storage (private from me, ie. something encrypted at rest with keys that root cannot obtain).

Do you have any recommendations?

Ideally, it should be something where files are only decrypted on the client, but server-side decryption would be acceptable too as long as the server doesn't save the decryption keys to disk.

Before someone suggests that, I know I could just put lucks-encrypted disk images on the NAS, but I'd like the whole thing to have decent performance (the idea is to allow people to store their photos/videos, so some may have several GB of files).


edit:

Thanks everyone for your comments!

TLDR: cryfs

Turns out I was looking at the problem from the wrong point of view: I was looking at sftpgo and wondering what I could do on the server side, but you made me realise this is really a client issue (and a solved one at that).

Here's a few notes after investigating the matter:

  • The use case is exactly the same as using client-side encryption with cloud storage (dropbox and those other things we self-hoster never use).
  • As an admin I don't have to do anything to support this use case, except maybe guiding my users in choosing what solution to adopt.
  • Most of the solutions (possibly all except cryfs?) encrypt file names and contents, leaking the directory structure and file size (meaning I could pretty much guess if they are storing their photos or... unsavory movies).
  • F-droid has an Android app (called DroidFS) that support gocryptfs and cryfs

I'll recommend my users try cryfs before any other solution. Others that may be worth it looking at (in order): gocryptfs, cryptomator, securefs.

I'll recommend my users to avoid cryptomator if possible, despite its popularity: it's one of those commecrial open source projects with arbitrary limitations (5 seats, whatever that means) and may have nag screens or require people to migrate to some fork in the future.

ecryptfs is to be avoid at all costs, as it seems unamaintaned.

19
submitted 1 year ago* (last edited 1 year ago) by talkingpumpkin@lemmy.world to c/europe@feddit.org
 

Delusional.

 

A lot of selfhosted containers instructions contain volume mounts like:

docker run ...
  -v /etc/timezone:/etc/timezone:ro \
  -v /etc/localtime:/etc/localtime:ro \
  ...

but all the times I tried to skip those mounts everything seemed to work perfectly.

Are those mounts only necessary in specific cases?

PS:

Bonus question: other containers instructions say to define the TZ variable. Is that only needed when one wants a container to use a different timezone than the host?

 

Prometheus-alertmanager and graphana (especially graphana!) seem a bit too involved for monitoring my homelab (prometheus itself is fine: it does collect a lot of statistics I don't care about, but it doesn't require configuration so it doesn't bother me).

Do you know of simpler alternatives?

My goals are relatively simple:

  1. get a notification when any systemd service fails
  2. get a notification if there is not much space left on a disk
  3. get a notification if one of the above can't be determined (eg. server down, config error, ...)

Seeing graphs with basic system metrics (eg. cpu/ram usage) would be nice, but it's not super-important.

I am a dev so writing a script that checks for whatever I need is way simpler than learning/writing/testing yaml configuration (in fact, I was about to write a script to send heartbeats to something like Uptime Kuma or Tianji before I thought of asking you for a nicer solution).

view more: next ›