linux

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

TootSweet, in short question by an aspiring user

Welcome to the club!

Just want to mention that "C:" is a Windows-specific convention for identifying hard disks. Linux doesn’t have quite any concept of a “C:\ drive.” You’ll of course still have your OS installed on the same disk that today Windows calls "C:", but on Linux it’ll be (and I’m oversimplifying a little bit here) “/”.

I’m a little bit jealous because I can’t start learning such things for the first time like you will be soon. Ha!

My advice: don’t feel like you have to learn it all at once. Don’t feel bad about just accepting the defaults that the installer suggests where you don’t know what to do otherwise. If the command line intimidates you (we were all there once) use the gui tools exclusively as much as you like. Some day you might start to feel limited sticking with gui tools. (Or maybe for your particular purposes, the guis will always be perfect.) Until you do start to feel like you want to learn more about such things for your own sake, don’t let anyone tell you you’re doing it wrong by using the easy way.

(This from someone who does basically everything from the terminal. Lol!)

And don’t be too afraid to break things. Breaking things is arguably the best way to learn. And do feel free to reach out to friendly communities for help when you need it. It’s likely that if something has gone wrong (which is pretty unlikely with Mint), you’ll need to do some terminal stuff to fix it, but people can help you out with that if you ask. :)

Godspeed!

KeenFlame,

He didn’t imply that, he said he wanted to format C:\

Why is it oversimplifying to say the disk will be called / in Linux?

TootSweet,

I just meant with the C: comment that OP shouldn’t expect it to still be called C: after he’s wiped Windows and is running Linux.

As for the oversimplification comment:

First off, C: (or D:, E: etc) doesn’t refer to a disk in Windows. It refers to a partition. So it’s entirely possible (and not terribly uncommon) to have a single disk with both a C: and a D: on it.

It’s very typical for a Linux installation process to (by default, if you don’t tell it to do something else) make separate partitions on a single disk for / and /home. (Plus there’s usually an extra EFI boot partition on most modern desktop/laptop systems. And a swap partition.) In such a case, you couldn’t really describe where “the disk” (that was formerly called C: on Windows) was mounted in the mindset of conflating “partition” with “disk”. What was previously “the disk” C: (again, C: isn’t a disk, it’s a partition, but Windows makes it easy to conflate the two) is now split in two (or three or more) and mounted not just on / but also on /home (and maybe on /boot as well, and maybe one partition isn’t mounted on the main abstract root filesystem).

/ and /home aren’t really even partitions (let alone disks). They’re mount points in the slightly more abstract root filesystem.

The most obvious software representation on a typical Linux system of the main internal disk in that machine would probably be something like /dev/sda or /dev/nvme0. The partitions would likely be something like /dev/sda1//dev/sda2/etc or /dev/nvme0p1//dev/nvme0p2/etc. Also, the “filesystem” on the partition is arguably a subtlely a distinct concept from the block device that is the partition. And where that filesystem is mounted is yet another distinct concept. (Another subtlety I haven’t mentioned is the distinction between the device in the /dev/ directory/filesystem and the kernel representation of the device with the device major/minor numbers.)

A typical Windows install kindof conflates a lot of these probably a lot more so than Linux does. But I didn’t want to be like “akshuly things are a lot more complicated than that and you have to understand a bunch of Linux kernel internals to understand all the ways in which you’re wrong so you can install the holy ‘Guh-noo Plus Linux’.” All that is stuff that OP will learn by installing and using Linux. And if OP’s going with Mint, it’s probably not necessary to really understand all of that before starting the install process.

And technically OP doesn’t really need to understand that the main disk won’t be called C: after switching to Linux. Probably. (I don’t think I’ve ever installed Mint. So I don’t know for sure, but from what I’ve heard about it, I’d be surprised if the installation process had much of a learning curve.) But I told OP anyway. So there. :D

KeenFlame,

Okay thank you. I feel like it’s a lot of information here that is about, like you say, how complicated abstract and advanced it is, with the devices, kernel representations and mount points.

There must be a better way of just explaining how the root fs works, because I still don’t understand anything.

It really doesn’t feel like comparing it to windows gives any favours though, maybe explain use cases, like where would the user save downloads, where would you install apps?

I’ve used Linux a little. Right now it’s modernized enough for me to not learn the file system. But I remember in old times when I ran Ubuntu I just crammed files in a folder and struggled a lot with it

TootSweet,

Ok. Lessee.

