Sponsored Content
Top Forums Shell Programming and Scripting How to install VIM in AIX UNIX Post 302143581 by porter on Friday 2nd of November 2007 03:18:12 AM
Old 11-02-2007
(a) why install vim when you already have vi?

(b) the official way -> IBM AIX Toolbox Download Page - RPM Group Classifications
 

10 More Discussions You Might Find Interesting

1. UNIX Desktop Questions & Answers

Can I Install AIX 4.3.3 on a PC?

Would it be possible to install AIX ver 4.3.3 on a Pc so I can Practice commands and become familiar with the system? Is there anything special that i would have to do? Thanks Frank (1 Reply)
Discussion started by: wumagic
1 Replies

2. UNIX for Dummies Questions & Answers

How to put vim in unix

Hi friends I wanted to know how i can put vim in unix .Actually in unix i m presently working on has vi editor and my another unix server there is vim is working. So i wanted to put vim of another server to my unix server.(I am fresher working on unix so i want help may be i can't explain my... (2 Replies)
Discussion started by: brain_full
2 Replies

3. UNIX for Dummies Questions & Answers

Unable to install Vim on unixware

I tried to install Vim running configure script but it gives me error:UX:sh (./configure): ERROR: auto/configure: Cannot executeHere is configure script:/home/tom/vim70/src$cat configure #! /bin/sh # run the automatically generated configure script CONFIG_STATUS=auto/config.status \ ... (1 Reply)
Discussion started by: nervous
1 Replies

4. AIX

vim on AIX

Hello I am trying to install vim on an AIX 5.3 server. I am using the 6.3 vim runtimes. when executing, i run into the following problem: exec(): 0509-036 Cannot load program /usr/local/bin/vim because of the following errors: 0509-150 Dependent module libtermcap.a(shr.o) could... (2 Replies)
Discussion started by: mhenryj
2 Replies

5. Solaris

install vim error

dear all iam installing vim on solaris 10 but it give me the below error can any one help me ld.so.1: vim: fatal: libncurses.so.5: open failed: No such file or directory Killed (2 Replies)
Discussion started by: murad.jaber
2 Replies

6. AIX

VIM for AIX

Hey guys, Does anyone know how can I set theme for my vim in AIX? I have installed VIM but do not what to do now :) Here is what I have when run rpm -qa | grep vim vim-enhanced-6.3-1 vim-common-6.3-1 Is this all needed? thanks alot (1 Reply)
Discussion started by: LooLoo
1 Replies

7. Solaris

Very Importan - Vim Settings - Error while opening a File using vim

I downloaded vim.7.2 and compiled the vim source . Added the vim binary path to PATH (Because iam not the root of the box) when i load the file using vim it throws me an error Error detected while processing /home2/e3003091/.vimrc: line 2: E185: Cannot find color scheme darkblue line... (0 Replies)
Discussion started by: girija
0 Replies

8. UNIX for Dummies Questions & Answers

Install vim on centos

i typed this command it shows -bash: up2date: command not found how to install it? how to copy the code to the VI editor when i access my server with secureCRT (1 Reply)
Discussion started by: runeveryday
1 Replies

9. UNIX for Dummies Questions & Answers

I have to learn UNIX/LINUX/VIM/EMACS

I need some advice from people who use command line frequently and know how to use both VIM and EMACS pretty well for their daily tasks. Please no opinion on which one better etc..., I got enough at that from the Internet. A little about my professional background: I have been a firmware... (2 Replies)
Discussion started by: gspec
2 Replies

10. UNIX for Dummies Questions & Answers

AIX - VI/VIM Newbie Keymapping Help.

When I use the PgUp/PgDn keys it does strange things, like make the next letters change case. I know that it's because what the key is sending is telling vi to move to the next letter and change the case, but I'm absolutely having no luck in remapping PgUp/PgDn (CTRL+B/F) to those keys. CTRL+V... (0 Replies)
Discussion started by: Vryali
0 Replies
PERLOS400(1)						 Perl Programmers Reference Guide					      PERLOS400(1)

