centos学习笔记-1.启动

前端之家收集整理的这篇文章主要介绍了centos学习笔记-1.启动前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  • 命令行界面运行
sudo init 3
  • 图形化(可视化)界面运行
sudo init 5
  • 查看sshd服务是否启动
ps -ef | grep sshd
  • 查看sshd服务启动的端口,默认为22
sudo netstat -plnt | grep sshd
  • 查看系统中已经设置的别名
alias
  • 设置别名
alias dir='ls -l'
  • 取消别名
unalias dir

查看历史命令

  • 使用键盘的上、下箭头
  • 查看所有的历史命令
history
  • 执行上次的命令
!!
  • 查找含有指定关键字的历史命令。假设关键字为'make'
history | grep make
10  make && make install
   11  sudo make && make install
   12  make test
   13  make
  • 使用序号执行历史命令
!13
原文链接:https://www.f2er.com/centos/376587.html

猜你在找的CentOS相关文章