this post was submitted on 28 Aug 2023
504 points (98.3% liked)

Selfhosted

45448 readers
377 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 2 years ago
MODERATORS
 

cross-posted from: https://jamie.moe/post/113630

There have been users spamming CSAM content in !lemmyshitpost@lemmy.world causing it to federate to other instances. If your instance is subscribed to this community, you should take action to rectify it immediately. I recommend performing a hard delete via command line on the server.

I deleted every image from the past 24 hours personally, using the following command: sudo find /srv/lemmy/example.com/volumes/pictrs/files -type f -ctime -1 -exec shred {} \;

Note: Your local jurisdiction may impose a duty to report or other obligations. Check with these, but always prioritize ensuring that the content does not continue to be served.

Update

Apparently the Lemmy Shitpost community is shut down as of now.

(page 2) 50 comments
sorted by: hot top controversial new old
[–] krebstar@lemmy.world 15 points 2 years ago (2 children)
load more comments (2 replies)
[–] CrimeDad@lemmy.crimedad.work 11 points 2 years ago (1 children)

I'm not subscribed to that community, but I guess I'm glad Pictrs doesn't work for me, since I am using the Yunohost version of Lemmy. The creators of the Yunohost package couldn't get it to work. I haven't really missed it honestly.

[–] dandroid@sh.itjust.works 8 points 2 years ago (1 children)

Can you run lemmy without pictrs? What behavior is different?

load more comments (1 replies)
[–] Rearsays@lemmy.ml 9 points 2 years ago* (last edited 2 years ago)

Likely Spez’s personal jailbait collection

[–] Ebby@lemmy.ssba.com 9 points 2 years ago (3 children)

Could someone please ELI5 that script. I'm all for keeping things clean, but old enough to remember the days of console based trolling.

[–] RegalPotoo@lemmy.world 13 points 2 years ago (1 children)

Looks fairly sane, finds every file in the given directory that was created in the last 24 hours and deletes them. Personally if you are dealing with CSAM I'd be using shred instead of just rm

load more comments (1 replies)
[–] UnlimitedRumination@sh.itjust.works 9 points 2 years ago* (last edited 2 years ago) (2 children)

sudo

As root

find /srv/lemmy/example.com/volumes/pictrs/files

Find files in /srv/lemmy... that:

-type f

Are plain files (not directories, symlinks, etc; includes images)

-ctime -1

And were created within an amount of time (probably last day, haven't used this flag in a while)

-exec rm {} \\;

For each matching file found execute rm on it (delete it).

load more comments (2 replies)
[–] mordred@lemmy.world 7 points 2 years ago

sudo find /srv/lemmy/example.com/volumes/pictrs/files -type f -ctime -1 -exec rm {} \;

  • sudo: run as root
  • find /srv/lemmy/example.com/volumes/pictrs/files -type f: find files (f) in directory
  • -ctime -1: which have been created in the last day
  • -exec rm {} ; execute the command rm (remove) on each of them
[–] kev@lemmy.kevhomeit.trade 8 points 2 years ago (1 children)

I am using the Lemmy easy deploy would this command works?

[–] russjr08@outpost.zeuslink.net 8 points 2 years ago

You'll need to find where the actual container files are being stored. I'm unfortunately not familiar with Lemmy Easy Deploy, but you should have a folder that has some files/folders like docker-compose.yml, volumes, lemmy.hjson.

The important one is the volumes/pictrs/files folder, take the full path of that folder and replace it with the /srv/lemmy/example.com... path from the original post, and then that command should work.

[–] TropicalDingdong@lemmy.world 7 points 2 years ago

There was a weird JSON error I was getting in the last few minutes. I'm not sure if this is at all related.

[–] ksynwa@lemmygrad.ml 7 points 2 years ago (4 children)

As far as I know, images should not be federating to federated instances, right? Image proxying is supposed to be added to pictrs version 0.5.0 but it is still in alpha.

load more comments (4 replies)
load more comments
view more: ‹ prev next ›