Reboot is a Unix command to restart the operating system. It is also a generic term for restarting any operating system.
Questions tagged [reboot]
604 questions
0
votes
1 answer
Android, Reboot device without permission or signature
There any way to link the power button with a button in android app, leastways asking the user if he want turn off or reboot the device, a button for indirectly the user access options "turn off" or "reboot".
I want it for when the battery…

user3779874
- 57
- 7
0
votes
2 answers
How do I time-out this message box with an auto reboot?
option explicit
on error resume next
Dim strComputer, intRebootChoice
Dim objWMIService, objOperatingSystem
Dim colOperatingSystems
strComputer = "."
do while 1>0
intRebootChoice = msgbox("A system update requires a reboot. Please…

user3888743
- 1
- 2
0
votes
2 answers
Linux base device not getting shutdown
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…

ravibhuva9955
- 199
- 1
- 11
0
votes
1 answer
how to recover BCACHE from EC2 machine reboot
I installed BCACHE on a m3.large EC2 machine with instance SSD as cache disk and the elastic volume as backing disk. But once I reboot the EC2 machine BCACHE was gone and i cannot access the disk used to be backing drive again.
If I detach…

user3869212
- 11
- 4
0
votes
1 answer
How to find all VM/Hyper-V and then reboot them on Window Server 2012 with the use of Power-shell
I would like to ask how to find all VM/Hyper-V on Window Server 2012 with the use of power-shell and then restart/reboot them with the use of power-shell script?
The next thing is:
I cannot even find any get command for it:
==================
Added…

Question-er XDD
- 640
- 3
- 12
- 27
0
votes
0 answers
how can android application reboot itself?
MyActivity started by another Activity (different process) with extra string value in intent.
If it reboots itself through MyActivity::restart() like following, extra string value will be received again in MyActivity::onCreate(). That is what I do…

RoFF
- 529
- 5
- 27
0
votes
1 answer
Integrating Linux soft + hard reboot
I read here that using below command we can simulate hard reboot on Linux system:
echo 1 > /proc/sys/kernel/sysrq
echo b > /proc/sysrq-trigger
But I wanted to add some soft reboot feature before the above command is executed such as SIGTERM,…

neo
- 969
- 1
- 11
- 23
0
votes
2 answers
After rebooting android app starts from login screen
I am developing app where user can fill the form and sync it with the server once he comes in network range.
For security purpose I am veryfying user with login id, password and device Id. My first screen is login screen, second is form list and…

user1774890
- 117
- 1
- 2
- 10
0
votes
1 answer
Restart remote target machine with gdb
I'm debugging a Mac OS X kernel via a remote target (target remote-kdp) when it gets into a kernel panic. I can introspect the state of the machine at the time, but if I need to restart the machine I have to do a hard power down, which involves…

AlBlue
- 23,254
- 14
- 71
- 91
0
votes
1 answer
Android: how to reboot by software my board?
I develop an Android app for a pcDuino board (based on Android 4.2).
In my app, there is a Watchdog thread; this thread checks its messages received from other threads; if there is any problem (no message received during a specific time by another…

anthony
- 7,653
- 8
- 49
- 101
0
votes
1 answer
DotNetInstaller won't resume where it left off after reboot
I am stuck on this one. After an exe component which requires reboot is executed, the dotnetinstaller script forces a reboot. However after reboot it starts right from beginning not after the step which required rebooting.
These are the…

John Sheridan
- 11
- 1
- 3
0
votes
2 answers
Cancelling an alarm that starts within a class that launches when the reboot is complete
Here is my class which launches and sets an alarm when the phone is rebooted.
public class NotifStart extends BroadcastReceiver
{
private static AlarmNotif reAlarm = new AlarmNotif();
@Override
public void onReceive(Context context, Intent…

Suhrahj Rothgar
- 283
- 6
- 21
0
votes
2 answers
Raspbian python script at boot keeps failing
Good Day All,
I am trying to run a python script at boot using Rasbian on a Raspberry PI.
I have added the following into crontabt -e:
@reboot /usr/bin/python /home/pi/Midori_Monitor/Main_Midori.py
That did not work.
I then tried adding it to…

Bluedevil678
- 120
- 1
- 10
0
votes
2 answers
Abort shutdown operation using WinAPI?
How I can abort a shutdown/reboot operation initiated by the ExitWindowsEx function?
I've read This SO question but it's unclear for me how to do it, I need a full written example to learn and understand.
I'm writting an helper Class to shutdown the…

ElektroStudios
- 19,105
- 33
- 200
- 417
0
votes
1 answer
How are reboot handle when a process is still running
Here's the situation. I'm debugging a code to do a logging function. When the user log in, the log file will be create with .part format. This file is save locally inside the host. I do not know why it's name as .part. When the user finish their…

Mohd Fikrie
- 197
- 4
- 21