- Disable SELinux in `/etc/selinux/config` (need reboot)
- Install RPMFusion free&nofree repos rpm
- Install Wifi BCM4313 driver `yum install kmod-wl` after Step 2
- Install Adobe and Google repos rpm
- Install 163 mirror repos (http://mirrors.163.com/.help/fedora.html)
- Install build-essential alternative, `yum install make automake gcc gcc-c++ kernel-devel` or `yum-builddep sqlite` or `yum groupinstall “Development Tools”`
- Configure yum use proxy in /etc/yum.conf
# The proxy server - proxy server:port number proxy=http://mycache.mydomain.com:3128 # The account details for yum connections proxy_username=yum-user proxy_password=qwerty
- Install mplayer gstreamer-ffmpeg
- Link a font to .mplayer/subfont.ttf
- Mplayer config for utf8 subtitle file: `nofontconfig=yes` and `utf8=yes`
- Create a .sh file in ~/.kde/env/ to provide environment variables for all desktop apps, ~/.profile only works for terminal
- System Settings -> File Association, change application of Video files to mplayer
- System Settings -> Shortcuts and Gestures -> Global Keyboard Shortcuts to learn and adjust keyboard shortcuts
- System Settings -> Software Management -> (the wrench icon at the right) -> “Settings”: set “Check for Updates” to Never
- System Settings -> Startup & Shutdown -> Service Manager, uncheck & stop helpless services (ApperMoniter without auto updating)
Use fcitx
yum install fcitx fcitx-qt4 fcitx-pinyin kcm-pinyin kcm-fcitx
Then edit your X11 profile. For KDE4, it’s one file in ~/.kde/env sourced by startkde
export GTK_IM_MODULE=fcitx export QT_IM_MODULE=fcitx export XMODIFIERS="@im=fcitx" # Run fcitx LC_ALL=zh_CN.UTF-8 LANG=zh_CN.UTF-8 fcitx
Fedora uses systemd instead of init script to manage services. systemctl is the command line tool to manage services.
sudo systemctl list-unit-files
Use the above cmd to find your service
sudo systemctl enable SERVICE_NAME
Use the above cmd to enable your service
sudo systemctl start SERVICE_NAME
Use the above cmd to run your service
sudo su wget https://dl-ssl.google.com/linux/linux_signing_key.pub rpm --import linux_signing_key.pub cat << EOF > /etc/yum.repos.d/google-chrome.repo [google-chrome] name=google-chrome - \$basearch baseurl=http://dl.google.com/linux/chrome/rpm/stable/\$basearch enabled=1 gpgcheck=1 gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub EOF yum install google-chrome-stable