2019-10-20
Install †
GUI
Update †
#sh(bash){{
yum update -y
}}
Extra repositories †
#sh(bash){{
# EPEL
yum install epel-release
# Cert Forensics Tools
# https://forensics.cert.org/#centossupport
dnf config-manager --set-enabled PowerTools
yum install https://forensics.cert.org/cert-forensics-tools-release-el8.rpm
}}
Basic Setup †
English user directries †
#sh(bash){{
LANG=C xdg-user-dirs-gtk-update
}}
IME(KKC) †
#sh(bash){{
yum install ibus ibus-kkc
}}
Japanese fonts †
#sh(bash){{
curl -L https://ipafont.ipa.go.jp/old/ipafont/IPAfont00303.php > IPAfont00303.zip
unzip IPAfont00303.zip
mkdir /usr/share/fonts/ipa
mv IPAfont00303/*ttf /usr/share/fonts/ipa/ -iv
fc-cache -fv
}}
ログオフ&ログイン後、Region & Languageから「日本語(かな漢字)」が利用できるようになる。
Qemu KVM †
#sh(bash){{
yum install libvirt-daemon libvirt virt-manager
}}
Filesystem †
ExFAT support †
WindowsでExFAT形式でフォーマットしたUSBメモリを使いたい場合などには必要。
#sh(bash){{
# CertForensicsTools must be enabled
yum install exfat-utils
}}