Just to quickly explain first off:

  • A disk is just a big collection of bytes. A 100GB disk has 100 billion(-ish) bytes. Each one has an index. The first byte has index “0”. The second has index “1”. There’s a byte 8,675,309. Each byte has a particular value at any one time. The computer can set the value of any byte to any value. (It could set byte 8,675,309 to 01100001 and later it can reliably be read back from the same index as the same value, until it’s changed to a different value.)
  • A disk can be divided into partitions. Basically you (or rather a tool you use) writes data to a location near the beginning of the disk that says "treat this disk as multiple separate devices. The first starts at byte X and ends at byte Y, the second starts at Y and ends at Z, etc."
  • When you plug a disk into a Linux computer (on most modern full-featured desktop/laptop Linux systems, though maybe not on, for instance, some embedded systems) a new “file” appears in /dev for the disk along with more files for each of the partitions on the disk. For instance, an external USB hard drive with three partitions might show up as /dev/sda and the partitions as /dev/sda1, /dev/sda2, and /dev/sda3 respectively. (Ok. Technically the things in /dev are only files in some senses. They’re technically “devices”. But they have paths like files do and they can be read from and written to like files.)
  • If you want to, you can read and write to those partitions or to the disk directly as you would read or write any file. You can open it in a text editor, for instance. You might get lots of random-looking broken characters if you do that, and god help you if you try to save over it, but you can. If you read from a disk or partition, it just returns all the bytes in the disk or partition starting from the first (or from whichever index your application asks it to start from.)
  • A “filesystem driver” knows how to interpret the bytes on a partition as files and directories.
  • If you want to know what device in /dev a file lives on and what filesystem driver is used for that device, the mount command just typed into any bash terminal will tell you. It’ll output rows like on type (…). If you read/write a file or list a directory, it’ll pick the entry in the mount output that has the longest that is a prefix of the requested file. The is the “file”(/device) in /dev that corresponds to the parition on which that file is encoded. `` is the name of the filesystem driver. So, for instance, if I have an entry /dev/sdb3 on /mnt/pringles type ext4 (…) and I read a file named /mnt/pringles/apple/unicorn/potato.txt (and if there are no entries in the mount output with longer paths that are still prefixes of the requested file path), the kernel will ask the ext4 filesystem driver to please look at the partition /dev/sdb3 and interpret that partition’s contents as a hierarchical filesystem to find and return the contents of the file at the path apple/unicorn/potato.txt relative to the root of the filesystem encoded on the /dev/sdb3 partition.
  • There are other filesystem drivers that don’t deal with disks. Some like tmpfs store data in RAM only (and RAM isn’t intended to be persistent, so you can’t expect anything in a tmpfs to last reliably through a reset.) Others like procfs don’t look at a disk but make these ephemeral files that basically decide what data to return when read from at the time they’re read from. (Files in procfs filesystems usually expose data about the Linux system. Like, for instance, what processes are currently running.)

Now, the question of where files should go is… kinda unrelated to the above. Files that are system-wide configuration should go in /etc. Files that are system-wide executables should generally go in /bin, /sbin, /usr/bin, /usr/sbin, and /usr/local/bin. Anything your own user downloads/creates should go in /home/$username. Etc. More specifics of all this here.

It can be useful to make decisions regarding what disk/partition a particular directory like /home lives on. But whether /home is on the same partition with /etc and /bin and /var etc or whether it’s on a different partition (and both of these options are quite common), your users’ files should go somewhere in /home.

To elucidate a little more, if you decide to put your /home on the same partition as /bin and /etc and /var and such, you’ll have an entry in your mount output like /dev/sda2 on / type ext4 but nothing with a `` of /home. If you decide to put /home on a separate partition, you’ll have your /dev/sda2 on / type ext4 entry plus another entry like /dev/sda3 on /home type ext4.

So which partition does a file go on when you write a file to /home/keenflame/document.txt? Well, in the first case, it’d be on the partition Linux calls /dev/sda2. In the second case it would be written to the partition that Linux calls /dev/sda3.

RiikkaTheIcePrincess,
@RiikkaTheIcePrincess@kbin.social avatar

Breaking things is arguably the best way to learn

Hee hee, some may agree with you. jumped into Gentoo very early and hasn't stopped breaking things yet. Sometimes for fun, sometimes 'cause some distro maintainer type did something horrible ^.^

