centos 6 vim 怎么安装
Centos6中vim的安装
一、yum源安装
yum安装vim
vim 软件包已经包括在默认的软件源里。因此想要安装 vim,只需要运行下面的 yum 命令
[root@centos6 ~]# yum -y install vim
2.查看vim版本号,并确认安装成功
[root@centos6 ~]# vim -h
二、源码安装最新版vim 7.4
要具有root权限
su - root
2.卸载自带vim
[root@centos6 ~]# yum remove vim vim-enhanced vim-common vim-minimal
3.下载、解压7.4
[root@centos6 ~]# wget ftp://ftp.vim.org/pub/vim/unix/vim-7.4.tar.bz2
[root@centos6 ~]# wget ftp://ftp.vim.org/pub/vim/extra/vim-7.2-extra.tar.gz
[root@centos6 ~]# wget ftp://ftp.vim.org/pub/vim/extra/vim-7.2-lang.tar.gz
[root@centos6 ~]# tar jxvf vim-7.4.tar.bz2
[root@centos6 ~]# tar zxvf vim-7.2-extra.tar.gz
[root@centos6 ~]# tar zxvf vim-7.2-lang.tar.gz
[root@centos6 ~]# mv vim72 vim74
4. 安装编译环境
[root@centos6 ~]# yum install ncurses-devel gcc
5.编译安装
[root@centos6 ~]# cd vim74/src
[root@centos6 ~]# ./configure --enable-multibyte \--with-features=huge \--disable-selinux
[root@centos6 ~]# make
[root@centos6 ~]# make install
6.测试
[root@centos6 ~]# vim --version
2024-08-19 广告