Avatar

A Mouse

mouse@midwest.social
Joined
7 posts • 89 comments
Direct message

It is very useful! It’s also slightly customizable in that you can have it not save duplicate commands.

More information can be found on the Arch Wiki or the man page

permalink
report
parent
reply
9 points
permalink
report
parent
reply

Not that it helps but the CEO claims they forgive for this type of attack/event. https://news.ycombinator.com/item?id=39521986

Netlify CEO here.

Our support team has reached out to the user from the thread to let them know they’re not getting charged for this.

It’s currently our policy to not shut down free sites during traffic spikes that doesn’t match attack patterns, but instead forgiving any bills from legitimate mistakes after the fact.

Apologies that this didn’t come through in the initial support reply.

And later they were asked if they would have responded if it didn’t go viral. https://news.ycombinator.com/item?id=39522029

Question:

There are only two questions everyone have:

  1. Would Netlify forgive the bill if this didn’t go viral?

  2. How do you plan to address this issue so that it never happens again?

Everyone here knew someone from Netlify would come and say OP wouldn’t have to pay. That was a given. Now we want to know the important answers.

Answer by CEO:

  1. Yes. We’ve forgiven lots and lots of bills over the last 9 years and they haven’t gone viral

  2. While I’ve always favored erring towards keeping people’s sites up we are currently working on changing the default behavior to never let free sites incur overages

permalink
report
parent
reply

~53 W

  • Server:

    • AMD Ryzen 5 5600G
    • 4x16 GB DDR4 3200 Mhz
    • 256 GB NVMe as boot-disk
    • 2x256 GB Samsung SSDs for VMs
    • 2x2 TB WD Red Plus HDDs
  • Mini PC: Beelink S12 N95

    • 16 GB DDR4
    • 256 GB NVMe
  • 8 port unmanaged TP Link switch

I would like to expand my storage, however I don’t have any available SATA ports and I believe adding an HBA would increase the idle draw about 8 W. I might just upgrade the SSDs and split the storage between the HDDs and SSDs.

permalink
report
reply

I recently switched from Proxmox to Debian Bookworm with Incus(LXD fork) as my primary setup, it’s been a pleasant experience. I also like the idea of using something like Cockpit to manage VMs though haven’t come to a need yet for a VM over a container. I’ll also point out that Incus can handle VMs as well.

Stéphane Graber, Project leader of Linux Containers is also on the fediverse and responds to questions often.

permalink
report
parent
reply

You’re welcome! Also thanks for asking this question, I hadn’t seen ShotShare before, it looks useful.

permalink
report
parent
reply

No, since you are using the bind mount, you do not need to use the volume.

permalink
report
parent
reply

I just did another test.

You should be able to create the directories manually. I cheated by simply cloning the repo and copying them to the bind mount location like so. You can use the bind mount method like you wanted.

git clone https://github.com/mdshack/shotshare
cp -r shotshare/storage/* /srv/dev-disk-by-uuid-7fe66601-5ca0-4c09-bc13-a015025fe53a/Files/Shotshare/shotshare_data/
chown 82:82 -R /srv/dev-disk-by-uuid-7fe66601-5ca0-4c09-bc13-a015025fe53a/Files/Shotshare/shotshare_data
permalink
report
parent
reply

It will be stored in /var/lib/docker/volumes, you can find the exact location by inspecting the volume. Use docker volume ls to list the volumes, and do docker volume inspect <volume_name> replacing <volume_name> with the one from the list. Look for “Mountpoint”, that is the exact location. You could try copying that to bind mount location, though I can’t be sure if it will continue to work.

permalink
report
parent
reply