查看系统、内核cat/etc/redhat-release//查看系统uname-r//查看内核查看CPUgrep"CPU"/proc/cpuinfo运行时间uptime查看系统位数getconfLONG_BIT查看硬盘和分区df-h软件安装与卸载yumupdate//更新系统yummakecache软件名//更新软件源缓存yumsearch软件名//搜索软件yuminstal
分类:
系统相关 时间:
2020-02-24 22:15:09
阅读次数:
90
#线程锁 又叫 互斥锁(Mutex) import threading,time def run(n): lock.acquire() #申请锁 global num num+=1 time.sleep(1) lock.release() #释放锁 lock = threading.Lock() # ...
分类:
编程语言 时间:
2020-02-24 17:06:28
阅读次数:
97
MySql的安装 下载地址:https://downloads.mysql.com/archives/community/ `rpm ivh mysql57 community release el7 3.noarch.rpm` 查找安装位置: `rpm ql mysql community cli ...
分类:
数据库 时间:
2020-02-24 16:57:04
阅读次数:
85
1.在pom.xml中引入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-log4j</artifactId> <version>1.3.8.RELEASE</ve ...
分类:
编程语言 时间:
2020-02-24 15:11:02
阅读次数:
67
一、前言 今天实现的主要功能是通过vtk读取jpg图片(只能够读取.jpg文件),然后通过QT显示出来,整个程序的框架是QT GUIApplication 版本: VS 2019 VTK 8.2.0 QT 5.13.1 版本配置 VS 为release x64(这个是工程建立的时候设置的解决方案属性 ...
分类:
其他好文 时间:
2020-02-24 15:00:03
阅读次数:
200
说明:本文为Windows环境下的相关安装示例,适用于需要用Logstash和Logstash-input-jdbc将数据从数据库导入到Elasticsearch中的场景。 一、前置条件 电脑上安装有JDK8或者以上版本,安装有ElasticSearch,并启动。 二、安装并验证Logstash 1 ...
分类:
数据库 时间:
2020-02-24 13:23:03
阅读次数:
69
生产环境 安装Docker服务 添加代理 "官方原文(英)" 启动服务 END ...
分类:
其他好文 时间:
2020-02-24 09:50:44
阅读次数:
62
配置步骤: 1.导入Spring整合Junit的jar(坐标): <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>5.0.2.RELEASE</vers ...
分类:
编程语言 时间:
2020-02-24 00:48:12
阅读次数:
86
没有添加spring-context-support-3.2.4.RELEASE.jar包pom配置<dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> ...
分类:
编程语言 时间:
2020-02-23 22:03:26
阅读次数:
54