BaumGeist

joined 2 years ago
[–] BaumGeist@lemmy.ml 1 points 5 months ago

Nothing, it's just no more efficient than using a GUI text editor

[–] BaumGeist@lemmy.ml 19 points 5 months ago (9 children)

What do you recommend I do about disk partitions?

I recommend using defaults unless you do disk-level backups, or plan on switching disks/partitions between systems (you can put your whole /home dir on a NAS, but should you?)

I’m keeping a Windows install for the few things that demand it, does Windows still occasionally destroy Linux partitions?

Yes*. Many such cases.

*there's always a reason why it was preventable (as the top comment on that post explains), but c'mon... Really?

Do I need separate partitions for data and OS?

Probably not, for reasons I explained above

Is it straightforward to add additional distros as new partitions or is that asking for trouble?

It's straight-forward-ish. It will require deviating from installer defaults, and depends on how interconnected you want the OSes to be.

This is actually a good reason to get into partitioning shenanigans, if you'll use all the distros regularly, and you want them to have shared access to certain folders (e.g. /root, /var, /home, /tmp, /etc, etc). I recommend turning everything (except windows, /boot and /boot/efi) into logical volumes with LVS to avoid space issues when you can't extend a partition sandwiched in between two others.

By default, /boot and /boot/efi should be their own partitions--/boot should be created for Linux, and Linux will use the EFI partition created by micro$oft--and I'd recommend giving /boot N times the default amount of space (N being the number of distros you plan on keeping in rotation at any given time); this shouldn't eat up too much space, Debian gave me 500 MB for /boot. The reason being /boot carries the kernel images for each and every OS, and often duplicates thereof for rescue backups.

Is disk encryption straightforward? And is that likely to upset the Windows partition?

Yes it's easy with LUKS. Full disk encryption encrypts everything, and that will likely upset windows, idk haven't tried on my dual-boot.

Is cloud storage sync straightforward? It’s my off-site backup solution on Android and Windows (using Cryptomator with Dropbox, Google Drive, etc) but I don’t think that many providers have Linux clients. Is something like rclone recommended?

Yes, if you use a DE with it integrated. Otherwise, it's up to you to choose the right software, rclone looks like a good choice to me, but I have not used it

Should I just use apt to install software? I know there’s some kind of graphical package manager (synaptic?), does that use apt under the covers or is it separate?

synaptic is no longer used iirc. It's just called "Software Manager," but yes, I believe it's just a GUI for apt. I personally prefer doing as much as I can with the command line. Not only is it the simplest, most straightforward way of achieving whatever I'm trying to do, it's usually also the quickest and best documented. YMMV

Is it recommended to install something like Flathub too?

My experience has been to avoid non-defaults as much as possible. If there's a software you can only get as a flatpak and you need that and can't make do with an alternative, then do it. Otherwise, just see what you can do with the apt repositories

Any other pearls of wisdom? ... Any warnings about what not to do?

I could spend a few hours digging up every mistake I made and telling you what not to do, but I'd rather focus on giving you the tools to clean up after yourself when you make your own. The one best piece of advice I can give is "keep at it." There will be times when you shoot yourself in the foot and your options are to give up and lose the foot or do foot surgery right then on your own (with the help of the online community ofc). Don't be afraid to ask questions everywhere or anywhere, don't let assholes dissuade you from enjoying your Linux your way or seeking help doing so, and do read the docs. But most importantly, do keep trying; it's such a rewarding feeling.

Another would be to change as little as possible from a known working configuration at a time. Go with installer defaults as much as you can, change the stuff later. Want to try out new software? Try one new thing and get it working and looking how you envision before moving on. Read the docs so you don't take any settings for granted, that way you're not left with something that's passable instead of exactly what you want.

Make backups. Get a second SSD or an external drive and backup your system. Things like /usr, /etc, /root, and /home at the very minimum. Backups are the best way to unfuck your foot when you inevitably shoot it.

Learn the coreutils. You might not use them daily, but you'll be glad you know they're there when you need them and don't have to install extraneous software that isn't well maintained because it's a redundancy of the most common pieces of linux software.

How do I keep everything tidy?

Learn the FHS. As with most documentation, it's a bit dry, but very enlightening and will automatically put you in the top 10% of linux users with your newfound special knowledge.

There are some automatic file organizers, but you can recreate them yourself to suit your exact needs at 1/10th the resource cost using bash scripts.

Sidebar: another good piece of advice, learn to script in Bash. It basically immediately qualifies you to be a *nix sysadmin, and it makes everything automatable. It's so much easier than downloading new software or compiling a git repo for each individual task you want to automate. Additionally, it helps to learn to use cron, to run the scripts automatically, and to learn a command-line text editor (no, nano does not count)--but those're mostly just for efficiency boost, the big timesaves are in learning to script first and foremost.

