Linux学习笔记——20170805

文件命令

链接

  • ln -s /etc/issue /temps/issue -> 软链接
  • ln /etc/issue /temps/issue -> 硬链接 (像cp,但会实时更新)

find

  • find 范围 条件 find / -name httpd

which

  • which ls -> 搜索ls所在目录

grep

  • grep mysql /root/install.log -> 查找文本内的内容
  • grep ^# /etc/inittab -> ^表示非

lastlog

  • lastlog -> 查看所有登录信息
  • lastlog -u 500 -> 查看500用户组的登录信息

输入输出与管道

  • cal > calendar.txt
  • cat < file1 > file2 (cat file1 > file2)
  • find / | grep httpd

服务

  • service httpd start/stop/restart/status
  • /etc/init.d/httpd start
  • vim /etc/rc.d/rc.local -> 配置开机启动

源码安装cmake

  1. tar -xvf cmake-3.9.0.tar.gz
  2. cd cmake-3.9.0
  3. ./configure (检测:提示需要c++编译环境)
  4. yum -y gcc-c++ -> 安装c++编译环境
  5. ./bootstrap –prefix=/usr/local/cmake -> 指定安装路径
  6. gmake -> 开始编译
  7. gmake install -> 开始安装
  8. /usr/local/cmake/bin/cmake -> 测试是否成功

踢掉其他在线用户

  • who -> 显示当前在线用户
  • pkill -kill -t pts/2 -> 踢掉终端为pts/2的用户
  • vim /etc/passwd (修改用户的密码x为*,禁用该用户,防止再次登录)

你可能感兴趣的:(Linux)