Wednesday, February 16, 2022

Vim Editor From Source On Rocky Linux 8.5 ( Build From Source )

 in This Tutorial you will Learn "  How To Install vim Editor From Source on Rocky Linux 8.5 ( Build From Source )
Vim (Vi Improved) is a highly configurable command line text editor for Unix like systems. It is originally cloned with VI POSIX standard editor with additions.
_________________________________________________________________________________________
Server - Os:  Rocky Linux 8.5  64Bit      | IP -192.168.1.60        |Hostname - server.yourdomain.com
_________________________________________________________________________________________
cat /etc/system-release ; dnf groupinstall "Development Tools" -y''
vim -version | less
yum -y install  ncurses-devel
cd /usr/local/src ; wget https://github.com/vim/vim/archive/master.zip    
unzip master.zip ; cd vim-master/src/
./configure --prefix=/usr --with-features=huge --enable-pythoninterp --enable-multibyte
make && make install
vim
vim -version | less
_________________________________________________________________________________________

No comments:

Post a Comment