Xinu

Centos7/Linux常用操作、命令
修改系统语言vim /etc/locale.conf //LANG="en_US.UTF-8"...
扫描右侧二维码阅读全文
12
2019/04

Centos7/Linux常用操作、命令

修改系统语言

vim /etc/locale.conf
//LANG="en_US.UTF-8" 英语
//LANG="zh_CN.UTF-8" 简体中文

重启

init 6

用户创建与删除

# 新建用户
# 未使用-g参数指定用户组 则会创建同名用户组test 使用-n可组织
useradd test
# 指定用户组为test1
useradd test -g test1
# 创建一个不允许登录的用户
useradd notlogin_user1 -g test1 -s /bin/false
userdel test

用户组创建与删除

groupadd test
groupdel test

查看用户组与用户

cat /etc/group #查看用户组
cat /etc/shadow # 查看所有用户

修改静态ip地址

# 网卡配置路径 /etc/sysconfig/network-scripts/ifcfg-enoxxxx
vim /etc/sysconfig/network-scripts/ifcfg-enoxxxx
BOOTPROTO="static" # dhcp 改为 static
# ip addr / ifconfig 查看mac地址 ifconfig
IPADDR="192.168.73.129"
NETMASK="255.255.255.0"
GATEWAY="192.168.73.255"
HWADDR="00:0c:29:df:fa:40"
# 保存 重启网卡
system restart network

重新安装编译时清除旧的编译文件

# 删除就得编译出的.o文件
make clean 
# 同时删除configure生成的MakeFile
make distclean

关闭防火墙

systemctl stop firewalld

查看当前运行级别

runlevel

查看文件的inode号

sata file
# 或者
ll -i file

查找

# 查找具有相同inode号的文件
find / -inum 1114
# 根据名字查找文件
find / -name 'xx'
# 忽略名字大小写
find / -iname 'xx'
# 查找在路径 /home 下的文件 data.txt 的软链接
find /home -lname data.txt
# 查看路径 /home 有相同 inode 的所有硬链接
find /home -samefile /home/harris/debug/test3/old.file
# 列出路径 /home/harris/debug/ 下的所有软链接文件
find /home/harris/debug/ -type l -ls
# 当前目录及子目录下查找所有以.txt和.pdf结尾的文件
find . \( -name "*.txt" -o -name "*.pdf" \)
# 或
find . -name "*.txt" -o -name "*.pdf"
# 匹配文件路径或者文件
find /usr/ -path "*local*"
# 基于正则表达式匹配文件路径
find . -regex ".*\(\.txt\|\.pdf\)$"
# 搜索出深度距离当前目录至少2个子目录的所有文件
find . -mindepth 2 -type f
根据文件类型进行搜索
find . -type 类型参数
# 类型参数列表:
# f 普通文件
# l 符号连接
# d 目录
# c 字符设备
# b 块设备
# s 套接字
# p Fifo

# 搜索最近七天内被访问过的所有文件
find . -type f -atime -7

# 搜索恰好在七天前被访问过的所有文件
find . -type f -atime 7

# 搜索超过七天内被访问过的所有文件
find . -type f -atime +7

# 搜索访问时间超过10分钟的所有文件
find . -type f -amin +10

# 找出比file.log修改时间更长的所有文件
find . -type f -newer file.log

# 搜索大于10KB的文件
find . -type f -size +10k

# 搜索小于10MB的文件
find . -type f -size -10M

# 搜索等于10GB的文件
find . -type f -size 10G
Last modification:June 3rd, 2019 at 10:52 pm

Leave a Comment