this post was submitted on 09 Aug 2023
33 points (97.1% liked)

Technology

55940 readers
4226 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
top 24 comments
sorted by: hot top controversial new old
[–] StrawberryPigtails@lemmy.astaluk.icu 4 points 11 months ago (4 children)

Does anyone actually use LXD? I never could figure out the deal with this.

[–] Hexarei@programming.dev 4 points 11 months ago

Yeah I use it through proxmox but it doesn't make much difference to me. It's practically a lower-overhead VM as far as I'm concerned

[–] sbstp@programming.dev 2 points 11 months ago (1 children)

I used to use LXC maybe 5 years ago but I've since replaced everything with docker/compose. The main difference between LXC and Docker is that LXC is meant to be more like a Virtual Machine than a container. LXC containers run their own instance of systemd and can run multiple processes easily. Docker is meant to run a single process although people sometimes do hacks with supervisord or s6 overlay to run multiple processes.

At the time LXC didn't really have a concept of images like Docker, it was just base images like Ubuntu 18.04 or Debian 9 and you'd shell in the container and install your stuff.

LXD is a tool built on top of LXC, confusingly enough the LXD client is called lxc... It's higher level and might have the ability to use images, not sure, I never felt the need to learn it.

[–] 9488fcea02a9@sh.itjust.works 1 points 11 months ago (1 children)

I've always used lxc and only recently tried docker.

I really cant wrap my head around all the crazy shit docker alters on your network settings like rewriting a bunch of firewall rules without telling you

Not sure if i was doing something wrong but that was my experience with docker

[–] InvertedParallax@lemm.ee 3 points 11 months ago (2 children)

Docker is spaghetti-ware, they try to control everything, which ironically makes me Isolate my dockers in a vm.

[–] 9488fcea02a9@sh.itjust.works 4 points 11 months ago (1 children)

Ok, i'm glad my solution to the problem (run docker in an lxc container) isn't as harebrained as i thought

Other people are doing the same

[–] InvertedParallax@lemm.ee 1 points 11 months ago

Haven't done that, but honestly I'm thinking that's my next workflow.

[–] jecxjo@midwest.social 0 points 11 months ago (1 children)

That is kind of the expected setup. Either a vm or a dedicated system. You let docker do its thing and it should work.

I run lxc because i want contained systems I control. That just means I have to do the work too.

[–] InvertedParallax@lemm.ee 1 points 11 months ago (1 children)

Same, I love lxc like I love jails, you craft beautiful systems that are isolated and clean.

I wouldn't make a disposable jail, but I make disposable lxcs, lxcs are like temporary distros for me.

[–] jecxjo@midwest.social 2 points 11 months ago (1 children)

There are scripts for making a jail around single apps but yeah I typically don't use them that way. Lxc I very often install an app I want to test out and toss once I want to dedicate compile time to it.

[–] InvertedParallax@lemm.ee 1 points 11 months ago (1 children)

Yeah, I'd want a jail dockerfile system too, I just usually do them manually. Still, a way to run dockerfiles to build jails would be epic if you could make it work.

I used gentoo for a decade, I just can't afford the downtime if my workstation goes down, so it's debian with lxc workspaces for a while, but gentoo actually runs well under lxc.

Mostly every app expects its own distro, either debian or centos, few actually are agnostic, so getting them to run on gentoo was always more of a challenge than on raw debian/Ubuntu.

[–] jecxjo@midwest.social 3 points 11 months ago (1 children)

I'm actually the opposite. Run gentoo as my host and toss up a debian lxc if needed. Worst case scenario im running just the kernel and everything else from a container (actually how i typically run when rebuilding a system from start).

I've never run into a situation where an app "couldn't" run in Gentoo. It's just that I've had cases where an app is build for a 8 year old LTS of debian with such old dependencies it wouldn't be worth my time building them all when i can just pull up a container with that super old build. The nice thing is that all the vulnerabilities that old Debian had is now in a container and less of a target.

I swear i must be lucky cuz i do often hear of gentpo fatigue but I've been running it since the project started and never had issues outside the things they legitimately broke.

[–] InvertedParallax@lemm.ee 1 points 11 months ago (1 children)

Back around, I want to say more than a decade ago, they changed some stuff in the portage tree and everything broke hard for me. Then I rebuilt and a few weeks later it broke again. This was when maintainers changed and they were pretty angry for some reason.

