博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
一句话一个点
阅读量:6277 次
发布时间:2019-06-22

本文共 1826 字,大约阅读时间需要 6 分钟。

cat a|python -m json.tool

HBase don't split a single row.

JVM中CMS全拼concurrent (low pause time) garbage collector (also known as CMS)

mvn clean install -DskipTests

fdisk -l

netstat -tunlp

netstat -nlp

rpm -ivh XXX.rpm

du -h --max-depth=1 work/testing

hadoop jar XX.jar -libjars protobuf-java-2.4.0a.jar /log

 ./hadoop fs -copyFromLocal local.txt /remote.txt 
 
ps axu|grep udpcopy
nohup sh XXX.sh & 真正的后台执行
 
tcppump
 
yum -y erase libstdc++.so.5
hadoop balancer -threshold 10 >>balancer.log 2>&1 &
git clone https://github.com/openstack-dev/devstack.git -b stable grizzly
ll /lib/libc.so.6
 

所有运行的程序同时能打开的文件总数,服务器支持的最大并发

cat /proc/sys/fs/file-max
 

G:\sts\protobuf\message>protoc -I=G:\sts\protobuf\message --java_out=G:\sts\prot

obuf\src\main\java G:\sts\protobuf\message\addressbook.proto

 

netstat -ntl  | grep 13091 查看使用的

netstat -an | grep :13091 查看去监听的

iftop -i bond0 -n 查看带宽利用

sed s/6348/6319/ redis_6348.conf > redis_6319.conf 字符替换

 

echo 3 > /proc/sys/vm/drop_caches释放缓存

echo 0 > /proc/sys/vm/drop_caches马上回复,否则影响性能

 

-Dsun.awt.disablegrab=true

 

find a specified string in all the java files:

find . -name '*.java' | xargs grep -l 'string'

or grep -r "String" --include=*.java .

if there are any filename or directories have spaces then the safest way to do this is:

find . -name '*.java' -print0 | xargs -0 grep -l 'string'

grep -i -r -n --include="*.f" gendetl_start_js .

 

mvn -Dtest=org.package.class#method test run unit test for one class and method

# check database size

SELECT table_schema                                        "DB Name",     Round(Sum(data_length + index_length) / 1024 / 1024 / 1024, 1) "DB Size in GB"  FROM   information_schema.tables  GROUP  BY table_schema;

ubuntu 中文输入法 推荐第一种Google 中文输入法

 http://ubuntuhandbook.org/index.php/2016/07/2-best-chinese-pinyin-im-ubuntu-16-04/

wmic process where caption="KDGTemplateDesigner.exe" get caption,commandline /value

转载地址:http://ndyva.baihongyu.com/

你可能感兴趣的文章
mysql常用语法
查看>>
Morris ajax
查看>>
【Docker学习笔记(四)】通过Nginx镜像快速搭建静态网站
查看>>
ORA-12514: TNS: 监听程序当前无法识别连接描述符中请求的服务
查看>>
<转>云主机配置OpenStack使用spice的方法
查看>>
java jvm GC 各个区内存参数设置
查看>>
[使用帮助] PHPCMS V9内容模块PC标签调用说明
查看>>
关于FreeBSD的CVSROOT的配置
查看>>
基于RBAC权限管理
查看>>
基于Internet的软件工程策略
查看>>
数学公式的英语读法
查看>>
留德十年
查看>>
迷人的卡耐基说话术
查看>>
PHP导出table为xls出现乱码解决方法
查看>>
PHP问题 —— 丢失SESSION
查看>>
Java中Object类的equals()和hashCode()方法深入解析
查看>>
数据库
查看>>
Vue------第二天(计算属性、侦听器、绑定Class、绑定Style)
查看>>
dojo.mixin(混合进)、dojo.extend、dojo.declare
查看>>
Python 数据类型
查看>>