Friday

Linux Mint: Commands to restart and shutdown PC

On the Linux terminal, type the following command to restart your PC:

$ sudo restart

On the Linux terminal, type the following command to shutdown your PC:

$ sudo poweroff

No comments:

Newton-Raphson Method in C++

The Newton Raphson Method is an open method used to find the roots of a function. It employs the technique of linear approximation and invol...