The Epson L365 ink tank printer on the Ubuntu 23.04 computer was not being installed. The L series printers never showed up on the list of printers in Settings -> Printers and Add printer. Even though Epson was available for selection, it only showed the dot matrix printers in the list of printers that can … Continue reading How to install Epson L365 inktank printer in Ubuntu or Xubuntu or Linux Mint
Tag: linux mint
Add sound theme to events in XFCE desktop on Xubuntu 22.10+ Linux
Xubuntu is based on the XFCE desktop. The XFCE desktop has a provision for wonderful sound effects also known as sound theme for events such as desktop login, maximise, minimise, but these do not work by default. The sound theme is there by default and it can be enabled as shown, but here we will … Continue reading Add sound theme to events in XFCE desktop on Xubuntu 22.10+ Linux
How to install git on Linux
To know how to install and work with git, refer https://wordpress.com/post/askmeaboutlinux.com/2504. Git is a powerful source code and versioning system.
How to work with flatpak on Linux Mint or Linux
Flatpak is a relatively new way of managing Linux packages. The basic commands of Flatpak are given below. To list flatpaks, use the below command in a terminal window: $ sudo flatpak list <enter> It will display the following output:Name Application ID Version Branch InstallationMint-Y Gtk Theme org.gtk.Gtk3theme.Mint-Y 3.22 systemMint-Y-Aqua Gtk The⦠org.gtk.Gtk3theme.Mint-Y-Aqua 3.22 system … Continue reading How to work with flatpak on Linux Mint or Linux
How to fix global nodemon node package install error on Linux
To install nodemon globally on Linux, below command:$ npm install -g nodemon <enter> will not work as it requires root privileges. If it is installed with :$ sudo npm install -g nodemon <enter> it will install on the local machine in the root folders. If we do not want to install it globally on our … Continue reading How to fix global nodemon node package install error on Linux
How to fix issue if autocomplete or intellisense does not work in vscode for express.js
If the below line is used in the javascript code:const express = require(express); then autocomplete / intellisense will not work. It will not display the relevant methods as shown in the image below. This is the correct code to use:const express = require("express"); The quotation marks make the difference and the following image shows the … Continue reading How to fix issue if autocomplete or intellisense does not work in vscode for express.js
Moving from Atom to Visual Studio Code and it’s extensions on Linux
Application developers would rely on Atom code editor to create code for a while now. However, Atom code editor is now sunset per this https://github.blog/2022-06-08-sunsetting-atom/. The option left now is to migrate to another code editor. And one of the best out there is Visual Studio Code (vscode). Since most of the work I do … Continue reading Moving from Atom to Visual Studio Code and it’s extensions on Linux
How to query the GTK3 theme currently in use on Linux, enable dark mode and display missing icons in Gnucash
To view the current GTK3 theme in use on the XFCE desktop environment that is pre-installed in distributions like Linux Mint or Xubuntu, open a terminal window and enter the following comment: $ gtk-query-settings theme <enter> Upon enter, it displays the following: gtk-theme-name: "Mint-Y-Dark-Orange" gtk-icon-theme-name: "Mint-Y-Dark-Orange" ! gtk-fallback-icon-theme: NULL gtk-key-theme-name: NULL gtk-cursor-theme-name: "Bibata-Modern-Ice" gtk-cursor-theme-size: 24 … Continue reading How to query the GTK3 theme currently in use on Linux, enable dark mode and display missing icons in Gnucash
How to install python3 on Linux
Install python3 $ sudo apt-get install python3-pip python3-venv python3 <enter> Make an isolated environment$ mkdir environment <enter>$ cd environment <enter>$ python3 -m venv my_env <enter> where my_env is the isolated environment$ ls my_env <enter> to display the created folders Activate the isolated environment$ source ~/environment/my_env/bin/activate <enter> This will be the resulting prompt(my_env) patrick@rm01:~/environments$ Create a … Continue reading How to install python3 on Linux
How to remove duplicate files in Linux using rdfind
Duplicate files can be removed using the rdfind command in Linux. To do so open a terminal window and first install rdfind as below:$ sudo apt-get install rdfind <enter> Then, check for duplicate files on a medium:$ rdfind true . <enter> . is the current directory where I ran rdfind Make sure you have a … Continue reading How to remove duplicate files in Linux using rdfind