- How to Start Linux Command in Background and Detach Process in Terminal
- How to Start a Linux Process or Command in Background
- Keep Linux Processes Running After Exiting Terminal
- Detach a Linux Processes From Controlling Terminal
- If You Appreciate What We Do Here On TecMint, You Should Consider:
- Start and stop application from terminal in Linux Mint 19 / Ubuntu 18.04
- Start application from terminal — Ubuntu / Linux Mint
- Schedule application start
- Build script starting application
- Stop application by id/name
- Application stop with delay
- Auto logout from Ubuntu / Linux Mint
- Bonus tip: schedule application stop
- Ubuntu Documentation
- Why use the terminal?
- Starting a terminal
- In Unity
- In GNOME
- In Xfce (Xubuntu)
- In KDE (Kubuntu)
- In LXDE (Lubuntu)
- Commands
- sudo: Executing Commands with Administrative Privileges
- File & Directory Commands
- Running a File Within a Directory
- System Information Commands
- Adding A New User
- Options
- «Man» and getting help
- Searching the manual pages
- Other Useful Things
- Prettier Manual Pages
- Pasting in commands
- Save on typing
- Change the text
- More ways to run a terminal
- An extremely handy tool :: Incremental history searching
- How to create upsidedown and/or reverse text with your terminal
- More Information
How to Start Linux Command in Background and Detach Process in Terminal
In this guide, we shall bring to light a simple yet important concept in process handling in a Linux system, that is how to completely detach a process from its controlling terminal.
When a process is associated with a terminal, two problems might occur:
- your controlling terminal is filled with so much output data and error/diagnostic messages.
- in the event that the terminal is closed, the process together with its child processes will be terminated.
To deal with these two issues, you need to totally detach a process from a controlling terminal. Before we actually move to solve the problem, let us briefly cover how to run processes in the background.
How to Start a Linux Process or Command in Background
If a process is already in execution, such as the tar command example below, simply press Ctrl+Z to stop it then enter the command bg to continue with its execution in the background as a job.
You can view all your background jobs by typing jobs . However, its stdin, stdout, stderr are still joined to the terminal.
Run Linux Command in Background
You can as well run a process directly from the background using the ampersand, & sign.
Start Linux Process in Background
Take a look at the example below, although the tar command was started as a background job, an error message was still sent to the terminal meaning the process is still connected to the controlling terminal.
Linux Process Running in Background Message
Keep Linux Processes Running After Exiting Terminal
We will use disown command, it is used after the a process has been launched and put in the background, it’s work is to remove a shell job from the shell’s active list jobs, therefore you will not use fg , bg commands on that particular job anymore.
In addition, when you close the controlling terminal, the job will not hang or send a SIGHUP to any child jobs.
Let’s take a look at the below example of using diswon bash built-in function.
Keep Linux Process Running After Closing Terminal
You can also use nohup command, which also enables a process to continue running in the background when a user exits a shell.
Put Linux Process in Background After Closing Shell
Detach a Linux Processes From Controlling Terminal
Therefore, to completely detach a process from a controlling terminal, use the command format below, this is more effective for graphical user interface (GUI) applications such as firefox:
In Linux, /dev/null is a special device file which writes-off (gets rid of) all data written to it, in the command above, input is read from, and output is sent to /dev/null.
As a concluding remark, provided a process is connected to a controlling terminal, as a user, you will see several output lines of the process data as well as error messages on your terminal. Again, when you close the a controlling terminal, your process and child processes will be terminated.
Importantly, for any questions or remarks on the subject, reach us by using the comment form below.
If You Appreciate What We Do Here On TecMint, You Should Consider:
TecMint is the fastest growing and most trusted community site for any kind of Linux Articles, Guides and Books on the web. Millions of people visit TecMint! to search or browse the thousands of published articles available FREELY to all.
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
We are thankful for your never ending support.
Источник
Start and stop application from terminal in Linux Mint 19 / Ubuntu 18.04
In this article we will review several scenarios how to :
- Start application from terminal — Ubuntu / Linux Mint
- Schedule application start
- Build script starting application
- Stop application by id/name in Linux Mint / Ubuntu
- Application stop with delay
- Auto logout from Ubuntu / Linux Mint
- Bonus tip: schedule application stop
Start application from terminal — Ubuntu / Linux Mint
In order to start application from terminal you need to know the name of the application which is used in the system. Sometimes the system name can differ from the application name. For example:
- Chrome — google-chrome
- Chromium — chromium-browser
- Sublime — subl
You can find where a given application is installed by:
Also there you can search for applications.
In order to start give application you need to write it’s name in the terminal:
You can pass different parameters to the application which will be opened. For example which file to be opened for Libre office:
or what web sites to be opened with chrome:
Schedule application start
Sometimes you may want to schedule a script for opening a given application. In order to improve my performance and decrease the distractions I’m scheduling my mail to be opened two times per day: 10:00 and 16:00.
The scheduling in Linux usually is done with cron jobs:
- Open terminal
- Type: crontab -e — for current user only or sudo crontab -e
- finally add your job:
Some application can be started by their name but others will need some settings. For example in order to start thunderbird and display it you need to add this line in your crontab file:
the same way if you are using bash script to start another application. For example starting LibreOffice calc:
where libre office will be started after a csv file with data is downloaded from a website.(I’ll add new article on this topic).
Build script starting application
Building special scripts to start application can be helpful in order to automate boring stuff. I have 10 scripts which are helping me to do boring stuff like:
- reporting
- getting information from the web
- sending mails
- analysing data
- starting and stoping application — obviously from the article 🙂
Below you can find several examples below:
- the first row is going to «log» each time this scripted is executed
- the second one is opening thunderbird
A more complex example where:
this example is more complex. Here is what is done:
- activate special python virtual environment
- change to a special folder
- run a web spider in order to get information from Google
- analyze and change the data
- load the download data in calc
this script is run with a cron job every day and retrieves important information for me. If I need to do the same thing I’ll need to spend 10 to 30 minutes per day.
Stop application by id/name
To stop application from the terminal by id you will need to find the id first. This can be done by this command:
10882 10869 10831 10784 10781
Another alternative is:
10882 10869 10831 10784 10781
or the more verbose one:
user 2315 0.0 0.0 15648 1152 pts/1 S+ 18:38 0:00 grep —color=auto google-chrome
user 10781 0.3 0.4 1379564 151624 ? SLl 14:57 0:47 /usr/lib/..
and then you can extract the pid-s.
After that in order to stop the application you can use:
both do similar things but the one with -9 is more «aggressive» and forcing.
In order to stop/kill application by name you can use:
this is going to kill multiple processes by name.
Application stop with delay
Now let say that you want to stop a given application with some delay: 10 minutes, 1 hour or something else. You can do with by several different ways: cron job, script, third party software. In this case we will use simple script:
this script will wait for 1 hour and then will stop the application. So you can use a script to start a given application. This application to be executed for 1 hour and finally to be stopped.
Other times examples:
Note: You can’t use:
Auto logout from Ubuntu / Linux Mint
The final problem which we are going to cover in the article is about log out of inactive users. There is application for Ubuntu / Linux Mint which can be used — autolog. You can search in the software center and install it. Or you can install it by:
Bonus tip: schedule application stop
Let say that you work a lot google chrome, slack, zoom, pycharm or any other application in Linux Mint, Ubuntu. Most of the time is really difficult to end up your working day and leave your workplace. Automation to the rescue! Below you can find a simple script and how to use in order to schedule stop for your applications in Linux:
The script will show the current date and time. Then will wait for a given period of time ( in this case 30 minutes ) and finally will kill the application.
now you can schedule this script as a cronjob by:
Источник
Ubuntu Documentation
Why use the terminal?
«Under Linux there are GUIs (graphical user interfaces), where you can point and click and drag, and hopefully get work done without first reading lots of documentation. The traditional Unix environment is a CLI (command line interface), where you type commands to tell the computer what to do. That is faster and more powerful, but requires finding out what the commands are.»
— from man intro(1)
This page gives an introduction to using the command-line interface terminal, from now on abbreviated to the terminal. There are many varieties of Linux, but almost all of them use similar commands that can be entered from the terminal.
There are also many graphical user interfaces (GUIs), but each of them works differently and there is little standardization between them. Experienced users who work with many different Linux distributions therefore find it easier to learn commands that can be used in all varieties of Ubuntu and, indeed, in other Linux distributions as well.
For the novice, commands can appear daunting:
However, it is important to note that even experienced users often cut and paste commands (from a guide or manual) into the terminal; they do not memorize them.
It is important, of course, to know how to use the terminal — and anyone who can manage typing, backspacing, and cutting and pasting will be able to use the terminal (it is not more difficult than that).
Starting a terminal
In Unity
Unity is the default desktop environment used as of 11.04. Where systems are not ready for Unity they revert to GNOME which is also used in previous releases such as Ubuntu 10.04 LTS (Lucid), see next sub-section.
The easiest way to open the terminal is to use the ‘search’ function on the dash. Or you can click on the ‘More Apps’ button, click on the ‘See more results’ by the installed section, and find it in that list of applications. A third way, available after you click on the ‘More Apps’ button, is to go to the search bar, and see that the far right end of it says ‘All Applications’. You then click on that, and you’ll see the full list. Then you can go to Accessories -> Terminal after that. So, the methods in Unity are:
Dash -> Search for Terminal
Dash -> More Apps -> ‘See More Results’ -> Terminal
Dash -> More Apps -> Accessories -> Terminal
Keyboard Shortcut: Ctrl + Alt + T
In GNOME
GNOME is the classic desktop environment for Ubuntu 11.04 (Natty) and is the default desktop environment in earlier releases, such as Ubuntu 10.04 LTS (Lucid).
Applications menu -> Accessories -> Terminal.
Keyboard Shortcut: Ctrl + Alt + T
In Xfce (Xubuntu)
Applications menu -> System -> Terminal.
Keyboard Shortcut: Super + T
Keyboard Shortcut: Ctrl + Alt + T
In KDE (Kubuntu)
KMenu -> System -> Terminal Program (Konsole).
In LXDE (Lubuntu)
Menu -> Accessories -> LXTerminal.
Keyboard Shortcut: Ctrl + Alt + T
Commands
sudo: Executing Commands with Administrative Privileges
The sudo command executes a command with administrative privileges (root-user administrative level), which is necessary, for example, when working with directories or files not owned by your user account. When using sudo you will be prompted for your password. Only users with administrative privileges are allowed to use sudo.
Be careful when executing commands with administrative privileges — you might damage your system! You should never use normal sudo to start graphical applications with administrative privileges. Please see RootSudo for more information on using sudo correctly.
File & Directory Commands
) symbol stands for your home directory. If you are user, then the tilde (
) stands for /home/user
pwd: The pwd command will allow you to know in which directory you’re located (pwd stands for «print working directory»). Example: «pwd» in the Desktop directory will show «
/Desktop». Note that the GNOME Terminal also displays this information in the title bar of its window. A useful gnemonic is «present working directory.»
ls: The ls command will show you (‘list’) the files in your current directory. Used with certain options, you can see sizes of files, when files were made, and permissions of files. Example: «ls
« will show you the files that are in your home directory.
cd: The cd command will allow you to change directories. When you open a terminal you will be in your home directory. To move around the file system you will use cd. Examples:
To navigate into the root directory, use «cd /»
To navigate to your home directory, use «cd» or «cd
To navigate up one directory level, use «cd ..»
To navigate to the previous directory (or back), use «cd -«
To navigate through multiple levels of directory at once, specify the full directory path that you want to go to. For example, use, «cd /var/www» to go directly to the /www subdirectory of /var/. As another example, «cd
/Desktop» will move you to the Desktop subdirectory inside your home directory.
cp: The cp command will make a copy of a file for you. Example: «cp file foo» will make an exact copy of «file» and name it «foo», but the file «file» will still be there. If you are copying a directory, you must use «cp -r directory foo» (copy recursively). (To understand what «recursively» means, think of it this way: to copy the directory and all its files and subdirectories and all their files and subdirectories of the subdirectories and all their files, and on and on, «recursively»)
mv: The mv command will move a file to a different location or will rename a file. Examples are as follows: «mv file foo» will rename the file «file» to «foo». «mv foo
/Desktop» will move the file «foo» to your Desktop directory, but it will not rename it. You must specify a new file name to rename a file.
- To save on typing, you can substitute ‘
‘ in place of the home directory.
Note that if you are using mv with sudo you can use the
shortcut, because the terminal expands the
to your home directory. However, when you open a root shell with sudo -i or sudo -s,
will refer to the root account’s home directory, not your own.
rm: Use this command to remove or delete a file in your directory.
rmdir: The rmdir command will delete an empty directory. To delete a directory and all of its contents recursively, use rm -r instead.
mkdir: The mkdir command will allow you to create directories. Example: «mkdir music» will create a directory called «music».
Here is an example of when it would be necessary to execute a command with administrative privileges. Let’s suppose that another user has accidentally moved one of your documents from your Documents directory to the root directory. Normally, to move the document back, you would type mv /mydoc.odt
/Documents/mydoc.odt, but by default you are not allowed to modify files outside your home directory. To get around this, you would type sudo mv /mydoc.odt
/Documents/mydoc.odt. This will successfully move the document back to its correct location, provided that you have administrative privileges.
Running a File Within a Directory
So you’ve decided to run a file using the command-line? Well. there’s a command for that too!
./filename.extension
After navigating to the file’s directory, this command will enable any Ubuntu user to run files compiled via GCC or any other programming language. Although the example above indicates a file name extension, please notice that, differently from some other operating systems, Ubuntu (and other Linux-based systems) do not care about file extensions (they can be anything, or nothing). Keep in mind that the ‘extension’ will vary depending upon the language the source code is written in. Also, it is not possible, for compiled languages (like C and C++) to run the source code directly — the file must be compiled first, which means it will be translated from a human-readable programming language to something the computer can understand. Some possible extensions: «.c» for C source, «.cpp» for C++, «.rb» for Ruby, «.py» for Python, etc. Also, remember that (in the case of interpreted languages like Ruby & Python) you must have a version of that language installed on Ubuntu before trying to run files written with it.
Finally, the file will only be executed if the file permissions are correct — please see the FilePermissions help page for details.
System Information Commands
df: The df command displays filesystem disk space usage for all mounted partitions. «df -h» is probably the most useful — it uses megabytes (M) and gigabytes (G) instead of blocks to report. (-h means «human-readable»)
du: The du command displays the disk usage for a directory. It can either display the space used for all subdirectories or the total for the directory you run it on. Example:
In the above example -s means «Summary» and -h means «Human Readable».
free: The free command displays the amount of free and used memory in the system. «free -m» will give the information using megabytes, which is probably most useful for current computers.
top: The top (‘table of processes’) command displays information on your Linux system, running processes and system resources, including CPU, RAM & swap usage and total number of tasks being run. To exit top, press «q».
uname -a: The uname command with the -a option prints all system information, including machine name, kernel name & version, and a few other details. Most useful for checking which kernel you’re using.
lsb_release -a: The lsb_release command with the -a option prints version information for the Linux release you’re running, for example:
ip addr reports on your system’s network interfaces.
Adding A New User
The «adduser newuser» command will create a new general user called «newuser» on your system, and to assign a password for the newuser account use «passwd newuser».
Options
The default behaviour for a command may usually be modified by adding a —option to the command. The ls command for example has an -s option so that «ls -s» will include file sizes in the listing. There is also a -h option to get those sizes in a «human readable» format.
Options can be grouped in clusters so «ls -sh» is exactly the same command as «ls -s -h». Most options have a long version, prefixed with two dashes instead of one, so even «ls —size —human-readable» is the same command.
«Man» and getting help
man command, info command and command —help are the most important tools at the command line.
Nearly every command and application in Linux will have a man (manual) file, so finding them is as simple as typing «man «command»» to bring up a longer manual entry for the specified command. For example, «man mv» will bring up the mv (move) manual.
Move up and down the man file with the arrow keys, and quit back to the command prompt with «q».
«man man» will bring up the manual entry for the man command, which is a good place to start!
«man intro» is especially useful — it displays the «Introduction to user commands» which is a well-written, fairly brief introduction to the Linux command line.
There are also info pages, which are generally more in-depth than man pages. Try «info info» for the introduction to info pages.
Some software developers prefer info to man (for instance, GNU developers), so if you find a very widely used command or app that doesn’t have a man page, it’s worth checking for an info page.
Virtually all commands understand the -h (or —help) option which will produce a short usage description of the command and it’s options, then exit back to the command prompt. Try «man -h» or «man —help» to see this in action.
Caveat: It’s possible (but rare) that a program doesn’t understand the -h option to mean help. For this reason, check for a man or info page first, and try the long option —help before -h.
Searching the manual pages
If you aren’t sure which command or application you need to use, you can try searching the manual pages. Each manual page has a name and a short description.
To search the names for enter:
For example, whatis -r cpy will list manual pages whose names contain cpy. The output from whatis -r cpy will in part depend on your system — but might be as follows:
To search the names or descriptions for enter:
For example, apropos -r «copy files» will list manual pages whose names or descriptions contain copy files. The output from apropos -r «copy files» will in part depend on your system — but might be as follows:
Other Useful Things
Prettier Manual Pages
Users who have Konqueror installed will be pleased to find they can read and search man pages in a web browser context, prettified with their chosen desktop fonts and a little colour, by visiting man:/command in Konqueror’s address bar. Some people might find this lightens the load if there’s lots of documentation to read/search.
Pasting in commands
Often, you will be referred to instructions that require commands to be pasted into the terminal. You might be wondering why the text you’ve copied from a web page using Ctrl + C won’t paste in with ctrl+V. Surely you don’t have to type in all those nasty commands and filenames? Relax. ctrl+shift+V pastes into a GNOME terminal; you can also do middle button click on your mouse (both buttons simultaneously on a two-button mouse) or right click and select Paste from the menu. However, if you want to avoid the mouse and yet paste it, use «Shift + Insert», to paste the command. If you have to copy it from another terminal / webpage, you can use «Ctrl + Insert» to copy.
Save on typing
Up Arrow or Ctrl + P
Scrolls through the commands you’ve entered previously.
Down Arrow or Ctrl + N
Takes you back to a more recent command.
Enter
When you have the command you want.
tab
A very useful feature. It autocompletes any commands or filenames, if there’s only one option, or else gives you a list of options.
Ctrl + R
Searches for commands you’ve already typed. When you have entered a very long, complex command and need to repeat it, using this key combination and then typing a portion of the command will search through your command history. When you find it, simply press Enter.
History
The history command shows a very long list of commands that you have typed. Each command is displayed next to a number. You can type !x to execute a previously typed command from the list (replace the X with a number). If you history output is too long, then use history | less for a scrollable list.
Example: you ran history and found you want to use command 1967. Simply enter
Change the text
The mouse won’t work. Use the left/right arrow keys to move around the line.
When the cursor is where you want it in the line, typing inserts text — ie it doesn’t overtype what’s already there.
Ctrl + A or Home
Moves the cursor to the start of a line.
Ctrl+ E or End
Moves the cursor to the end of a line.
Esc + B
Moves to the beginning of the previous or current word.
Ctrl + K
Deletes from the current cursor position to the end of the line.
Ctrl + U
Deletes from the start of the line to the current cursor position.
Ctrl + W
Deletes the word before the cursor.
Alt + B
Goes back one word at a time.
Alt + F
Moves forward one word at a time.
Alt + C
Capitalizes letter where cursor is and moves to end of word.
More ways to run a terminal
You can set your own keyboard shortcut to run a terminal. See KeyboardShortcuts for details of keyboard shortcuts.
You can run more than terminal — in tabs or separate windows.
You can also install guake (GNOME), tilda (XFCE / LXDE/Mate) or yakuake (KDE) and have a terminal which appears and hides on shortcut key. This can be particularly useful if you use terminal a lot. Drop down terminals can make things a lot easier if you are trying to run a desktop enviroment with a non defualt window manager and something goes wrong drop down terminals can run the orginal window manager —replace to restore a previous option to make things much less painful.
An extremely handy tool :: Incremental history searching
In terminal enter:
Then copy paste and save:
From now on, and many agree this is the most useful terminal tool, it saves you a lot of writing/memorizing.
All you need to do to find a previous command is to enter say the first two or three letters and upward arrow will take you there quickly:
All I need to do is enter:
And hit upward arrow command will soon appear.
How to create upsidedown and/or reverse text with your terminal
If you wish or need to ever flip text upside down [vertical flip] «uʍop ǝpısdn ʇxǝʇ dıʃɟ» or/and create reverse text here is a terminal way to achieve this.
Copy/paste and save the following as flip.pl in your home folder (thanks to Lars Noodén for script).
Then to set it up:
Then open terminal and enter:
Write what you want and hit return
Copy and paste wherever you want text document or Internet forum, etc.
- ɹǝʇuǝ puɐ ʇuɐʍ noʎ ʇɐɥʍ ǝʇıɹʍ ˙˙˙ɔʇǝ ɯnɹoɟ ʇǝuɹǝʇuı ɹo ʇuǝɯnɔop ʇxǝʇ ʇuɐʍ noʎ ɹǝʌǝɹǝɥʍ ǝʇsɐd puɐ ʎdoɔ
If you want to reverse back to front, write your text in a text editor and save as mytext to the home folder.
Copy and paste the result, tluser eht etsap dna ypoc.
And of course you can combine both for truly cryptic results, ɔodʎ ɐup dɐsʇǝ ʇɥǝ ɹǝsnʃʇ
More Information
Within the Community Help Wiki:
grep Howto — grep is a powerful command line search tool.
CommandlineHowto — another introduction to the terminal.
HowToReadline — more advanced customization.
Detailed tutorials on the Linux command line:
http://linuxtutorial.todolistme.net — «Here you will learn the Linux command line (Bash) with our 13 part beginners tutorial . «.
http://mywiki.wooledge.org/BashGuide — «This guide aims to aid people interested in learning to work with BASH. It aspires to teach good practice techniques for using BASH, and writing simple scripts».
http://linuxcommand.org/ — Learning the shell and writing shell scripts.
http://linuxsurvival.com/index.php — «Linux Survival is a free tutorial designed for people who have little or no experience with the Linux operating system».
http://www.ss64.com/bash/ — «An A-Z Index of the Bash command line for Linux».
http://tinyurl.com/ycyg4mk — «Top 3 Sites to Help You Become a Linux Command Line Master».
UsingTheTerminal (последним исправлял пользователь clissold345 2016-07-02 09:16:41)
The material on this wiki is available under a free license, see Copyright / License for details
You can contribute to this wiki, see Wiki Guide for details
Источник