linuxmemes

sntx , in Btw, I don't use Arch

For anyone worried about the Nix drama, a fork has already happened.

You can find it under lix.systems.

unlawfulbooger ,

Thank you, was wondering what happened there.

thedeadwalking4242 ,

There's been a couple forks but that's not all. They are made votes to massively restructure their governance system. Things are looking up on the main nixos branch!

sntx ,

ooh, nice!

I've just red up on Tvix and looked at a few discussions regarding the post-drama work.

Would you mind pointing me towards more sources on the restructure?

MonkderDritte , in Btw, I don't use Arch

Yeah, no. Windows is the easy starter but the more you get experience, the more you fight the system.
Or you go the Linux approach and set your tooling up from start via third-parties from Chocolatey/Scoop.Guess the red line represents this.

Laser , in No Mercy

SIGTERM is a graceful request to the application to terminate itself and despite their names kill and killall default to SIGTERM (also useful to send other signals to processes, like START, STOP and NOHUP).

kill -9 though...

RustyNova ,

"You should terminate yourself, NOW!"

debounced ,
@debounced@kbin.run avatar

https://www.youtube.com/watch?v=Fow7iUaKrq4

edit: also 17 FUCKING years ago... GD!

AnUnusualRelic ,
@AnUnusualRelic@lemmy.world avatar

killall is deprecated, we use pkill now.

bjoern_tantau , in No Mercy
@bjoern_tantau@swg-empire.de avatar

Fake news.

Both Windows and Linux have their respective SIGTERM and SIGKILL equivalents. And both usually try SIGTERM before resorting to SIGKILL. That's what systemd's dreaded "a stop job is running" is. It waits a minute or so for the SIGTERM to be honoured before SIGKILLing the offending process.

sxan ,
@sxan@midwest.social avatar

Also fake because zombie processes.

I once spent several angry hours researching zombie processes in a quest to kill them by any means necessary. Ended up rebooting, which was a sort of baby-with-the bath-water solution.

Zombie processes still infuriate me. While I'm not a Rust developer, nor do I particularly care about the language, I'm eagerly watching Redox OS, as it looks like the micro kernel OS with the best chance to make to it useful desktop status. A good micro kernel would address so so many of the worst aspects of Linux.

aubeynarf , (Bearbeitet )

Performance is the major flaw with microkernels that have prevented the half-dozen or more serious attempts at this to succeed.

Incurring context switching for low-level operations is just too slow.

An alternative might be a safe/provable language for kernel and drivers where the compiler can guarantee properties of kernel modules instead of requiring hardware guarantees, and it ends up in one address space/protection boundary. But then the compiler (and its output) becomes a trusted component.

nickwitha_k ,

Thank you. Came here to say this. Microkernels are great for limited scope devices like microcontrollers but really suffer in general computing.

uis ,
@uis@lemm.ee avatar

Quite opposite. Most firmware microcontrollers run is giant kernel. Some microcontrollers don't even have context switching at all. And I'm not even starting to talk about MMU.

nickwitha_k ,

I was not meaning to say that all microcontrollers (or microcontroller firmwares) run a microkernel but, rather, that microcontrollers are an environment where they can work well because the limited scope of what the device is expected to do and its necessarily supported peripherals can be much smaller, making the potential impact of context changes smaller.

For some good examples of microkernels for such purposes, take a look at FreeRTOS, ChibiOS, or Zephyr pre-1.6 (at which point architecture changed to a monolith because it is creeping towards general computing functionality).

Some microcontrollers don't even have context switching at all.

As long as there's some processing RAM and sufficient ROM, I'm sure that it can be crammed in there via firmware (in a sub-optimal way that makes people who have to maintain the code, including your future self, hate you and wish a more appropriate part were used).

And I'm not even starting to talk about MMU.

Some madlads forked Linux to get it to work without an MMU, even getting it merged into the mainline kernel: https://en.m.wikipedia.org/wiki/%CE%9CClinux

So, doable. Adviseable? Probably not in most cases but that's subjective.

uis ,
@uis@lemm.ee avatar

take a look at FreeRTOS

AFAIK FreeRTOS always ran drivers in kernel.

As long as there's some processing RAM and sufficient ROM, I'm sure that it can be crammed in there via firmware

You can't even emulate MPU without MPU. The only way is running bytecode, which is still not context switching.