I bailed because I couldn't build, I don't remember all the details, it just seemed like they didn't care, and I suddenly got really busy.

I'd like to go back, but debian with lxc children has been so good to me, by now there's nothing else to really learn (though of course I hate systemd), I'm using the same system as on half my servers, then freebsd for the others.

I've been using gentoo lxc to put my toes back in the water, just upgraded my workstation to a monster, might switch back, I suppose the main thing stopping me is how well debian has treated me for the last while, even most ubuntu targeted software runs out of the box.

Also, I'm really terrified of changes that lead to build breaks, any time I have to rebuild is a problem, I need my main workstation to control everything, so it's a place I'm willing to lose some customization for more stability nowadays.

Ironically my only major applications are basically konsole, Firefox, dolphin and python for the pyqt5 gui apps i wrote like a video player and some other stuff, though getting back into lutris would be nice too.

[–] jecxjo@midwest.social 2 points 11 months ago

I've been debating hoping off gentoo because my system is so old. Like a decade old. A majority of the stuff compiles fine but Firefox and LibreOffice I just use the binary builds via Flatpak. Its funny cuz i still remember the days where building the kernel took a few hours.

[–] atzanteol@sh.itjust.works 1 points 11 months ago (1 children)

I love it. It's like a cross between virtual box and docker. You get a container that spins up fast but behaves more like a vm. You can install services, you get an ip address, etc.

[–] fmstrat@lemmy.nowsci.com 0 points 11 months ago (1 children)

But you can do all that in docker? Heck I have full GNOME installs with novnc in docker.

[–] jecxjo@midwest.social 4 points 11 months ago

There are a few differences because lxc runs along side the reast of host system rather than the daemonized container service that Docker does.

From the host you can access kernel related controls within the target system. You can see the processes running, perform tuning on them, etc while also having the same kernel level control inside the target. This also means you can have better control over security bu setting group policies, apparmor profiles and system aware firewall rules because you aren't running your target in a black box.

Their purposes are very different. If you are running a single process for a single purpose you use Docker. When you want yo run a system for a specific service you run lxc. Can you do the opposite within each type? Yep. But that's not what they are designed for. Can you run a full blown email service with imap and pop, a web server for a webmail client and antivirus services inside a docker container...of course. But all the tuning and configuration is done at the container level which means that we assume all installs and replication must be the same. In lxc i can install the same system but if we want to tweak max memory usage or niceness of a given service you can do that globally or target a specific container while on docker youd have to go to each container to do that work.

[–] jecxjo@midwest.social 0 points 11 months ago (1 children)

I use it all the time, similar to how I use jails on my FreeBSD systems. Basically when I need to compartmentalize an app I launch a new instance of Alpine and install the app.

As an example I have a container that has my VPN software and a browser that I know is a clean room.

I run Gentoo as my main distro and sometimes a package is distributed only as a deb with very specific version dependencies I can't build. So I spin up a base Debian container and install the app. If it's X11 I can launch it into my current session and if it's console then I can always mount my home directory as a network share.

[–] InvertedParallax@lemm.ee 1 points 11 months ago (1 children)

Use lxc same way, works well, used lxd that way once or twice but with a decent lxc script it worked that way.

Agreed on jails, lxc finally brought that functionality to linux.

[–] jecxjo@midwest.social 1 points 11 months ago (1 children)

With the addition of Alpine Linux containers are now barely bigger than the application itself.

[–] InvertedParallax@lemm.ee 1 points 11 months ago (1 children)

Yeah, on bsd jails are basically shared because of zfs, I should use more alpine, but more complex applications often need something closer to debian, and my alpine fu isn't very good yet.

We really, REALLY need a dockerfile for lxc so you call lxc-build and it pulls and compiles/configures everything for you automatically.

Thats the dream.

[–] jecxjo@midwest.social 2 points 11 months ago (1 children)

I want to look into NixOS. They basically have a one file config and install for your entire system. Wonder how well it works in lxc.

[–] InvertedParallax@lemm.ee 1 points 11 months ago (1 children)

I wouldn't want Nixos as my base, but yeah, it sounds like the ultimate lxc base.

[–] jecxjo@midwest.social 2 points 11 months ago

Sadly my daily driver is getting pretty old and slow so i typically dont put big distros on lxc. Maybe NixOS can he configured to be super slim. New weekend project.