Hello!!
I wanted to talk about the softwares we use every day, and their "embedded" alternatives
Like the core shell software like ls, cat, grep, tar, etc. We usually get those from GNU coreutils.
or the way in which we remotely control our systems, which is normally done through OpenSSH.
well for both of these, theres smaller more minimal alternatives!
Theres busybox, which has a cute name UwU and has all the same programs, but is super tiny because it is a single program that shares code between tools to eliminate code duplication.
And for SSH, theres this cool thing I found called dropbear that offers both server and client components.
https://matt.ucc.asn.au/dropbear/dropbear.html
These things are obviously meant for embedded use, but my question is: does that really mean anything??
Like.. what are you really losing with these? Would operating systems/distros really suffer if they actually switched over to these? How much work would really be needed to make things compatible if they wouldn't be?
Didn't Debian switch its /bin/sh to dash? That seems to be working out in the end.
Also, can u think of any other cool "embedded" alternatives that could be useful replacements for their bigger brothers, OwO?