centos入门的一些笔记

前端之家收集整理的这篇文章主要介绍了centos入门的一些笔记前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1、ps是显示当前状态处于running的进程,grep表示在这些里搜索,而ps aux是显示所有进程和其状态。

$ ps aux | grep amoeba

2、解决YUM下Loadedplugins:fastestmirrorDeterminingfastestmirrors的问题

Centons下

其大概意思是fastestmirror不能使用,fastestmirror是yum的一个加速插件,具体我也没有仔细了解过,可能是系统不支持或者缺少组建导致的。处理办法就是禁用这个插件方法如下:

  1. root@www.ctohome.com]#vi/etc/yum/pluginconf.d/fastestmirror.conf
  2. [main]
  3. enabled=0//把1改为0
  4. verbose=0
  5. socket_timeout=3
  6. hostfilepath=/var/cache/yum/timedhosts.txt
  7. maxhostfileage=10
  8. maxthreads=15
  9. #exclude=.gov,facebook
  10. =======================================================================================
  11. 修改以下配置文件
  12. #vi /etc/yum.conf [main] cachedir=/var/cache/yum/$basearch/$releasever keepcache=0 debuglevel=2 logfile=/var/log/yum.log exactarch=1 obsoletes=1 gpgcheck=1 plugins=1#将plugins的值修改为0 installonly_limit=5
原文链接:https://www.f2er.com/centos/381612.html

猜你在找的CentOS相关文章