码迷,mamicode.com
首页 >  
搜索关键字:show status    ( 31199个结果
centos7 修改时间
2021-07-28 查看日志时发现系统时间不正确,故修改时间 # 查看当前系统时间 date # 修改当前系统时间 date -s "2021-7-28 17:03:00" # 查看硬件时间 hwclock --show # 修改硬件时间 hwclock --set --date "2021-7- ...
分类:其他好文   时间:2021-07-28 21:37:03    阅读次数:0
java注解
注解 anno1 package com.ding.anno1; /** * @Description TODO * @Author 丁帅帅 * @Date 21/07/24 23:41 * @Version 1.0 */ public class Fu { public void show(){ ...
分类:编程语言   时间:2021-07-26 16:52:58    阅读次数:0
mysql数据库(11):恢复数据
(1)先登录 mysql -h localhost -u root -p (2)查看数据库有哪些 show databases; (3)新建一个空表text create database text ; ####新建数据库text ,等下导表用### (4)删除数据库chuan drop datab ...
分类:数据库   时间:2021-07-26 16:51:34    阅读次数:0
打造一个window桌面应用:在线聊天对话机器人
大家好,我是辰哥~~~ 本文目标:打造一个window桌面应用:在线聊天对话机器人。 今天辰哥教大家做一个在线聊天对话机器人桌面应用,已经打包成exe可执行文件,读者可以直接拿来使用, 先上演示图 聊天客户端桌面应用 设计Ui:Pyqt5 对话回答:图灵机器人 打包EXE:Pyinstaller 本 ...
分类:Windows程序   时间:2021-07-22 17:36:08    阅读次数:0
sshd服务(使用ssh协议远程开启其他主机shell的服务)
###一.sshd简介 sshd(secure shell)服务使用ssh协议远程开启其他主机shell的服务。首先需要打开sshd 服务 ###二.sshd服务状态调整 systemctl status sshd 查看服务状态 systemctl start sshd 打开服务 systemctl ...
分类:系统相关   时间:2021-07-21 17:39:31    阅读次数:0
centos7防火墙配置
2021-07-20 1.查看firewall服务状态 systemctl status firewalld 2.查看firewall状态 firewall-cmd --state 该命令需要在超级用户root身份下使用 3.重启,关闭,开启firewall服务 # 重启 systemctl res ...
分类:其他好文   时间:2021-07-21 17:31:40    阅读次数:0
Springboot-微服务-微服务组件之服务管理-Zuul网关
#Springboot-微服务-微服务组件之服务管理-Zuul网关 Zuul.简介 官网:https://github.com/Netflix/zuul Zuul加入后的架构 不管是来自于客户端(PC或移动端)的请求,还是服务内部调用。一切对服务的请求都会经过Zuul这个网关,然后再由网关来实现 鉴 ...
分类:编程语言   时间:2021-07-19 16:48:33    阅读次数:0
centos8 yum源
cat CentOS-Base.repo # CentOS-Base.repo # # The mirror system uses the connecting IP address of the client and the # update status of each mirror to p ...
分类:其他好文   时间:2021-07-19 16:46:42    阅读次数:0
CentOS7关闭防火墙
CentOS7防火墙命令有变化: CentOS7: systemctl status firewalld.service 查看防火墙状态 systemctl stop firewalld.service 本次访问关闭防火墙 systemctl disable firewalld.service 从下 ...
分类:其他好文   时间:2021-07-05 18:49:21    阅读次数:0
pintos操作系统实验Project1-优先级
既然是依据优先级运行线程,那我们就来看看优先级在线程中是怎么存在的 1 struct thread 2 { 3 /* Owned by thread.c. */ 4 tid_t tid; /* Thread identifier. */ 5 enum thread_status status; /* ...
分类:其他好文   时间:2021-07-05 17:24:12    阅读次数:0
31199条   1 2 3 4 ... 3120 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!