标签:yum
wdcp使用说明/教程/问题集/FAQ汇总
蓝鹰 | WDCP | 2013-11-28
Q:wdcp是什么?
A:wdcp是WDlinux Control Panel的简称,是一套PHP开发的Linux服务器管理系统.旨在易于使用和管理Linux服务器,虚拟主机/网站,FTP,mysql数据库等
Q:wdcp支持哪些系统?
A:目前确认支持的有CentOS 5.X,CentOS 6.X,Ubuntu 11.X,还有我们的优化定制版,wdOS,wdlinux_base
Q:wdcp是否支持64位?
A:可以完全支持32和64位
Q:wdcp管理后台端口是否可以... [阅读全文]
CentOS yum 安装Nginx(lnmp环境)
蓝鹰 | LNMP | 2013-11-27
更新系统组件
yum update -y
安装所需工具包
yum -y install gcc gcc-c++ autoconf libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel zlib zlib-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel ncurses ncurses-devel curl curl-devel e2fsprogs e2fsprogs-devel krb5 krb5-devel libidn libi... [阅读全文]
Linux系统下iftop的详细参数及说明
蓝鹰 | CentOS | 2013-11-25
Linux系统下,监控网卡的实时流量(指定网段)、反向解析IP、显示端口信息等,可以使用 "iftop" 命令,在使用前还需要安装所需的依赖包:
CentOS:
yum install flex byacc libpcap ncurses ncurses-devel libpcap-devel
Debian
apt-get install flex byacc libpcap0.8 libncurses5
下载iftop
wget http://67.222.145.17:89/Download/iftop-0.17.tar.... [阅读全文]
LINUX防火墙的打开与关闭方法
蓝鹰 | CentOS | 2013-11-25
安装
yum install iptables
1) 重启后生效
开启: chkconfig iptables on
关闭: chkconfig iptables off
2) 即时生效,重启后失效
开启: service iptables start
关闭: service iptables stop
[阅读全文]
linux 定时工具crontab的安装及使用方法 (计划任务)
蓝鹰 | CentOS | 2013-11-25
一、安装crontab
yum install vixie-cron
yum install crontabs
说明:
vixie-cron软件包是cron的主程序;
crontabs软件包是用来安装、卸装、或列举用来驱动 cron 守护进程的表格的程序。
cron 是linux的内置服务,但它不自动起来,可以用以下的方法启动、关闭这个服务:
service crond start //启动服务
service crond stop //关闭服务
service crond... [阅读全文]
Screen的安装和使用
蓝鹰 | CentOS | 2013-11-25
一、Screen是一个可以在多个进程之间多路复用一个物理终端的全屏窗口管理器。Screen中有会话的概念,用户可以在一个screen会话中创建多个screen窗口,在每一个screen窗口中就像操作一个真实的telnet/SSH连接窗口那样。 通俗的讲,screen命令用于新建一个或多个“命令行窗口”,在新建的这“窗口”中,可以执行命令;每个“窗口”都是独立并行的。
二、除部分... [阅读全文]
red hat linux使用yum 出现Loaded plugins: rhnplugin, security
蓝鹰 | CentOS | 2013-11-15
使用RedHat 系统在线安装时提示This system is not registered with RHN.如下:
[root@localhost ~]# yum install httpd
Loaded plugins: rhnplugin, security
This system is not registered with RHN.
RHN support will be disabled.
Setting up Install Process
No package httpd available.
Nothing to do
解决方案:
下载更新源,并存放在系统目录... [阅读全文]
yum因被锁定导致无法执行相关操作的解决方法
蓝鹰 | CentOS | 2013-11-09
执行yum命令时,提示“Another app is currently holding the yum lock; waiting for it to exit…”等错误字样。这是因为yum被锁定无法使用导致的。
错误信息参考:
Another app is currently holding the yum lock; waiting for it to exit...
The other application is: yum
Memory : 40 M RSS ( 50 MB VSZ)
Started: Thu Jul 19 01:59:25 20... [阅读全文]