this post was submitted on 13 Oct 2023
684 points (92.8% liked)

Memes

45629 readers
1083 users here now

Rules:

  1. Be civil and nice.
  2. Try not to excessively repost, as a rule of thumb, wait at least 2 months to do it if you have to.

founded 5 years ago
MODERATORS
 

Meme transcription: Anakin & Padme

[Panel 1] Anakin tries selects “Update and shut down” from the Windows start menu.

[Panel 2] Padme, labeled as “Windows”, cheerily says: ”You mean ‘Update and restart’, right?”

[Panel 3] Anakin takes an annoyed look.

[Panel 4] Padme, still cheery, says “I’ll just ‘Update and Restart’.”

top 50 comments
sorted by: hot top controversial new old
[–] [email protected] 95 points 1 year ago (3 children)

My favorite is when I shut it down and then it reboots into Ubuntu bc that's my default in grub

[–] [email protected] 17 points 1 year ago (1 children)

me who uses rEFInd which remembers the last OS chosen and defaults to that: I don't have such weaknesses

[–] ruckblack 20 points 1 year ago (2 children)

Grub also has this feature lmao

load more comments (2 replies)
load more comments (2 replies)
[–] [email protected] 82 points 1 year ago

God I hate when meme formats are completely misused.

[–] [email protected] 77 points 1 year ago (10 children)

I can't stand how windows updates are so intrusive. Sometimes I'll leave my computer on running a task overnight and Windows will just say "Oh fuck you, I restarted halfway through the night, and then your computer sat idle for 3 hours". And, btw, I have updates "suspended"

I'm like everyone else here, I run Linux for most of my stuff, but Windows is on one last box, and it's just so aggravating now

[–] [email protected] 22 points 1 year ago (2 children)

How do you know if someone uses Linux?

Don't worry, they'll tell you

[–] [email protected] 14 points 1 year ago (1 children)

Hi, I'm a vegan Linux user, do know want to know why you're wrong about everything?

[–] UnRelatedBurner 5 points 1 year ago

I'm having a hard time reading this comment thru the "activate Windows" text. I gtg work starts soon, I'll react when I get home, I work as a butcher btw.

/j

[–] [email protected] 5 points 1 year ago

I mean, they're complaining about something in Windows. So without the disclaimer they're guaranteed 20 comments saying to just use Linux.

[–] [email protected] 16 points 1 year ago* (last edited 1 year ago) (2 children)

My experience is Windows starting updates during the night, getting stuck on bitlocker, so fans are yelling at 100 until I can login

load more comments (2 replies)
[–] [email protected] 11 points 1 year ago* (last edited 1 year ago)

"I'm like everyone else here, I run Linux..."

Erm, did you just assume my OS?

load more comments (7 replies)
[–] [email protected] 35 points 1 year ago (1 children)

Windows just does whatever the fuck it likes really

[–] [email protected] 13 points 1 year ago (1 children)

Sometimes it goes to sleep. Sometimes it just turns off the monitor. Sometimes it just wakes itself up.

[–] [email protected] 4 points 1 year ago

Sometimes it updates itself and deletes all your user data 🤷‍♂️

[–] [email protected] 31 points 1 year ago (2 children)

One thing I give Linux credit for is how it handles updates. Like, yeah, Linux doesn't force updates, that we all know, but I like how at least in the GNOME desktop, there is no "Update and action" button, there is only the shutdown and restart buttons, where if I am to press either, the system will ask me if I want to install updates or not with a nice box to tick the option. Nowhere near as cluttered as it is in the picture.

[–] [email protected] 20 points 1 year ago (4 children)

On most distros you don't need to restart to update. Mint will just put an icon on the taskbar when updates are ready, and you can even tell it to just do it in the background. No restarts or shutdown warnings.

[–] [email protected] 8 points 1 year ago (2 children)

Don't kernel updates need a restart?

[–] [email protected] 15 points 1 year ago

Yeah but no work has to be done during the restart, it's just booting into the new kernel.

[–] [email protected] 4 points 1 year ago

Usually yes, but you'll never be forced or even nagged to restart. You could keep your computer going for months on the same kernel until you decide that it's time to reboot, at which point your computer will boot with the new kernel.

load more comments (3 replies)
[–] [email protected] 5 points 1 year ago* (last edited 1 year ago) (11 children)

I’ve been looking at mint but I’ve been using windows all my life. I’m worried about the steep learning curve and terminal “language”

Would a noob like me survive on linux for gaming?

[–] captain_aggravated 4 points 1 year ago

These days the learning curve for Linux isn't all that steep; I've tricked people into thinking my Linux Mint machine was running "Windows 9." What you should expect are culture shocks. We're going to call things different names, some things are done differently. Where Windows has "shortcuts" Linux has "Links" (to files) and "Launchers" (to run programs). Same functionality, two concepts instead of one. We actually use our app store, but since everything in there is free we don't call it a "store," we call it a "package manager."

As for the 'terminal "language",' let's demystify this a bit. Yes, the Command Line Interface does consist of a more or less complete programming language with loops and conditionals and such, but all that isn't really necessary to use it as a basic user interface. It's actually pretty simple.

You type the name of a program, hit enter, and it runs that program.

Like if I want to open VLC from the terminal, I can just type vlc and hit enter.

There are some nuances to it but that's generally it.

For example, let's say I want to listen to the very hottest new track by my favorite band in VLC, and for some reason I want to use the terminal instead of clicking the mouse a bunch of times. I can type vlc /Music/don't_you_want_me_baby.mp3 into the terminal and VLC will open and immediately begin playing that track. But what if just one run of the song isn't enough? What if I want to hear the groundbreaking sound of The Human League over and over? I can add --repeat to the command as an option, and it will repeat the track endlessly. Options will either be one dash and one letter, or two dashes and a word. -R is the same as --repeat in this case. If you want to know what the options are for a given program, you can type [program name] --help. I used vlc --help to find out about the --repeat option.

