系统调优的4大子系统:1、查看系统中使用cpu最多的进程top->pps-aux--sort-pcpu|more2、找出系统中使用内存最多的进程top->mps-aux--sort-rss|more3、找到系统对磁盘读写最多的进程iostat和iotopiostat-d-k-p/dev/sdaiotop-o-d24、找到系统中使用网络最多的进程nload和nethogs
分类:
其他好文 时间:
2019-12-24 13:41:28
阅读次数:
53
<template> <el-select ref="select_icon" v-model="addModel.icon" @change="iconChange"> <el-option v-for="(item,index) in iconOptions" :key="index" :lab ...
分类:
其他好文 时间:
2019-12-24 13:40:59
阅读次数:
588
<!-- flowchart 箭头图标 勿删 --> mac route命令同时访问内外网 sudo route -n add -net 192.168.0.0 -netmask 255.255.255.0 192.168.5.254 sudo route -n add -net 192.168.3 ...
分类:
系统相关 时间:
2019-12-24 13:40:36
阅读次数:
1420
前话: 像素在web开发中几乎天天用到,但到底什么是像素,移动端和桌面端的像素有区别吗,缩放对像素有影响吗,视网膜屏幕和像素有什么关系?关于这些问题,可能就不清楚了。本文将介绍关于像素的相关知识 什么是像素: 像素,又称画素,是图像显示的基本单位,译自英文“pixel”,pix是英语单词pictur ...
分类:
移动开发 时间:
2019-12-24 13:40:21
阅读次数:
118
1 2 $q=new Question(); 3 $q->save(['qcount'=>$qs->qcount+1],['id'=>input('qid')]); 4 /////// 5 var_dump((new Question())->db()->getLastSql()); //= 6 / ...
分类:
数据库 时间:
2019-12-24 13:40:02
阅读次数:
215
安装conda后取消命令行前出现的base,取消每次启动自动激活conda的基础环境 方法一: 每次在命令行通过conda deactivate退出base环境回到系统自动的环境 方法二 1,通过将auto_activate_base参数设置为false实现: conda config set au ...
分类:
其他好文 时间:
2019-12-24 13:39:48
阅读次数:
519
本节的知识摘要: 基于常规 tcp / udp 端口扫描的内网存活探测 基于 icmp 的内网存活探测 基于 arp 的内网存活探测 加载外部脚本进行的各种存活探测 基础环境说明:: WebServer-IIS7 假设为目标边界的一台 windows web 服务器,公网 ip:192.168.3. ...
分类:
其他好文 时间:
2019-12-24 13:39:35
阅读次数:
125
#crontab定时任务(周一全量,周二至周日增量) 30 0 * * 1 nohup sh /data/rman/script/rmanfull.sh > /data/rman/script/rman.log &30 0 * * 0,2,3,4,5,6 nohup sh /data/rman/sc ...
分类:
数据库 时间:
2019-12-24 13:39:21
阅读次数:
98
最近线上服务经常 出现cpu达到100%的问题,发现都是执行oracle操作的方法就没有返回。经过排查,最后定位到cpu消耗在以下方法 System.Collections.Generic.Dictionary`2<system.type,system.boolean>.FindEntry (... ...
分类:
其他好文 时间:
2019-12-24 13:39:07
阅读次数:
82
基于node npm & vue-cli & element UI创建vue单页应用 开发环境 Win 10 node-v10.15.3-x64.msi 下载地址: https://nodejs.org/en/ 安装node 安装vue-cli 1、安装node-v10.15.3-x64.msi 2 ...
分类:
其他好文 时间:
2019-12-24 13:38:48
阅读次数:
133
1,for (var i = 0; i < 5; i++) { console.log(i); } 这几行代码会输出什么? 输出 0 1 2 3 4 2,for (var i = 0; i < 5; i++) { setTimeout(function() { console.log(i); }, ...
分类:
Web程序 时间:
2019-12-24 13:37:52
阅读次数:
95
#include <stdio.h>#include <stdlib.h>const int N=5;// 定义结构体类型struct student,并定义STU为其别名 typedef struct student {long no;char name[20];int score; }STU;/ ...
分类:
其他好文 时间:
2019-12-24 13:37:21
阅读次数:
62
最近一直有用到解析各种数据,主要是用FastJson进行数据解析,其中一个重要的类为JSONObject,今天有时间,所以进行总结一下: JSONobject是FastJson提供的对象,在api中是用一个私有的常量map进行封装的,实际就是一个map,只不过FastJson对其进行了封装, 添加了 ...
分类:
Web程序 时间:
2019-12-24 13:37:03
阅读次数:
98
题目:https://nanti.jisuanke.com/t/41399 思路:差分数组 区间内操作次数为奇数次则灯为打开状态 #include<bits/stdc++.h> using namespace std; map<int,int>mp; int main() { int T; scan ...
分类:
其他好文 时间:
2019-12-24 13:36:45
阅读次数:
69
1. 概述 1. shell 中基于 $(()) 的 算数运算 2. 背景 1. 复习 shell 脚本 2. 凑数吧 3. 准备 1. 环境 1. os 1. centos7 1. 算数运算 1. 代码 ...
分类:
系统相关 时间:
2019-12-24 13:36:16
阅读次数:
94
TeamViewer的替代品:realVNC official web: realvnc: https://www.realvnc.com/ steps: 1. 在需要被控制的PC上装上realVNC的服务软件(real VNC server) "download" 2. 在控制端PC上装上real ...
分类:
其他好文 时间:
2019-12-24 13:36:04
阅读次数:
285
工厂模式 Simple Factory 对于工厂模式而言,可能大家并不会陌生,顾名思义所谓工厂就是啥事都给你做了,顾客等着消费产品就好了,首先咋们就来聊聊这简单工厂模式的道道 废话不多说先上代码 可见简单工厂模式的实现逻辑较为简单,从步骤上来讲,先写一个接口,然后写一堆操作类去实现接口中的getRe ...
分类:
其他好文 时间:
2019-12-24 13:35:50
阅读次数:
68