vlmcsd-1111-2017-06-17-Hotbird64\binaries\Linux\intel\static\vlmcsd-x64-musl-static
mkdir /usr/local/vlmcsd
cp vlmcsd-x64-musl-static /usr/local/vlmcsd/
mv vlmcsd-x64-musl-static vlmcsd
chmod u+x vlmcsd
./vlmcsd
Category: Centos7
ClamAV installation
yum install epel-release
yum repolist (epel/x86_64 Extra Packages for Enterprise Linux 7 – x86_64)
yum –disablerepo=”*” –enablerepo=”epel” list available
yum install clamav-server clamav-data clamav-update clamav-filesystem clamav clamav-scanner-systemd clamav-devel clamav-lib clamav-server-systemd -y
[root@server_for_product ~]#sed -i -e ‘s/^Example/#Example/’ /etc/freshclam.conf
[root@server_for_product ~]#sed -i -e ‘s/^Example/#Example/’ /etc/clamd.d/scan.conf
freshclam
/etc/clam.d/scan.conf (LocalSocket /var/run/clamd.scan/clamd.sock)
systemctl enable clamd@scan
ln -s ‘/usr/lib/systemd/system/[email protected]’ ‘/etc/systemd/system/multi-user.target.wants/[email protected]’
systemctl start clamd@scan
systemctl status clamd@scan
clamscan -r root
ip address change
ip addr (ip link)
ens33
cd /etc/sysconfig/network-scripts
vi ifcfg-ens33
ONBOOT=yes
service network restart
yum install net-tools (ifconfig)
Centos7安装tensorflow
1、基础软件安装
yum install gcc
yum install gcc-c++
yum install glibc-headers
yum install -y openssl openssl-devel
yum install python-devel libffi-devel openssl-devel Continue reading “Centos7安装tensorflow”
Redis-server installation
wget http://download.redis.io/releases/redis-4.0.9.tar.gz
tar -zxvf redis-4.0.9.tar.gz
cd redis-4.0.9/src
make
cd src
make install Continue reading “Redis-server installation”
DeepQ&A installation
cd ~/qa
git clone https://github.com/Conchylicultor/DeepQA.git
cd DeepQA
python3 -m nltk.downloader punkt
pip3 install django channels Redis asgi_redis
install redis-server
pip3 install tensorflow
pip3 install tqdm Continue reading “DeepQ&A installation”
Centos7 安装python3.5 并存python2.7,兼容yum及Gnome
前言
由于需要使用Python3,而Centos7中默认安装的是2.7版本,于是进行升级安装。本文汇总我再安装及安装后的问题解决,希望能给大家一点帮助。
Python3下载安装
CentOS7默认安装了python2.7.5,当需要使用python3的时候,可以手动下载Python源码后编译安装。 Continue reading “Centos7 安装python3.5 并存python2.7,兼容yum及Gnome”
Centos7 install Shadowsocks and KCPTUN
安装命令
sh -c “$(curl -fsSL https://bit.ly/2GppK6X)”
# 或者
sudo sh -c “$(curl -fsSL https://bit.ly/2GppK6X)”
安装完毕后查看ss配置
Centos7 Kernel upgrade
rpm –import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
rpm -Uvh http://www.elrepo.org/elrepo-release-7.0-3.el7.elrepo.noarch.rpm
测试源是否启用成功,执行:
yum repolist enabled Continue reading “Centos7 Kernel upgrade”