oracle 11.2.0.4.0 RAC 由于创建表空间时手动命名,drop tablespace后数据文件不会自动删除 在asmcmd中使用rm命令删除报 ORA-15032:not all alterations performed ORA-15028:ASM file xxxx not dr ...
分类:
其他好文 时间:
2019-09-25 15:33:05
阅读次数:
164
ls #ls是英文list(列表)的缩写,该命令是显示文件夹和文件 例:ls #只显示当前文件夹下的非隐藏文件和文件夹的名称 例:ls -a #a参数=all,只显示当前文件夹下的所有文件和文件夹(含隐藏)的名称 例:ls -l #l参数=list,列表显示当前文件夹下的非隐藏文件和文件夹的详细信息 ...
分类:
系统相关 时间:
2019-09-25 12:53:57
阅读次数:
98
1.2d转换 transform:translate(x,y) | rotate(deg) | scale(x,y) 2.过渡 transition: property(默认all) time 速度曲线(默认ease慢快慢) delay transition:width 2s 3.动画 @keyfr ...
分类:
Web程序 时间:
2019-09-25 12:35:49
阅读次数:
112
Remove all elements from a linked list of integers that have value val. Example: ...
分类:
其他好文 时间:
2019-09-25 12:23:38
阅读次数:
75
题目如下: Given an array of distinct integers arr, find all pairs of elements with the minimum absolute difference of any two elements. Return a list of p ...
分类:
其他好文 时间:
2019-09-25 10:51:44
阅读次数:
99
查看用户:cat /etc/passwd 创建sudo+NOPASSWD的权限的用户: useradd admin id admin passwd admin (abc123) visudo 设置admin ALL=(ALL) NOPASSWD: ALL ...
分类:
系统相关 时间:
2019-09-25 00:44:24
阅读次数:
89
Use: screen [-opts] [cmd [args]] or: screen -r [host.tty] Options: -4 Use IPv4. -6 Use IPv6. -a Force all capabilities into each window's termcap. -A ...
分类:
其他好文 时间:
2019-09-25 00:40:22
阅读次数:
109
Promise.all 所有状态都改变才执行 Promise.all可以将多个Promise实例包装成一个新的Promise实例。同时,成功和失败的返回值是不同的,成功的时候返回的是一个结果数组,而失败的时候则返回最先被reject失败状态的值。 function loadImg (src) { r... ...
分类:
其他好文 时间:
2019-09-24 23:02:26
阅读次数:
152
NX:-z execstack / -z noexecstack (关闭 / 开启) 不让执行栈上的数据,于是JMP ESP就不能用了Canary:-fno-stack-protector /-fstack-protector / -fstack-protector-all (关闭 / 开启 / 全 ...
分类:
其他好文 时间:
2019-09-24 23:00:50
阅读次数:
500