The killall Command in Linux
In this tutorial, we’ll cover the killall command in Linux. We recently posted a tutorial on the kill command in Linux where we covered the usage and the functionality of the command. Today, we’ll go over how to use the…
In this tutorial, we’ll cover the killall command in Linux. We recently posted a tutorial on the kill command in Linux where we covered the usage and the functionality of the command. Today, we’ll go over how to use the…
In this article, we’ll look at how we can install the Laravel framework on our Ubuntu system in just a few steps! Let’s get started. Laravel is a free and open-source PHP web application framework that is used to build…
The tail command in Linux displays the last few lines/blocks of any file, the number of lines/blocks being dependent on the options passed when using the command. Also read: The uptime Command in Linux The Linux tail command default output…
PostgreSQL, or Postgres, is a relational database management system that provides an implementation of the SQL querying language. It is a popular choice for many small and large projects, having many advanced features like transaction management and transaction without read-locks,…
In this tutorial, we’ll look at how we can install Node.JS on Ubuntu 18.04 machine, in just a few steps! Node.JS is one of the most popular Javascript frameworks used in web development – whether it be front end or…
With the introduction of Ubuntu 16.04 LTS, the “apt” command started being noticed by bloggers and average Linux users. Every Ubuntu-based tutorial that popped up on the internet used apt install instead of what we were normally used to seeing,…
If you’re wondering what symbolic links are and how to create symbolic links in Ubuntu, you’ve arrived at the right tutorial. Even though this is a very simple concept, symbolic links are very useful when working with Linux. The reason…
There are multiple ways of setting hostname in Debian or Linux system. You can temporarily change the hostname, or permanently apply the changes to a system. Let’s go over these methods. Setting hostname temporarily Let’s start with the temporary and…
The touch command in Linux is used to update timestamps on files, namely, the access and modification time for any file(s). This is basically ‘touching’ the file, and hence the name of the command. This command has different options through…
In this article of the shell scripting tutorial series, we’ll learn how to create and use variables in shell scripts. We’ll walk through the different variables that we can make use of that are provided by the system for the…