.log 或者 tailf /var/log/apache2/access.log **查看文件中间的第五行(含)到第***10***行(含)的内容** sed -n '5,10p' /var/log/apache2/access.log **查找关于***xxx***的命令** apropos xxxman -k xxx **通过***ssh***传输文件*...
4.6、安装MySql最新版,CM的数据库我们用My Sql管理 安装Mysql Server,后面在安装Cloudera Manager的时候会用到,如果你要使用PostGreSQL ,可以跳过这一步 (4.6-4.8)。 4.6.1、在主机上使用apt-get安装My Sql 在主机上使用apt-get安装My Sql,安装过程中会有提示,一直接回车就可以 (4台机器都要执行) root@m1:~...
nl 类似于cat -n,显示时输出行号 tailf 类似于tail -f 另外我认为比较重要的几个快捷键 1. Tab:超级方便的快捷键,可以补全命令,除了防止遗忘命令外,还有着防错的奇效 2. Ctrl + C:终止后台运行的程序所用的 4. Ctrl + D:主要用于退出终端 5. Ctrl + L:比命令clear更好用,专业清屏一百年 6. Ctrl ...
filename查看文件的时间stat filename对比两个文件之间的差异diff file1 file2一边比较一边编辑还是彩色的:(需要安装Vim )vimdiff filel file2显示xxx文件倒数6行的内容tail -6 xxx让tail不停地读取最新的内容tail -10f /var/log/apache2/access.log或者tailf /var/log/apache2/access.log查看文件中间的第五行(...
tailf -f /var/log/syslogdmesg >dmesg.log 写入到当前目录.log文件sosreport --all-logs 等Y然后回车回车 for循环 for i in {11..90};do ping -c3 10.22.1.$i;done |grep -i error -B1 ping3下输出error报错内容for i in $(seq 1 28); do ping -c2 -i0.3 10.22.1.$i; done ping的另一...
alias tailf='tail -f' # 不同 shell 之间不共享操作的历史命令 unsetopt share_history # 防止在使用byobu时自动修改title DISABLE_AUTO_TITLE="true" image 修改zsh promot vi ~/.oh-my-zsh/themes/jayson.zsh-theme # Based on gnzh theme
cat # 由第一行开始显示内容,并将所有内容输出 more # 根据窗口大小,一页一页的显示文件内容 less # 和more类似,但其优点可以往前翻页,而且进行可以搜索字符 head # 查看头n行 tail # 查看最后n行 tailf # 相当于tail -f 动态查看最后n行 查找文件 find 目录 参数 文件名称 # find /usr/tmp -name 'a...
9安装Cloudera Manager组件 91将Ubuntu 1404暂时伪造成Ubuntu1204 92升级Ubuntu的utils包CM所必需要 93将CDH5的软件源添加到Apt中 94安装Cloudera Manager 95修改Cloudera-Manager-Server的配置文件dbproperties设置MySql连接 96安装ntp CM agents需要用到ntpdc
sudo apt-get upgrade (这一步安装应用程序更新,不安装新内核等) 清除所有已删除包的残馀配置文件 dpkg -l |grep ^rc|awk '{print $2}' |sudo xargs dpkg -P 如果报如下错误,证明你的系统中没有残留配置文件了,无须担心。 dpkg: --purge needs at least one package name argument ...
tailf /var/log/apache2/access.log 查看文件中间的第五行(含)到第10行(含)的内容 sed -n 5,10p /var/log/apache2/access.log 查找关于xxx的命令 apropos xxxman -k xxx 通过ssh传输文件 scp -rp /path/filename username@remoteIP:/path #将本地文件拷贝到服务器 上scp -rpusername@remoteIP:/path...