How To Install lxpanel on Ubuntu
Posted on April 1, 2023  (Last modified on May 20, 2023 )
3 minutes • 460 words
Introduction
In this tutorial we learn how to install lxpanel on Ubuntu.
What is lxpanel
lxpanel is:
LXPanel is a GUI application for the Lightweight X11 Desktop Environment (LXDE).
It is derived from fbpanel and includes the following features:
- User-friendly application menu automatically generated from .desktop files on the system
- Launcher bar (small icons clicked to launch apps)
- Task bar supporting ICCCM/EWMH `urgency’ hint (Pidgin IM windows can flash on new incoming messages)
- Run dialog (type a command to run, without opening a terminal)
- Net status icon plug-in (optional).
- Volume control plug-in (optional).
- Notification area (system tray).
- Digital clock.
- Keyboard LEDs plug-in (display caps/num locks).
- lxpanelctl: control lxpanel from other programs. For example, “lxpanelctl run” will show the Run dialog in lxpanel, and “lxpanelctl menu” will show the application menu. This is useful in combination with window manager key bindings.
There are three methods to install lxpanel on Ubuntu. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install lxpanel Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install lxpanel using apt-get by running the following command:
sudo apt-get -y install lxpanel
Install lxpanel Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install lxpanel using apt by running the following command:
sudo apt -y install lxpanel
Install lxpanel Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install lxpanel using aptitude by running the following command:
sudo aptitude -y install lxpanel
How To Uninstall lxpanel on Ubuntu
To uninstall only the lxpanel package we can use the following command:
sudo apt-get remove lxpanel
Uninstall lxpanel And Its Dependencies
To uninstall lxpanel and its dependencies that are no longer needed by Ubuntu, we can use the command below:
sudo apt-get -y autoremove lxpanel
Remove lxpanel Configurations and Data
To remove lxpanel configuration and data from Ubuntu we can use the following command:
sudo apt-get -y purge lxpanel
Remove lxpanel configuration, data, and all of its dependencies
We can use the following command to remove lxpanel configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge lxpanel
Dependencies
lxpanel have the following dependencies:
- libasound2
- libc6
- libcairo2
- libcurl3-gnutls
- libfm-gtk4
- libfm4
- libgdk-pixbuf-2.0-0
- libglib2.0-0
- libgtk2.0-0
- libiw30
- libkeybinder0
- libmenu-cache3
- libpango-1.0-0
- libwnck22
References
Summary
In this tutorial we learn how to install lxpanel package on Ubuntu using different package management tools: apt, apt-get and aptitude.