linux系统探索
程序员文章站
2024-02-04 12:51:28
这两天,突发奇想,想着用着微软家的windows系统很多年了,也想尝试一下其他的操作系统。很快的就想到了Linux操作系统,它不是面向用户的,而是面向服务器的,在服务器端的市场中占了很大的市场份额,备受好评。 目录 + Linux特点 + 特别说明 + yum常用命令 + 程序相关命令 + 防火墙相 ......
这两天,突发奇想,想着用着微软家的windows系统很多年了,也想尝试一下其他的操作系统。很快的就想到了linux操作系统,它不是面向用户的,而是面向服务器的,在服务器端的市场中占了很大的市场份额,备受好评。
目录
- linux特点
- 特别说明
- yum常用命令
- 程序相关命令
- 防火墙相关命令
linux特点
基于以下几点,我决定探究一下linux系统。
- linux系统是全世界少有的免费、开源的、*传播的类unix操作系统;
- 命令行操作文件、程序比较灵活、迅速,非常高效;
特别说明
本文主要是使用centos7进行系统的各项操作。
yum常用命令
yum是一个shell前端软件包管理器,基于rpm管理,一次性安装所有依赖,无需频繁下载依赖。
查找软件包
yum search <keyword>
安装软件
yum install <package_name>
安装包列表
yum list
更新软件包
- 更新一个包
yum update <package_name>
- 更新所有
yum update
查询软件信息
yum info <package_name>
卸载安装包
yum remove <package_name>
清除缓存
yum clean packages
程序相关命令
- 启动程序运行
systemctl start <name>.service //或者 systemctl start <name>
- 停止程序运行
systemctl stop <name>.service //或者 systemctl stop <name>
- 重启程序
systemctl restart <name>.service //或者 systemctl restart <name>
- 重载程序配置
systemctl reload <name>.service //或者 systemctl reload <name>
- 查看程序状态
systemctl status <name>.service //或者 systemctl status <name>
- 开机自启动程序
systemctl enable <name>
- 禁止开机启动程序
systemctl disable <name>
防火墙相关命令
端口操作命令
- 查看防火墙版本
firewall-cmd --version
- 防火墙帮助
firewall-cmd --help
- 查看防火墙状态
firewall-cmd --state
- 查看已启用的端口
firewall-cmd --list-port
- 开启某个端口
firewall-cmd --add-port=<port>/tcp --permanent // --permanent表示永久有效
- 开启某个区间的端口
firewall-cmd --add-port=<port_start>-<port_end>/tcp --permanent
- 关闭某个端口
firewall-cmd --remove-port=<port>/tcp --permanent
- 开启某个区间的端口
firewall-cmd --remove-port=<port_start>-<port_end>/tcp --permanent
- 开启服务
firewall-cmd --add-service=<service_name> --permanent
- 关闭服务
firewall-cmd --remove-service=<service_name> --permanent
- 重载防火墙配置
firewall-cmd --reload
linux初次探索就到这里,下次我再分享其他有趣好玩的故事。
推荐阅读
-
linux shell 正则表达式(BREs,EREs,PREs)差异比较
-
linux系统探索
-
linux基础学习笔记
-
windows系统中,在当前目录下打开cmd命令行的两种方法
-
基于linux的附加变量设置功能 博客分类: linux linuxvariable基于linux的附加变量设置功能##%%
-
基于linux下的变量声明declare的用法 博客分类: linux linuxdeclarevariablereadonlyexport
-
探索未来智能手机形态 一加概念机即将亮相CES
-
linux下php实现多线程
-
正则表达式系统教程(六)
-
[原创]php+ajax实现模拟Win文件管理系统七_PHP教程