1y
Even completely headless, command line doesn't prioritize in any way. Today I had to reinstall an entire system from scratch because a drive listed in my /etc/fstab died. That makes boot into emergency mode, where you get no SSH, no network, no sound, and no screen reader. There is no quick way to force it to try and boot even though drive 7 of 11 has died, and it could absolutely bring up SSH and the network to let me fix it if it wanted to, just like sysvinit used to do. You can't even force systemd to add SSH and the network to emergency mode because of circular dependencies. nofail will only continue the boot if the drive doesn't exist, but if the filesystem has issues...emergency mode for you. In short: if your drive dies on Linux, fuck you. Be able to see, or reinstall your entire system, because nobody in Linuxland gives a shit about or your needs.
:black_sparkling_heart@fire.asta.lgbt:1:blobcat_cactus@very.tastytea.de:1:drgn_heart@not.an.evilcyberhacker.net:1💙1💜2
17
95
83
6

User avatar
Tyler Spivey @tspivey@dragonscave.space
1y
@fastfinge You've got a few options here.
1. Serial console on the motherboard, needs support from your motherboard and a cable. You also need to take your computer apart to install it. That's probably your best option.
I don't know if Linux can use a USB to serial adapter that early in the boot process. There's netconsole, but I don't think it supports input.
This would give you bootloader and console, no BIOS though.
2. Buy a real server board. They usually have some kind of remote management in them.
They're expensive and there are very few options, but you should get an accessible BIOS out of it.
3. Write your own thing and hook it into the initrd. If I was going to do this, I would try to have it bring up the network and start some kind of shell.
Getting everything I would need for sound would be too complicated. It might also interfere with things later in the boot process.
4. Capture card, hook it up to AI, or OCR.
1
0
2
0
@tspivey What I did was use a preseed to just reinstall. All the data wasn't on the root partition, so all I lost were some random config files like upsmon.conf that I forgot all about.
0
0
0
0
User avatar
lizzy ☭ heart_lesbian_diagonal2 cuwu @lizzy@social.vlhl.dev
1y
@fastfinge you can add the nofail flag in fstab to make it boot regardless of failure
1
0
0
0
@lizzy Yes, as I said in my post, that works if the hardware is dead or removed or otherwise borked. But if there's issues with the filesystem, it'll halt the boot and ask you what to do/how to recover it, landing you in emergency mode.
0
0
1
0
User avatar
Georgiana Brummell @dandylover1@friendica.world
1y
@fastfinge I won't boost this, due to the needless vulgarity, but I am quite shocked to hear this. I would think that, since they've been around for decades, Debian, of all distributions, would have such accessibility as a default! I played with it a bit, but I am really a Windows user who is just curious about Linux. And yes, I do need a screen reader as well. Fortunately, mine is within VmWare, so if something goes wrong, it's not serious, just annoying. But if that were my primary machine, that would be horrible!
2
0
1
0
@dandylover1 I disagree that the vulgarity is needless. In the year 2025, when OSX, Windows, IOS, and Android can run screen readers in recovery mode, it's obscene that Linux can't. Far more obscene than the use of the word fuck.
3
4
12
0
User avatar
hazelnot yell @hazelnot@sunbeam.city
1y
@fastfinge @dandylover1 Huh, I'm more surprised to hear macOS and Windows do have this functionality than that Linux doesn't o.o

...also that iOS has a recovery mode at all 😅
0
0
1
0
User avatar
Rich Felker @dalias@hachyderm.io
1y
@dandylover1 @fastfinge Accessibility was (kinda) important until the systemd bandwagon became more important.. 🤬
0
0
1
0
User avatar
Lukáš Tyrychtr @tyrylu@gts.trycht.cz
1y
@serrebi @fastfinge Actually, systemd's emergency mode is broken on some distros even more than that, you end with a locked root account on many distros, so even sighted have to do these repairs from a live medium. But, yes, convincing mainstream adoption of at leas BRLTTY in the initramfs will be a challenge, adding a TTY screen reader will be another challenge (which one you want, for example). Yes, I know, that speakup exists, but some distros (thank you, Fedora), are not building the support, because this infrastructure has basically no maintainer, and they do not want to risk this.
0
0
2
0
User avatar
sheerluck @sheerluck@misskey.io
1y
@fastfinge next time try something without systemd and your mileage may vary
0
0
1
0
User avatar
Howard Chu @ Symas @hyc@mastodon.social
1y
@fastfinge systemd's design philosophy does not represent all of linuxland. Most seasoned linux devs hate systemd and all it brings with it.
1
0
1
0
@hyc Interesting that it continues to exist, and is the default in every major distro, then. Apparently Linux is just as subject to enshittification as everything else.
1
0
2
0
User avatar
Howard Chu @ Symas @hyc@mastodon.social
1y
@fastfinge Yeah, commercial $$ from RedHat helped push it, etc. The folks in the Debian community hated it enough to hardfork and make Devuan, which continues to use sysvinit.
0
0
1
0
User avatar
Luciano humble Greenthumb @hmblGr33nthumB@growers.social
1y
@fastfinge
0
0
1
0
User avatar
remmy @remmy@treehouse.systems
1y
@fastfinge

While the entire way the emergency and rescue modes work really needs to be re-worked taking accessibility into account, until that happens (if ever...) you can disable it entirely by masking
emergency.target and emergency.service, (systemctl mask emergency.target emergency.service,) which will make your system keep booting instead. (Though then it becomes extra important to make sure that services requiring those mounts have explicit dependencies on them, so they don't get accidentally started and start doing things on the wrong filesystems.)
1
0
1
0
@remmy Instead of messing with the terrifying mess that is systemd dependencies, I just have permissions set on the mounting directory so processes can't write there. They can only write to the actual mounted filesystem. So thanks for the tip! This will help.
0
0
0
0
User avatar
Indiealexh @indiealexh@tny.social
1y
@fastfinge if I knew more about low level coding I would love to see what I could do to help fix that.

Something to try and learn for me I guess.
0
0
1
0