| Sven Guckes@vim.org ©1995-2001 | Last update: Thu Jan 25 23:48:40 MET 2001 |
If all works well then you should now have the latest source archive and runtime archive on your computer.
I suggest to place the downloaded archives (the runtime archive and the source archive) in the directory $HOME/archive/:
$ ls $HOME/archive/vim*gz 1339333 Jan 21 20:42 vim-6.0t-rt.tar.gz 1425374 Jan 21 20:44 vim-6.0t-src.tar.gz
$ cd $HOME/install/ $ tar xvvzf $HOME/archive/vim-6.0t-rt.tar.gz $ tar xvvzf $HOME/archive/vim-6.0t-src.tar.gz $ cd src $ ./configure with options $ make $ make installNow, if you want to install vim for yourself in your own home directory then you should tell the configure script about this by specifying the installation path prefix;
$ ./configure --prefix=$HOME
Many users are not allowed to install the binary under the default directory "/usr/local/", so I advise you to change at least the "prefix" in the Makefile:
gtar xvvzf /import/ftp/misc/editors/vim/unreleased/unix/vim-5.5a-src.tar.gzBut this is a special case, of course. So let's assume that the archive with the sources are in ~/src. Unpacking the archive then as easy as this:
gtar xvvzf vim-5.5a-src.tar.gzThe option "vv" in this command makes gtar display all files "very verbosely":
Now we can "run configure", ie enter the command "./configure":
The automatic configuration should end with
updating cache ./config.cache creating ./config.status creating config.mk creating config.hThe configuration of some programs here end with a note on what to do next which I find quite nice. Vim's configure does not have that, though.
URL: http://www.math.fu-berlin.de/~guckes/vim/howto/install.html
http://www.vim.org/install.html
Created: Mon Feb 12 00:00:00 MET 1996
Send feedback on this page to