As with any skill, the common wisdom is to "choose a project you want to make, then learn the skill by making it." So it's not a bad idea to learn scripting by, say, writing a script that detects files of a certain format in a directory tree and moving them elsewhere. E.g. check ~/Downloads and all of its subfolders for files ending in .jpg, then move them to ~/Pictures/JPGs (and make the directory if it's not already there). This should give you a good chance to practice file operations and string manipulation/parsing. After that, learn how to have cron run it once a week or something.

Should I use a particular terminal emulator or Firefox fork?

This just falls under my "probably best to stick with defaults and branch out later" advice, but:

I use terminator, purely because it has a logger plugin (which saves all input and output, including stderr, into a file if I'm doing something that needs that much documenting). I'd say learn to use tmux at some point as well, but that's just because I like moving my hand between keyboard and mouse as little as possible.

As for firefox, vanilla has always worked for me. It's not private enough for some people, so they will recommend something like LibreWolf or even Tor. On my laptop (which is completely keyboard driven so I can avoid using a touchpad) I use qutebrowser; it's not as full-featured (i wouldn't use it for video streaming), but it avoids using a mouse.

[–] BaumGeist@lemmy.ml 11 points 5 months ago

Hey, I recognize that art! That's the Pepper & Carrot guy! iirc, that's a FOS webcomic (CC BY 4.0 license, artwork and transcripts available for each episode). We need more people like him: using FOSS to create FOS media and contributing to the community with write-ups and guides; what a mensch.

I haven't had many issues with wayland, but there are a few sticking points, and it's usually when you get into the weeds like this. Wayland is ready for mainstream release because all the software that gets the most use is taken care of already, but when it comes to niche edge-cases, it still has a long ways to go; and it will take a lot longer to "get there" all across the board, given how uncommon it is for the already relatively small amount of people doing the edge-case work to also either have time enough to walk devs through the issues or have enough coding knowledge to contribute to the software directly.

[–] BaumGeist@lemmy.ml 9 points 5 months ago

I'm seeing a few comments suggesting OpenWRT, which is what I use and love: the correct response to this level of capitalist tomfoolery should absolutely be to 1. buy hardware that supports FOSS out of the box, or 2. install FOSS firmware.

BUT: OpenWRT isn't for everyone. Installation on supported devices is usually pretty easy, but it does require being invested in setup, maintenance, and understanding of the software. There is little built-in handholding, and most setup beyond basic functions requires reading the docs and wiki; sometimes, some functionality requires running commands directly on the device rather than the LuCI web-interface.

This kind of understanding and investment should be the end-goal of all privacy-oriented tech users. Technology is complicated, and each layer of handholding that devs add also necessarily obfuscates behind-the-scenes functionality, which runs counter to privacy and security. That being said, the barrier for entry to privacy-respecting tech shouldn't be "a masters in CompSci," and thus any alternative to major tech brands is still a step up from just accepting what they give you. Just be aware that your current firmware may be a stepping stone towards software freedom, instead of a stopping point.

[–] BaumGeist@lemmy.ml 3 points 5 months ago

OpenWRT is really hard to get onto routers

I bought the Nanopi R4S, and it was extremely easy to switch out their modified OpenWRT for vanilla (literally just use a command/program to install the image on an SDcard). Granted, I did have to find a solution for wifi, but even that was easy with the Belkin RT3200s and the instructions (more in-depth, but still hand-holding). I also flashed it onto a Netgear AC1200 using nmrpflash, which sounds imposing, but really just entailed installing the pre-reqs, hooking the router's ethernet port directly to my PC's and running the command.

I did have to do my research to arrive at my decision to buy these specific models for their compatibility with OpenWRT. If you don't, you might end up with something that requires popping open the shell and setting up serial comms, which is a pain.

As far as I could find, out of the three Wifi6 enabled Asus models (RT-AX###) that are compatible with OpenWRT, 2 require ssh and running commands that are given in the guide; the other one, and all of the supported AC### models, seemed to work using ASUS's built-in web-app to upload the OWRT image. I wouldn't say any of it is easy, but I also can't agree with "really hard."

Another consideration is setup and maintenance. Proprietary firmware tends toward being as "click here to set and forget everything, here are the only 3 pieces of info you need to know from now on"; OpenWRT is definitely more hands on and requires a lot of RTFMing and routine maintenance.

[–] BaumGeist@lemmy.ml 5 points 7 months ago

Nah, I don't feel like starting a new account, nor adding to the unnecessary confusion of multiple users with the same name. I'm kinda happy I'm the only one of me rn

[–] BaumGeist@lemmy.ml 4 points 7 months ago

Whatever you use, make sure it's the furthest upstream. Everything else is dependent on the upstream to update systemwide. Yes, some downstream distros will fix certain issues before upstream does, but because their teams are generally smaller, they won't fix all the issues in any given distro. And feature/major version updates start at the top and trickle down.

[–] BaumGeist@lemmy.ml 3 points 7 months ago

That's a weird reasoning, as I can find plenty of FOSS that has paid "business" editions

[–] BaumGeist@lemmy.ml 5 points 7 months ago (2 children)

Damn... That's a good username. Wish I had thought of it

[–] BaumGeist@lemmy.ml 118 points 7 months ago* (last edited 7 months ago) (6 children)

Louis Rossman is my Alex Jones. He's angry, compelling, and talking about something that makes him seen like a conspiracy theorist to normies. Unlike Jones, though, he's usually right (if not always, I haven't fact checked everything he's ever said). It's extremely cathartic to see someone use such extreme rhetoric to talk about privacy and software ownership and right to repair; e.g. it's not "advertiser's entitlement," it's "rapist mentality."

Ironically, youtube's inability to completely differentiate between people at the same IP has accidentally gotten my non-techie roommate into him too. I never shared his videos with her, never said anything about him, and one day I hear his voice as she browses the web. I'm so proud of her.


My least favorite thing about the "engagement friendly" slop in youtube's search results is that it takes up HALF of the results. Because clearly what I expect from SEARCHING for something is to dredge up a bunch of shit that ranges from tangentially related to completely unrelated.

For example, I too just searched a song. Let's see how that went:

7 results
4 "people also watched" videos
5 results
2 "More from [band name]" videos
2 results
3 "people also searched for" suggestions
2 results
3 "For you" vids (IS IT THE FUVKING SEARCH RESULTS I ASKED FOR???? BECAUSE IF NOT, IT'S NOT REALLY "FOR ME," IS IT?)
2 Results
3 "From related searches"
2 results

That's 20 results to 15 irrelevant pieces of ADHD triggering visual clutter. Luckily the results were actually relevant, unlike whatever you're getting.

To all the commenters saying "I have X, I don't have this problem": I have adblock, I don't have this problem, YOU'RE MISSING THE POINT:

YOUTUBE SEARCH IS BROKEN BY DEFAULT. The largest video sharing site on the internet is BROKEN BY DEFAULT. It shouldn't require extra software to function properly when functioning properly requires less work on the server's side

[–] BaumGeist@lemmy.ml 36 points 7 months ago

Debian, Arch, Fedora, Mint, Ubuntu, Redhat, Manjaro all have docs and wiki on their primary websites. Slackware has docs, Gentoo has a wiki. Anything that's not on a distro's site needs to be carefully considered before tampering. Almost all of those distros have a warning in their installation instructions to only listen to the information in their docs and wiki, and to a lesser extent their forums. Hell, even nosystemd.org tells you what systemd is, what it's for, what replacements there are, and the proper way to get rid of it in bold text under the header "How do I get rid of systemd?"

Listening to hackneyed advice from unvetted sources just because they have strong opinions is a problem that any and every computer will face. That's not a problem with linux anymore than the hoardes of trolls on random social media sites telling you to "delete System32" is a problem with Windows.

I want Linux to be customizable AND safe. But safe in the way that someone takes the time to learn how what they plan to do will effect their system, not safe in the sense of "impossible to bork"

As for elitism: if it's "elitist" to indirectly poke fun of someone who deleted a core system component without understanding what it does without a backup, then so be it. It feels more like that word is levied by people whose ego is too big to take respobsibility for the mistakes they made, and instead blame others for laughing when it bites them in the ass.

Idk where these swaths of elitists that refuse to help are. OOP went to stackexchange and likely got a helpful answer complete with explanations, as that is the community standard. Over on !linux@lemmy.ml , I see people offering help with problems all the time without shitting on them. If I go to the aforementioned OS forums, or really any software-specific forums, I see people helping or pointing people to where they can get help.

And I'm not denying that assholes who say shit like "did you even bother googling?" exist. They're nasty people with no patience, but they're by no means the community standard unless they're the only ones you pay attention to...

Or unless you see a screenshot of a question from a different website posted in a meme-sharing forum and expect the comments to offer advice, instead of laughing at the person who shot themselves in the foot and went to a hospital instead of seeking help at the DNC HQ

[–] BaumGeist@lemmy.ml 7 points 7 months ago

Cool now do parallel downloads and I'll quit using Nala

view more: ‹ prev next ›