Linux 常用命令
Linux 常用命令
防火墙相关
常用命令
firewall-cmd --list-ports
查看 防火墙开放的端口
firewall-cmd --add-ports=8080/tcp --permanent
添加开放端口
firewall-cmd --reload
重新加载 防火墙
运行级别
更改 Linux 运行级别
systemctl set-default multi-user.target
Yum 相关
执行YUM安装软件报错
http://mirrors.aliyun.com/centos/7/os/x86_64/repodata/repomd.xml :
[Errno 14] curl#6 - “Could not resolve host: mirrors.aliyun.com; 未知的错误”
一般来说是网络问题,检查网络相关配置
yum 进程被锁定
有时在执行yum命令中短线或强制终止时没有干净,导致下次运行时提示:Another app is currently holding the yum lock; waiting for it to exit…
解决办法 删除 yum.pid 即可
rm -f /var/run/yum.pid
进程相关
常用命令
ps -ef | grep nginx
搜索 nginx 相关进程
kill -s 9 pid
杀死 pid
安装相关
常用
tar -zxvf xxxxx -C /xxx/xxx
解压 xxx 文件到 xxx/xxx 目录下
文件相关
CRLF 与 LF
在windows下编写了sh脚本,到linux 下运行报错,有可能是格式的问题,可以把脚本复制出来,粘贴到新建的sh文件里。或者用Notepad++ 打开文件点击右下角进行转换
或者在 linux 中 使用 命令 sed -i 's@.$@@' xxxx
进行替换
文件 权限
chmod 777 xxx
- Title: Linux 常用命令
- Author: cccs7
- Created at: 2023-03-21 14:00:21
- Updated at: 2023-06-29 23:12:42
- Link: https://blog.cccs7.icu/2023/03/21/Linux-常用命令/
- License: This work is licensed under CC BY-NC-SA 4.0.
Comments