E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable) E: Unable to lock the administration directory (/var/lib/dpkg/) ...
分类:
其他好文 时间:
2018-12-29 23:17:16
阅读次数:
245
--导出过程 1、查看目录: select * from dba_directories; 2、将目录的操作权限赋值给指定的用户(不执行次步骤可能会出现权限问题): grant read,write on directory EXPDP_DIR to username; 3、执行导出脚本: expd ...
分类:
数据库 时间:
2018-12-28 14:35:00
阅读次数:
227
一般我们在Linux下执行某些外部程序的时候可能会提示找不到共享库的错误, 比如:error while loading shared libraries: libxxx.so: cannot open shared object file: No such file or directory 原因 ...
分类:
其他好文 时间:
2018-12-27 23:09:26
阅读次数:
288
Installshield软件提供创建快捷方式的功能,但是经常有朋友发现创建了以后快捷方式不能运行,在此列一下几种常见原因供各位朋友参考: 1. 没有选择相应的working directory,这种问题对exe文件不大,对别的格式的文件影响较大,有些文件启动时会寻找工作目录,如果这个选项没有选对, ...
分类:
其他好文 时间:
2018-12-27 18:50:23
阅读次数:
186
报错提示 报错原因 删除了tmp文件夹,这个文件夹主要存放session的信息 解决方案 在wamp的根目录下创建一个tmp文件夹即可,如果已存在可能是权限问题 ...
分类:
Web程序 时间:
2018-12-27 18:32:15
阅读次数:
210
一个事例: You can set the output file name via -set + some percent escapes (in this case you need the directory component of the path %d and the file name ...
分类:
其他好文 时间:
2018-12-27 15:35:03
阅读次数:
135
1、创建directory d1create directory dd1 as '/home/oracle/';2、授权grant read,write on directory d1 to public;3、创建源数据库与本地数据库的联系本地tnsname.ora里添加源端数据库信息4、创建dbl ...
分类:
数据库 时间:
2018-12-27 13:10:43
阅读次数:
492
命令缩写: ls:list(列出目录内容) cd:Change Directory(改变目录) su:switch user 切换用户 rpm:redhat package manager 红帽子打包管理器 pwd:print work directory 打印当前目录 显示出当前工作目录的绝对路径 ...
分类:
系统相关 时间:
2018-12-26 19:54:03
阅读次数:
217
编译脚本build.sh 参考https://www.linuxidc.com/Linux/2008-10/16291.htm 1) 在centos7.2 x64下编译成功 Making install in toolsmake[1]: Entering directory `/root/1/lib ...
分类:
系统相关 时间:
2018-12-26 15:43:41
阅读次数:
701
StringBuilder sBuilder = new StringBuilder(); String[] pah = path.split("/"); // 先创建目录,在转到当前目录,再保存文件 // 分层创建目录 for (String pa : pah) { if (StringUtils ...
分类:
编程语言 时间:
2018-12-26 12:26:14
阅读次数:
200