Archives For Howtos

Tilix terminal emulator released version 1.9.6 few days ago. Here’s how to install it in Ubuntu 22.04, Ubuntu 23.04, and Ubuntu 23.10.

Tilix is a tiling terminal emulator, which uses the VTE GTK+ 3 widget for various features, such as split horizontally or vertically, transparent background, background images, quake mode support, custom hyperlinks, experimental trigger and badge support.

The development of Tilix is moving slowly now due to lack of maintainers. The new 1.9.6 is released more than 20 months after the last stable. And, it only includes minor new features and bug-fixes:

  • Add close button to search box.
  • Replace variables in custom link commands
  • Follow system color-scheme for default theme-variant
  • Add compatibility with Nautilus 43
  • Avoid shell injection in open-tilix plugin
  • Fix GLib critical warnings on startup
  • Update to GtkD 3.10.0

Tilix search box has close button.

How to Install Tilix 1.9.6 in Ubuntu 22.04, Ubuntu 23.10

The new release provides prebuild package for Linux, which is available to download at the link below:

It’s ‘tilix-1.9.6_x86_64-linux-gnu.tar.gz‘ for 64-bit modern PC and laptop. Just download the package, extract, and run the executable to launch the terminal emulator.

Ubuntu PPA

The official tarball does NOT include run-time libraries. You have to manually figure out “error while loading shared libraries …” errors.

To make the life easy, I’ve upload the new packages into this unofficial PPA, build against the rules from Debian Unstable. So far, it supports Ubuntu 22.04, Ubuntu 23.04, Ubuntu 23.10, on both x86_64 and AArch64(arm64).

1. First, press Ctrl+Alt+T on keyboard to open terminal. When it opens, run command to add the PPA:

sudo add-apt-repository ppa:ubuntuhandbook1/tilix

Type user password (no asterisk feedback) when it asks and hit Enter to continue.

2. Linux Mint 21 users need to refresh system package cache manually, by either running the command below or using “Refresh” button in Update Manager:

sudo apt update

3. Finally, either run command to install the terminal emulator:

sudo apt install tilix

Or, update it through Software Updater (Update Manager) utility.

NOTE: Upgrading from v1.9.5 may cause following error pop-up at launch, but I don’t know how to correct the issue.

Thanks to @oswald_c, you may fix the issue by enabling ‘Run command as a login shell’ to enable it‘ option under default profile of “Preferences” dialog. See the screenshot below:

Uninstall Tilix

To downgrade Tilix to stock version in your system repository, open terminal (Ctrl+Alt+T) and run command to purge the PPA:

sudo apt install ppa-purge && sudo ppa-purge ppa:ubuntuhandbook1/tilix

To uninstall Tilix, use this command instead:

sudo apt remove --autoremove tilix tilix-common

And, remove the Ubuntu PPA, either by running command in terminal:

sudo add-apt-repository --remove ppa:ubuntuhandbook1/tilix

or use “Software & Updates” to remove the source line under “Other Software” tab.

GIMP image editor now is at version 3.0.x, and I’ve made a PPA for those who prefer the native .deb package format.

If somehow you need to install the old GIMP 2.10.38 in Ubuntu, then this tutorial may help!

First of all, GIMP 2.10.38 includes Windows Ink drivers support for better tablets support on Windows. It also backports some small features from GTK3 to GTK2, with some improvements for Windows users. They include:

  • Use native Windows API for converting keystrokes to characters,
  • Fix keyboard input when using IMEs,
  • Fix mouse events in presence of transparent windows on the desktop,
  • Win32 IME Fixes, and more.

Besides the improvements for Windows users, the release also includes various bug-fixes, including that GIMP crashes every time on exit in my case in Ubuntu 24.04. See release note for more about GIMP 2.10.38.

(Old content for GIMP 2.10.36) The new release also has some new features. They include Adobe Swatch Exchange (ASE) and Adobe Color Book (ACB) palettes support.

Gradient Tool now has an “FG to Transparent (Hardedge)” option, to generate a gradient from the foreground color to transparency, with hard-edge transitions between the 2 colors. Which, as well includes a “Repeat” option to alternate repetitive colored shapes.

Other changes in GIMP 2.10.36 include:

  • Load GIF images with PixelAspectRatio header metadata correctly.
  • Improve formatting behavior when selecting and changing text on canvas.
  • Add “Table of Contents” option under Help > User Manual submenu.
  • Workaround broken graphic tablet with recent linuxwacom driver on Linux.

