How To Install mozc on Fedora 34
Introduction
In this tutorial we learn how to install mozc
on Fedora 34.
What is mozc
Mozc is a Japanese Input Method Editor (IME) designed for multi-platform such as Chromium OS, Windows, Mac and Linux.
We can use yum
or dnf
to install mozc
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install mozc.
Install mozc on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install mozc
using dnf
by running the following command:
sudo dnf -y install mozc
Install mozc on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install mozc
using yum
by running the following command:
sudo yum -y install mozc
How To Uninstall mozc on Fedora 34
To uninstall only the mozc
package we can use the following command:
sudo dnf remove mozc
mozc Package Contents on Fedora 34
/usr/bin/mozc_emacs_helper
/usr/lib/.build-id
/usr/lib/.build-id/0f
/usr/lib/.build-id/0f/2378557a437c39e780f45bb965bee10c08552f
/usr/lib/.build-id/2e
/usr/lib/.build-id/2e/60b298bbbc18e1ff05408920ea913f8d6f2b9e
/usr/lib/.build-id/69
/usr/lib/.build-id/69/69c4da08a442d22b6c7349a213b9120215b327
/usr/libexec/mozc
/usr/libexec/mozc/documents
/usr/libexec/mozc/documents/credits_en.html
/usr/libexec/mozc/mozc_server
/usr/libexec/mozc/mozc_tool
/usr/share/emacs/site-lisp/mozc
/usr/share/emacs/site-lisp/mozc/mozc.el
/usr/share/emacs/site-lisp/mozc/mozc.elc
/usr/share/emacs/site-lisp/site-start.d/mozc-init.el
/usr/share/xemacs/site-packages/lisp/mozc
/usr/share/xemacs/site-packages/lisp/mozc/mozc.el
/usr/share/xemacs/site-packages/lisp/mozc/mozc.elc
/usr/share/xemacs/site-packages/lisp/site-start.d/mozc-init.el
References
Summary
In this tutorial we learn how to install mozc
on Fedora 34 using yum and dnf.