Ubuntu 24.04 Terminal CLI Processes and Services
Please Select a Licence from the LICENCE_HEADERS page |
And place at top of your page |
If no Licence is Selected/Appended, Default will be CC0 Default Licence IF there is no Licence placed below this notice!
When you edit this page, you agree to release your contribution under the CC0 Licence LICENCE:
More information about the cc0 licence can be found here: You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission. Licence: Statement of Purpose The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work"). Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others. For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights. 1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following: the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work; moral rights retained by the original author(s) and/or performer(s); publicity and privacy rights pertaining to a person's image or likeness depicted in a Work; rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below; rights protecting the extraction, dissemination, use and reuse of data in a Work; database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof. 2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose. 3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose. 4. Limitations and Disclaimers. No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document. Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law. Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. |
Ubuntu 24.04 Processes and Services
Ubuntu 24.04 introduces updated tools and enhancements for managing processes and services. This guide covers how to monitor, control, and optimize processes and services on your Ubuntu 24.04 system, including practical examples like running applications in the background and managing system services with systemd
.
Introduction
Processes and services are fundamental to the operation of any Linux system, including Ubuntu 24.04. A process is an instance of a running program, while a service is a background process that provides system functionality, often starting at boot. This page will guide you through understanding, managing, and troubleshooting processes and services in Ubuntu 24.04, with a focus on tools and features specific to this release.
Understanding Processes in Ubuntu 24.04
Process Basics
In Ubuntu 24.04, each process has a unique Process ID (PID) and exists in one of several states:
- Running: The process is executing or waiting to execute.
- Sleeping: The process is waiting for an event (e.g., user input).
- Stopped: The process is paused, often by user action.
- Zombie: The process has terminated but remains in the process table.
Processes are hierarchical, with parent processes creating child processes. The root of this hierarchy is the init process (PID 1), managed by systemd
in Ubuntu 24.04.
Tools for Process Management
Ubuntu 24.04 provides several tools to monitor and manage processes:
ps
: Lists processes. Useps aux
for a detailed view.top
: Displays real-time process information, sorted by CPU usage.htop
: An enhanced version oftop
with a user-friendly interface. Install it withsudo apt install htop
.pgrep
: Finds processes by name or other attributes. For example,pgrep -f keepassxc
finds processes matching "keepassxc".
Ubuntu 24.04 also includes improvements in process scheduling and resource management, optimizing performance for both desktop and server environments.
Background and Foreground Processes
Processes in Ubuntu 24.04 can run in the foreground or background. Understanding how to manage them is key to efficient multitasking in the terminal.
Foreground Processes
Foreground processes run interactively in the terminal, blocking further commands until they complete or are paused. For example, launching nano
to edit a file ties up the terminal until you exit the editor.
Background Processes
Background processes run independently of the terminal, allowing you to continue using it for other tasks. This is ideal for long-running applications like downloads or running a KeePassXC AppImage.
Managing Background and Foreground Processes
- Starting a Process in the Background: Add an ampersand (
&
) to the command. For example:
./keepassxc.appimage &
This launches KeePassXC in the background, displaying a job number (e.g., [1]
) and PID (e.g., 12345
).
- Moving a Foreground Process to the Background: If a process is already running in the foreground:
- Pause it with
Ctrl + Z
(e.g.,[1]+ Stopped ./keepassxc.appimage
). - Resume it in the background with:
- Pause it with
bg
- Checking Background Processes: List all background jobs in the current terminal session:
jobs
Output might look like:
[1]+ Running ./keepassxc.appimage &
To see all processes (including those not tied to the terminal), use:
ps aux | grep keepassxc
- Bringing a Background Process to the Foreground: Use the
fg
command with the job number:
fg %1
Replace %1
with the job number from the jobs
output.
- Closing a Background Process: To terminate a specific background process:
- Find its PID:
pgrep -f keepassxc.appimage
This might return 12345
.
- Kill it:
kill 12345
Use kill -9 12345
if it doesn’t close gracefully.
- Persistent Background Processes: Closing the terminal ends background jobs. To keep them running, use
nohup
:
nohup ./keepassxc.appimage &
Or run them in a tmux
or screen
session.
Example: Running KeePassXC in the Background
Let’s run a KeePassXC AppImage in the background, check it, and close it:
- Start KeePassXC:
./keepassxc.appimage &
Output: [1] 12345
. KeePassXC runs, and the terminal is free.
- Check Background Jobs:
jobs
Output: [1]+ Running ./keepassxc.appimage &
.
- Verify with PID:
pgrep -f keepassxc.appimage
Output: 12345
.
- Close KeePassXC:
kill 12345
Verify it’s gone with jobs
(empty output) or ps aux | grep keepassxc
.
This approach lets you run KeePassXC without tying up your terminal, check its status, and stop it when needed.
System Services in Ubuntu 24.04
Systemd Overview
Ubuntu 24.04 uses systemd
as its default init system, managing system services and boot processes. systemd
provides better performance and advanced features compared to older init systems.
Managing Services with systemctl
The systemctl
command is used to manage services. Common commands include:
- Start a service:
sudo systemctl start service_name
- Stop a service:
sudo systemctl stop service_name
- Enable a service (start at boot):
sudo systemctl enable service_name
- Disable a service (don’t start at boot):
sudo systemctl disable service_name
- Check service status:
systemctl status service_name
Common Services in Ubuntu 24.04
Some essential services include:
ssh
: Allows secure remote access.apache2
: Serves web pages.snapd
: Manages Snap packages, a key feature in Ubuntu.
Creating Custom Services
You can create your own services with systemd
. For example, to start the IPFS daemon at boot:
- Create a service file:
sudo nano /etc/systemd/system/ipfs.service
- Add the following content:
[Unit] Description=Start IPFS daemon [Service] Type=simple ExecStart=/usr/local/bin/ipfs daemon [Install] WantedBy=multi-user.target
- Enable and start the service:
sudo systemctl enable ipfs.service
sudo systemctl start ipfs
Monitoring and Troubleshooting
Real-Time Monitoring
Use top
or htop
to monitor processes in real-time:
top
: Default tool, pressq
to quit.htop
: More interactive, with color-coding and easier navigation.
Viewing Logs
Use journalctl
to access service logs:
- View logs for a service:
journalctl -u service_name
- Follow live logs:
journalctl -f
Finding Process Issues
To identify resource-heavy processes:
- Use
top
orhtop
and sort by CPU or memory usage. - Alternatively, use
ps aux | sort -nk 3
to sort by CPU usage.