1 2 3 4 5 ··· 8 下一页
摘要: 1.安装nvm curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash 2.重启电脑 reboot 3.命令行下测试NVM是否安装成功 nvm --version 4.设置系统默认版本: nvm 阅读全文
posted @ 2023-12-22 16:34 闪光123 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 备份原始的 EPEL 存储库配置文件(可选):在更改前,建议您先备份原始的 EPEL 存储库配置文件,以便在需要时恢复到默认设置。在终端中执行以下命令备份: sudo cp /etc/yum.repos.d/epel.repo /etc/yum.repos.d/epel.repo.backup 编辑 阅读全文
posted @ 2023-08-04 14:34 闪光123 阅读(125) 评论(0) 推荐(0) 编辑
摘要: Anaconda 配置 Anaconda 安装包可以到 http://mirrors.aliyun.com/anaconda/archive/ 下载。 Linux用户可以通过修改用户目录下的 .condarc 文件。 Windows 用户无法直接创建名为 .condarc 的文件,可先执行 cond 阅读全文
posted @ 2023-07-28 15:35 闪光123 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 一、firewalld防火墙:1.firewalld的基本使用启动: systemctl start firewalld 查状态: systemctl status firewalld 停止: systemctl stop firewall 禁用: systemctl disable firewal 阅读全文
posted @ 2023-03-10 16:00 闪光123 阅读(1406) 评论(0) 推荐(0) 编辑
摘要: 找了大半天的问题,结果是有个httpd的线程开机自动启动,把端口占用了 阅读全文
posted @ 2023-03-03 16:04 闪光123 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 一、安装qt5.9.2 1.安装依赖 yum groupinstall "C Development Tools and Libraries"yum install libgl libgl-develyum install mesa-libGL-devel mesa-libGLU-devel fre 阅读全文
posted @ 2022-01-26 14:20 闪光123 阅读(1094) 评论(0) 推荐(0) 编辑
摘要: 1.下载ssl证书的Nginx版本,在项目根目录新建https空文件夹,把crt文件和key文件复制到https文件夹中; 2.安装依赖:npm i fs http https 3.修改www文件的内容: var https = require('https'); var fs = require( 阅读全文
posted @ 2022-01-18 15:47 闪光123 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 一 安装前准备 1、检查是否已经安装过mysql,执行命令 rpm -qa | grep mysql 如果已存在,则执行删除命令 后边为Mysql目录 rpm -e --nodeps mysql-xxxx 2、查询所有Mysql对应的文件夹 whereis mysqlm find / -name m 阅读全文
posted @ 2022-01-17 17:46 闪光123 阅读(293) 评论(0) 推荐(0) 编辑
摘要: 1.安装pm2: npm install -g pm2 2.在启动文件夹内新建文件processes.json: { "apps": [ { "name": "schedulingBack", "cwd": "/root/zdy/project/schedulingBack", "script": 阅读全文
posted @ 2022-01-14 10:57 闪光123 阅读(632) 评论(0) 推荐(0) 编辑
摘要: wget https://nodejs.org/dist/v18.15.0/node-v18.15.0-linux-x64.tar.xz // 下载 tar xf node-v18.15.0-linux-x64.tar.xz // 解压mv node-v18.15.0-linux-x64 /root 阅读全文
posted @ 2022-01-14 10:19 闪光123 阅读(149) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 8 下一页