I definitely support "Just try things, see what breaks, then learn to fix it" as a learning method. Not necessarily for everycritter and not necessarily as a sole learning method but certainly it can be many fun and very productive, sometimes in ways that other methods would not be.

TootSweet,

For sure. I think there’s a happy medium for those who might not go for the Gentoo approach. (I’m a veteran of Gentoo as well, by the way. :) )

The extreme opposite of that is probably fearing to touch anything once the system is up and running. There are certainly Windows users like that. IT folks have one or two in their families who regularly try to rope them into doing free tech support. (“Sorry, Aunt Debbie, but I haven’t touched any version of Windows since XP. No, Aunt Debbie, I don’t ‘build computers’ for my job. That’s a different department. No, Aunt Debbie, I don’t know how to recover deleted emails in Hotmail. I’ve never used Hotmail.”) I wouldn’t want folks to fall into a habit of being afraid of their Linux system.

And of course, the Gentoo or LFS approach is way too far on the other end of the spectrum for some.

But I definitely wasn’t advocating that OP take the “break all the things and learn how to recompile your Kernel to enable debugging with GDB so you can figure out why such-and-such USB device isn’t working correctly.” (Unless of course OP wants to do that. In which case, knock yourself out, OP!)

I used OpenSUSE before Gentoo. I’m glad I did. It got me some basic bearings in the Linux ecosystem in a gentle way that didn’t make me want to give up and reinstall Windows. I switched to Gentoo basically when I started to realize how limiting relying on the OpenSUSE guis for installing and configuring things was. (I could tell there was a hidden layer of stuff going on behind those guis. And shying away from the deep lore was keeping me from doing things I could otherwise do.)

But even if I thought a particular person had a strong likelihood of taking the Gentoo approach at some point, I’d probably recommend something like Mint until they themselves wanted to dig deeper. And if that never happened, that’s fine too.

And, let’s be honest. There’s a chance that Mint could break as well even if OP isn’t doing reckless things solely for the sake of learning. (I’d say the same about Windows for that matter.) At that point, OP’s options are 1) figure out how to fix it and fix it or 2) wipe evrything and reinstall from scratch. Either way, something will have been learned in the process.

So, to OP, don’t feel pressured to do all the deep lore stuff unless/until you find yourself wanting to. But also you might be better off if you aren’t so scared to try to do things that you don’t try to customize your system for your needs in even very simple ways.

And again, good luck!

RiikkaTheIcePrincess,
@RiikkaTheIcePrincess@kbin.social avatar

She goes by "Debra" now ;P (Do we really both have an Aunt Debbie/Debra?)

Also, for sure I don't mean to pressure anyone nor suggest that you do. I also tried other distros first, even fearing a little that I'd break something. Dual booting (I knew Windows better back then... dunno if I'd know what to do with 11 😅) was a help, but also I started with easier distros (Ubuntu, Debian, Fedora, Mint... definitely Mint gets my recommendation as an easy/comfy/friendly distro even though I haven't touched it in over a decade) and found that I wanted them out of my way so I could set up my computer how I wanted it to be. All' the stuff happening "for me" kept doing things I didn't like and changing things I did, so I moved toward the "harder" or "harder-core" distros less because I wanted Linuxy cool-cred (though I did a little bit ;P ) and more because I just wanted to get my OS out of sight and out of mind rather than having to fight the thing over control. Arch mostly does that, Gentoo does it a bit more. These days I don't have the latest high-powered gaming hardware and I myself am starting to feel a little old (2⁵+1 years! Augh!) so the compile waits don't feel so great... but I'll be back 😅I've been oscillating between Arch and Gentoo (may try Funtoo next time! Could be a fun... or two 😹) for ages so unless something else fits I don't see a reason to quit.

Wait, what was I talking about? Oh yeah, no need to jump right into Gentoo or LFS or something... but also no need to worry if one does! I really want to make one point in particular: everything can be fixed. Everything. Broke the kernel? Fixable. Broke networking? Fixable. Package manager set off a bomb in its own backend? Fixable. There's always a fix, whether it's rolling back a package to an old version, booting another OS or computer, GRUB's recovery console, a fallback kernel, rolling forward a package to a new version, using a newer/patched/forked kernel that doesn't crash your graphics driver on a new laptop. No matter how deep into "I'll just go until I trip on something," you can get back up and you can learn something from it... or you can just reinstall or hop to the next distro.

And maybe the thing you tripped on was a cute kittycat who you can appease them despite their annoyance at you for tripping on them :3

