How to get last command argument value in follow up command in Linux ?
In this post we will look how to get the last command argument value in the current command. For this, we will use a special bash bultin variable $_ Lets...
In this post we will look how to get the last command argument value in the current command. For this, we will use a special bash bultin variable $_ Lets...
In this post we will look at the difference between nohup and &(ampersand) in Linux. As we know & (ampersand) is used to send any command execution to background and...
In this post we will look how to debug core file generated either by process fault or by system crash. To debug a core file, you need to make sure...
Many times our server crashes and reboots and we remain unaware about the situation. To know this situation, we cam setup alerts on our server and take corrective action immediately...
In this post, we will look at an interesting plugin available on Linux system known as youtube-dl to download youtube videos or mp3 on our Linux system. Lets have a...
In this article, we will look at different terms w.r.t process and understand them. We all should know how to manage process(es) in linux. This post is very useful for...
Today we will see an example how to create a zombie process on our linux machine using a short c program. For this, we will open two terminal sessions. On...
When we add a new user in linux, it assigns a unique UID to the user which is used to identify users and their access on linux system. Today...
Kernel Module Loading/Unloading in Linux Lets see how to view kernel modules in linux and how can we load or unload a module in linux. 1. View all modules available...