How to login SSH without password
The answer is using private-key & public-key.
Theory is very simple, first generate pair key (Private&public key ) then put the public key into the server machine, so when another machine request login from ssh, it will compare the public key on server machine with the private-key.
Here is the example.
You want to login from computer A […]
How to umount when device is busy
This question is killing you slowly even more when you are separating the code and database into different machine. And you know what, this is happening to me.
My db & code server kernel is panic, so the site is down.
Thanks GOD, the machine is still running when I do hard reset.
Second problem, the mount from […]
Advertisement
More about Linux, Hostings, Website, Server, Microsoft and various advertisements will appear below.Force Kill
Kill running process is important. When you have software ruining your machine, just kill them.
But hey, some process is not easy to kill, and that is happening to me.
I found this solution when you already tried killing process on unix with the standard syntax kill PID number.
You can get PID number by running syntax # […]