NAME
README.os400 - Perl version 5 on OS/400 DESCRIPTION
This document describes various features of IBM's OS/400 operating system that will affect how Perl version 5 (hereafter just Perl) is compiled and/or runs. By far the easiest way to build Perl for OS/400 is to use the PASE (Portable Application Solutions Environment), for more information see http://www.iseries.ibm.com/developer/factory/pase/index.html This environment allows one to use AIX APIs while programming, and it provides a runtime that allows AIX binaries to execute directly on the PowerPC iSeries. Compiling Perl for OS/400 PASE The recommended way to build Perl for the OS/400 PASE is to build the Perl 5 source code (release 5.8.1 or later) under AIX. The trick is to give a special parameter to the Configure shell script when running it on AIX: sh Configure -DPASE ... The default installation directory of Perl under PASE is /QOpenSys/perl. This can be modified if needed with Configure parameter -Dprefix=/some/dir. Starting from OS/400 V5R2 the IBM Visual Age compiler is supported on OS/400 PASE, so it is possible to build Perl natively on OS/400. The easier way, however, is to compile in AIX, as just described. If you don't want to install the compiled Perl in AIX into /QOpenSys (for packaging it before copying it to PASE), you can use a Configure parameter: -Dinstallprefix=/tmp/QOpenSys/perl. This will cause the "make install" to install everything into that directory, while the installed files still think they are (will be) in /QOpenSys/perl. If building natively on PASE, please do the build under the /QOpenSys directory, since Perl is happier when built on a case sensitive filesystem. Installing Perl in OS/400 PASE If you are compiling on AIX, simply do a "make install" on the AIX box. Once the install finishes, tar up the /QOpenSys/perl directory. Transfer the tarball to the OS/400 using FTP with the following commands: > binary > site namefmt 1 > put perl.tar /QOpenSys Once you have it on, simply bring up a PASE shell and extract the tarball. If you are compiling in PASE, then "make install" is the only thing you will need to do. The default path for perl binary is /QOpenSys/perl/bin/perl. You'll want to symlink /QOpenSys/usr/bin/perl to this file so you don't have to modify your path. Using Perl in OS/400 PASE Perl in PASE may be used in the same manner as you would use Perl on AIX. Scripts starting with #!/usr/bin/perl should work if you have /QOpenSys/usr/bin/perl symlinked to your perl binary. This will not work if you've done a setuid/setgid or have environment variable PASE_EXEC_QOPENSYS="N". If you have V5R1, you'll need to get the latest PTFs to have this feature. Scripts starting with #!/QOpenSys/perl/bin/perl should always work. Known Problems When compiling in PASE, there is no "oslevel" command. Therefore, you may want to create a script called "oslevel" that echoes the level of AIX that your version of PASE runtime supports. If you're unsure, consult your documentation or use "4.3.3.0". If you have test cases that fail, check for the existence of spool files. The test case may be trying to use a syscall that is not implemented in PASE. To avoid the SIGILL, try setting the PASE_SYSCALL_NOSIGILL environment variable or have a handler for the SIGILL. If you can compile programs for PASE, run the config script and edit config.sh when it gives you the option. If you want to remove fchdir(), which isn't implement in V5R1, simply change the line that says: d_fchdir='define' to d_fchdir='undef' and then compile Perl. The places where fchdir() is used have alternatives for systems that do not have fchdir() available. Perl on ILE There exists a port of Perl to the ILE environment. This port, however, is based quite an old release of Perl, Perl 5.00502 (August 1998). (As of July 2002 the latest release of Perl is 5.8.0, and even 5.6.1 has been out since April 2001.) If you need to run Perl on ILE, though, you may need this older port: http://www.cpan.org/ports/#os400 Note that any Perl release later than 5.00502 has not been ported to ILE. If you need to use Perl in the ILE environment, you may want to consider using Qp2RunPase() to call the PASE version of Perl. AUTHORS
Jarkko Hietaniemi <jhi@iki.fi> Bryan Logan <bryanlog@us.ibm.com> David Larson <larson1@us.ibm.com> perl v5.12.5 2012-11-03 PERLOS400(1)
All times are GMT -4. The time now is 12:14 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy