文字设定:
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
less abc.txt
7、查看系统日志 linux 重启信息 (最近谁登陆过在log下面的其他目录)
less /var/log/messages
8、
df -h 磁盘使用率
free 内存使用率
top cpu 使用率
9、查看端口监听情况
netstat -an|grep 18350
lsof -i:8542
10、查看进程
ps -ef|grep java
ps -fu dm (dm为应用名称)
11、新建用户和用户组
groupadd -g 202 kafkatodbgroup
echo
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用户下修改单板时间