How to Install GIMP 2.10.38 in Ubuntu

GIMP provides official Linux package through Flatpak. For choices, they are Snap package and Ubuntu PPAs (.deb) maintained by contributors.

Option 1: Flatpak (official)

Flatpak is an universal package format that can be installed in most Linux, though it runs in sandbox.

To install GIMP Flatpak package, press Ctrl+Alt+T on keyboard to open terminal and run the 2 commands below one by one:

  • Install the Flatpak daemon package:
    sudo apt install flatpak
  • Install GIMP Flatpak package:
    flatpak install https://dl.flathub.org/repo/appstream/org.gimp.GIMP.flatpakref

If you already installed an old version of the Flatpak package, try to update it by running command:

flatpak update org.gimp.GIMP

UPDATE: The Flatpak now updated to GIMP 3.0.x! If you do need GIMP 2.10.38, try the command below to downgrade the Flatpack:

sudo flatpak update org.gimp.GIMP --commit=83b335255cc239e223ada842f99107d1d6ce51b511a8ae2a278005c2e2809242

As time goes on, the old commit will be removed! At that time, this command will no longer work.

Option 2: Snap package

Like Flatpak, Snap is also an universal Linux package format runs in sandbox environment. It’s easy to install by simply search & click installing in App Center (or Ubuntu Software for 22.04 & earlier).

NOTE: The Snap package now is updated to GIMP 3.0.x!!!

Option 3: Ubuntu PPA

For those who prefer native .deb package format, this unofficial PPA contains GIMP 2.10.38 for Ubuntu 24.04, Ubuntu 22.04, Ubuntu 20.04, and Ubuntu 23.10, with amd64, arm64 and armhf support.

1. First, open terminal (press Ctrl+Alt+T) and run command to add PPA:

sudo add-apt-repository ppa:ubuntuhandbook1/gimp

Type user password (no asterisk feedback) when it asks and hit Enter to continue.

2. Linux Mint users need to manually refresh system package cache, though, it’s done automatically in Ubuntu while adding PPA. To do so, run command:

sudo apt update

3. Finally, run command to install GIMP 2.10.38:

sudo apt install gimp gegl libgexiv2-2

NOTE: If you’ve GIMP 3.0.x installed, first remove it via the command under “Uninstall GIMP” section, then use the command below instead to install GIMP 2.10.x from this PPA:

sudo apt install -t "o=LP-PPA-ubuntuhandbook1-gimp" gimp libbabl-0.1-0 gegl libgexiv2-2

apt GIMP via specified source

Uninstall GIMP

If you installed GIMP via the official Flatpak package, run command below in terminal to uninstall it:

flatpak uninstall --delete-data org.gimp.GIMP

Also run flatpak uninstall --unused to remove useless runtimes.

For the Snap package, simply use Ubuntu Software or App Center to uninstall it.

For the PPA package, either run command to purge PPA and downgrade to the stock version:

sudo apt install ppa-purge && sudo ppa-purge ppa:ubuntuhandbook1/gimp

Or, remove the image editor directly by running command:

sudo apt remove --autoremove gimp gimp-data libgegl-0.4-0* libgimp2.0 libbabl-0.1-0

Then, remove the PPA either via command:

sudo add-apt-repository --remove ppa:ubuntuhandbook1/gimp

or ‘Software & Updates’ tool under Other Software tab by removing the source line.

Have multiple monitors connected to your Ubuntu 22.04 machine? There’s now an indicator to dim all or individual monitor screen brightness with sliders.

You can dim external monitor brightness with either physical buttons or ddcutil utility. However, an indicator applet in system tray can be more effective, and here’s one for Ubuntu 22.04 with default GNOME 42.

It’s a Gnome Shell extension, that adds a light bulb to top-right corner in panel. By clicking on it, will show you the slider to dim all the connected monitors, as well as individual sliders to dim certain screens.

And, by moving the slider to far right will make the screen totally dark, just like being turned off.

Besides dimming monitor screens, it can also change the colors with RGB sliders, which also can apply to either all or individual monitors.

As my laptop’s external HDMI port is broken, I can’t try out the multi-monitor support. But, the dimming and RGB color (need to at least move dim slider a bit to right) functions are working very well in my case in Ubuntu 22.04 Desktop PC.

My test without multi-monitors

How to Install the Dimming Control Indicator

First, launch Ubuntu Software, then search for and install “Extension Manager” app.

Install Extension Manager in Ubuntu 22.04+

Then, click on top-left ‘Activities’ button to open overview screen, search for and launch ‘Extension Manager’.

When the tool opens, navigate to ‘Browse‘ tab, and finally search and install “VividShade: Multi-Monitor RGB Dimming Control” extension.

The indicator applet will appear on panel immediately after installation.

Uninstall:

To uninstall this extension, also launch “Extension Manager“. Click expand it under first tab, finally click on red “Remove” button.

This simple tutorial shows how to display live earth as desktop wallpaper in Ubuntu 22.04 and Ubuntu 24.04.

Ubuntu has Wallch wallpaper changer in system repository, which has option to show live earth as wallpaper. However, the app is no longer updated and the feature is broken for all current Ubuntu releases.

If you’re interested in viewing high-resolution 3d real-time image of the earth in your desktop, then there’s another free open-source tool can do the job.

It’s liewa (Live Earth Wallpapers), that supports all known geostationary satellites for the high resolution sentinel images, Nasa Solar Dynamics Observatory images and NASA astronomy picture of the day (Apod)!

By default, it uses GEOS-16 satellite for the earth image, that display a small earth in center of your screen. Though, the app has setting options to add or edit satellites.

Add, configure satellites

So, you can have more than one real-time images of the earth from different satellites displayed on your screen at the same time, in different size, with either natural color or geocolor.

How to Install Live Earth Wallpapers (Liewa)

The tool provides .deb package for downloading in its Github releases page:

After downloaded the .deb package, right-click on ‘Downloads’ folder and select “Open in Terminal”. Finally, run command to install it in pop-up terminal window:

sudo apt install ./liewa.deb

Finally, launch it from either start/applications menu or the overview screen depends on your desktop environment.

When the app window opens, configure canvas size, satellites, etc in first tab, then click on “Create New Scheduler” in Scheduler tab should start the live earth wallpaper.

Though, it takes quite a few seconds to apply, waiting for automatically start the service. If you can’t wait, try to open terminal (Ctrl+Alt+T) and run command to manually start the service:

systemctl status --user liewa

Uninstall:

You can stop the live earth wallpaper by clicking on “Delete Scheduler” button in app window, then set another wallpaper via ‘Background’ settings.

To remove the software, simply open terminal (Ctrl+Alt+T) and run command:

sudo apt remove --autoremove liewa

This simple tutorial shows how to do stress test on your CPU in Ubuntu or Debian Linux, either Desktop or Server.

Got a new CPU /CPU cooler, or changed your computer environment? You can perform a stress test to find out if it’s working good! And, here’s how to do the trick in Debian, Ubuntu, and their based systems.

Step 1: Install stress/stress-ng & s-tui

In all current Ubuntu (20.04, 22.04, 24.04) and Debian releases, there are few command line and TUI tools to do the job.

First, open terminal either from start/application menu or by pressing Ctrl+Alt+T on keyboard.


When it opens, run command:

sudo apt install --install-suggests s-tui

Type user password (no asterisk feedback) for sudo authentication and hit Enter.

The command will install s-tui, with TUI interface to start, stop, configure stress test, and monitor your CPU status in terminal.

With --install-suggests option, it also installs the stress or stress-ng package as the backend for the testing.

Step 2: Perform Stress Test

After installing the tool, simply run the command below in terminal to start s-tui:

s-tui

Then, you’ll see something look like the screenshot below shows you.

In left, it shows some options, as well as summaries of core temperatures, and frequencies. In right, it shows information about the temperature, utilization rate,etc in graphs.

To start stress test, just left click on ( )Stress in the top-left corner of terminal, or use arrow key to highlight it and hit Enter. To stop it, just click to switch back ( )Monitor.

By clicking Stress Options in left, it will show you option to set a timeout to automatically stop stress testing in given seconds. You can also change Sqrt() worker count and Sync() worker count to specify how many cores to run for stress test.

Tips 1 : For GNOME, Ubuntu’s default desktop environment, open “Power” settings and change CPU power mode to ‘Performance’ before performing stress test, or your CPU may not run in full speed.

