File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -430,6 +430,7 @@ Eclipse中`Update Project`,选择`Force Update of Snapshots/Releases`
430
430
* Maven编译jar出现:无法确定 T 的类型参数的异常的原因和处理方案: http://www.cnblogs.com/peida/p/4218210.html
431
431
* 常见Maven仓库:
432
432
* http://mvnrepository.com/ (搜索)
433
+ * https://maven-repository.com/ (搜索)
433
434
* http://maven.oschina.net/home.html (搜索)
434
435
* http://www.ebi.ac.uk/intact/maven/nexus/content/repositories/
435
436
* http://repo1.maven.org/maven2/
@@ -786,6 +787,11 @@ JavaDoc: https://storm.apache.org/javadoc/apidocs/index.html
786
787
* 官网:http://zookeeper.apache.org/
787
788
788
789
790
+ ## curator
791
+
792
+ * http://curator.apache.org/
793
+
794
+
789
795
## GProf
790
796
791
797
* Linux Tools Project/GProf/User Guide:http://wiki.eclipse.org/Linux_Tools_Project/GProf/User_Guide
@@ -933,6 +939,11 @@ JavaDoc: https://storm.apache.org/javadoc/apidocs/index.html
933
939
934
940
* http://www.xmlpull.org/index.shtml
935
941
942
+
943
+ ## Apache Santuario(xmlsec)
944
+
945
+ * http://santuario.apache.org/
946
+
936
947
## SAXON
937
948
938
949
The XSLT and XQuery Processor
Original file line number Diff line number Diff line change @@ -1058,11 +1058,15 @@ find 后面可加指定目录,如"/etc/"
1058
1058
1059
1059
``` shell
1060
1060
rdate # set the system's date from a remote host. (sudo apt-get install rdate)
1061
+ grep -R " org.apache.commons.FileUtils" *
1062
+ grep -inr --color " ERROR" test_debug.log
1061
1063
ps –fu $USER | grep java # 显示当前用户的所有线程
1064
+ ps -ef | grep 4736 # 查看4736端口是否被占用
1062
1065
netstat -tulnp | grep mysqld # 查看mysqld的监听情况
1063
1066
find . –name " *.log" | xargs grep error # 在当前目录的所有日志文件中查找关键词"error"
1064
1067
find . -mmin -1 # 查找最近一分钟修改过的文件
1065
1068
find . -mtime -1 # 查找最近一天修改过的文件
1069
+ ls -t ` find . -name " *.log" ` # 列出最近修改的文件
1066
1070
glxinfo | grep rendering # 查询OpenGL是否打开。提示:direct rendering: Yes 表明启动正常
1067
1071
cfdisk -Ps # 查看磁盘分区的用法 cfdisk -Ps 磁盘设备名 只有一个硬盘也可以用 cfdisk -Ps
1068
1072
cfdisk -Ps /dev/sda
You can’t perform that action at this time.
0 commit comments