Shut down performs a reboot

I have recently moved from Linux Mint to Ubuntu MATE (19.10 / 1.22.2). I have been having a problem with shutting down on all my computers and with both Linux Mint and my new Ubuntu MATE. Shut down reboots rather than only shutting down. Since this has happened with more than one OS I am guessing it is a problem with the BIOS setting.

Linux Mint had a tool which nicely displayed all the elements of the system, including the Bios. I can not find such a tool in Ubuntu MATE so I can not provide the name of the Bios. This tool also allowed the user to copy the data so it could be easily shared. Does Ubuntu MATE have such a tool available.

Any suggestions would be welcome.

Welcome!

I think you are describing the inxi tool. It has a lot of options inxi -Fz will give you most of the system information.

If it is not already installed you can install it with sudo apt install inxi

It's is run via the terminal and you can save the output like so: inxi -Fz > filename

franksmcb

Thanks for helping me on New Years Day!

It seemed to install well. I just do not know how to "run it via the terminal". I tried "run inxi" I only got a lot of suggestions to use instead of "run". I do not know what a tool is or how to run one. Can you please explain or point me to a explanation?

Peter

Happy New Year :grinning:

You can open the terminal several ways. One of the easier ones is to open the Menu and type Terminal that should open the MATE Terminal and you will have access to the command line.

That is where you want to enter commands.

It will look like this:

Be sure to use paste and use :code: tags so it's easy to read on here. :slight_smile:


But to the issue - it's likely a kernel / BIOS issue. If this only recently started to happen, it's likely a bug in a newer kernel which might be fixed in a future update. If you knew when it started, then switching to an older kernel could be an option.

You could try a couple of alternate ways of shutting down using the Terminal to observe what happens:

To shutdown then power off:

sudo shutdown -P now

To shutdown and then halt - this is like "freezing" the system, but it is safe to power it off via the button:

sudo shutdown -h now

One setting that might be worth checking in the BIOS is "wake on LAN". This could be starting the computer up after it is supposed to turn off.

From the terminal (right click on desktop and choose open terminal)

sudo shutdown -h 0

works for me...