Tips 2: While stress testing, you may also monitor the temperature of other devices (e.g., SSD) in your machine. To do so, you may install ‘hardinfo’ by running command in terminal:

sudo apt install hardinfo

Then open it and navigate to ‘sensors’ tab in left.

That’s all. Enjoy!

This is a quick tutorial shows you how to quickly access the source of all your installed GNOME extensions in Ubuntu, Fedora Workstation, Debian and other Linux with GNOME.

Gnome extensions are usually installed to “.local/share/gnome-shell/extensions/” directory. While, system built-in extensions are available in “/usr/share/gnome-shell/extensions/“.

For developing or debugging purpose, you can open that folder every time to access the sources. However, GNOME has a built-in debugger and inspector tool that can also do the trick quickly.

Quick access source of extensions via Looking Glass

1. First, press Alt+F2 on keyboard to launch the ‘Run a command’ dialog box. Then, input lg and hit Enter.

2. The Gnome debugger and inspector tool, aka Looking Glass, will drop-down from the top.
There, just switch to “Extensions” tab, then, you’ll see all the installed extensions, either enabled or disabled.

And, each extension has 3 links:

  • View Source – open the source folder of extension in a new Nautilus window.
  • Web Page – open the extension web page in default web browser.
  • Show/Hide Errors

Looking Glass Indicator

To make life easier, there’s also an extension to add a panel indicator in top-right. So, you can access it easily by a single mouse click. Which, also has a drop-down menu:

  • Restart Shell (Xorg only).
  • Reload Theme.
  • Open Extensions Folder.
  • Open Themes folder.

To install the indicator, first search for and install “Extension Manager” from either Ubuntu Software or App Center.

Install Extension Manager in Ubuntu 22.04+

Then, launch and use “Extension Manager” to search and install “Looking Glass Button” under Browse tab.

The extension so far supports all current GNOME versions. For Fedora, Debian, etc without ‘Extension Manager’, just go to extension web page via the link below:

Then use ON/OFF switch to install it. If you don’t see the toggle switch, click the link in the page to install browser extension then refresh.

This is a step by step beginner’s guide shows Ubuntu Desktop users how to upgrade to Ubuntu 23.10 from either Ubuntu 22.04 and Ubuntu 23.04.

Ubuntu 23.10, code-name, Mantic Minotaur, was released a week ago. It features Kernel 6.5, GNOME 45, new App Center, and has official support until July, 2024.

Before getting started:

Before start upgrading your OS, you have to do some preparations to avoid failure and speed up upgrading process.

  • First, backup, backup, backup! The upgrade process MAY FAIL, due to internet corrupt, hardware issue, and/or package conflict. If the upgrade process failed, your system MAY refuse to boot. So, it’s important to make backup, though, you can mount the disk in another OS to export user data.
  • Remove useless applications. It will try to upgrade all installed packages to the higher versions in 23.10 system repository. So removing useless packages, such as non-default desktop environments, results less downloading to speed up upgrading process. Though, it’s totally OK to skip this step.
  • Restore important libraries. If you’ve installed 3rd party versions of multimedia (e.g., FFmpeg) libraries, it’s highly recommended to uninstall/restore to avoid package conflict.
  • Disable third-party repositories. Third party repositories may contain packages that cause conflict to the packages in 23.10 system repository. It’s highly to disable them by launching “Software & Updates” and removing/un-ticking source lines under “Other Software” tab.

    Remove 3rd party PPAs

  • Disable third-party extensions. Third-party extensions may not work on higher GNOME versions. It’s better to disable them using either ‘GNOME Extensions‘ or ‘Extension Manager’ app (both available in Ubuntu Software.).

    Remove 3rd Party Extensions

  • Restore open-source drivers. If any proprietary driver in use. It’s better to restore the original open-source drivers using “Additional Drivers” utility.

Check Distribution Update

If you’ve done the preparations, now launch “Software Updater“, then install all the available updates:

Then, restart your computer if it prompted to finish updates.

Finally, press Ctrl + Alt + T on keyboard to open terminal, and run command:

update-manager -c -d

This command will launch “Software Updater” again, while checking Distribution updates. Use update-manager -c instead, if the command above does not work.

For Ubuntu 22.04, first launch “Software & Updates” and navigate to “Updates” tab. Then, set “Notify me of a new Ubuntu version: For any new version“. Finally, run update-manager -c to first upgrade to 23.04, and then to 23.10 with same method.

