创建 mysql 组,并设置 groupid 为 10001useradd -g 10001 mysql
创建 mysql 用户,指定用户 uid 为 10001,不能通过shell登录,不创建用户目录,指定用户组为mysqluseradd -u 10001 -s /sbin/n...
shanhuhai
9年前 (2015-06-24) 2398℃
1喜欢
今天来介绍一个略吊的技能,在 centos6 上制作本地的 yum ,这样当你要给客户装软件的时候,就可以实现离线安装了。
下载rpm
yum 实际就是一个 rpm 包管理器,我们要制作我们的 yum 源,也就是要下载一堆我们需要的 rpm 包,如何下载到我们需要的 rpm 包呢...
shanhuhai
9年前 (2015-06-22) 4719℃
2喜欢
创建测试文件
cat > a.txt << END
docker
nl
sed
gearman
nlp
lua
rpm
END
删除3到5行
nl a.txt | sed '3,5d'
替换3到5行
nl a.txt | sed '3,5c lua'
...
shanhuhai
9年前 (2015-06-19) 2560℃
0喜欢
检测变量是否为空
#!/bin/bash
config=""
[ -z $config ] && echo "empty"
转载请注明:大后端 » Linux 条件测试用例...
shanhuhai
9年前 (2015-06-19) 2264℃
0喜欢
echo -e 双引号字符串中的转意字符将生效,例如
echo -e "Hello\nworld"
将输出
Hello
world
转载请注明:大后端 » Linux-echo...
shanhuhai
9年前 (2015-06-18) 2184℃
0喜欢
tee 命令用于当我们重定向时既输出到文件又输出到屏幕,tee 命令可以重定向输出到多个文件
seq 5 >1.txt
cat 1.txt
cat 1.txt >2.txt
cat 1.txt | tee 3.txt #将 1.txt 的内容输出到屏幕且写入到 ...
shanhuhai
9年前 (2015-06-18) 2432℃
0喜欢
echo no |cp -rf b/* a/ > /dev/null 2>&1
转载请注明:大后端 » linux 目录覆盖命令...
shanhuhai
10年前 (2015-01-21) 2029℃
0喜欢
删除当前目录下的所有名称为 runtime.php 的文件
find ./ -name runtime.php | xargs rm -f
删除前目录下所有名为 Cache 的目录
find ./ -name "Cache" -type d | xagrs ...
shanhuhai
10年前 (2015-01-07) 2006℃
0喜欢
对比文本文件 file1.txt 和 file2.txt 的差异并忽略空白字符
file1.txt:
We become what we think about.
If you cannot do great things, do small things in a great ...
shanhuhai
10年前 (2015-01-07) 3076℃
0喜欢
添加 epel 源
64位:
rpm -ivh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
32位:
rpm -ivh http://download.fedor...
shanhuhai
10年前 (2014-12-25) 9992℃
4喜欢