linuxtnt(linux tips and tricks)
5.86K subscribers
1.6K photos
139 videos
534 files
1.27K links
https://t.me/+AL7RKhKS6b4zNzY8

آموزش لینوکس- گروه مکمل برای پرسش و پاسخ
linux tips and tricks
ارتباط با من
@seilany
seilany.ir
Download Telegram
دستور Shutdown
برای خاموش کردن سیستم است. ممکن است برای توقف، خاموش کردن یا راه اندازی مجدد دستگاه استفاده شود.
# shutdown
# shutdown now
# shutdown 13:20
# shutdown -p now #poweroff the machine
# shutdown -H now #halt the machine
# shutdown -r09:35 #reboot the machine at 09:35am
———————————————
برای متوقف کردن فرمان از دستور زیر استفاده کنید.

# shutdown -c
1
# shutdown -c
—————————————-
دستور Halt
این دستور به سخت افزار دستور می دهد تا تمامی پردازش های CPU را متوقف کند اما سیستم را خاموش نمی کند. در بعضی از مواقع سیستم را به صورت کامل خاموش می کند.
# halt #halt the machine
# halt -p #poweroff the machine
# halt --reboot #reboot the machine
=========================
دستور PowerOff
این دستور یک سیگنال ACPI برای خاموش کردن سیستم ارسال می کند.
# poweroff #poweroff the machine
# poweroff --halt #halt the machine
# poweroff --reboot #reboot the machine
=============================
دستور Reboot
دستور راه اندازی مجدد سیستم.
# reboot #reboot the machine
# reboot --halt #halt the machine
# reboot -p #poweroff the machine
—————————-
منبع کانال :
at :linuxtnt
👍103