码迷,mamicode.com
首页 >  
搜索关键字:please    ( 3193个结果
shell脚本解析9(练习3)------倒序输出
#!/bin/bash#提示用户输入echo -n "Please enter number"read n #读入输入的值放到变量n中sd=0rev=""on=$n #将变量n的值保存到变量on中,方便以后用到echo "You put number is $n"while [$n -gt 0]do...
分类:其他好文   时间:2014-07-16 23:03:53    阅读次数:261
shell脚本解析10(练习4)------监视文件
#!/bin/bash #判断命令行是否代带有两个文件名的参数 if [ "$1" = "" ] || [ "$2" = "" ] then echo "Please enter file name" exit 1 fi #判断目标文件是否存在 if [ -e $2 ] then echo "...
分类:其他好文   时间:2014-07-16 22:59:29    阅读次数:153
android studio安装问题
问题:No JVM installation found. Please install a 64-bit JDK. If you already have a JDK installed, define a JAVA_HOME variable in Computer > System Prope...
分类:移动开发   时间:2014-07-16 21:39:23    阅读次数:261
please wait while windows configures microsoft visual studio professional 2013
VS3013安装update 2以后,打开offie出现“please wait while windows configures microsoft visual studio professional 2013”提示,每次打开都会有。解决办法:在C:\Windows\Microsoft.NET\...
分类:Windows程序   时间:2014-07-15 00:23:35    阅读次数:422
please specify user and group other than root, pool 'default'
[root@luozhonghua etc]# /usr/local/php/sbin/php-fpm start Starting php_fpm Jul 12 09:41:02.077951 [ERROR] fpm_unix_conf_wp(), line 124: please specify user and group other than root, pool 'default' ...
分类:其他好文   时间:2014-07-13 16:20:24    阅读次数:225
opencms 安装出现下面的问题:Your 'max_allowed_packet' variable is set to less than 16777216 Byte (16MB).
一、问题 在安装opencms是会出现如下错误: MySQL system variable 'max_allowed_packet' is set to 1048576 Byte (1MB). Please note that it will not be possible for OpenCms to handle files bigger than this value in ...
分类:其他好文   时间:2014-07-12 22:58:44    阅读次数:353
Cobbler自动安装的Linux系统ssh无法进入
Linux ssh登陆老提示“permission denied,please try again” ,但是iptables已经关掉了修改/etc/ssh/sshd_config文件。找如下的一句#PermitRootLogin yes改为如下的PermitRootLogin yes注意,要把前面的...
分类:系统相关   时间:2014-07-11 09:05:33    阅读次数:269
This version of the rendering library is more recent than your version of IntelliJ IDEA.
今天往idea里导入其他项目时又遇到了一个问题,单独标记一下。 导入后打开一个布局xml文件,发现不能渲染,报错为: This version of the rendering library is more recent than your version of IntelliJ IDEA. Please update IntelliJ IDEA 看字面意思就是...
分类:其他好文   时间:2014-07-11 00:10:13    阅读次数:418
Andriod Studio科普篇——3.关于编译的常见问题
1、android支持库未安装 编译不过,提示如下: Could not find any version that matches com.android.support:appcompat-v7:+ ....... Please install the Android Support Repository from the Android SDK Manager 其实原因和解决方法已经说...
分类:其他好文   时间:2014-07-10 23:39:33    阅读次数:282
shell脚本解析7(练习1)-----脚本参数
#!/bin/basha=$1 #将第一个命令行参数传递给变量a,第二个命令行参数传递给bb=$2if [-z $a] || [-z $b] #判断a 和 b 是否为空,只要有一个为空就打印提示语句并退出。then echo "please enter 2 no" exit 1fiif [$a .....
分类:其他好文   时间:2014-07-10 15:20:36    阅读次数:203
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!