Visual Studio Code is an optimized, feature-rich code editor for building web and cloud applications, which is developed by Microsoft. It includes features like embedded Git, supports debugging, syntax highlighting, intelligent code completion, snippets, and code refactoring. The Visual Studio Code is freely available for most modern operating systems like Windows, Linux (RPM and Debian installations are also available), and macOS. This tutorial will help you to install Visual Studio Code on Ubuntu 22.04 LTS Linux system using Apt package manager and using snap package. Prerequisites In order to install VS Code, you must have sudo privileges or root account…
Author: Rahul
Sublime is a powerful and widely used text and application source code editor. It supports the syntax of most popular programming languages. Sublime also provides a large number of third-party extensions that provides more features to developers. You may also like => Installing Visual Studio Code on Ubuntu 20.04 Sublime 4 is the latest available version for the developers. In this tutorial, you will learn to install Sublime text 4 on the Ubuntu 22.04 systems. Installing Sublime Text on Ubuntu The sublime team provides an official Apt repository for the Debian-based systems. Follow the below steps to complete Sublime installation…
LibreOffice is a free and open-source office suite with a clean interface. It provides most of the tools required for an Office suite like Writer (word processing), Calc (spreadsheets), Impress (presentations), Draw (vector graphics and flowcharts), Base (databases), and Math (formula editing), etc. We can directly download the LibreOffice Debian packages from its official download page or use the Apt repository for the installation. This tutorial will help you to install LibreOffice on Ubuntu 22.04 Desktop system. Prerequsities You must have: A running Ubuntu 22.04 system with Desktop Sudo privilege or root account access Linux kernel version 3.10 or higher…
A firewall is a security application that prevents unauthorized users and secures your system. By default, the Firewall is installed on Windows systems. It is highly recommended to keep the Windows firewall active. You can allow access to any port or service with a firewall configuration. The latest Windows 8 and 8.1 systems have Windows Firewall and the Windows 10 and above systems use Windows Defender Firewall. This tutorial is created on Windows 8.1, so the screenshots may differ for Windows 10 and above users. Enable or Disable the Windows Firewall Use the below steps to enable or disable a…
Java is the most popular object-oriented, robust, platform-independent programming language. A large number of applications developed on Java required a system has Java installed. OpenJDK is an open-source implementation of Java available freely for production use. This guide will help you to install Java (OpenJDK 17, 11, and 8) LTS releases. Also, help you to install Oracle Java 17 LTS) on your Ubuntu system. You will also find the instruction’s to switch between multiple installed Java versions. Installing Java on Ubuntu Java 17 is the latest LTS release available for installation. JDK packages provide the full Java development libraries, helpful…
Ubuntu is a popular version of Linux that lets you choose different Display Managers to make your system easy to use. This article will show you how to switch between three commonly used Display Managers: GNOME Display Manager (GDM), LightDM, and Simple Desktop Display Manager (SDDM). No matter if you are experienced with Linux or just starting with Ubuntu, this guide will give you simple steps to improve and customize your system’s login screen. Understanding the Display Manager A Display Manager is a graphical login program and session manager that is responsible for the user authentication. It is a totally…
The login screen is the first thing you see when booting up your Ubuntu system, and customizing its background can add a personal touch to your overall desktop experience. In this article, we will explore a powerful tool called “ubuntu-gdm-set-background” available on GitHub, which allows users to easily change the login screen background in Ubuntu. By following this step-by-step guide, you will be able to personalize your login screen with your preferred image. Step 1: Installation of ubuntu-gdm-set-background To begin, we need to install the “ubuntu-gdm-set-background” tool. Follow these steps to proceed: sudo apt install libglib2.0-dev-bin Now download the script…
PHP is a programming language used for developing web applications. You must install PHP packages on a Ubuntu system to run the application written on it. Generally, it is used to create e-commerce websites, blogs, and API applications. If you’re looking for an easy way to install PHP on Ubuntu 22.04, look no further. This blog post will show you how to do it quickly and easily. We will use the Ondrej PPA for installing PHP on Ubuntu 22.04 LTS system. Which contains PHP 8.3, 8.2, 8.1, 8.0, 7.4, 7.3, 7.2, 7.1, 7.0 & PHP 5.6 packages. You can install…
The Problem: While upgrading the Ubuntu OS version, I faced the following issue with the do-release-upgrade command. Even all the current packages were upgraded with apt upgrade. sudo do-release-upgrade We faced a known issue that would not allow us to continue with the upgrade. You will see the following error message: Checking for a new Ubuntu release Please install all available updates for your release before upgrading. Here are 2 solutions available to resolve this issue. It may be one solution not worked in some situations, try another solution. Solution 1: The first solution is to disable all third-party repositories…
Problem Recently, I installed Apache Kafka on the Ubuntu system. When tried to run the consumer console script, I found the error message that “zookeeper is not a recognized option”. ./bin/kafka-console-consumer.sh –topic testTopic –zookeeper localhost:9092 zookeeper is not a recognized option Option Description —— ———– –bootstrap-server –consumer-property properties in the form key=value to … … Solution After searching a bit time, I visited to Apache Kafa QUICKSTART guide. Here I found the solution that Kafka has removed –zookeeper option and replaced it with a new option –bootstrap-server . So the new command would be like: ./bin/kafka-console-consumer.sh –topic testTopic –bootstrap-server localhost:9092…