linux

This magazine is from a federated server and may be incomplete. Browse more on the original instance.

azimir, in what caused you to get into Linux?

The Uni Eng department ran a SunOS email server for students and a SunOS lab for our coding projects. We were taught UNIX in the intro engineering class.
A couple of my friends in the dorm fired up Linux servers (early Debian and RedHat systems), bought domains (3 character .coms!) and setup email servers for our friend groups. It also was a lot faster to do our C/C++ dev there because it wasn’t an overloaded machine.
Within a couple of years I had two systems, one Win98 and the other RedHat. From there it has been a winding tale of Linux distros, a stint of OpenBSD fun until SMP boards became common, the occasional Windows machine (back when I gamed more, but after Tribes 2 on Linux), and a short work-related dalliance with OSX (10.1-10.4). For the last decade it’s been almost 100% Linux anymore. If there’s a tool you need on a given OS, use what you need to, but if it runs on Linux I wouldn’t use anything else. I’ve got a pile of machines for work and home, including servers (Debian), laptops/desktops (Mint), and SoC boards (Raspberry Pi OS, Armbian, etc).
There’s just too much control and not a bunch of company-driven shit (See: Ads in your start menu? WTF kind of dystopian universe are you accepting?) with Linux distros.

DaveedMee, in Why didn't anyone remind me the dual booting exists?
@DaveedMee@beehaw.org avatar

i dual boot bc of the adobe software i use for work and wine/proton doesn’t work with the shit ton of skyrim mods I play with. straight up crashes.

Astaroth,

re: Skyrim, could just be that some SKSE mod you’re using needs some newer .net runtime or similar

could also be not enough vram (even if you have enough ram wine/proton could have it’s vram allowance set too low)

If you don’t already have one get a crashlogger, for SkyrimSE 1.5.97 I would recommend .NET Script Framework (and use SSE Engine Fixes skse64 preloader instead of DLL Plugin Loader)

If you already knew about all this and still having issues then don’t mind me

SaltyIceteaMaker, in FOUND file in device by hex content using wxHexEditor

Of course that was worth 3 hours. Every tinkering/experimenting is worth it. In the worst case you gain experience

luthis,

Yeah now I stand a better chance of recovering files if something catastrophic happens

foxbat, in what caused you to get into Linux?

in high school i saw this xkcd and didn’t understand the joke. next thing you know i’m trying to dual boot ubuntu, writing down error messages so i can look them up on the library computers and download alternative gpu drivers onto a flash drive (we didn’t have internet at home back then and i couldnt drive yet… so debuggging issues usually took multiple days). weirdly, i enjoyed that experience and here i am ~16 years later. i use linux at home and at work :)

SaltyIceteaMaker, in How to see enabled services that have been stopped [systemd]

Can’t you do systemctl status [service] to check that?

ISometimesAdmin,
@ISometimesAdmin@the.coolest.zone avatar

That's only for a single service, not really what OP seems to be asking for

luthis,

Only if you know what the [service] is. In my case, I’m prone to forgetting so this way I can see what should be running but isn’t

SaltyIceteaMaker, in what caused you to get into Linux?

I actually don’t know how that happened. It was either a youtube video: when linux met r/unixporn or my privacy & freedom concerns that suddenly appeared in like the span of a week

Unquote0270, in Help me decide my first distro for Audio.

AV Linux is pretty damn good.

I would say Arch because the AUR is amazing and Arch all around is so good but you’ll need to be making a lot of decisions during install that you know nothing about. If you want to learn then I think it’s the best overall.

Azzk1kr, in FOUND file in device by hex content using wxHexEditor
@Azzk1kr@feddit.nl avatar

You wasted three hours so you can share this knowledge :D

luthis,

True, now you have the power to find your files manually!

phoenixz, in My first year using Linux: My experience

One of us! one of us! One of us!

KISSmyOS, (edited ) in Why didn't anyone remind me the dual booting exists?

Most people forget you can also run a Linux VM inside Windows if all the other options don’t work for you.
It protects your private data from virusses, doesn’t let Microsoft’s telemetry spy on your usage and browsing, and gives you more control.
Just limit what you do in Windows to what needs it running natively and do everything else inside the VM.

uzay,

It only protects your data if you encrypt the virtual disk. And then you could still lose it to a ransomware attack.

bellsDoSing,

That’s why regular backups are advisable.

milkjug,

This generally works for people who only need command-line or headless access though. I’ve been waiting for proper GPU virtualization and partitioning to actually work on consumer gpus for so long now that I’m doubtful it will ever be a thing. And the hardware industry has gradually transitioned to single GPU setups now so PCIe lanes for multi-GPU setups are harder to come by, especially with recent motherboards dedicating more and more PCIe lanes to NVMe slots. Still, even GPU pass-through with VFIO is not a trivial thing at all to get up and running. Its a travesty that CPU virtualization is so mature and far along in the consumer space, juxtaposed with a seemingly absolute big fat zero on the GPU virtualization front.

You could get away with using VMWare for their proprietary GPU virtualization feature but besides simple sandboxes for testing, I will not personally get too far into it as the experience is not great.

You999,

Proper vGPU would be so much better if nvidia weren’t twats. Anyways if you use proxmox you can unlock vGPU support for most consumers GPUs using this script

milkjug, (edited )

Great find! Thanks, this is new to me. I would have taken this out for a whirl immediately but I just read the docs and sadly it doesn’t support my 3000 series nvidia card. Team Green is seriously getting on my nerves for their anti consumer practices, enough for me to go all in into Team Red or Intel for my next GPU.

At this point, Intel (if you’re listening), the single most important feature you can implement to get an immediate buy from me, is SR-IOV on your Arc cards. I will probably buy a few of them for each of my PCs as well.

luthis, in How to take actions on multiple docker containers at once

You can of course do it this way too, it’s just extra typing:

docker container stop $(docker container ls -qf name=snikket)

chunkyhairball, in FOUND file in device by hex content using wxHexEditor

Luthis, you’re doing God’s work here. You are learning by experimentation and then, importantly, documenting and sharing what you’ve learned. There is absolutely zero wrong and only good to be had in either of those and in combining them, you’re doing service to our entire community.

luthis,

Thanks! I will keep it up!

RagingToad, in How to take actions on multiple docker containers at once

If the containers are related you could use docker-compose, which has commands to stop / restart/ remove all containers at once.

wcooley,

I use Compose even when I have a single container to run because I can put all the config bits I need into a file and can then do most of the work without remembering lots of command line options and often without even needing to mention the service name directly.

youngGoku,

Same. I can’t remember the last time I started a docker container without a compose file.

YIj54yALOJxEsY20eU,

I keep a docker directory in my home dir that has a directory for each docker container/stack in a compose file. Taking down a container looks like so.

  • cd docker/wallabag
  • docker-compose down

Imo, the best way to work with docker.

Discover5164,

i do the exact same

luthis,

Cool, didn’t know that!

Just tested, so you have to cd to the directory with the docker-compose.yml file in it first

gratux,
@gratux@lemmy.blahaj.zone avatar

you can also use the -f option to specify the compose file without going to it.

this_is_router, in How to take actions on multiple docker containers at once
@this_is_router@feddit.de avatar

This works but I’d just create a function and use that instead of creating an alias that creates a function and then calls itself.

if your containers are created with a docker compose file you can use docker-compose to target them all

luthis,

Is there a way to do this without cd-ing to the directory with the compose file first?

JASN_DE,

You can use -f /path/to/compose.yaml to call it from wherever you like.

somegeek, in what caused you to get into Linux?

My philanthropic beliefs and love of freedom. I was absolutely amazed when I found out about open source and free software. Then I got to it and loved it even more, the community, the UI and DEs, how much you could customize everything and how much choices you had. But mostly it is the philosophical beliefs that makes me love linux. Even if it is not better than some alternatives in some aspects, I willl still stand by it.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • linux@lemmy.ml
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #