使用 ultraISO 制作 linux系统U盘启动盘
分类:
系统相关 时间:
2020-10-18 16:52:03
阅读次数:
36
在 ubuntu 中通过修改 /etc/default/locale 文件的内容来实现中文环境和英文环境的切换。 ...
分类:
系统相关 时间:
2020-10-18 16:43:59
阅读次数:
35
1.SSH sudo apt-get install openssh-server 2.更换国内源 备份:sudo cp /etc/apt/sources.list /etc/apt/sources_init.listsudo nano /etc/apt/sources.listdeb http:/ ...
分类:
系统相关 时间:
2020-10-18 16:40:17
阅读次数:
32
一 mysql 安装[root@rh8 ~]# yum module install mysql # 下载mysql[root@rh8 ~]# systemctl enable --now mysqld # 启动MySQL服务注:说明安装MySQL 8.0成功了。 [root@rh8 ~]# mys ...
分类:
数据库 时间:
2020-10-18 10:14:17
阅读次数:
33
[root@localhost ~]# yum install -y gcc gcc-c++ pcre pcre-devel zlib zlib-devel openssl openssl-devel perl-devel perl-ExtUtils-Embed gd-devel [root@loc ...
分类:
其他好文 时间:
2020-10-18 10:12:36
阅读次数:
31
#!/bin/bash#by wwp 2020-10-14#for openssh>ip.listpasswd=6rpm -q expect &>/dev/nullif [ $? -ne 0 ] ; then yum -y install expect >/dev/null && echo "exp ...
分类:
其他好文 时间:
2020-10-18 09:39:56
阅读次数:
15
1.基本介绍 前后端不分离:https://www.cnblogs.com/xiaonq/p/12363589.html 1.1 安装 pip install drf-haystack # django的开源搜索框架 pip install whoosh # 搜索引擎 pip install jie ...
分类:
其他好文 时间:
2020-10-18 09:21:28
阅读次数:
22
问题如下:证书的证书链如下图,为根证书加中间证书加证书本身。本地的客户端可能因一定的原因没有中间证书,这会导致证书不能被识别。在Netscaler上,进入TrafficManagement/SSL/SSLCertificate/CACertificates点Install,上传CA的中间证书和根证书。接下来点选gateway的证书,在selectaction中选择link。其link的证书会自动选
分类:
Web程序 时间:
2020-10-16 11:16:28
阅读次数:
30
安装及使用 安装 npm install typescript -g 复制代码 或 yarn global add typescript 复制代码 使用 新建demo.ts: function test() { let web: string="hello world" console.log(we ...
分类:
其他好文 时间:
2020-10-16 11:07:32
阅读次数:
22
13.8 npm(nodejs package manager) 使用命令行安装包: 1. cd切换到项目目录下,执行初始化操作 npm init/npm init -y 2. 安装其他依赖包 npm install jquery npm install jquery@1.11.13 npm ins ...
分类:
Web程序 时间:
2020-10-16 10:45:35
阅读次数:
30