Skip to content

Instantly share code, notes, and snippets.

@TheWaWaR
Created August 29, 2014 13:12
Show Gist options
  • Save TheWaWaR/b0749776e34585f41b79 to your computer and use it in GitHub Desktop.
Save TheWaWaR/b0749776e34585f41b79 to your computer and use it in GitHub Desktop.
Fedora 20 install note

Install network card driver

Install dependencies

    cd /run/media/weet
    su
    mkdir dvd
    mount [SOME-PATH]/Fedora-20-x86_64-DVD.iso dvd

    vi /etc/yum.repos.d/local-install.repo
    
        [local-install]
        name=Fedora Core(local) $releasever - $basearch
        baseurl=file:///run/media/weet/dvd
        enabled=1
        gpgcheck=0

    yum --disablerepo=\* --enablerepo=local-install groupinstall "Development Tools"

Install the driver

    # Download from here: http://sourceforge.net/projects/e1000/files/e1000e%20stable/3.1.0.2/
    tar -xf e1000e-3.1.0.2.tar.gz
    cd e1000e-3.1.0.2/src
    sudo make
    sudo make install

Install video card driver

    wget ftp://download.nvidia.com/XFree86/Linux-x86_64/343.13/NVIDIA-Linux-x86_64-343.13.run
    chmod u+x NVIDIA-Linux-x86_64-343.13.run
    su
    systemctl stop gdm
    ./NVIDIA-Linux-x86_64-343.13.run
    reboot

    ################################################################################
    # Other way:: https://ask.fedoraproject.org/en/question/7300/properly-install-nvidia-drivers/
    su
    yum -y update
    yum -y localinstall --nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-branched.noarch.rpm
    yum -y localinstall --nogpgcheck http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-branched.noarch.rpm
    yum install akmod-nvidia xorg-x11-drv-nvidia-libs
    
    mv /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r)-nouveau.img
    dracut /boot/initramfs-$(uname -r).img $(uname -r)
    nvidia-xconfig
    reboot

Install fcitx

    yum install fcitx fcitx-configtool fcitx-table fcitx-sunpinyin

    # export GTK_IM_MODULE=fcitx  
    # export QT_IM_MODULE=fcitx  
    # export XMODIFIERS="@im=fcitx"

Install freetype-infinality

    su
    rpm -Uvh http://www.infinality.net/fedora/lin...0-1.noarch.rpm
    yum install fontconfig-infinality freetype-infinality
    reboot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment