上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 33 下一页
2017年6月25日
摘要: CMS收集器 Concurrent Markup Sweep 并发标记清除 使用了标记-清除算法 与标记-压缩相比,并发阶段会降低吞吐量 算法作用在老年代以及永久区(新生代使用ParNew) -XX:+UseConcMarkSweepGCCMS运行过程 1.初始标记(用户线程停止) 根可以关联到的对 阅读全文
posted @ 2017-06-25 21:59 ChaseForFuture 阅读(4900) 评论(0) 推荐(0)
摘要: 一、JVM内存空间概览 Java虚拟机使用的内存块包含 栈空间Stack (虚拟机栈、本地方法栈)、堆空间 Heap Memory 、永久区 Perm Gen(related to method area)(方法区) 堆空间(Heap Memory)包含 初生代Eden Gen、两个幸存代Survi 阅读全文
posted @ 2017-06-25 17:24 ChaseForFuture 阅读(170) 评论(0) 推荐(0)
2017年6月17日
摘要: 文件判断运算符–b 当file存在并且是块文件时返回真-c 当file存在并且是字符文件时返回真-d 当pathname存在并且是一个目录时返回真-e 当pathname指定的文件或目录存在时返回真-f 当file存在并且是正规文件时返回真-g 当由pathname指定的文件或目录存在并且设置了SG 阅读全文
posted @ 2017-06-17 15:15 ChaseForFuture 阅读(203) 评论(0) 推荐(0)
摘要: SUID 1.只作用在可执行二进制文件上,普通用户需要对该文件有x权限, 2.在执行该文件时,用户身份切换为文件owner; 3.执行完毕,切换回普通用户。 一、查找具有SUID权限的系统文件(-4000 表示至少有SUID权限) 二、比较系统SUID文件变化 1.将系统现有的SUID文件存入 /r 阅读全文
posted @ 2017-06-17 12:31 ChaseForFuture 阅读(288) 评论(0) 推荐(0)
2017年6月15日
摘要: Shell Script pom.xml Project Structure 阅读全文
posted @ 2017-06-15 12:37 ChaseForFuture 阅读(361) 评论(0) 推荐(0)
2017年6月13日
摘要: 1.查看文件系统是否支持ACL (xfs文件系统强制开启ACL,如果该分区已格式化为xfs,在使用dumpe2fs会看不到superblocks信息)zheng@ubuntu16:~$ sudo dumpe2fs -h /dev/sda1 | grep 'Default\smount'dumpe2f 阅读全文
posted @ 2017-06-13 17:31 ChaseForFuture 阅读(299) 评论(0) 推荐(0)
摘要: 锁定myusersudo passwd -l myuser 解锁myusersudo passwd -u myuser 通过标准输入来设置密码echo "password" | sudo passwd --stdin myuser 密码状态sudo passwd -S myuser 列出myuser 阅读全文
posted @ 2017-06-13 11:02 ChaseForFuture 阅读(202) 评论(0) 推荐(0)
2017年6月12日
摘要: Ubuntu在安装时创建的普通用户默认具有sudo权限,默认root没有设置密码,可以通过自建用户来执行sudo passwd 为root设置密码;Centos在安装时创建的普通用户默认没有sudo权限,安装过程为root设置密码,安装完,需要执行visudo将默认用户设为sudo用户或将所属组设为 阅读全文
posted @ 2017-06-12 09:06 ChaseForFuture 阅读(228) 评论(0) 推荐(0)
2017年6月11日
摘要: 在执行菜单里你可以禁止统计,或在v_$session,v_$sesstat 和 v_$statname 表里获得select权限 解决办法 [oracle@localhost ~]$ sqlplus sys/Manager123 as sysdba SQL> grant select on v_$s 阅读全文
posted @ 2017-06-11 16:18 ChaseForFuture 阅读(653) 评论(0) 推荐(0)
2017年6月8日
摘要: Previously,Stop service which controls virtual bridges. Then,take down the bridge. Finally,remove this bridge. Additionally. If libvirtd.service is re 阅读全文
posted @ 2017-06-08 16:07 ChaseForFuture 阅读(194) 评论(0) 推荐(0)
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 33 下一页