Linux基础命令快速入门

远程连接工具:xshell5 、SecureCRT、putty  采用ssh协议,默认端口为22

查看系统是否处于监听tcp协议的22端口:ss -tnl

或ps aux | grep “sshd”

ifconfig查看本机ip,确保防火墙处于关闭状态,用命令iptables -L -n查看,

CentOS7关闭防火墙:systemctl disabel firewalld.service

                                      systemctlstop firewalld.service

CentOS6关闭防火墙:service iptables stop

                                      chkconfig iptables off

在命令行界面中:[root@mage ~]#  #表示为root用户登录,mage为主机名

                            [mage@maeg ~]$ $表示为普通用户mage登录, maeg为主机名

建议使用非管理员账号登录:执行管理操作临时切换至管理员,操作完成即退出。

几个基础命令:tty:查看当前终端设备

                      ifconfig或ip add list:查看活动接口的ip地址

                      ping:探测网络的连通性(ctrl+c终止命令进行)

关机命令: poweroff,重启:reboot

    原文作者:wenxuan666
    原文地址: https://www.jianshu.com/p/4206b7829bd6
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