首页 > 代码库 > Linux基础入门(三)

Linux基础入门(三)


1.查看所用的shell的类型:

[root@centos7 ~]# echo $SHELL

/bin/bash


2.ss命令:

功能:查看系统监听端口(socket

选项:

  -t:tcp协议

  -u:udp协议

  -n:解析服务名称

  -l:监听端口号

示例:

[root@centos7 ~]# ss -tnl

技术分享


3.ifconfig/ip addr list命令:

功能:查看服务器IP地址

示例:

[root@centos7 ~]# ifconfig

[root@centos7 ~]# ip addr list

技术分享


4.关机命令

CentOS 7:

[root@centos7 ~]# systemctl poweroff

[root@centos7 ~]# systemctl reboot


适用于所有系统:

[root@test1 ~]# poweroff

[root@test1 ~]# halt

[root@test1 ~]# reboot


5.basename/dirname命令

basename - strip directory and suffix from filenames

dirname - strip non-directory suffix from file name

[root@centos7 ~]# basename /etc/sysconfig/network-scripts/ifcfg-eno16777736 

ifcfg-eno16777736

[root@centos7 ~]# dirname /etc/sysconfig/network-scripts/ifcfg-eno16777736

/etc/sysconfig/network-scripts


后续再写


本文出自 “变相怪杰” 博客,请务必保留此出处http://waldenkk.blog.51cto.com/2410270/1902373

Linux基础入门(三)