That's mostly how you're going to use the terminal at first, by typing the name of the program you want to run, and maybe some options or arguments (--repeat is an option, the name of the file is an argument).

You can, of course, open up the file explorer to your Music folder and double click the file you want to hear, or launch VLC from the app menu and drag and drop the file, or click Open and deal with the dialog, the GUI exists for a reason. Where you're probably going to encounter the terminal early on in your Linux journey is when you're having some problems, and you ask for help on a forum or Lemmy community or something. The experienced Linux users who offer to help will ask you to run a terminal command and copy-paste its output. Because it's fast and easy for you to copy-paste the command I want you to run, and the text it spits out as output. Compared to "Right click on the task bar and click Properties, then go to Devices and click Driver Manager..."

As for whether a noob like you will survive on Linux for gaming: At this point it still depends on your taste in games, because especially competitive multiplayer shooters often exclude Linux on purpose because "something something anticheat." I play a lot of indie and small studio games, single player or cooperative multiplayer, stuff like Stardew Valley, Factorio, Subnautica, Unrailed. These work great, and to get up and running I have to do less on Linux than on Windows.

My recommendation: Download VirtualBox, download Linux Mint Cinnamon Edition, and run Linux in a virtual machine. Give it a try. You might like it.

load more comments (10 replies)
[–] [email protected] 29 points 1 year ago (3 children)

So the reason it does this is Windows update requires a reboot. So it installs the patch, reboots AND THEN shuts down. If your missing the final shut down it's becuase something is preventing it or you started using it again.

[–] [email protected] 25 points 1 year ago (3 children)

It has never done so for me. Just restarts and sits on the login screen.

load more comments (3 replies)
load more comments (2 replies)
[–] [email protected] 21 points 1 year ago (3 children)

I swear that these image transcriptions are going to be used to train AI.

[–] [email protected] 7 points 1 year ago

How is that bad?

[–] [email protected] 5 points 1 year ago
load more comments (1 replies)
[–] [email protected] 19 points 1 year ago (2 children)

Never post a windows meme on lemmy. Grave mistake. I use nixos btw

[–] [email protected] 4 points 1 year ago (1 children)

I couldn’t find a Windows meme community (interesting), so I thought, an anti-Windows meme is kind of a Linux meme.

load more comments (1 replies)
[–] [email protected] 3 points 1 year ago (2 children)

i use gentoo btw, you still need to learn. You are not a real linux user if your kernel is not compiling for 3 hours.

load more comments (2 replies)
[–] [email protected] 12 points 1 year ago (1 children)

The confusing mess that is Windows update feels like the result of a large corporation of many people that are pulling in different directions while they attempt to meet the requirements of users that are completely ignorant and apathetic.

I don't understand why I need to choose 'restart and update'. Why can't this be achieved from shutting down? It's programmed as if shutting down means I'm never coming back to the machine again. Shutdown is the wrong word, it should say Decommission.

[–] [email protected] 11 points 1 year ago (5 children)

Ngl this is a weird question. It’s like asking “why would I ever need to choose 'restart', why can’t the same be achieved by shutting down?”

You really can’t think of a use case for updating and restarting your computer instead of just shutting it down? Remote sessions? Power button in an inconvenient location? The desire to not need yet another input to get what you wanted?

load more comments (5 replies)
[–] [email protected] 10 points 1 year ago

God I thought it was only my PC that did that lol.

[–] [email protected] 6 points 1 year ago

TBH if you don't restart then it's going to take an hour before it lets you log in the next time you boot up. Just keep it going on Hibernate until you're ready to let it update.

[–] [email protected] 6 points 1 year ago (1 children)

I literally just had this happen a couple days ago. I dual boot with Linux Mint and I generally don't go into windows except for specific use cases. So sometimes it can be a while between boots for windows on my system.

I had to use a windows only program, but it was a quick 5 minute thing. Finished my task, shut it down and I get the update prompt. Fine windows, update and shutdown. Of course it reboots, but it defaults into Mint and I'm confused for a minute why my PC is still on when I come back.

[–] [email protected] 6 points 1 year ago (1 children)

I had Windows in sleep mode one time and it woke the computer up at 3 AM (found out by looking at Event Viewer) to do updates.

[–] [email protected] 6 points 1 year ago (1 children)

The most infuriating thing is that they label that as a feature. Sure, I want to get woken up in the middle of the night because some MS douche decides my laptop needed updates.

load more comments (1 replies)
[–] [email protected] 6 points 1 year ago (1 children)

My shutdown button always just reboots. Doesn't matter if there's an update or not. Like, after a fresh install, it might shutdown correctly once...

load more comments (1 replies)
[–] [email protected] 5 points 1 year ago (2 children)
load more comments (2 replies)
[–] [email protected] 5 points 1 year ago
[–] [email protected] 5 points 1 year ago (5 children)

Literally does what's on the tin for me.
Updated, restarted to finish it and shut down completely after that.

[–] [email protected] 5 points 1 year ago

For me it works sometimes, sometimes it doesn’t.

load more comments (4 replies)
[–] [email protected] 4 points 1 year ago

Install Linux, don't deal with this dumb shit anymore

[–] [email protected] 4 points 1 year ago (1 children)
[–] rug_burn 3 points 1 year ago

Literally fucking happening to me now. Fuck my company for pushing updates on Friday

load more comments
view more: next ›