To enable night mode on Linux and void strain to the eyes while working at night, install redshift. To install from the repository, open a terminal window and enter the following command: $ sudo apt-get install redshift-gtk <enter> This will install the RedShift tool. Run it and set it up to reduce screen glare at … Continue reading Enable night mode on Linux using RedShift
Category: Ubuntu
How to change the price retrieval source for stock quote in GnuCash
Recently, I wanted to change the stock quote source for the stocks in GnuCash. To do so, follow the steps below: To retrieve the stock quotes for National Stock Exchange or Bombay Stock Exchange in India, use Yahoo as JSON as the source.To find the stock quote and abbreviation, visit the Yahoo Finance at https://in.finance.yahoo.com … Continue reading How to change the price retrieval source for stock quote in GnuCash
How to run India income tax Java utilities on Linux Mint 20 or Ubuntu 20.04 LTS or Fedora 32
From Ubuntu 20.04 LTS or LinuxMint 20, the Java 8 SDK or Java 8 Runtime Environment is in the repository, but the openjfx libraries are not of version 8 but of version 11. To overcome error, you can use the Zulu Java runtime for version 8 with JavaFX. Also, these steps can work on Fedora … Continue reading How to run India income tax Java utilities on Linux Mint 20 or Ubuntu 20.04 LTS or Fedora 32
How to fix Android Studio error message – Emulator: createOrGetGlobalVkEmulation: Warning: Vulkan 1.0 APIs missing from instance
Android Studio upon being freshly installed displayed the below error message in the event window: Emulator: createOrGetGlobalVkEmulation: Warning: Vulkan 1.0 APIs missing from instance This error is due to the Vulkan APIs that are not needed if the computer has no graphics card. To overcome this error, open a terminal window and do the following: … Continue reading How to fix Android Studio error message – Emulator: createOrGetGlobalVkEmulation: Warning: Vulkan 1.0 APIs missing from instance
IntelliJ IDEA displays error that Java SDK is not installed
When IntelliJ IDEA is installed, Kotlin applications cannot be compiled or run unless the Java SDK is installed. Choose to get the Oracle Java SDK or install the OpenJDK SDK corresponding to the OpenJDK Java Runtime Environment that has been installed. By default, the Linux distribution will just install the Java Runtime Environment (JRE). To … Continue reading IntelliJ IDEA displays error that Java SDK is not installed
Enable login sound in Linux Mint on the XFCE desktop environment
It is strange that Linux Mint has such great sound effects in Cinnamon and they can all be heard, but they do not work on the Linux Mint XFCE desktop. Fret not. The effects are there, but the sounds have to be enabled. This applies to the XFCE desktop in any Linux distribution. To enable … Continue reading Enable login sound in Linux Mint on the XFCE desktop environment
How to open a LUKS container file using thunar file manager in Linux
To open a LUKS container file in Thunar file manager in Linux, right click on the container file and select the option Open with Disk Image Mounter. This way, the LUKS container will appear as Device in thunar and can be mounted.
How to enable greyed out Get Quotes button in GnuCash for stock quotes retrieval
On fresh install of Xubuntu 20.04 LTS, it was noticed that the Get Quotes button on the Price Editor option of GnuCash was greyed out. To diagnose this, open a terminal window and enter the following commands:$ gnc-fq-check <enter> The error Can't locate Finance/Quote/Yahoo/Asia.pm in @INC is displayed. This means that the Finance::Quotes module is … Continue reading How to enable greyed out Get Quotes button in GnuCash for stock quotes retrieval
How to enable Android Studio AVD to use only lesser number of CPUs than available on the computer
To use only 2 cores of the CPU of the computer, do the following action after opening a terminal window in Linux, where Device10.avd is the Android 10 AVD created: $ vi ~/.android/avd/Device10.avd/config.ini <enter> Change the values in red for the below parameters in the file to those in blue as below.hw.cpu.ncore=4 hw.cpu.ncore=2 Save the … Continue reading How to enable Android Studio AVD to use only lesser number of CPUs than available on the computer
How to fix the ADB Binary found adb is obsolete and has serious performance problems with Android Emulator error in Android Studio for Linux
The default Android SDK installed with Android Studio already has the adb application installed and it is the latest. The error ADB Binary found at /home/user/ adb is obsolete and has serious performance problems with Android Emulator appears only if from Android Studio, menu option, Tools -> SDK Manager -> SDK Tools, the Android SDK … Continue reading How to fix the ADB Binary found adb is obsolete and has serious performance problems with Android Emulator error in Android Studio for Linux