• Linux
  • FreeBSD
  • Networking
  • Python
  • AWS
  • WebDev
  • About Us
Tech Tips and Tutorials
Menu
  • Linux
  • FreeBSD
  • Networking
  • Python
  • AWS
  • WebDev
  • About Us
Home  /  Linux  /  How to use nohup to run a command in the background

How to use nohup to run a command in the background

Written by
Linux Leave a Comment

nohup stands for no hangup is a commandline utility that ignores the HUP signals coming to the commands running on a shell. So when a shell is terminated , the processes associated with that shell recieves a hup signal . So that those processes gets stopped or hangup . So the nohup helps us to run the command even after we logout or disconnects from the shell . This is a very useful utility for crtitical processes running on the system that takes long time , so we don’t have to wait until it gets finished .

Basic nohup syntax is :

nohup command arguments
nohup command

By default , all the outputs and error messages associated with nohup will be appended to a file called nohup.out and it will be in the current directory or in the home directory.

To redirect the output to a specific file :

nohup command > commandout.txt &

To start a process in the background:

nohup command &

The ‘&’ command wiill instruct the shell to run the command in the background . The ‘fg’ command will bring it back to the forefront .

If you want to ignore all the outputs and error messages associated with the process, you can use the /dev/null

nohup command > /dev/null 2>&1 &

The /dev/null is a null device , which is a special device that discards all the informations coming to it . The 2>&1 is to redirect the ‘stderr’ and ‘stdout’ to the same place which is /dev/null in the above command . So the above command runs in the background and discards all the output and errors associated with it .

So if we run a nohup command like this , the process ID/PID for it is 3772. So the next time when you login back and want to stop this command , you can use kill -9 process id . If you forget the process id you can grep it again as below :

kill -9 3772

Share On
Share on Facebook
Share on Twitter
Share on Google+
Share on Whatsapp

 Previous Article How to Live stream a camera to Youtube using FFMPEG in Raspberry pi 4
Next Article   How to install and connect OpenVPN client in FreeBSD

Related Posts

  • Linux Shell Scripts for System Administrators

  • SOCKS PROXY

  • How to grep IP addresses from log files in Linux

Leave a Reply

Cancel reply

  • Popular Posts
  • Recent Posts
  • Linux Shell Scripts for System Administrators
  • Cacti 1.1.38 ERROR Opening .rrd No Such file or directory
  • Apache configuration for Cacti
  • How to create RAM disk in Ubuntu 18.04
  • Linux Shell Scripts for System Administrators
  • SOCKS PROXY
  • How to install XAMPP and access phpMyAdmin in MAC OS
  • How to increase the root volume in a Linux ec2 instance

Linux

  • Linux Shell Scripts for System Administrators
  • SOCKS PROXY
  • How to grep IP addresses from log files in Linux
  • How to empty or delete a large file in Linux

Categories

  • AWS (5)
  • FreeBSD (12)
  • Linux (29)
  • Networking (3)
  • Python (5)
  • Uncategorized (4)
  • WebDev (1)
  • Connect on Facebook
  • Connect on YouTube
© Copyright 2020.TechieNix. All Rights Reserved.
This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish. Cookie settingsACCEPT
Privacy & Cookies Policy

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these cookies, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may have an effect on your browsing experience.
Necessary
Always Enabled

Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.

Non-necessary

Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.