Killing a process from command line may not be that common in Windows as in other operating systems, but it is equally useful and you will use it as often once you learn how to do it.
We can kill a process by process ID number or by process name. Continue reading “Killing a process from Windows command line”
Category: System
Killing the process of a Service in a Windows system
If you have a service that does not respond, for example, a hanged service stuck in starting or stopping, you might need to kill the process manually.
In this post, we are going to kill one service process, to be able to force a service to stop.
We will need the PID of the process, so here is where we start. Continue reading “Killing the process of a Service in a Windows system”
Configure Postfix as SMTP Relay using Gmail
Do you want to send emails from your Linux server but you don’t have an email server?
This feature is specially useful to provide feedback or results from your custom made scripts or any other piece of software that needs an SMTP to send emails. Continue reading “Configure Postfix as SMTP Relay using Gmail”
Adding Swap memory at system startup
How to increase swap memory? And how to add this memory at startup?
If we need to increase memory swap, we can do it with a swap formatted file. Continue reading “Adding Swap memory at system startup”
Disable Ubuntu automatic updates
In this small tip, we will see how to disable automatic updates in ubuntu.
Make sure you use sudo or you are connected as root to be able to edit the config files. Continue reading “Disable Ubuntu automatic updates”
SSH Passwordless Login
How to connect to a Linux ssh server without using a password?
Let’s imagine there is a “Server” with user “Admin” and we want to connect with our “client” machine with username “User”. Continue reading “SSH Passwordless Login”