There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

linux

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

mudeth , (edited ) in Wondering if I should make multiple partitions or keep it as PopOS made it.

Feels like good practice to have /home mounted on a separate partition if you want to install a different distro or reinstall but I’ve never had to test the theory.

atlasraven31 ,

I’ve heard the same but I went with the defaults as a n00b. Ubuntu made me create a /swap and other sub directories.

pinchcramp ,
@pinchcramp@lemmy.dbzer0.com avatar

Is the screenshot you posted from Ubuntu or Pop!_OS? Because partition 4 is a swap partition.

But I agree with mudeth, having a system partition and a dedicated /home one is a decent setup.

Quazatron ,
@Quazatron@lemmy.world avatar

This. For home use having a separate / and /home (and maybe a swap) formated as ext4 is solid and allows you to distro hop with ease. As you get more comfortable with Linux, you’ll learn about the luxury of LVM volumes and more exotic filesystems with compression and other features. What is important is to always keep fresh backups. BorgBackup is your friend, you can find a few graphical front ends for it to simplify things.

nan ,
@nan@lemmy.blahaj.zone avatar

Works well for distrohopping too, I usually would rename my home to oldhome or something and then just move my files to the new one to prevent dotfiles from potentially causing issues.

Also beware Debian installer with a luks encrypted drive. Where most things will unlock a previously-encrypted drive and use it, Debian installer will (or would, it’s been a while) reformat the encryption before it confirms any potential partition layout changes and you can end up with an empty drive before you know it.

CAPSLOCKFTW ,

Just add a new user when you install a new distro, then you can have a fresh start. If you want to try your old one, just useradd you old user and try it out.

freeman ,

If you use something like btrfs you can use a single partition and just use sub volumes to achieve similar. Though it’s definately more complex.

flashgnash , (edited ) in Need Advice on a Distro for Gaming/Programming and Media Server

Nobara’s probably the “it just works” one for gaming and you can code on pretty much anything

If you want to tinker NixOS is the one imo. Has one config file with fairly simple options like to ensure steam is enabled it’s

<pre style="background-color:#ffffff;">
<span style="color:#323232;">programs.steam.enable = true;
</span><span style="color:#323232;">programs.steam.openFirewall = true:
</span>
<pre style="background-color:#ffffff;">
<span style="font-style:italic;color:#969896;"># nixos-rebuild switch
</span>

And it installs and configures everything for you

Also because every time you are rebuilding your system it saves every iteration so if you totally fuck up your system you can just boot an earlier build and away you go

