访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > linux > 热点关注 > linux常用命令

luckyna

时间:2019-09-27

linux 命令_linux关机命令_linux命令

文字设定:

chmod ug + w o - x test.txt

5、查看用户 用户组

cat /etc/group

cat /etc/passwd

6、抓包命令

tcpdump -s o -i any port 18350 -V -W data.cap

strings data.cap >abc.txt

linux关机命令_linux命令_linux 命令

less abc.txt

7、查看系统日志 linux 重启信息 (最近谁登陆过在log下面的其他目录)

less /var/log/messages

8、

df -h 磁盘使用率

free 内存使用率

top cpu 使用率

9、查看端口监听情况

linux 命令_linux关机命令_linux命令

netstat -an|grep 18350

lsof -i:8542

10、查看进程

ps -ef|grep java

ps -fu dm (dm为应用名称)

11、新建用户和用户组

groupadd -g 202 kafkatodbgroup

echo | pw useradd -n -g -m -s /bin/csh -h 0。# useradd -g swift -d /home/swift -s /bin/bash -m swift。useradd -c “name surname ” -g admin -d /home/user1 -s /bin/bash user1 创建一个属于 “admin” 用户组的用户。

passwd%20kafkatodb

12、tar%20包命令

tar%20-zcvf%20config.tar.gz%20%20config/

tar%20-zxvf%20config.tar.gz

13、如果一个单板你能ping通%20但ssh连接不上:

cat%20/etc/hosts.deny%20%20删除你的ip

cat%20/etc/hosts.allow%20%20加上你的ip

14、windows文件转为linux文件

dos2unix xxx.sh

执行shell文件时linux命令,每行都报 commond not found时 就可能是这个问题。

15、 查看所有shells

cat /etc/shells

echo &SHELL 查看当前用户下的shell 若系统下没有安装cshlinux命令,可以yum install csh 进行安装。

16、在文件里层层查找先要的内容

grep "bobe" *.txt | grep "20180512" |grep "cn >> result.txt

17、查看目录下文件的数量

ll | wc -l

18、root用户下修改单板时间

 上一个教程:linux命令大全pdf