随笔分类 -  流水账

摘要:1. python-pip不可用时: yum -y install epel-release yum install python-pip 阅读全文
posted @ 2020-10-30 14:59 D: 阅读(99) 评论(0) 推荐(0)
摘要:svnsync从库配置 1.创建空的从库 root@test: /svn # svnadmin create test 2.从库用户配置 修改authz : [groups] sync = sync [/] @sync = rw 3.启动从库 svnserve -d -r /svn svnsync主 阅读全文
posted @ 2020-09-21 15:57 D: 阅读(521) 评论(0) 推荐(0)
摘要:@echo off mount 192.168.5.10:/data/test x: xcopy /y "D:\backup\mysql\20200316_230000.sql.tar.gz" x:\ umount x:\ 如代码所示,在定时任务中进行nfs挂载,然后再进行复制,复制完成后卸载nfs 阅读全文
posted @ 2020-03-17 15:06 D: 阅读(667) 评论(0) 推荐(0)
摘要:DLL反编译工具有:dotPeek (jetbrains) 、ILSpy DLL转存IL使用:ildasm 打开DLL文件,选择file->dump。 il 、res重新生成DLL工具: ilasm (C:\Windows\Microsoft.NET\Framework64\v4.0.30319\) 阅读全文
posted @ 2019-09-03 17:15 D: 阅读(1707) 评论(0) 推荐(0)
摘要:由于默认安装的nethogs不能使用,提示:Creating socket failed while establishing local IP - are you root? 搜索资料后检查当前版本为0.8.0 决定重新安装其它版本。 卸载当前版本:apt-get remove nethogs 安 阅读全文
posted @ 2019-06-17 14:40 D: 阅读(495) 评论(0) 推荐(0)
摘要:DB2: 存储过程: 创建存储过程,编写创建语句,保存到文件(*.db2),通过db2命令执行创建语句。示例:db2 -td@ -vf C:\test.db2 阅读全文
posted @ 2015-03-10 15:28 D: 阅读(134) 评论(0) 推荐(0)
摘要:20150227:文件内容如下:张三,77李四,89王二,69白龙,59和尚,61八戒,90悟空,91唐僧,0(最不需要思考的)代码如下: 1 public static void main(String[] args) { 2 //read 3 File datas... 阅读全文
posted @ 2015-02-27 17:29 D: 阅读(739) 评论(0) 推荐(0)