Monthly Archives: December 2018

Windows Logoff/Shutdown/Restart ผ่าน Command Line

การ Logoff ผ่าน Command Line

ผู้ใช้สามารถใช้คำสั่ง shutdown พร้อมพารามิเตอร์ -l เพื่อ Logoff ดังนี้

1
shutdown -l

การ Shutdown ผ่าน Command Line

ผู้ใช้สามารถใช้คำสั่ง shutdown พร้อมพารามิเตอร์ -s เพื่อ Logoff ดังนี้

1
shutdown -s

การ Restart ผ่าน Command Line

Continue reading

Ubuntu Linux restart network interface

To restart network interface, enter:
sudo /etc/init.d/networking restart
To stop and start use the following option (do not run them over remote ssh session as you will get disconnected):
sudo /etc/init.d/networking stop
sudo /etc/init.d/networking start

Debian/Ubuntu Linux with systemd, run:
$ sudo systemctl restart networking