Some madlads forked Linux to get it to work without an MMU, even getting it merged into the mainline kernel: https://en.m.wikipedia.org/wiki/%CE%9CClinux

You are correct here. Should have said MPU instead.

nickwitha_k ,

AFAIK FreeRTOS always ran drivers in kernel.

At least in the docs, I see it described as a microkernel but, with a kernel that small, the differences are probably academic (and I'll leave that to people with more formal background in CS than myself).

You can't even emulate MPU without MPU. The only way is running bytecode, which is still not context switching.

You are correct here. Should have said MPU instead.

Oh yes! That makes a lot more sense. I've been on-and-off looking at implementing multithreading and multiprocessing in CircuitPython. Memory protection is a big problem with making it work reliably.

uis ,
@uis@lemm.ee avatar

where the compiler can guarantee properties of kernel modules instead of requiring hardware guarantees

Then you would need to move compiler to kernel. Well, there is one: BPF(and derivatives). It's turing-incomplete by design.

Diabolo96 ,

RedoxOS would likely never become feature complete enough to be a stable, useful and daily-drivable OS. It's currently a hobbyist OS that is mainly used as a testbed for OS programming in Rust.

If the RedoxOs devs could port the Cosmic DE, they'd become one of the best Toy OS and maybe become used on some serious projects . This could give them enough funds to become a viable OS used by megacorps on infrastructures where security is critical and it may lead it to develop into a truly daily drivable OS.

ReveredOxygen ,
@ReveredOxygen@sh.itjust.works avatar

I believe the next step after that would be to wake up

Diabolo96 ,

Hey, we can always dream!

areyouevenreal ,

They have already ported apps from Cosmic though.

uis ,
@uis@lemm.ee avatar

HURD 2, the return of rust

areyouevenreal ,

They are planning to port Cosmic DE, and have already ported several applications from Cosmic including the file manager and text editor if I remember correctly.

Diabolo96 ,

They've shown the COSMIC terminal working on their last showcase video

CameronDev , (Bearbeitet )

Zombie processes are already dead. They aren't executing, the kernel is just keeping a reference to them so their parent process can check their return code (waitpid).

All processes becomes zombies briefly after they exit, just usually their parents wait on them correctly. If their parents exit without waiting on the child, then the child gets reparented to init, which will wait on it. If the parent stays alive, but doesn't wait on the child, then it will remain zombied until the parent exits and triggers the reparenting.

Its not really Linux's fault if processes don't clean up their children correctly, and I'm 99% sure you can zombie a child on redox given its a POSIX OS.

Edit: https://gist.github.com/cameroncros/8ae3def101efc08be2cd69846d9dcc81 - Rust program to generate orphans.

senkora ,

I haven’t tried this, but if you just need the parent to call waitpid on the child’s pid then you should be able to do that by attaching to the process via gdb, breaking, and then manually invoking waitpid and continuing.

CameronDev , (Bearbeitet )

I think that should do it. I'll try later today and report back.

Of course, this risks getting into an even worse state, because if the parent later tries to correctly wait for its child, the call will hang.

Edit: Will clean up the orphan/defunct process.

If the parent ever tried to wait, they would either get ECHILD if there are no children, or it would block until a child exited.

Will likely cause follow on issues - reaping someone elses children is generally frowned upon :D.

MNByChoice ,

Zombie processes are hilarious. They are the unkillable package delivery person of the Linux system. They have some data that must be delivered before they can die. Before they are allowed to die.

Sometimes just listening to them is all they want. (Strace or redirect their output anywhere.)

Sometimes, the whole village has to burn. (Reboot)

jaybone ,

What does this have to do with Rust? Or redox, or micro kernels or Linux?

sxan ,
@sxan@midwest.social avatar

Zombies are usually tied to some resource use. In microkernels, you have more control over the resources.

uis ,
@uis@lemm.ee avatar

Ok, how change of kernel would fix userspace program not reading return value? And if you just want to use microkernel, then use either HURD or whatever DragonflyBSD uses.

But generally microkernels are not solution to problems most people claim they would solve, especially in post-meltdown era.

sxan ,
@sxan@midwest.social avatar

This particular issue could be solved in most cases in a monolithic kernel. That it isn't, is by design. But it's a terrible design decision, because it can lead to situations where (for example) a zombie process locks a mount point and prevents unmounting because the kernel insists it's still in use by the zombie process. Which the kernel provides no mechanism for terminating.

It is provable via experiment in Linux by use of fuse filesystems. Create a program that is guaranteed to become a zombie. Run it within a filesystem mounted by an in-kernel module, like a remote nfs mount. You now have a permanently mounted NFS mount point. Now, use mount something using fuse, say a WebDAV remote point. Run the same zombie process there. Again, the mount point is unmountable. Now, kill the fuse process itself. The mount point will be unmounted and disappear.

This is exactly how microkernels work. Every module is killable, crashable, upgradable - all without forcing a reboot or affecting any processes not using the module. And in a well-designed microkernel, even processes using the module can in many cases continue functioning as if the restarted kernel module never changed.

Fuse is really close to the capabilities of microkernels, except it's only filesystems. In a microkernel, nearly everything is like fuse. A linux kernel compiled such that everything is a loadable module, and not hard linked into the kernel, is close to a microkernel, except without the benefits of actually being a microkernel.

Microkernels are better. Popularity does not prove superiority, except in the metric of popularity.

uis , (Bearbeitet )
@uis@lemm.ee avatar

This particular issue could be solved in most cases in a monolithic kernel. That it isn't, is by design.

It was(see CLONE_DETATCHED here) and is(source)

Create a program that is guaranteed to become a zombie. Run it within a filesystem mounted by an in-kernel module, like a remote nfs mount. You now have a permanently mounted NFS mount point.

Ok, this is not really good implementation. I'm not sure that standard requires zombie processes to keep mountpoints(unless its executable is located in that fs) untill return value is read. Unless there is call to get CWD of another process. Oh, wait. Can't ptrace issue syscall on behalf of zombie process or like that? Or use vfs of that process? If so, then it makes sense to keep mountpoint.

Every module is killable, crashable, upgradable - all without forcing a reboot or affecting any processes not using the module.

except without the benefits of actually being a microkernel.

Except Linux does it too. If graphics module crashes, I still can SSH into system. And when I developed driver for RK3328 TRNG, it crashed a lot. Replaced it without reboot.

Microkernels are better. Popularity does not prove superiority, except in the metric of popularity.

As I said, we live in post-meltdown world. Microkernels are MUCH slower.

sxan , (Bearbeitet )
@sxan@midwest.social avatar

As I said, we live in post-meltdown world. Microkernels are MUCH slower.

I've heard this from several people, but you're the lucky number by which I'd heard it enough that I bothered to gather some references to refute this.

First, this is an argument that derived from first generation microkernels, and in particular, MINIX, which - as a teaching aid OS, never tried to play the benchmark game. It's been repeated, like dogma, through several iterations of microkernels which have, in the interim, largely erased most of those performance leads of monolithic kernels. One paper notes that, once the working code exceeds the L2 cache size, there is marginal advantage to the monolithic structure. A second paper running benchmarks on L^4^Linux vs Linux concluded that the microkernel penalty was only about 5%-10% slower for applications than the Linux monolithic kernel.

This is not MUCH slower, and - indeed - unless you're doing HPC applications, is close enough to be unnoticeable.

Edit: I was originally going to omit this, as it's propaganda from a vested interest, and includes no concrete numbers, but this blog entry from a product manager at QNX specifically mentions using microkernels in HPC problem spaces, which I thought was interesting, so I'm post-facto including it.

uis ,
@uis@lemm.ee avatar

First, this is an argument that derived from first generation microkernels, and in particular, MINIX, which - as a teaching aid OS, never tried to play the benchmark game.

Indeed, first generation microkernels were so bad, that Jochen Liedtke in rage created L3 "to show how it's done". While it was faster than existing microkernels, it was still slow.

One paper notes that, once the working code exceeds the L2 cache size, there is marginal advantage to the monolithic structure.

  1. The paper was written in pre-meltdown era.
  2. The paper is about hybrid kernels. And gutted Mach(XNU) is used as example.
  3. Nowdays(after meltdown) all cache levels are usually invalidated during context switch. Processors try to add mechanisms to avoid this, but they create new vulnreabilities.

A second paper running benchmarks on L^4^Linux vs Linux concluded that the microkernel penalty was only about 5%-10% slower for applications than the Linux monolithic kernel.

    1. Waaaaay before meltdown era.

I'll mark quotes from paper as doublequotes.

a Linux version that executes on top of a first-
generation Mach-derived µ-kernel.

  1. So, hybrid kernel. Not as bad as microkernel.

The corresponding penalty is 5 times higher for a co-located
in-kernel version of MkLinux, and 7 times higher for a user-
level version of MkLinux.

Wait, what? Co-located in-kernel? So, loadable module?

In particular, we show (1) how performance can be
improved by implementing some Unix services and variants
of them directly above the L4 µ-kernel

  1. No surprise here. Hybrids are faster than microkernels. Kinda proves my point, that moving close to monolithic improves performance.

Right now I stopped at the end of second page of this paper. Maybe will continue later.

this blog entry

Will read.

areyouevenreal ,

But generally microkernels are not solution to problems most people claim they would solve, especially in post-meltdown era.

Can you elaborate? I am not an OS design expert, and I thought microkernels had some advantages.

uis ,
@uis@lemm.ee avatar

Can you elaborate? I am not an OS design expert, and I thought microkernels had some advantages.

Many people think that microcernels are only way to run one program on multiple machines without modyfing them. Counterexample to such statement is Plan 9, which had such capability with monolithic kernel.

areyouevenreal ,

That's not something I ever associated with microkernels to be honest. That's just clustering.

I was more interested in having minimal kernels with a bunch of processes handling low level stuff like file systems that could be restarted if they died. The other cool thing was virtualized kernels.

uis ,
@uis@lemm.ee avatar

Well, even monolithic Linux can restart fs driver if it dies. I think.

Vilian ,

nah, you can have micro-kernel features on linux, but you can't have monolithc kernel features on microkernel, there's zero arguments in favor of a micro kernel, except being a novel project

sxan ,
@sxan@midwest.social avatar

ORLY.

Do explain how you can have micro kernel features on Linux. Explain, please, how I can kill the filesystem module and restart it when it bugs out, and how I can prevent hard kernel crashes when a bug in a kernel module causes a lock-up. I'm really interested in hearing how I can upgrade a kernel module with a patch without forcing a reboot; that'd really help on Arch, where minor, patch-level kernel updates force reboots multiple times a week (without locking me into an -lts kernel that isn't getting security patches).

I'd love to hear how monolithic kernels have solved these.

areyouevenreal ,

I thought the point of lts kernels is they still get patches despite being old.

Other than that though you're right on the money. I think they don't know what the characteristics of a microkernel are. I think they mean that a microkernel can't have all the features of a monolithic kernel, what they fail to realise is that might actually be a good thing.

sxan ,
@sxan@midwest.social avatar

I thought the point of lts kernels is they still get patches despite being old.

Well, yeah, you're right. My shameful admission is that I'm not using LTS because I wanted to play with bcachefs and it's not in LTS. Maybe there's a package for LTS now that'd let me at it, but, still. It's a bad excuse, but there you go.

I think a lot of people also don't realize that most of the performance issues have been worked around, and if RedoxOS is paying attention to advances in the microkernel field and is not trying to solve every problem in isolation, they could end up with close to monolithic kernel performance. Certainly close to Windows performance, and that seems good enough for Industry.

I don't think microkernels will ever compete in the HPC field, but I highly doubt anyone complaining about the performance penalty of microkernel architecture would actual notice a difference.

areyouevenreal ,

Windows is a hybrid kernel, and has some interesting layers of abstraction, all of which make it slower. It's also full of junkware these days. So beating it shouldn't be that hard.

Yeah to be fair in HPC it's probably easier to just setup a watchdog and reboot that node in case of issues. No need for the extra resilience.

sxan ,
@sxan@midwest.social avatar

That's my point. If you're l33t gaming, what matters is your GPU anyway. If HPC, sure, use whatever architecture gets you the most bang for your buck, which is probably going to be a monolithic kernel (but, maybe not - nanokernels allow processes basically direct access to hardware, with minimal abstraction, like X11 DRI, and might allow even faster solutions to be programmed). For most people, the slight improvement in performance of a monolithic kernel over a modern, optimized microkernel design will probably not be noticeable.

I keep getting people telling me monolithic kernels are way faster, dude, but most are just parroting the state of things decades ago and are ignoring many of the advancements micro kernels like L4 have made in intervening years. But I need to go find links and put together references before I counter-claim, and right now I have other things I'd rather be doing.

areyouevenreal ,

I wasn't making a counter claim. I was agreeing with you. Like what?

sxan ,
@sxan@midwest.social avatar

And I was agreeing with you! I was leaning on your sympathetic shoulder, while I suffered the slings and arrows of outrageously misinformed miscreants, and commiserating to your compatriotic ear.

frezik ,

I've been hoping that we can sneak more and more things into userspace on Linux. Then, one day, Linus will wake up and discover he's accidentally made a microkernel.

Vilian ,

you don't need a micro kernel to install medules, nor to make a crash in certain module don't bring the kernel down, you program it isolated, they don't do that now because it's unecessary, but android do that, and there's work being doing in that way
https://www.phoronix.com/news/Ubuntu-Rust-Scheduler-Micro

the thing is that it's harder todo that, that's why no one does, but not impossible, you also need to give the kernel the foundation to support that

sxan ,
@sxan@midwest.social avatar

Fun fact: Android's next Kernel, Fuchsia, is a microkernel. So even Google acknowledges the superiority of microkernels.

Vilian ,

bro thinking a chromecast OS gonna run in google servers 💀, micro kernels has their utility in embedded system, we know, saying that they are replacement for monolithic kernel is dumb, also companies can't do different/hacks project anymore?

areyouevenreal ,

I don't think a microkernel will help with zombies.

Mojave ,

Clicking end task in windows task manager has definitely let the hanging task live in its non-responsive state for multiple hours before.

bjoern_tantau ,
@bjoern_tantau@swg-empire.de avatar

Been a while since I've been on Windows but I distinctly remember some button to kill a task without waiting. Maybe they removed it to make Windows soooo much more user friendly.

Rev3rze ,

Off the top of my head: right click the task and hit end process. That has literally never failed me. Back in windows XP it might sometimes not actually kill the process but then there was always the "kill process tree" button to fall back on.

Zoot ,
@Zoot@reddthat.com avatar

Yep, typically "Kill Process Tree" was like the nuke from orbit. You'll likely destroy any unsaved data, but it works nice when steam has 12 processes running at once.

Aux ,

It's not really a nuke as some processes might be protected. The nuke is to use debugger privileges. Far Manager can kill processes using debugger privileges, that will literally nuke anything and in an instant: the app won't even receive any signals or anything.

blind3rdeye ,

The normal Windows task manager's 'end task' button just politely asks the app to close - but then later will tell the user if the app is unresponsive, and offer to brutally murder it instead.

There is also the sysinternals Process Monitor, which is basically 'expert' version of the task manager. Procmon does allow you to just kill a task outright.

Aux ,

The end task doesn't terminate the app, it only sends a message to the window to close itself. The app will then decide what to do on its own. For example, if the app has multiple windows open, it might close the active one, but still continue running with other windows open. Or it might ignore the message completely.

avidamoeba ,
@avidamoeba@lemmy.ca avatar

Stop jobs are a systemdism and they're nice. I think the desktop environment kills its children on its own during reboot and it might not be as nice. Graphical browsers often complain about being killed after a reboot in GNOME.

perry ,
@perry@lemy.lol avatar

AFAIK running firefox in a terminal and pressing ^C (SIGINT) has kind of the same effect as logging out or poweroff in GNOME (SIGTERM, if you're using systemd). This gives the browser (or other processes with crash recovery) enough time to save all its data and exit gracefully for the crash recovery the next time they are run.

Please correct me if I'm wrong

uis ,
@uis@lemm.ee avatar

SIGTERM, if you're using systemd

SIGTERM it was since original init

SpaceCadet ,
@SpaceCadet@feddit.nl avatar

That’s what systemd’s dreaded “a stop job is running” is

The worst part of that is that you can't quickly login to check what it is (so maybe you can prevent it in the future?), or kill it anyway because it's likely to be something stupid and unimportant. And if it actually was important, well... it's gonna be shot in the head in a minute anyway, and there's nothing you can do to prevent it, so what's the point of delaying?

bjoern_tantau ,
@bjoern_tantau@swg-empire.de avatar

so what's the point of delaying?

In the best case the offending process actually does shut down cleanly before the time is up. Like, some databases like redis keep written data in memory for fast access before actually writing the data to disc. If you were to kill such a process before all the data is written you'd lose it.

So, admins of servers like these might even opt to increase the timeout, depending on their configuration and disc speed.

SpaceCadet , (Bearbeitet )
@SpaceCadet@feddit.nl avatar

I know what it theoretically is for, I still think it's a bad implementation.

  1. It often doesn't tell you clearly what it is waiting for.
  2. It doesn't allow you to checkout what's going on with the process that isn't responding, because logins are already disabled
  3. It doesn't allow you to cancel the wait and terminate the process anyway. 9/10 when I get it, it has been because of something stupid like a stale NFS mount or a bug in a unit file.
  4. If it is actually something important, like your Redis example, it doesn't allow you to cancel the shutdown, or to give it more time. Who's to say that your Redis instance will be able to persist its state to disk within 90 seconds, or any arbitrary time?

Finally, I think that well written applications should be resilient to being terminated unexpectedly. If, like in your Redis example, you put data in memory without it being backed by persistent storage, you should expect to lose it. After all, power outages and crashes do happen as well.

ConstantPain ,

Windows gives you the option to kill on shutdown if the app is trying to delay the process. I think it's ideal.

user , in No Mercy

Haha. Popos gnome doesn't have this. You get a pop up and says 60s count down. Wish I knew what command that is. I usually have hotkey 'poweroff' and that ista kills everything and shuts down lol

ArcaneSlime ,

The command shutdown defaults to 60s, but doesn't throw the popup. shutdown +60 will give you 60min instead (and +30 is 30min, etc), shutdown -c to cancel, and shutdown --show will show if one is scheduled shutdown -h I believe is the "do it now" option but I always just give it the minute.

luciddaemon ,

shutdown -h now

-h stands for halt

now can be set to any amount of time you want.

ArcaneSlime ,

Ah thanks! Like I said I always just give it the 60s (or +X), so I was less familiar with the now bit.

onlinepersona , in No Mercy

That should be a child.

Anti Commercial-AI license

iAvicenna , in Btw, I don't use Arch
@iAvicenna@lemmy.world avatar

You didn't even care to relabel the axes, I don't trust you.

MonkeMischief ,

Yeah right now this graph says that on other OSs, your gaming skill steadily improves as you play.

But by the time you've learned and set up NixOS, your gaming skills will be crazy powerful but you've plateued.

...I guessssss it could make sense? XD

Siegfried ,

It was about dwarf fortress, i refuse to belive otherwise

iAvicenna ,
@iAvicenna@lemmy.world avatar

what about rogue-likes on insane? people falling from the cliff sure looks like that to me

morbidcactus ,

I vaguely remember it being about EvE Online, totally possible it was repurposed.

EurekaStockade , in idk i use tty
abfarid ,
@abfarid@startrek.website avatar

Wait, there's something else other than Gnome and KDE Plasma?

steersman2484 ,
sneezycat ,
@sneezycat@sopuli.xyz avatar
Shady_Shiroe ,
@Shady_Shiroe@lemmy.world avatar
bruhduh ,
@bruhduh@lemmy.world avatar
Kuba ,

Ice

Icewm or something Idk I use budgie

jawa21 ,
@jawa21@lemmy.sdf.org avatar
MonkeMischief ,
No_Eponym ,
@No_Eponym@lemmy.ca avatar
guiguinofake ,
jennraeross ,
7eter , (Bearbeitet )
NeatNit , in No Mercy

Windows' might be complex, but it is NOT graceful. If you have notepad open with unsaved text, then shutdown will never shut down - but nothing on the screen will make this obvious to a non-technical person.

chellomere ,

Unless there are security updates to install, then everything will be mercilessly killed

CertifiedBlackGuy ,

Praise be Cortana and IE's reinstallation!

QuarterSwede ,
@QuarterSwede@lemmy.world avatar

F’ing notepad every time.

D1m1tri , in Prove youre an OG, State your distro couz

Void! I used arch btw for quite a while, but then decided to switch and I don't regret nothing... Except the docs, the docs aren't very good. I'm also running debian 12 on my home server, and it has been a good experience

secret300 , in Btw, I don't use Arch

One day, one day soon I will install nixOS on my ThinkPad. Til then I will continue using silverblue like a pleb

fluxc0 , in Prove youre an OG, State your distro couz

In the beginning, i used mint, then i used arch for a while, now im chilling comfortably with a dual boot of bazzite/arch. bazzite for the gaming setup, arch for the work setup.

Ironfacebuster , in No Mercy

Almost every time I restart my Windows PC from an update, it sits on the "closing apps screen" or "restarting" screen then gives up completely and I have to force it to shut down/restart

And, just about every other time I restart with an update, it closes apps and then just fully shuts down after the update!

It's super graceful! 😭

MonkeMischief ,

EVERY TIME!!

"A program is preventing Windows from shutting down"

The program : A generic non-descript white box icon with no title.

Clicking shutdown/restart anyway becomes standard procedure at this point.

Ironfacebuster ,

When I first saw that I was like "great, I have a virus"

Nope, just Windows

Xylight ,
@Xylight@lemdro.id avatar

Windows is preventing Windows from shutting down

01189998819991197253 ,
@01189998819991197253@infosec.pub avatar

"restarting" for 15 minutes. Then crashes. Now I have to reinstall updates and go through it all over again. I hate how crappy the windows update process has become.

Except for the immutable versions I have, Linux almost never needs to reboot after an update. Upgrades, yes, but not standard updates. And even after upgrades, it just works [(except for one of the immutable versions I have)].

I usually close all programs before shutting down / rebooting, anyway (a habit I picked up from Win95 days, where it would crash if programs prevented it from shutting down), so I don't really feel this SIGKILL issues.

Shareni ,

Linux almost never needs to reboot after an update

Doesn't it often need a reboot to apply some updates?

I rember reading something along those lines then I was researching why Fedora installs some updates after a reboot. Most

01189998819991197253 ,
@01189998819991197253@infosec.pub avatar

Fedora is the immutable I was referring to that does need to reboot. Linux Mint and OpenSuse only need to reboot after an upgrade. I've never had to reboot them after updates. Mileage may vary, of course, as different people have different software, tools, and libraries installed.

Shareni ,

I was talking about regular fedora. It's not that you have to reboot, but you don't get to use those updates until you do. The most obvious example is updating the kernel and its modules.

01189998819991197253 ,
@01189998819991197253@infosec.pub avatar

You're correct. A kernel update would fall under the umbrella of a system upgrade, where the system needs to shut down to allow underlying components to be reloaded.

Vilian ,

to be fair, fedora downloads and apply the update before reboot, windows download, apply and then reboot, that's why it take so much time

01189998819991197253 ,
@01189998819991197253@infosec.pub avatar

Right, but Fedora failures allows me still to boot. Windows failures forces an uninstallation of the update, killing even more time. There are good and bad things to each approach.

uis ,
@uis@lemm.ee avatar

I was doing my project while system updated itself from sources. Шindows should take notes here.

And I'm not even talking about CRIU, where you can save entire progtam state on disk, reboot and restore it back in the state before reboot.

Ironfacebuster ,

As Microsoft adds ads in more places more and more, I consider moving over to Linux but I just have too many files and weird Windows only programs that I use that I can't

I also haven't really found a desktop environment I really like yet, so I'm open to suggestions for dual booting!

01189998819991197253 ,
@01189998819991197253@infosec.pub avatar

I pretty much always recommend Linux Mint Cinnamon for anyone entering Linux for the first time or anyone who wants something to just work 98% of the time. I use Mint Debian Edition (testing it out. So far, so good, and it's quickly entering first place in terms of recommendations, as it seems just as stable and uses Debian packages instead of Ubuntu's), OpenSuse with KDE (less for beginner's and more for those who want "eye candy" and some nostalgia), and Fedora Silverblue (currently have an update issue with its certificates, so can't really recommend it yet). I've found very few Windows programs to not work within WINE (more complex, system file dependent programs generally are those that fail), so you may find that all of your Windows-only programs work perfectly fine under WINE.

With Mint (and others, I'm sure), you can install multiple DEs and test them out, then remove those you don't like. Or keep them all and play DE roulette I guess lol

Ironfacebuster ,

I'll definitely check some of those out, thanks! I have a little experience with Linux since every self hosted server PC I've built has always had Ubuntu Server, but even then I was tempted to try and dual boot Mint

MonkderDritte , in No Mercy

SIGTERM is the graceful way tho? It nicely asks programs to please close and cleanup. Unlike SIGKILL, which bombs the shop and creates orphans.

Thann ,
@Thann@lemmy.ml avatar

And we give steam a fewilliseconds to comply, so IDK what they're complaing about...

MonkderDritte , (Bearbeitet )

?

You're supposed to close Steam via menu or systray. If you run it in cli, you see that it cleans then a whole bunch up for a few seconds.

meleethecat ,

Please end your process. You have ten milliseconds to comply.

Yearly1845 ,

Please do not resist.

TechAnon ,

Steam is clunky... Exit -> Oh you want to exit? Let me launch a new window letting you know I'm shutting down and take about 20 seconds while I was sitting here idle before you asked to shutdown.

See you tomorrow where I'll validate your games again. Just in case!

SpaceCowboy ,
@SpaceCowboy@lemmy.ca avatar

Yup. And you can kill processes in Windows to in the task manager. Or probably with a Powershell command too, but nobody's gonna learn Powershell LOL.

There's nearly always equivalent functions in both Linux and Windows, just in Windows you gotta click around in more bullshit forms and shit to find stuff. Or learn Powershell, but again, LOL. They are both OSes after all, they do similar things. Just one might do them better than the other.

capital ,

Why u gotta hate on PowerShell like that? I like it. 😭

stetech ,

It might be nice and all that (I wouldn’t know), but it’s not a sub- nor superset of glorious POSIX

MrPommeroy ,

Probably because it's the scripting language equivalent to Clippy. Ref.: Approved "verbs"

capital ,

I really appreciate the consistency. People also dog it for being verbose to write but it makes it so much more legible.

/shrug

MrPommeroy ,

I usually write verbose code and use self-documenting function names, but to have such a limited set of verbs available can be frustrating. They could at least have used a proper dictionary and included all verbs. Then have a map of synonyms that are preferred, like instead of 'create' they prefer 'new' (which isn't even a verb).

pantyhosewimp ,

Boy oh boy would you hate AppleScript. This is what I have to type to throw files in the trash instead of deleting them.

tell application ”Finder” to delete POSIX file “/full/fucking/path/to/file”
MrPommeroy ,

🤣

PlexSheep ,

Why do you need to "tell" some "application"? Why do you need a "finder" if you know the absolute path already? Does this imply that "finder" always runs, ready to be told something?

pantyhosewimp ,

Finder is macOS equivalent of Windows Explorer (maybe, it’s been a while). I assume Linux desktop suites have various similar processes. In other words, a second optional layer (with more features) to access runtime libc file manipulation api.

PlexSheep ,

Explorers in Linux don't work like this. They are just some app you can move your files with.

pantyhosewimp ,

Yes. Finder is just some app you can move files with on macOS.

lud ,

You don't have to follow best practices though. You can name shit pretty much whatever you want.

MrPommeroy ,

No, but if you don't the UI will nag at you just like Clippy did, which is my point.

lud ,

Only if you haven't disabled or dismissed the "problem"

PlexSheep ,

Your opinion is wrong, Powershell must be banished

dezmd ,
@dezmd@lemmy.world avatar

Bash already existed

capital ,

I find objects much easier to work with than a bunch of string manipulation.

dezmd ,
@dezmd@lemmy.world avatar

Just think of strings as the objects.

/waves magic wand

SpaceCowboy ,
@SpaceCowboy@lemmy.ca avatar

It's one of those things wher eI'm sure it's fine if you learn it. But it's not DOS CMD, but also not bash.

So instead of improving CMD to have more features or just going all the way and offering an official bash implementation, they want me to learn a third thing. Just don't have time for it.

capital ,

It’s second to none if you have to get things done in a Windows environment, especially if dealing with Active Directory.

But if not, I don’t blame you for not picking it up. Right tool for the job and all that.

SpaceCowboy ,
@SpaceCowboy@lemmy.ca avatar

I do use it occasionally, but I gotta google for the command every time. So not exactly learning it.

lud ,

I use powershell quite a bit at work and I really like it.

If anything it's much easier to read than the abomination called bash.

JackbyDev ,

I wanna learn PowerShell but I only really learn extra stuff like that if I have to. My work computer is a Mac now and has been since 2019. At home I don't use too much on Windows to really warrant it. I did used to know how to do "sudo" in PowerShell which was useful. Best the hell out of restarting as admin.

The "object" approach instead of everything as text seems desirable.

DmMacniel , in No Mercy
@DmMacniel@feddit.org avatar

Mercy is for the weak.

  • Alle
  • Abonniert
  • Moderiert
  • Favoriten
  • random
  • linuxmemes@lemmy.world
  • haupteingang
  • Alle Magazine