随笔分类 - Linux命令
摘要:git ls-files -d | xargs -i git checkout {}
阅读全文
摘要:1. 下载vsftpd: #yum –y install vsftpd 2. 关闭iptables 查看防火墙状态:/etc/init.d/iptables status 关闭:service iptables stop 或者 /etc/init.d/iptables stop 每次开机自动关闭: chkconfig --level 35 iptables off 3. 关闭SE...
阅读全文
摘要:在ubuntu环境下, 想往/etc/sudoers中添加可以执行sudo操作的用户,使用root将/etc/sudoers的权限修改为755后,提示出现标题中的错误: 修正方法:将/etc/sudoers的owner和组修改为root: chown root:root /etc/sudoers
阅读全文
摘要:有一台ubuntu机器,想看到这台机器和外界通信的情况,使用如下命令: sudo tcpdump -i em1 -nn port 80 zhangchao3@ubuntu:~$ sudo tcpdump -i em1 -nn port 80
tcpdump: verbose output suppressed, use -v or -vv for full protocol decod...
阅读全文
摘要:在hadoop-config.sh中,有如下语句:${HADOOP_CONF_DIR:-$HADOOP_PREFIX/$DEFAULT_CONF_DIR} 在这里面, :- 是一个运算符,叫做替换运算符: ...
阅读全文
摘要:在阅读hadoop相关的脚本文件时,遇到case语句,好久不写shell,忘了不少,复习下shell的case语句: 运行结果: case的语法: Hado...
阅读全文
摘要:无法高亮:这是因为.bashrc中没有 export term=linux最后,代码恢复正常:
阅读全文