Reputation: 199
I try to shutdown my embedded system running with Linux environment using shutdown -h now
. But it is rebooting my system again. So can anyone give me suggestion how to shutdown my system or resolve this issue.
Or any possible reason of this issue?
Linux version is 2.37
Upvotes: 0
Views: 74
Reputation: 2382
Try using
poweroff
command.
When posting a question please mention the Linux kernel version being used.
Upvotes: 1
Reputation: 8945
Answer to your question is
shutdown -P now
Jaybee is near correct, where p should be upper case.
Upvotes: 1