显示有关跟该名称有关进程 //显示出所有的java进程,去处掉当前的grep进程。 ps -ef|grep java|grep -v grep 显示该用户下所有进程 //显示root用户所有进程 pgrep -l -u root 杀进程 //杀单个进程 kill -9 21990(pid) //杀所 ...
分类:
系统相关 时间:
2020-08-12 15:57:03
阅读次数:
76
preg_filter — 执行一个正则表达式搜索和替换 preg_grep — 返回匹配模式的数组条目 preg_last_error — 返回最后一个PCRE正则执行产生的错误代码 preg_match_all — 执行一个全局正则表达式匹配 preg_match — 执行一个正则表达式匹配 p ...
分类:
Web程序 时间:
2020-08-10 13:19:29
阅读次数:
95
JDK下载与配置 Hadoop下载,安装与部署 由于Hadoop是由java编程而写,所有运行环境需要java支持,Hadoop需java1.6及以上支持。 1.JDK 下载与配置 查看当前系统jdk,chuxianOpen JDK 需要卸载 rpm -qa | grep jdk rpm -e -- ...
分类:
其他好文 时间:
2020-08-08 17:41:47
阅读次数:
71
centos7下YUM mysql5.7安装与配置
分类:
数据库 时间:
2020-08-08 00:41:36
阅读次数:
92
var aa = ["12", "34", "", "423", " "]; console.log($.grep(aa, function(n) {return $.trim(n).length > 0;})) var aaa = aa.filter(s => $.trim(s).length > ...
分类:
编程语言 时间:
2020-08-05 19:44:37
阅读次数:
186
##1.显示三个用户root、 mage、 wang的UID和默认shell 案例思路 **分析:**使用^和|匹配出三个用户,在用cut取列。 [root@localhost data]# cat /etc/passwd |grep -E "^(root|mage|wang)"|cut -d: - ...
分类:
其他好文 时间:
2020-08-05 18:12:39
阅读次数:
87
1 2 root@ubuntu:/home/ubuntu# lspci |grep -i vga 02:00.0 VGA compatible controller: NVIDIA Corporation GM200 [GeForce GTX TITAN X] (rev a1) 显示当前GPU使用情 ...
分类:
其他好文 时间:
2020-08-05 14:28:49
阅读次数:
79
CentOS查看CPU、内存、版本等系统信息 CentOS查看系统信息 一:查看CPU more /proc/cpuinfo | grep "model name" grep "model name" /proc/cpuinfo 如果觉得需要看的更加舒服 grep "model name" /pro ...
分类:
其他好文 时间:
2020-08-05 10:32:07
阅读次数:
71
首先, linux下CPU的相关信息都保存在/proc/cpuinfo文件内,所以第一步是: cat /proc/cpuinfo 然后,每个cpu的线程都对应一个physical id属性,这个属性标定线程属于哪个具体的物理cpu编号,因此接下来: cat /proc/cpuinfo | grep ...
分类:
系统相关 时间:
2020-08-04 23:58:09
阅读次数:
82