Also no, I don't know why I felt like yapping for ages <.< Sorry about that? 😅

Hildegarde, in What distros have you tried and thought, "Nope, this one's not for me"?

I have liked Ubuntu based distros until they release a major update. They are aimed at beginners and they work fine for that. If you use one to the end of support, the updater will say that your software is up to date because there are no new updates.

You have to check the website to find out you’ve reached the end of support, and to get instructions on how to update.

That is an awful user expierence for beginnners, and a great way to have users using vulnerable software without knowing about it.

I’ve switched to rolling releases for this exact reason.

GenBlob, in What distros have you tried and thought, "Nope, this one's not for me"?

Any distro that’s based on an existing one but changes or adds very little to it. There are so many dead Ubuntu and Debian reskins

vzq, in Alright, I'm gonna "take one for the team" -- what is with the "downvote-happy" users lately?

Downvotes? What are those?

Signed, a blahaj account.

snooggums,
@snooggums@kbin.social avatar

Australian upvotes.

BlueEther,
@BlueEther@no.lastname.nz avatar

I had to give you a kiwi up vote for that one - well done

faethon, in Debian Bug report logs: #1057843 - linux: ext4 data corruption in 6.1.64-1
@faethon@lemmy.world avatar

Does this affect ubuntu and raspberry os releases as well? Since these are based on debian?

bamboo, (edited )

Unlikely as they both have their own kernels.

Edit: actually raspberry pi uses a 6.1 kernel it seems so this might affect them. But they aren’t using the Debian package directly.

UnfortunateShort, in Which distro in your opinion is the best for virtualization (Windows 10 on either KVM or VMware), stability, and speed?

It doesn’t really matter that much imo. Virtualization is done by kvm or xen, both distro independent. Qemu, libvirt and anything else you might need will only differ version, which may or may not matter to you (probably not). Maybe you can gain some performance by building from source, whereas something like Gentoo might come out ahead… Then again, you can build from source on any distro so…

wwwgem, in I didn't know where else to ask this, if there is another comm i should ask please lmk. Do you have any suggestions for wireless headphones i can use with linux?
@wwwgem@lemmy.ml avatar

Any headphones should work (if your hardware supports it if using bluetooth). I’ve connected at least 4 different brands from no name to Aftershokz with no issues. Even tried airpods for a friend.

Euphoma, in I didn't know where else to ask this, if there is another comm i should ask please lmk. Do you have any suggestions for wireless headphones i can use with linux?

I think pretty much any wireless headphone should work on Linux; my Airpods seem to work fine.

Mars2k21, in Alright, I'm gonna "take one for the team" -- what is with the "downvote-happy" users lately?
@Mars2k21@kbin.social avatar

Unfortunately, this is a problem that can't really be resolved. As long as there is a downvote button, it will always be viewed as a dislike button by some people (and I don't know if removing it is a good alternative for such a large social network). It's a problem that would eventually arrive here from Reddit as the community on the Fediverse grew.

There's really nothing we can do about it.

MNByChoice,

True.

A case can be made for a large number of buttons. I wonder if the extra complications of multiple buttons would have a good payoff.

livus,
@livus@kbin.social avatar

You're on kbin though, which doesn't federate downvotes.

Interstellar_1, in What distros have you tried and thought, "Nope, this one's not for me"?
@Interstellar_1@pawb.social avatar

Mint, actually. I tried it and found it too similar to windows and not customisable enough for my liking.

dsemy, in Make a Linux App

Make a Linux app, make a Linux distro, who cares…

How about you just let people do what they enjoy doing.

conciselyverbose,

Yeah, this is obnoxious.

It's also truly terrible at being persuasive.

Murdoc,

Make a Linux app, not war.

SendMePhotos, in What distros have you tried and thought, "Nope, this one's not for me"?

Wasn’t a fan of Ubuntu, RedHat, Debían…

I guess I’m just a Fedora person? I’m on KDE right now, usually Xfce. Idk I’m enjoying my KDE experience.

Mint was pretty smooth. No complaints.

Stillhart, in I didn't know where else to ask this, if there is another comm i should ask please lmk. Do you have any suggestions for wireless headphones i can use with linux?

My laptop has BT built in and it works fine with everything I’ve connected to it so I don’t see why any BT headphones wouldn’t work. I think you probably just need to get a BT card/dongle for your system and then you can use whatever headphones you want. So the question you probably should be asking is: what BT card/dongle works with my system?

