In Linux, starting up and shutting down the system can be done using various commands. Here are the basic commands for startup and shutdown:-
लिनक्स में, सिस्टम को शुरू करना और बंद करना विभिन्न कमांड का उपयोग करके किया जा सकता है। यहां स्टार्टअप और शटडाउन के लिए बेसिक कमांड्स दिए गए हैं:-
Startup Process:-
1. Simply turning on your computer initiates the startup process.after that
अपने कंप्यूटर को चालू करने से स्टार्टअप प्रक्रिया शुरू हो जाती है। इसके पश्चात
2. Grand Unified Bootloader or another boot loader loads the Linux kernel.
ग्रैंड यूनिफाइड बूटलोडर या अन्य बूट लोडर लिनक्स कर्नेल को लोड करता है।
3. The Linux kernel initializes essential system components and starts the init process.
लिनक्स कर्नेल आवश्यक सिस्टम घटकों को आरंभ करता है और init प्रक्रिया शुरू करता है।
4. The init process or systemd is responsible for bringing up the system services and processes based on the runlevel or target.
अब init प्रक्रिया या systemd रन लेवल या लक्ष्य के आधार पर सिस्टम सेवाओं और प्रक्रियाओं को प्रदर्शित करने के लिए जिम्मेदार होते है।
Shutdown Process:-
1. Open a terminal and type command
टर्मिनल को ओपन करे एवं निम्न कमांड टाइप करें
sudo shutdown -h now
This command shuts down the system immediately.
यह कमांड सिस्टम को तुरंत शट डाउन कर देती है।
2. To reboot the system immediately, use command
सिस्टम को पुनः प्रारंभ करने हेतु यह कमांड प्रयुक्त करे
sudo reboot
3. We can schedule a shutdown at a specific time,use command
हम सिस्टम को निश्चित समयानुसार भी पुनः प्रारंभ कर सकते है इस हेतु यह कमांड प्रयुक्त करे
sudo shutdown -h HH:MM
Replace HH:MM with the desired time.
यहां HH:MM को निश्चित समय से बदल लेवे।
4. If a scheduled shutdown has been initiated and we want to cancel it then type
यदि सिस्टम को निश्चित समयानुसार पुनः प्रारंभ होने की स्थिति में सेट किया गया हैं एवं हम इसे रोकना चाहते है तब यह कमांड प्रयुक्त करे
sudo shutdown -c
5. On systems using systemd, you can use `systemctl` for more control:
वे सिस्टम जो systemd का प्रयोग करते है निम्न systemctl कंट्रोल कमांड का प्रयोग करते है
sudo systemctl poweroff # Shut down
sudo systemctl reboot # Reboot
No comments:
Post a Comment