Start upgrading process

If everything’s done properly, you should see the pop-up says: “The Software on this computer is up to date. However, Ubuntu 23.10 is now available (you have 23.04)“. For Ubuntu 22.04, follow the steps to upgrade to 23.04 first, then do it again to upgrade to 23.10.

Just click on “Upgrade” button will open the ‘Release Note’ dialog. Where, you can click “Upgrade” again to start the process.

After that, the “Distribution Upgrade” dialog opens to prepare the upgrade, and setup software sources for Ubuntu 23.10.

When done, it asks again to confirm upgrade.

Once you click “Start Upgrade”, it starts downloading all them required packages and install them.

When done installing all the updates, you have to do one more click to confirm “Remove obsolete packages”.

If everything’s done successfully, it will prompt to “Restart the system to complete the upgrade”.

After reboot, either open ‘Settings’ and go to ‘About’ page, or run command in terminal (Ctrl+Alt+T) to verify:

cat /etc/os-release

Geany, the small and fast IDE, released version 2.0 hours ago! Here are the new features as well as how to install guide for Ubuntu users.

Changes in Geany 2.0 according to the official release note:

  • Split “session data” into session.conf, preferences are written to and read from geany.conf.
  • Re-add ability to scroll over document tabs.
  • Use new tree view as default for the document list in the sidebar.
  • Dark-theme friendly colors for compiler messages
  • Confirm dialog on search & replace for the whole session.
  • Filter entry for symbol tree.
  • Simplify project creation from existing directories with sources.
  • Add option to show symbols in symbol tree without category groups.
  • Add option to only show line endings if they differ from file default.
  • Make tab label length and window title length configurable.
  • Make Go to Symbol commands show signature list.
  • Scintilla 5.3.7 and Lexilla 5.2.7
  • Add “Change history” feature (disabled by default)
  • Sync many parsers from the Universal Ctags project
  • Improved support for the ctags file format
  • Update Kotlin, Nim, PHP, Python filetype config
  • Apply Markdown header style to the complete header
  • Add AutoIt, GDScript filetype
  • Remove Ferite filetype
  • Enable local variables and improve autocompletion for C/C++ and some other languages
  • Use “Prof-Gnome” GTK theme and GTK dialogs on Windows.

How to Install Geany 2.0 in Ubuntu:

Geany does not provide official packages for Linux. Besides building from source code, user can choose to use the universal Flatpak package or an unofficial Ubuntu PPA.

Option 1: Flatpak package

The Flatpak package is an universal package format can be installed in most Linux, however it runs in sandbox.

To install Geany as Flatpak package, press Ctrl+Alt+T on keyboard to open terminal. Then, run the 2 commands one by one:

  • First, install Flatpak daemon in case you don’t have it:
    sudo apt install flatpak
  • Then, install Geany Flatpak package:
    flatpak install https://dl.flathub.org/repo/appstream/org.geany.Geany.flatpakref

After installation, search for and launch Geany from either overview screen or start/application menu depends on your desktop environment.

NOTE: For first time installing Flatpak app, needs a log out and back in to make app icon visible.

Option 2: Ubuntu PPA

For those who hate running app in sandbox, I’ve uploaded the package into this unofficial PPA. So far, it supports for Ubuntu 20.04, Ubuntu 22.04, Ubuntu 23.04, and Ubuntu 23.10 on x86_64, arm64/armhf CPU architecture types.

1. First, press Ctrl+Alt+T on keyboard to open terminal. When terminal opens, run command to add the PPA:

sudo add-apt-repository ppa:ubuntuhandbook1/geany

Type user password (no asterisk feedback) when it asks and hit Enter to continue.

2. Linux Mint users may need to manually refresh system package cache after adding PPA, though it’s done automatically in Ubuntu 20.04 and higher.

To do so, run command:

sudo apt update

3. Finally, install Geany 2.0 as well as plugins by running command:

sudo apt install geany geany-plugins

After successfully installed the packages, search for and launch the IDE from overview or application menu and enjoy!

Uninstall Geany 2.0

For Geany IDE installed as Flatpak package, just run the command below to remove it:

flatpak uninstall --delete-data org.geany.Geany

Also, run flatpak uninstall --unused to clear useless run-time libraries.

For the IDE installed from Ubuntu PPA, remove it by running command in terminal (Ctrl+Alt+T):

