Rocky下安装Python3.7.4
1 | # 更新操作系统 |
飞桨安装
1 | python3 -m pip install paddlepaddle==1.8.4 -i https://mirror.baidu.com/pypi/simple |
1 | # 更新操作系统 |
1 | python3 -m pip install paddlepaddle==1.8.4 -i https://mirror.baidu.com/pypi/simple |
1 | 参考文档:[https://www.cnblogs.com/mysql-dba/p/7061300.html](https://www.cnblogs.com/mysql-dba/p/7061300.html) |
第三方插件:第三方插件
1 | yum list| grep mysql |
官方文档传送门: https://dev.mysql.com/doc/refman/5.7/en/connection-control-installation.html
中文文档:https://www.docs4dev.com/docs/zh/mysql/5.7/reference/connection-control-installation.html
网友文档:https://blog.csdn.net/leonpenn/article/details/104790469
1 |
|
1 | yum install gcc gcc-c++ glibc make autoconf openssl openssl-devel pcre-devel pam-deve |
1 | # 备份原来的openssl |
安装openssh
1 | #安装openssh前 将openssl 安装到/usr/local/openssl |
1 | vim /etc/ssh/sshd_config |
1 | df -h |
1 | # if 表示infile |
1 | mkswap /tmp/swap |
1 | swapon /tmp/swap |
1 | free -h |
1 | /tmp/swap swap swap defaults 0 0 |
1 | swapoff /tmp/swap |
从NVIDIA官网上下载所需要的驱动文件(.run)。 https://www.nvidia.cn/Download/index.aspx?lang=cn
具体的选择是:Quadro Series -> K4000 -> Linux 64bit -> English(US)。
三个依赖:gcc,kernel-devel,dkms。要注意kernel-devel要与当前内核版本一致,检查方式如下:
1 | uname -r # 检查当前内核版本 |
我的检查结果是源码有多个版本共存,但后面安装过程正常,应该没什么问题。
1 |
|
先修改.run文件的权限为可执行
$ chmod +x NVIDIA-Linux-x86_64-xxxxxx.run
然后执行!
$ sudo ./NVIDIA-Linux-x86_64-xxxxxx.run
在这过程中遇到的选择:
1: “XXXXXX” 大体意思是现在没有完全退出X Windows
A:退出驱动安装,确认系统完全退出图形界面。比如:
$ init 5 # 进入图形界面
$ systemctl set-default multi-user.target # 准备进入文本模式
$ reboot # 重启后自动进入文本模式,之后再重新run
2:Install NVIDIA‘s 32-bit compatibility libraries?
A:选择NO继续。
3:Would you like to run the nvidia-xconfigutility to automatically update your x configuration so that the NVIDIA x driver will be used when you restart x? Any pre-existing x confile will be backed up.
A:选择YES继续。
安装完成!
1 | # 官方地址 |
1 | yum install -y bison |
1 |
|
1 | 官网下载Glibc2.28,官网地址:http://ftp.gnu.org/gnu/glibc/(选择你想要的版本) |
由于 redis 是用 C 语言开发,安装之前必先确认是否安装 gcc 环境(gcc -v),如果没有安装,执行以下命令进行安装
1 | yum install -y gcc |
1 | wget http://download.redis.io/releases/redis-5.0.3.tar.gz |
5.1前台启动
1 | cd /usr/local/redis/bin/ |
5.2后台启动
从 redis 的源码目录中复制 redis.conf 到 redis 的安装目录
1 | cp /usr/local/redis-5.0.3/redis.conf /usr/local/redis/bin/ |
修改 redis.conf 文件,把 daemonize no 改为 daemonize yes
1 | vi redis.conf |
后台启动
1 | ./redis-server redis.conf |
添加开机启动服务
1 | vi /etc/systemd/system/redis.service |
复制粘贴以下内容:
1 | [Unit] |
复制代码
注意:ExecStart配置成自己的路径
设置开机启动
1 | systemctl daemon-reload |
创建 redis 命令软链接
1 | ln -s /usr/local/redis/bin/redis-cli /usr/bin/redis |
测试 redis
1 | systemctl start redis.service #启动redis服务 |