Thursday, May 2, 2024
 Popular · Latest · Hot · Upcoming
1
rated 0 times [  1] [ 0]  / answers: 1 / hits: 3095  / 2 Years ago, tue, october 11, 2022, 4:03:02

I want to restart and then shutdown from terminal. Means that we want to startup terminal after restart and then shutdown automatically.



What I am doing with explanation:




  1. Manually start my pc

  2. Run terminal manually

  3. After working on some program for some x minutes

  4. Then the program would ask for restart

  5. This restart would be done from terminal manually

  6. Then after restart again terminal would startup automatically

  7. Terminal would delay shutdown for some x minutes then automatically shutdown



conclusion point 6: only after restart terminal would execute some script automatically which would run for some y minutes then pc would automatically shutdown



How to start up automatically after boot?




  1. Terminal automatically

  2. Some script in the terminal that automatically shuts the pc down.


More From » scripts

 Answers
0

to restart from terminal



shutdown -r now


to shutdown from terminal



shutdown -h now


to add commands at login, put them in the file ~/.bash_login



If you add a shutdown command to a login file your computer will immediately shutdown after login... always. This is not very productive I guess.
What you could do in some situations is to delay the shutdown by a few minutes in order to be able to cancel the login-shutdown when needed. In that case add to ~/.bash_login the following command



shutdown -h 1


if you don't want the computer to shutdown a minute after login you should think about typing



shutdown -c


in a terminal...



I don't know what you want to do exactly but this sounds like a clumsy way to deal with shutdowns and restart, it could get annoying I guess.


[#28407] Tuesday, October 11, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
kneducator

Total Points: 226
Total Questions: 111
Total Answers: 108

Location: Mexico
Member since Sun, Jul 25, 2021
3 Years ago
kneducator questions
Tue, Dec 6, 22, 09:22, 1 Year ago
Sun, Apr 30, 23, 23:26, 1 Year ago
Tue, Jun 8, 21, 01:25, 3 Years ago
Sun, Mar 12, 23, 10:51, 1 Year ago
;