sudo apt remove --autoremove geany geany-plugins-common

Also, remove the PPA either by running command in terminal:

sudo add-apt-repository --remove ppa:ubuntuhandbook1/geany

Or, use “Software & Updates” by removing the source line under ‘Other Software’ tab.

For KDE users on Ubuntu 22.04, meaning KUbuntu 22.04, Ubuntu Studio 22.04, etc, the latest Plasma Desktop 5.27 (5.27.11) now is available to upgrade through PPA.

KDE Plasma Desktop 5.27 was originally released in February. After more than 8 months of work, it has received 9 bug-fix updates and finally made into PPA for Ubuntu 22.04 LTS.

Plasma 5.27 features new window tiling system, that can be enabled “System Settings > Workspace Behavior > Desktop Effects“. It allows to Shift + dragging to tile windows, and Super (Windows logo) + T to edit tiling mode.

The release also features new Welcome dialog, allowing to learn about new features and how to tweak settings, etc, swipe gestures for volume and playback control in Media Player widget, power usage monitor detection for NVIDIA GPUs, new command activate “Do Not Disturb” mode.

Continue Reading…

How to Install Local .deb file in Ubuntu 24.04

Last updated: September 1, 2024 — 3 Comments

Since Ubuntu 23.10, there’s no longer “Software Install” option for opening/installing .deb files in your Downloads folder. This is probably due to switch to the new ‘App Center’, that some features are not fully implemented.

When you double-clicking a .deb file from Downloads folder, it will pop-up a dialog saying “Could Not Display ‘file_name.deb’ There’s no app installed for ‘Debian package’ files“. And, neither option will work for installing the package.

UPDATE: App Center in Ubuntu 24.04 finally added back the feature to install local .deb! Just double-click on the package in file manager to launch and install.

So, if you’re trying to install an application using local .deb format package, here are 3 workarounds for you.

Option 1: use Gdebi package installer

Gdebi is a simple tool to view and install local .deb file. It’s a popular application that’s using as default in Linux Mint.

1. First, press Super (Windows logo) key to open overview screen. Search for and launch “App Center”.

2. When ‘App Center’ opens, use it to search and install Gdebi. You may need to select “Filter by Debian packages” to make it visible.

3. Once you installed the tool, right-click on your local .deb file, and click on “Open With…” option.

In next pop-up dialog, find out and select “Gdebi Package Installer” and turn on “Always use for this file type“, finally click Open.

4. After that, you can double-click any .deb file to open with the Gdebi package installer. When the tool opens, you may view the package info and  click “Install Package” to install it into your system.

Option 2: Use apt command

For those who are familiar with Linux command, your local .deb file is easy to install via a single command.

It’s:

sudo apt install /path/to/file.deb

Definitely, you need to replace ‘/path/to/file.deb‘ to yours.

Instead of typing manually, simply open terminal (via either Ctrl+Alt+T shortcut or ‘Open in Terminal’ context menu), then drag and drop .deb file into terminal after typing sudo apt install plus a blank space.

Finally, hit Enter to run the command, type user password (no asterisk feedback) to authentication, and answer y if it asks to confirm.

When installation done, it will output something like ‘N: Download is performed unsandboxed as root as file ‘/path/to/file.deb’ couldn’t be accessed by user ‘_apt’. – pkgAcquire::Run (13: Permission denied)’. Just skip the non-fatal warning. Your app should be properly installed when you see the terminal output message.

Option 3: Use GNOME Software

If you want to restore the new App Center to classic Ubuntu Software, then GNOME Software can be a better choice.

GNOME Software supports Deb, Flatpak, and Snap packages. However, it will be always run in background that takes about 200 MB memory in my case.

If you don’t care about the memory consumption, then press Ctrl+Alt+T to open terminal, and run command to install GNOME Software:

sudo apt install --install-suggests gnome-software

Skip --install-suggests if you don’t want to enable Flatpak support.

After that, you can right-click on local .deb file, and select “Software Install” from Open With dialog to launch GNOME Software to install it.

Uninstall:

If you don’t use Gdebi or Gnome Software anymore, open terminal (Ctrl+Alt+T) and run command to uninstall:

Uninstall Gdebi:

sudo apt remove --autoremove gdebi

Or, uninstall Gnome Software via command:

sudo apt remove --autoremove gnome-software