75
submitted 1 week ago by Epzillon@lemmy.ml to c/linux@lemmy.ml

Today I just learned that systemctl --force --force reboot is a command. We had a computer we remotely connected to which got permission errors and bus errors when we tried to reboot it normally. For some reason the mentioned command did actually manage to shutdown the computer bit did not manage to reboot it correctly.

I wonder what the double --force flag actually accomplishes and what possibly could hinder a regular reboot in this scenario.

all 32 comments
sorted by: hot top controversial new old
[-] hitwright@lemmy.world 90 points 1 week ago

As per systemctl(1) manual:

If --force is specified twice, the operation is immediately executed without terminating any processes or unmounting any file systems. This may result in data loss. Note that when --force is specified twice the halt operation is executed by systemctl itself, and the system manager is not contacted. This means the command should succeed even when the system manager has crashed.

[-] nerdovic@discuss.tchncs.de 32 points 1 week ago

Ah, the --no-preserve-root flag equivalent for a reboot 😄

[-] breakcore@discuss.tchncs.de 2 points 1 week ago

Good old --no-preserve-root 😅

[-] dan@upvote.au 9 points 1 week ago

Sounds like the equivalent of Alt+SysRq+B.

[-] fortified_banana@beehaw.org 48 points 1 week ago

I always try to consult the man pages for these kind of questions (you can search by typing '/' in the man page). Here's what the systemctl manual has to say in the specifications for the --force option:

Note that when --force is specified twice the selected operation is executed by systemctl itself, and the system manager is not contacted. This means the command should succeed even when the system manager has crashed.

[-] Epzillon@lemmy.ml 14 points 1 week ago* (last edited 1 week ago)

I would use the man pages but my working laptop uses Windows and since the system died i dont have any way to check them until I get home.

Thank you a lot for the answer though, that does explain a lot!

[-] masterofn001@lemmy.ca 12 points 1 week ago* (last edited 1 week ago)

Manpages.org

It sounds like it should be a hookup app, but it actually is the online Linux man pages.

Or, for a less dubious sounding site, man7.org

[-] ReversalHatchery@beehaw.org 3 points 1 week ago* (last edited 1 week ago)

man7 and such are better. This runs google analytics, and cannot work when fetch requests are disabled (also suitable for sending back anything), let alone disabling scripts

[-] desentizised@lemm.ee 3 points 1 week ago

oftentimes (and this is more of a general statement) throwing into google exactly what you would otherwise type into your shell of choice should get you on the right track, ie searching for "man systemctl"

as far as the inability to reboot goes, if a regular sudo reboot can't bring the machine back up either then this is probably a hardware issue outside the sphere of the operating system's influence. can't say I experienced something like that myself. I guess the closest I witnessed would be a computer that when rebooted with an old USB-Keyboard plugged in just refused to get past the POST screen. The keyboard worked fine if plugged in later, but the computer couldn't reliably get through the boot process with the thing present. Maybe there's a similar variable to your setup.

[-] secret300@lemmy.sdf.org 3 points 1 week ago

honestly glad you made the thread still cause I just love questions like this to see if I can answer them and if I can't I learn something

[-] GolfNovemberUniform@lemmy.ml 11 points 1 week ago

Weird choice tbh. I'd make --force --force a separate option if possible.

[-] Dirk@lemmy.ml 22 points 1 week ago

You just really force it.

It's like with -v in various applications. -v means "verbose", and -vv means "really verbose", and -vvv means "an ungodly amount of data printed to the terminal, so much that it might crash".

[-] kungen@feddit.nu 4 points 1 week ago

But that's all part of the same argument. If it was -f or -ff that'd make sense. Duplicate parameters are usually ignored in like all other programs I can think of.

[-] Dirk@lemmy.ml 8 points 1 week ago

The -vvv I know is the same as -v -v -v. Can't check right now, but is the short parameter -f? So maybe give -ff a try ...

[-] huginn@feddit.it 5 points 1 week ago

It's a dangerous command - I'd rather not run it by accidentally hitting the f key a second time.

[-] teawrecks@sopuli.xyz 3 points 1 week ago

I agree. Specifying the same param twice like this feels like it should be idempotent. Sometimes a final cmdline string is built by multiple tools concatenating their outputs together; if each one adds --force without any way to know if it's already been added elsewhere, this could lead to undesirable behavior.

Even --forceforce would be better.

[-] jwt@programming.dev 5 points 1 week ago

--force-and-I-really-mean-it-this-time

[-] narc0tic_bird@lemm.ee 4 points 1 week ago

Yeah, duplicate flags should just be ignored.

[-] secret300@lemmy.sdf.org 1 points 1 week ago

swear, but it is funny

[-] bionicjoey@lemmy.ca 8 points 1 week ago

In other words, RTFM

[-] t0m5k1@lemmy.world 23 points 1 week ago

I'd never use it on a production server due to the implications of data loss associated with such a command.

You could say this is the same as sysreq trigger b where everything is ignored and just reboot with ignorance.

[-] possiblylinux127@lemmy.zip 2 points 1 week ago

You can force the kernel to terminate all processes and amount all filesystems

[-] Epzillon@lemmy.ml 1 points 1 week ago

This is very valid but in our case we dont really store any important data on the computer. We make digital timetable signs for bus stops and train stations, the computers we build and put inside are just a base image we flash onto the disk and set hostname and IP on. Then they all connect and set themselves up via our servers and pull any displayed data from our actual main servers.

In this case its sad that it didnt actually restart, that means our client has to drive out and deassemble the entire sign. But it seems to be a failing disk so it had to be replaced either way.

[-] todd_bonzalez@lemm.ee 2 points 1 week ago

As long as it's not writing to disks, you're probably safe. This is a good method to avoid getting a remote device stuck too.

[-] propter_hog@hexbear.net 6 points 1 week ago

Obligatory "systemd was a mistake, they played us for absolute fools, yadda yadda yadda"

[-] possiblylinux127@lemmy.zip -1 points 1 week ago

So hexbear now hates systemd. Good to know

[-] FuckyWucky@hexbear.net 6 points 1 week ago
[-] Strit@lemmy.linuxuserspace.show 17 points 1 week ago* (last edited 1 week ago)

Instead of just linking to the information, which may be removed in the future, you could have also pasted a snippet of a relevant section. Like:

If --force is specified twice, the operation is immediately executed without terminating any processes or unmounting any file systems. This may result in data loss. Note that when --force is specified twice the halt operation is executed by systemctl itself, and the system manager is not contacted. This means the command should succeed even when the system manager has crashed.

[-] BigDotNet@lemmy.ml 1 points 1 week ago

What about if you use "sudo reboot" command?

[-] Epzillon@lemmy.ml 1 points 1 week ago

We did try that, it just have us Permission Denied

[-] BigDotNet@lemmy.ml 1 points 1 week ago

How about "sudo reboot -f"?

this post was submitted on 04 Sep 2024
75 points (98.7% liked)

Linux

47290 readers
1056 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS