Isn't MacOS based on a Unix kernel? Or did they evolve away from the core principle of treating everything as a file?
linuxmemes
Hint: :q!
Sister communities:
Community rules (click to expand)
1. Follow the site-wide rules
- Instance-wide TOS: https://legal.lemmy.world/tos/
- Lemmy code of conduct: https://join-lemmy.org/docs/code_of_conduct.html
2. Be civil
- Understand the difference between a joke and an insult.
- Do not harrass or attack users for any reason. This includes using blanket terms, like "every user of thing".
- Don't get baited into back-and-forth insults. We are not animals.
- Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
- Bigotry will not be tolerated.
3. Post Linux-related content
- Including Unix and BSD.
- Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of
sudo
in Windows. - No porn. Even if you watch it on a Linux machine.
4. No recent reposts
- Everybody uses Arch btw, can't quit Vim, <loves/tolerates/hates> systemd, and wants to interject for a moment. You can stop now.
5. π¬π§ Language/ΡΠ·ΡΠΊ/Sprache
- This is primarily an English-speaking community. π¬π§π¦πΊπΊπΈ
- Comments written in other languages are allowed.
- The substance of a post should be comprehensible for people who only speak English.
- Titles and post bodies written in other languages will be allowed, but only as long as the above rule is observed.
6. (NEW!) Regarding public figures
We all have our opinions, and certain public figures can be divisive. Keep in mind that this is a community for memes and light-hearted fun, not for airing grievances or leveling accusations. - Keep discussions polite and free of disparagement.
- We are never in possession of all of the facts. Defamatory comments will not be tolerated.
- Discussions that get too heated will be locked and offending comments removed. Β
Please report posts and comments that break these rules!
Important: never execute code or follow advice that you don't understand or can't verify, especially here. The word of the day is credibility. This is a meme community -- even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don't remove France.
Youβre correct. Also you can sync files across all devices, built in. The meme is a bit fart sniffy.
Why nobody mentions samba?? That is the only thing I knew
Samba (and NFS) require you to set shares up on the server's side. With sshfs, you don't need anything but a ssh login to your server. Black magic
Or nfs
Also Windows: "Ask your network administrator for access."
Me: "Well I'm my own network administrator so what questions do you want me to ask myself"?
Windows: "Enter network username and password."
Me: There is no network username or password. Sod it, I'll bung them on an external disk.
That's a security quirk. Microsoft reeeeeally doesn't want you to do anonymous SMB anymore, and with every version of Windows, Microsoft has made is more complicated to get it working like that. It's probably still possible, but easier just to make a quick local user account and assign it read/write permissions to the share. Samba on Linux can still do it without as much fuss, but I've long since just accepted the extra step.
>2025
>Not using Plan 9 for distributed computing
ISHYGDDT
I use distributed storage for all my files using pirate bay
So you're storing your shit at my house?
And I am thankful
Isn't is fuse? Why then it doesn't work on darwin?
Mac OS version of Fuse is a commercial software. That said there are other alternatives.
I use Samba over my LAN and ZeroTier to create a sort of VPN Samba on MacOS is a bit slow (heads up) I have not yet figured that issue out but this setup worked for me for a number of years. (and manages to handle my time machine backups over LAN)
Any more since most of my remote access needs fall under development I user Visual Studio Code and their Remote connections system (which is pretty fucking good and "only" requires an SSH connection... and a decent amount of RAM on the remote host)
There are a lot of things to beat up an MacOS over... but honestly getting more technical windows users to from Windows to Mac WILL help Linux adoption. Getting into the underpants of MacOS is very similar to linux (you just don't HAVE to have fun unless you want to)
Wait what? The default kernel doesn't have a fuse fs, inbuilt or as kext? Didn't know that. I thought all modern un*ces come with fuse.
Edit: It seems apple is introducing something called LiveFS similar to (but incompatible) fuse. Couldn't find much docs and I'm not gonna read xnu sources rn.
underpants of MacOS is very similar to linux
no it's not. xnu is very different from linux, with even design philosophy far apart. The userland (and bsd interface aka positive syscall world) is similar to *bsd's, not typical linux userland. Only real similarity is launchd because systemd drew inspiration from it.
Doesn't rclone allow for this? (Not sure how well it would with tough)
TIL.
Wouldn't you just use AFS, CEPH, NFS, or 9p?
I really don't want to be that guy, but isn't SSHFS (FUSE) actually a terrible option when compared to an actual file-system? MacOS isn't really missing out on much there.
The most painful part of MacOS (which makes it downright unbearable for me) is that system configuration files are XML. It's an absolute nightmare.
SSHFS is very mature. I use it for administering several home servers.
It works so well that they added a mode where some users can have SFTP only access (without SSH shell) so you can set up shared directories. It was easier to set up (for me) than CIFS or NFS.
SSHFS uses SFTP which is built into SSH, so no server to install. Its not as fast as NFS, but requires no setup. For something small like a home lab, that is a big advantage.
This. Surely not the fastest way to get content from/to a remote computer, but it just works as soon as you enable sshd.
SSHFS is secure and works well over the internet. If you only want to access it over the LAN, then NFS is a much better option.
For some (most?) of us, we don't have ssh access open to the world, so everything is over a VPN. So I can just use NFS over WireGuard which afaik is fairly secure, if you trust your endpoints, and works great over the Internet.
I've never had good luck with NFS on a high latency connection. SSHFS still works fine even if the server is on the other side of the planet.