for the most part i don't care, but really, all those fucking terminals i left open, i know they're open, that click per window of yes close has never been helpful
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, no politics, no trolling or ragebaiting.
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.
The program 'btop' is currently running in this session. Are you sure you want to close it?
i'll prob just start running pkill konsole before shutdown. was thinking of pkexec /sbin/shutdown -h now on a button, but it is kind of nice having some of my apps recover on reboot.
I just don't shutdown until I get a big backlog of updates. I have to remount my SSD with my games on it every time, then tell steam.
It's a screenshot of a screenshot in a video? What's that shield?
It's a screenshot of a video that I did
Windows after pressing shutdown and update: you wanted to use me still right????
Just do sysrq+s, sysrq+c (triggers panic) and flip the power switch for instant power off.
goddamn generation loss-ass meme.
me turning off the power supply: (i didn't have anything open so hopefully it's fine...)
It's much less risky than it used to be. Journaling filesystems reduce the risk of filesystem corruption to near zero and are fairly ubiquitous now on non& removable media.
On my work PC I disabled automatic restarts and I'll just hibernate it for weeks at a time, keeping my work stuff open. Convenient, and I can install updates when I choose to.
My Windows is more like "I am scheduling the restart. Pray I don't schedule it any sooner."
Mine will do the restart and boot into Linux.
Windows Updates are always like that. Halfway through it's got to restart, bootloader picks Linux, Windows doesn't get to finish the other half of its update til the next time it's chosen.
You can configure Grub to boot into whichever entry you last selected. Makes rebooting much more convenient
Windows just randomly installing updates only when I'm working on something with a customer.
one of the reasons I'm moving away. pisses me off so much at work, I don't even want it at home
windows: installing updates, do not power off
me: the fuck you are dismantles laptop and rips out battery
Linux: shutdown now
I like how you censored systemd
People need to learn that it's ok to say systemd on the Internet and stop self censoring
Let's not get carried away. Fuck and shit are ok, but I draw the line at s*****d
Yes, let's keep this community family friendly. I could do without such obscenities.
This is just not true.
- Linux does have a graceful process.
- Windows's process is not graceful
Yeah and in linux when you say "kill this process" that process fucking dies. No 10 minutes of windows trying to negotiating with a crashed program to close. No I'm not angry about this happening to me at work today, why do you ask?
Both Windows and Linux have ways to gracefully ask a program to close and to force close it. Not being able to select the correct one on either system is a skill issue.
I am not sure how Windows handles processes, but on Linux you have different signals. SIGKILL
(9) generally kills the process immediately, but there are other signals like SIGTERM
(the default signal, 1) which asks process to gracefully quit, and many others.
If you want to know more, check the signal(7)
man page or this Wikipedia page.