码迷,mamicode.com
首页 >  
搜索关键字:read    ( 19693个结果
give root password for maintenance 启动异常的解决
问题:centos重启后,无法正常ssh登陆,也无法ping通,实地操作出现如下提示:输入登陆密码,重启sshd服务,出现提示“read-only file system”,重启network服务问题依旧:分析:结合以上两点信息,大致可以判断出现这种问题有几种原因:1硬盘坏了;2硬件不兼容;3人为操...
分类:其他好文   时间:2015-02-16 12:58:30    阅读次数:169
python3代码
import urllib.requesturl="http://mm.taobao.com/json/request_top_list.htm?type=0&page=1"up=urllib.request.urlopen(url)#打开目标页面,存入变量upcont=up.read()#从up中...
分类:编程语言   时间:2015-02-16 10:10:29    阅读次数:241
LeetCode——Count and Say
The count-and-say sequence is the sequence of integers beginning as follows:1, 11, 21, 1211, 111221, ...1is read off as"one 1"or11.11is read off as"tw...
分类:其他好文   时间:2015-02-15 17:50:38    阅读次数:126
free pacal
TMyObject=class Private Myvalue:integer; Procedure SetMyvalue(avalue:integer); Public Property value:integer read Myvalue write SetMyvalue; end; Proce...
分类:其他好文   时间:2015-02-15 14:59:17    阅读次数:90
写的一个oracle安装前的准备的脚本,大家可以拿去修改修改使用
#!/bin/bash#echo"拷贝文件:"#read-p"pleaseinputtheserveryoushareyourosinstallationmediaandoraclesoftware:"server#mkdir/installyationMedia#scproot@${server}:/iso/*/installationMedia#if[-e/installationMedia/*.iso]{#echo"文件拷贝成功。"#}else{#echo"操作系统文件..
分类:数据库   时间:2015-02-15 13:44:41    阅读次数:242
Bash内部变量
Bash内部变量 有些内部命令在目录列表时是看不见的,他们有Shell本身提供,常见的内部命令:echo,eval,execexport,readonly,read,shift ,wait,exit和点(.) echo 变量名表 将变量名表指定的变量显示到标准输出 Evalargs 读入参数args ,并将他们组合成一个新的命令,然后执行 Exec命令参数 当Shell执行到exec...
分类:其他好文   时间:2015-02-15 10:45:36    阅读次数:115
ORACLE 11G DataGuard的一些高级管理案例研究
搭建完了ORACLE 11G dataguard后,也做了角色切换的实验,有switchover已经failover,感觉受益颇多,而后继续研究了下dataguard的一些高级管理功能,所谓冰山一角,ORACLE果然博大精深,总结记录如下:1,ORACLE 11G dataguard的高级管理1.1、READ ONLY/WRITE模式打开物理STANDBY一般standby都是可以设置为mount...
分类:数据库   时间:2015-02-14 22:38:30    阅读次数:301
java nio 快速read大文件
If you want to make your first example fasterFileChannel inChannel = new FileInputStream(fileName).getChannel();ByteBuffer buffer = ByteBuffer.allocat...
分类:编程语言   时间:2015-02-14 22:36:13    阅读次数:183
jsp小后门
一:执行系统命令:无回显执行系统命令:1请求:http://192.168.16.240:8080/Shell/cmd2.jsp?i=ls执行之后不会有任何回显,用来反弹个shell很方便。有回显带密码验证的:123456789101112");while((a=in.read(b))!=-1){o...
分类:Web程序   时间:2015-02-14 20:01:31    阅读次数:235
【LeetCode从零单排】No38.CountAndSay
题目The count-and-say sequence is the sequence of integers beginning as follows:1, 11, 21, 1211, 111221, ...1 is read off as "one 1" or 11.11 is read off as "two 1s" or 21.21 is read off as "one 2, then...
分类:其他好文   时间:2015-02-14 18:54:22    阅读次数:166
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!