Tag Archives: centos

最小化安装CentOS5.X后添加工具

PS:最小化安装系统的VPS  http://www.linode.com/  帮朋友装nginx,php,mysql的时候出现N多错误    

使用wget命令的时候出现了一下错误:-bash: wget: command not found

很显然,这是因为最小化安装没有安装wget的缘故

更新系统内核到最新.
yum -y update

安装工具:
1.安装wget

    yum install wget

2.安装setup

    yum install setuptool

3.安装cron

    yum install gcc gcc-c++ autoconf vixie-cron # vixie-cron软件包是cron的主程序
  • yum install gcc gcc-c++ autoconf crontabs  #crontabs软件包是用来安装、卸装、或列举用来驱动 cron 守护进程的表格的程序
  • 4.安装make

      yum install make
      5.安装unzip
      yum install unzip 
      因为要安装wordpress方便解压   ╮(╯▽╰)╭

    CentOS下yum安装gnome和kde桌面

    显示系统已经安装的组件,和可以安装的组件:

     #yum grouplist 如果系统安装之初采用最小化安装,没有安装xwindow,那么先安装:

     #yum groupinstall “X Window System”

    安装GNOME桌面环境 yum groupinstall “GNOME Desktop Environment”

    安装KDE桌面环境 yum groupinstall “KDE (K Desktop Environment)”

    卸载GNOME桌面环境

    yum groupremove “GNOME Desktop Environment”

    卸载KDE桌面环境 yum groupremove “KDE (K Desktop Environment