码迷,mamicode.com
首页 > 系统相关 > 详细

Linux基础入门(三)

时间:2017-03-01 21:43:34      阅读:305      评论:0      收藏:0      [点我收藏+]

标签: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基础入门(三)

标签:linux基础命令

原文地址:http://waldenkk.blog.51cto.com/2410270/1902373

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!