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
Tag: Linux
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 configure and run Wine on Fedora Linux
To configure Wine on Fedora Linux, connect to the Internet, then open a terminal window and enter:$ winecfg <enter> After wine is configured, any Windows application that is compatible with it can be installed by entering the below command:$ wine program.exe <enter> where program.exe is the program file to install. Run the program from the … Continue reading How to configure and run Wine on Fedora Linux
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
Error running Income Tax India ITR utility on Fedora 32 Linux
India income tax returns filing utilities are created using Java 8 SDK and use Java FX. These can only be run using Java 8 as Java FX was bundled with it. Newer versions of Java from Oracle do not bundle Java Fx anymore. Therefore, when running the Java income tax utilities, the following error (in … Continue reading Error running Income Tax India ITR utility on Fedora 32 Linux
How to install kvm on Fedora Linux
To install KVM on Fedora, open a terminal window and enter:$ sudo dnf -y install bridge-utils libvirt virt-install qemu-kvm <enter> Next, install virtual machine management tools:$ sudo dnf -y install virt-top libguestfs-tools <enter> Start the daemon:$ sudo systemctl start libvirtd <enter>$ sudo systemctl enable libvirtd <enter> This is a required step to use Android Studio's … Continue reading How to install kvm on Fedora Linux
How to change language and regional settings or locale in Fedora XFCE Linux
Coming from Linux Mint or Ubuntu or Xubuntu, it is trivial to change language and regional settings there, but in Fedora, to change the language settings, open a terminal window, and enter the following per requirement. To list the current locale:$ locale <enter>LANG=en_US.utf8LC_CTYPE="en_US.utf8"LC_NUMERIC=en_IN.UTF8LC_TIME=en_IN.UTF8LC_COLLATE="en_US.utf8"LC_MONETARY=en_IN.UTF8LC_MESSAGES="en_US.utf8"LC_PAPER="en_US.utf8"LC_NAME="en_US.utf8"LC_ADDRESS="en_US.utf8"LC_TELEPHONE="en_US.utf8"LC_MEASUREMENT="en_US.utf8"LC_IDENTIFICATION="en_US.utf8"LC_ALL= To setup the locale globally:$ vi /etc/locale.conf <enter> Add in the following … Continue reading How to change language and regional settings or locale in Fedora XFCE Linux
How to install vlc and other applications not available in the Fedora repositories via rpmfusion
Fedora has not put the vlc media player in it's official repos. To install it and various other such applications not available in the Fedora repos, add the rpmfusion repository to the package manager and use it to download vlc. To add the rpmfusion repos, open a terminal window and enter the following commands: $ … Continue reading How to install vlc and other applications not available in the Fedora repositories via rpmfusion
How to install Thunderbird and Lightning Calendar in Fedora Linux
To install Thunderbird client, open a terminal window and enter the following command:$ sudo dnf install thunderbird <enter> To get the calendar working in Thunderbird, add the Lightning addon from Extensions in Thunderbird.
How to check for updates in Fedora
To check for updates in Fedora 32, open a terminal window and enter the following commands: $ sudo dnf check-update <enter>$ sudo dnf update <enter> This will look for updated rpm files and ensure that the system is patched. Note that "dnf" works similar to "yum" used earlier on Fedora.