[lvhongmin@AY1401201736089361adZ start_svr]$ cat startall_svr.sh
#!/bin/bash
errpath[0]=''
errnum=0
runnum=0
curr_path=`pwd`
#进程的名字
array[${#array[*]}]=/home/lvhongmin/bin/bin....
分类:
其他好文 时间:
2014-06-05 11:11:43
阅读次数:
243
----------------------------------------------------hello world-------------------------------------------
linux 创建如下文件 vim hello
#! /bin/bash //告诉Shell 使用哪个Shell 程序
#Display a line //#表示...
分类:
其他好文 时间:
2014-06-05 02:41:41
阅读次数:
393
大家知道在Windows下Shift+右键菜单可以呼出“在此处打开命令行窗口”菜单项,...
测试版本:CDH5.0,(Hadoop2.3)在使用windows调用Hadoop yarn平台的时候,一般都会遇到如下的错误:2014-05-28 17:32:19,761 WARN org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor: Exception from container-launch with co...
分类:
其他好文 时间:
2014-06-03 06:26:17
阅读次数:
277
1. 做一个clear脚本,放到/bin下去 $vim /bin/clear #!/bin/bash
cmd /c cls 2. ctrl + L 3. 在cygwind中install ncurses (in Utils) and then you can
use: clear 我倾向于第三种方法...
-bash:warning:setlocale:LC_CTYPE:cannotchangelocale(EN_US.UTF-8)
把linux系统从中文设置英文字符集后发生以下报错
首先本系统字符集为中文UTF-8
[root@localhost~]#more/etc/sysconfig/i18n
LANG="zh_CN.UTF-8"
修改为英文UTF-8
[root@localhost~]#vim/etc/sysconfig/i..
分类:
其他好文 时间:
2014-06-02 14:49:19
阅读次数:
203
今天建库的时候忽然报错ORA-00600:internalerrorcode,arguments:[keltnfy-ldmInit],[46],[1],[],[],[],[],[]梗是让我无语,没办法只好检查参数配置,按照文档一步步检查,最后检查了下profile文件的配置
[root@servU_01db_1]#more/home/oracle/.bash_profile
#.bash_profile
#..
分类:
其他好文 时间:
2014-06-02 04:12:51
阅读次数:
320
第一种:#!/bin/bash service vsftpd start &>
/dev/null if[ $? -eq 0 ]thenecho "ftp is start"elseservice vsftpd
startfi第二种:#!/bin/bash read -p "input your f...
分类:
其他好文 时间:
2014-06-02 00:41:38
阅读次数:
332
# groupadd weblogic# useradd -g weblogic
weblogic# passwd weblogic# mkdir -p /var/bea# chown -R weblogic:weblogic
/var/bea# su - weblogic$ vi ~/.bash_...
分类:
Web程序 时间:
2014-05-31 20:47:51
阅读次数:
396
众所周知,Linux的文件权限如:
777;666等,其实只要在相应的文件上加上UID的权限,就可以用到加权限人的身份去运行这个文件。所以我们只需要将bash复制出来到另一个地方,然后用root加上UID权限,只要用户运行此Shell就可以用用root的身份来执行任何文件了一个文件都有一个所有者,
...
分类:
系统相关 时间:
2014-05-31 20:29:13
阅读次数:
522