Actual stable latest kernel in CentOS 7

Устанавливаем актуальную версию ядра в CentOS 7.

Добавляем репозиторий elrepo-kernel из elrepo-release:

rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
yum install http://www.elrepo.org/elrepo-release-7.0-2.el7.elrepo.noarch.rpm

Включаем репозиторий elrepo-kernel:

yum install -y yum-utils
yum-config-manager --enable elrepo-kernel

Установка (какая …

more ...

CentOS 7 install python 3.5 rh sclo

Python35 on CentOS 7

Install packages

yum install -y centos-release-scl
yum install -y rh-python35-python

Enable rh-python35 globally for all users

cat > /etc/profile.d/rh_python35.sh <<_EOF
#!/bin/sh

source /opt/rh/rh-python35/enable
_EOF

Activate without relogin

. /etc/profile.d/rh_python35.sh

List available scl packages

scl --list

Activate …

more ...

CentOS 7 install modern git 2.x rh sclo

Install requirements

yum install -y scl-utils centos-release-scl
yum install -y sclo-git25

Enable git globally for all users

cat > /etc/profile.d/sclo_git25.sh <<_EOF
#!/bin/sh

source /opt/rh/sclo-git25/enable
source /opt/rh/sclo-git25/root/usr/share/bash-completion/completions/git
_EOF

Activate without relogin

. /etc/profile.d/sclo_git25.sh …
more ...

Centos 7 broken nfsdcltrack: sqlite_insert_client

После установки и настройки nfs сервера под Centos 7 в логах были обнаружены ошибки:

nfsdcltrack[3706]: sqlite_insert_client: insert statement prepare failed: table clients has 2 columns but 3 values were supplied

Быстрый поиск привел в багзиллу, где нашлось решение, проблема была в структуре базы, для начала нужно открыть базу:

sqlite3 …
more ...

Centos 6 install python 2.7

Centos 6 install python2.7

yum install centos-release-SCL
yum install python27 python27-python-virtualenv
echo '/opt/rh/python27/root/usr/lib64' > /etc/ld.so.conf.d/python27.conf && ldconfig
virtualenv --prompt="(proj_name)" -p /opt/rh/python27/root/usr/lib/python2.7 .env

А вот так лучше не стоит делать:

yum install -y …
more ...