As far as I’ve used it pretty much everything on NixOS “just works” as long as you’ve got the right config (which can be searched on search.nixos.org or just googled

BitSound ,

I like and use NixOS, but if this is the first time OP is using Linux, I’d recommend sticking with something like Pop. When something goes wrong, there’s a pretty good chance that there will already be a SO post for Pop or Ubuntu on how to fix it.

flashgnash ,

True yeah, this is why I suggested nobara first

azvasKvklenko ,

For basic stuff is pretty easy, but once you try to go outside of what’s in option, you might find yourself in a deep rabbit hole. Definitely not a beginner distro.

flashgnash ,

I’ve yet to find anything particularly difficult to do, 99% of things have options/packages and you can still install stuff with snap/flatpak/appimage if not

Dirk , in Redhat once featured a 'redneck' language in the installer
@Dirk@lemmy.ml avatar

Back when RedHat was open source.

Rawvite ,
@Rawvite@mastodon.social avatar
Kristof12 ,
@Kristof12@lemmy.ml avatar

The good old times

Gobbel2000 , in Coders, what is your workflow on Linux
@Gobbel2000@feddit.de avatar

Neovim for me. There are so many plugins to make the editor behave exactly as you want.

andruid ,

I really want to get more into neovim, being able to host the backend service and just point to it from other servers seems super useful for me!

flashgnash , in Anyone install Linux on a Chromebook?

Yeah, Google did

Also there are a ton of guides online for how to put full fat linux on them if you Google

Tubbles , in Need Advice on a Distro for Gaming/Programming and Media Server
@Tubbles@lemmy.world avatar

If you’re arch-curious but want something more opinionated and out-of-the-box, you could have a look at manjaro. It gets much shit thrown its way because its both try-hard (being arch based) and simultaneously “just works”, but that’s mostly memes

arcrust ,

Yeah. Lots of people give it shit, but it does really “just work”. I’m using endeavor right now and considering swapping back to Manjaro, mostly because I cannot for the life of me figure out why SMB won’t work. Manjaro is the only distro I’ve had it work properly with little to no effort.

auv_guy , in Need Advice on a Distro for Gaming/Programming and Media Server

If you have little Linux experience it makes no sense to use a niche distribution. You have a lot less people to ask for help, you will find less documentation and support and you will be frustrated really fast, because your niche distribution is doing something different than everyone else, which will break something and you cannot repair it. If you are a beginner go with one of the big ones.

r0b0 , in Question: Is btrfs's compress-force=zstd compatible with x-systemd.automount?

Are other subvolumes of those volumes mounted somewhere else, with other btrfs options? The btrfs options, including compress, are not applicable per subvolume.

eh OP ,

All of these are "root" mounts. I don't explicitly mount any subvolumes (they get "implicitly" mounted as folders though)

slembcke , in Coders, what is your workflow on Linux

I do game dev, and I’ve been loving VSCode. I used to use a mishmash of stuff, but VSCode can do kinda everything. Working on retro-dev C/asm for NES or Genesis? Lua projects? Shaders? Debugging a native Linux/SDL game? Doing some math in a Julia notebook? Unity3D development? Working on Windows/Mac? The answer is VSCode to all! I still use vim for some light stuff or working on remote machines, but meh… VSCode has nice defaults for me without having to fiddle.

For my native Linux gamedev, I’ve just been using the MS Cmake and Cpp-tools extensions. They work great, and you can script up the rest with actions. The debugger isn’t great, but it’s convenient and good enough for simple crashes. I switch to GDB when things get interesting though. I suppose I have an extension for shaders too, but it’s just syntax highlighting.

greywolf0x1 ,

You should look into VSCodium, it’s the same without microshit’s telemetry.

slembcke ,

I have, but it doesn’t show the MS extensions like the C or CMake tools which is kind of a dealbreaker. None of the alternatives really work well enough in my experience. I’m fine with opting out of the telemetry.

wgs , in Coders, what is your workflow on Linux
@wgs@lemmy.sdf.org avatar

I use vis to write code, ^Z and make/mk to build the project. Most of the debugging is done with valgrind and eventually gdb though my use is very limited.

When I work on manpages, I use wendy to automatically preview manpages everytime the source file changes.

the_crab_man , in Coders, what is your workflow on Linux

I mostly program in Rust and my main editor is VSCodium with the NeoVim extension but lately I’ve been experimenting with Alacritty + Tmux + Helix and I’m starting to like it quite a bit.

acow , in Gyroflow: An Open-Source App to Stabilize Video Footage

Happy user of this for FPV footage, but it’s also worth appreciating more abstractly as a really well done cross platform GUI application. It’s powerful, GPU accelerated, and looks pretty good while doing it.

Case , in Redhat once featured a 'redneck' language in the installer

Lol I remember that from highschool on the first Linux system I got my hands on.

Thanks for some of the only good memories from that time in my life.

junezephier , in Slackware wasn't the first Linux distro, but it's the oldest still alive and kicking

Okay, so, silly question: What was the first linux distro, regardless of current activity?

shaulliv ,
@shaulliv@lemmy.world avatar

I think it was MCC Interim Linux.

ijeff ,
@ijeff@lemdro.id avatar

Interim Linux would be a neat modern distro name.

junezephier ,

Neat! I’ll have to look into that, thanks~

lord_ryvan ,

Another one bites the dust 🎵

skookumasfrig ,

TAMU was an early one I used. There were lots that were one and done too so it’s hard to keep track.

lemminer , in Question: Is btrfs's compress-force=zstd compatible with x-systemd.automount?

I don’t know how to do it with systemd.automount but I’ve been using udisks to define defaults for mounting BTRFS: wiki.archlinux.org/title/Udisks#Default_mount_opt…

InverseParallax ,

Every day we stray further from Ritchie’s light.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • [email protected]
  • random
  • lifeLocal
  • goranko
  • All magazines