发布时间:2013-10-12 10:28:02
大家都知道,sh 是 bash 的一个软链接,可是有时候,用 bash 可以执行成功的脚本用 sh 执行却会报错,这是为什么呢?例如当shell 脚本第一行采用下面这两张写法的时候效果有时是不尽相同的。#!/bin/sh#!/bin/bash先看看环境:[user@host ~]$ which sh bash/usr/local/bin/sh/usr/loc.........【阅读全文】
发布时间:2013-08-08 01:36:54
一、正则表达式:.任意字符^行首匹配$行尾匹配^$表示空行,不含字符的行^ $匹配只有单个空格的行[0-9][a-zA-Z]^[A- Z]搜索以大写字母开头的行[^A-Z]匹配大写字母意外的任意字符*表示匹配0个或若干个字符,如:a*,表示.........【阅读全文】
发布时间:2013-08-02 10:44:01
今天在用yum升级一台新机器时,顾客用ssh远程把server重新启动了。之后,在使用yum 时总是有提示信息:There are unfinished transactions remaining. You might consider running yum-complete-transaction first to finish them.The program yum-complete-transaction is found in the yum-utils package.意思.........【阅读全文】
发布时间:2013-07-01 17:55:17
一、Server 端配置 (root@hz-search-zookeeper-01)su - hbase -c "mkdir /home/hbase/hadoop_nfs && chmod 777 /home/hbase/hadoop_nfs"echo '/home/hbase/hadoop_nfs 172.20.0.0/16(rw)' > /etc/exports/etc/init.d/portmap stop /etc/init.d/nfs stop/etc/init.d/nfslock stop/etc/init.d/portmap start.........【阅读全文】