01189998819991197253, (edited ) in What distros have you tried and thought, "Nope, this one's not for me"?
@01189998819991197253@infosec.pub avatar

elementary os. Installed it, and noped right out of there the same day. On paper, it should be great. Maybe the execution was flawless for macfans, but it was not for me. I do appreciate how they tried to make an easy transitional Linux for macfans, though, and I do not regret the donation because of that fact.

glibg10b, in Based KDE 🗿

Windows 11 takes your money, gives you ads, sells your information and ignores your bug reports and feature requests

KDE is free, ad-free and open to contribution

I think we have a clear winner here

ultra,

Not to mention free as in freedom.

Anticorp,

Also free as in beer.

ObviouslyNotBanana,
@ObviouslyNotBanana@lemmy.world avatar

Sadly there’s no beer in it however

psud,

You can look up beer recipes and buy equipment and ingredients from it though. And use web based or spreadsheet calculators on it to do beer related calculations

That beer is also not free, but assuming you make beer for a long time the price per pint (half litre to split the difference between UK and US pints) tends toward about 20c (though highly hopped beers like hazy pale ale can get towards a dollar a pint) which is pretty cheap

ASeriesOfPoorChoices,

But not free as in Murica.

psud,

You could get Ubuntu in a free like America style

ASeriesOfPoorChoices,

But in America, Freedom isn’t free.

Buck’o’five.

phoenixz,

And anytime you mention that anywhere when somebody is being fucked again by windows, people find you annoying

CaptnNMorgan,

But can it play Starfield with an Nvidia GPU? I originally had popos on my PC until Starfield came out, I had to switch to Windows to play.

glibg10b,
FangedWyvern42,
@FangedWyvern42@lemmy.world avatar

In a nutshell; it works with a lot of tweaks.

Holzkohlen,

I mean Starfield was just terrible optimized for Nvidia at launch and still isn’t ideal no matter what OS you use.

CaptnNMorgan,

I play it on max settings with no problems on windows

desconectado, (edited )

But can it run proprietary software used in the industry? From Excel to Photoshop, if you are in a collaborative professional environment, you can’t run away from those, and don’t tell me you can use the alternatives in Linux, because no, you can’t. This is not linux fault, but it’s still an issue you can’t handwave.

I love linux, but you can’t expect people to adopt it just because it’s objectively better than windows.

aldalire,

List of things to consider

  1. There are alternatives
  2. You can use wine
  3. You can run a windows VM and install it there
  4. Dual boot windows
  5. Microsoft has built a proprietary moat around their operating system. The reason why it’s hard to switch from Windows is by corporate design. A mix of early adoption, network effects, and just plain cold hard cash makes them dominate the operating system market. Of course it’s infeasible for your 60yo coworker to switch; but KDE presents an alternate reality, an opportunity, for people fed up with big tech’s bullshit. Yes, figure out how to run and use alternatives you fucking nut. Way to go disparaging countless volunteer hours spent on open source projects so that people like me can switch to linux.

Comments like these make me irrationally angry. Why complain about open source software and give bad PR? It’s open source; contribute.

desconectado,

Read my other replies. 1 and 2 don’t really work, the performance of using wine, or the alternatives, is just not there, if you do amateur work, maybe that’s fine, but for professional collaborative work, good luck using freecad instead of autocad.

Personally, I use 3 and 4, but you have to understand that the regular user is not going to go through that much hassle to set up a virtual machine.

hyaudreyzane, (edited )
@hyaudreyzane@mastodon.social avatar

@desconectado @glibg10b Wine exists... And that's all I have to say. There is a good installer in lutris for creative cloud that works pretty good if you own it. And if you have a NVIDIA graphics card, it works even better, almost like on windows. It's not 1:1 but we're getting close. For excel you have wine again or a great free alternative is WPS or softmaker if you want to buy it.

desconectado, (edited )

I wish Wine worked well enough to use Excel. We are not talking about adding up numbers in a cell. Once you include macros, or a reference manager in Word, Wine is not good enough. The same can be said about propietary software, like autocad, or software used to control equipment. Also, good luck convincing a regular user to get familiar with wine.

WPS is great for simple files. Again, not good enough for complex files, especially if it is a corporate collaboration environment. I have lost count on the amount of ppt files that didn’t display well when it used WPS.

Every other year I try all the alternatives you mention, hoping they got better, and I always come back to use a dual boot or a virtual machine, which is not a thing your regular user wants to do.

