Table of Contents

CentOS 7 Install

Install Problem and Fix

Get Everything working in VirtualBox

fix internet connection for virtualbox install(outdate)

fix mouse integration in VirtualBox install (outdate)

  1. make sure EPEL repo already installed
  2. install folowing
    sudo yum install dkms
    sudo yum groupinstall "Development Tools"
    sudo yum install kernel-devel
  3. restart computer, then install guess tool as usual

Fix Yum can't find anything after dropbox install

USB Wifi not show wifi list

Customize OS

Other Desktop environment

install MATE lightweight desktop environment

  1. get fedora repo with ask yes
    sudo yum install epel-release
  2. get all user install MATE
    sudo yum groupinstall "MATE Desktop"
  3. restart and login button gear icon will give the choice list now
  4. if you want uninstall
    sudo yum groupremove "MATE Desktop"

disable alt move window hotkey

create system shortcut

Install Library

sudo yum install libGLU

Install App list

Firefox Update

Dukto - lan transfer tool

filezilla

CMake

  1. download source code: https://cmake.org/download/
  2. unpack and cd to the folder and command (ref: link)
    ./bootstrap
    gmake
    sudo gmake install
    cmake --version

PySide and PySide2

  1. (For CentOS 7) if you not add this repo yet, than add it
    rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
  2. get pip installed
    sudo yum upgrade python-setuptools
    sudo yum install python-pip python-wheel
    sudo python -m pip install pyside2

gvim - GUI vim

atom editor

unrar

  1. (For centos 7) use these cmd to install it
    ## 64 bit linux ##
    wget https://www.rarlab.com/rar/rarlinux-x64-5.5.0.tar.gz
    tar -zxvf rarlinux-x64-5.5.0.tar.gz
    cd rar
    sudo cp -v rar unrar /usr/local/bin/
    cd ..
    rm -r rar

7z

Apache web server

  1. install
    sudo yum install httpd mod_ssl
  2. start server
    sudo /usr/sbin/apachectl start
  3. add firewall to allow port 80
    sudo iptables -I INPUT -p tcp --dport 80 -j ACCEPT
  4. enable /var/www folder writting

ref

Problem and Fix