软件安装
.rpm
rpm -ivh 包名(安装软件包)
-evh 软件名 (卸载软件)
-ql 软件名 (查看软件安装释放的文件)
-qf 文件绝对路径 (查看某个文件是哪个包释放的)
-qa 查看当前系统所有已安装的安装包 | gerp
-Uvh 根据主机
-qpi 包名 查看软件包的详细信息
-Va 校验文件,查看软件程序缺失哪个文件
1.mount /dev/sr0 /mnt
2.查找软件包 cd/mnt/Package ||
3.#rpm -ivh包名 #rpm -ivh/mnt/Package/包名
yum本地软件包的安装
yum本地软件包的安装
YUM:(全称为 Yellow dog Updater, Modified)是一个在Fedora和RedHat以及CentOS中的Shell前端软件包管理器。
基于RPM包管理,能够从指定的服务器自动下载RPM包并且安装,可以自动处理依赖性关系,并且一次安装所有依赖的软件包,无须繁琐地一次次下载、安装。
yum[options]command[package...]
yum -y intall 软件---安装
remove
update
groupinstall
groupremove
list
clean all ----清楚所有yum源的缓存
makecache ------建立yum元的缓存
yum配置文件--------yum源
etc/yum.repos.d/*.repo
[base] -----源标示名称(自定义)
name=base -----源名称
baseurl=file:///mnt ------统一资源定位符定位软件包的路径
gpgcheck =0 -------------公钥验证关闭
enabled = 1 -------------设置开机启动(默认开机启动可以省略)
配置cockpit web 管理程序
1.yum -y install cockpit
yum -y install httpd
2.systemctl start httpd cockpit
stop
status 查看状态
restart
enable 开机启用
disabel
3.systemctl stop firewalld
systemctl disable firewalld 开机不启用
4.setenforce 0 临时关闭selinux
[root@bayern ~]# vim /etc/selinux/config 永久关闭selinux
SELINUX= permissive
5.通过浏览器--https://ip:9090
配置ftp服务器 s/c
服务器------Linux虚拟机
客户端主机-------window
1.配置服务端,配置ftp服务
#yum -y install vsftpd
2.systemctl start vsftpd
systemctl enable vsftpd -->systemctl enable vsftpd --now
3.systemctl stop firewalld (临时停止selinux)
systemctl disable firewalld (开机不启用)
4.setenforce 0 (临时关闭selinux)
[root@bayern ~]#vim /etc/selinux/config (永久关闭selinux)
实现上传下载删除
5.#vi /etc/vsftpd/vsftpd.conf
29行删注释
33行删除注释 ,并在34行添加一条配置anon_other_write_enable=yes
6.systemctl restart vsftpd
7.touch /var/ftp/pub/test{1..10}
8.客户端window上通过计算机资源链接栏:ftp://ip