Holzkohlen,

You just gotta make an effort. The one who are too lazy will never be free of Microsoft’s clutches. Which probably just means pretty much everyone will stick to windows.

desconectado,

That’s my point, I use linux as much as I can, but if 80% of your colleagues use Windows… You don’t have much choice.

the_q,

Sounds like you need better colleagues.

desconectado, (edited )

I use linux 50% of my time, I’m not going to ditch my job so I can use it 100%, lol. What kind of advice is that for someone who wants to use linux.

psud,

It depends on your industry. I’m in an agile development team, working in AWS in Java. I’m not a dev, so my work is in spreadsheets, word processor documents, web utilities like Azure Dev Ops

All that is platform independent, though we have to work on the organisation’s computers, so we work in the office on windows PCs or from home on whatever, remoted into a windows machine or VM

The devs work in VMs which are variously windows or GNU/Linux depending on what the person’s previous project was.

the_q,

If you want real change you have to change for real.

FangedWyvern42,
@FangedWyvern42@lemmy.world avatar

Wine can run most of those, not all. You can still dual boot Windows if you need to (VMs are an option, but they aren’t always the best).

desconectado,

I mean, that’s what I do. Will I be able to convince my 60 yo colleague that had been using the same workflow for decades? No, not a chance.

d3Xt3r,

Are you talking about for work or home usage? And do they have any specific proprietary application/hardware requirements?

desconectado, (edited )

Work use. The are hardware requirements (XRD machines, potentiostats, CNC machining) and software requirements (3D design). My workshop asks for files in Autodesk Inventor, if I send it in any other format, they just won’t fabricate my pieces, and I completely understand, who am I to change the workflow of a complete department just because I refuse to use Inventor (which is provided at work).

gmtom,

But you understand that’s a massive Ballache to deal with on top of your normal workload?

psud,

I haven’t tried running anything new, but the stuff I have run in wine has worked easily, without any tweaking

Opafi,

There are enough web based office instances running for Linux to be functional in that regard.

Photoshop on the other hand…

derpgon,

Photopea is a solid replacement.

psud,

GIMP will be great once it no longer needs to dodge patents

Audio players work great now MP3 is out of patent (before that MP3 was really only available if you were willing to ignore the patent)

dino,

I love linux, but you can’t expect people to adopt it just because it’s objectively better than windows.

Excel o,O

Cannacheques,

Meh I had a dual boot machine ages ago. Still here collecting dust. Basically I only switched to use the Linux for down time, movies, and study, most day to day tasks from engineering software to anything I considered important enough that you do not want the results hacked or broken I would use Windows.

I think of modern machines kind of like a hammer. These days almost nobody actually remembers the guy who made the first hammer, or who discovered fire, but there’s a price tag for the bow, the paper and the hammer, not so much the making of the hammer, because the actual skill involved or required to learn about it has become challenged if not cheapened to the degree that there are now multiple paths to obtain or create a hammer, yet the benchmark quality of the hammer as well as the process for creation itself as a whole is now more of an authority than the actual original statue or monolith of “hammer man” himself.

This is why I think the many flavours of Ubuntu including the many esoteric Linux distros are still interesting but still lack the diversity of use and specialization. The fact that whole blockchains are built for XYZ while sitting around pumped then dumped to trading at cents with no use goes to show how cloud computing systems and lower level computing is still very disconnected and becoming further thrown aside to uphold ponzi schemes.

I’ll give you an example, more money is wasted on onlyfans per year than for people trying to use system XYZ for solving problem A, or curing cancer. Consider that to be one of the “good” reasons many men and women are so misogynistic, even without looking down on sex workers.

Theharpyeagle,

I… what? What does Ubuntu have to do with misogyny?

xX_fnord_Xx,

This post reminded me to take my meds.

Cannacheques,

Get a life and stop trying to diagnose people via any observable behaviour. One day you’ll understand child lol

1847953620, (edited )

Look. Everything is like a hammer, in terms of specialization. From Linux distros to gender roles, if you want to understand the world, just look at the hammer. We live in the Hammer Age. It is hammer time.

Cannacheques,

No but yes it’s a useful analogy

Cannacheques,

Because plot twists and funny 🤣 nobody cares

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

    Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 22290632 bytes) in /var/www/kbin/kbin/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php on line 174

    Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10316432 bytes) in /var/www/kbin/kbin/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 339