Install Some Good software on Ubuntu

Kuldip Mori
4 min readMay 17, 2020

Hello, Friends, in this article, I will give a list of useful software, as well as download and installation instructions for UBUNTU 18.04 and 22.04, as well as links to download the software. Assume that every command works flawlessly. Soon, I’ll offer additional information on how to install software.

Key Words : MySQL Workbench , Sublime ( Text Editor ), AnyDesk ( Ubuntu 22.04 LTS )

Install MySQL Workbench on Ubuntu.

  • First, make sure your system is update and upgraded; if it isn’t, use the command below. This software may be installed on your device through a variety of methods. I choice command, on the other hand, is very simple and convenient for everyone. To run this command, open Terminal (Ctrl + Alt + T).
sudo apt-get update && upgrade -y
Update & Upgrade System

After performing this command your system is updated.Given Command Update + Upgrade your system. -y mean by default tack permeation yes.

  • For Install MySQL Workbench.
sudo apt install mysql-workbench
Install MySQL Workbench

After performed, this command MySQL workbench is installed in your device.
this command tack maybe 1 to 2 minutes please wait.

  • Check Installation is Properly.
/usr/bin/mysql-workbench --help
Success fully done

If you get this type of output then you done.

  • how we open installed mysql-workbench press Show Application button.
Show Application
  • Search MySQL Workbench on search menu and get this application Icon.
Click Icon
  • After click this icon you get software.
Window of Software

Your steps have been completed! If you have any problems after performing, please contact me by email.

Install Sublime in easy way for Linux — Ubuntu OR Debian

Step 1 ) Download sublime package from official site & add key.

wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
Download package

Step 2 ) Allows the use of repositories accessed use with HTTP Secure protocol.

sudo apt-get install apt-transport-https
install accessed apt-transport-https

Step 3 ) Update all package before install Sublime.

sudo apt-get update -y
update all package

Step 4 ) Install sublime finally with hit this command.

sudo apt-get install sublime-text
install sublime-test

Step 5 ) Check sublime version for confirmation.

subl --version
Check version

Step 6) Uninstall sublime in Ubuntu — Debian Device.

sudo apt-get remove --purge sublime-text
Uninstall sublime

Install Any-desk for Ubuntu 22.04 LTS ( without Error )

Step 1) Update & upgrade package of your Linux device.

sudo apt update && upgrade -y

Step 2) download keys & add.

wget -qO — https://keys.anydesk.com/repos/DEB-GPG-KEY | sudo apt-key add -

Step 3) Add repository in Ubuntu

echo “deb http://deb.anydesk.com/ all main” | sudo tee /etc/apt/sources.list.d/anydesk-stable.list

Step 4) update your Ubuntu & install Any-desk

sudo apt update && apt install anydesk -y

Step 5) if you are facing Error like this while start Any-desk.

Error :
Could not create transient scope for PID 7866: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Process with ID 7866 does not exist.
/usr/bin/anydesk: error while loading shared libraries: libpangox-1.0.so.0: cannot open shared object file: No such file or directory

Solution :

Solution step 1) Download required package.

wget http://ftp.us.debian.org/debian/pool/main/p/pangox-compat/libpangox-1.0-0_0.0.2-5.1_amd64.deb

Solution step 2) Install package. After this step you can use Any-desk without Error.

sudo apt install ./libpangox-1.0–0_0.0.2–5.1_amd64.deb

LinkedIn: https://www.linkedin.com/in/morikuldip37

Mail : morikuldip62@gmail.com

--

--