Thursday, March 17, 2011

mount.nfs: Remote I/O error

Question :

How to resolve the following mount error on Linux platforms ?

 [root@instrhel6ppc ~]# mount -o nolock thor:/devinst /devinst
mount.nfs: Remote I/O error
[root@instrhel6ppc ~]#


Answer :

Add the options to mount as shown below and it will resolve the issue .


[root@instrhel6ppc ~]# mount -o vers=3 thor:/devinst /devinst
[root@instrhel6ppc ~]#


Thursday, February 24, 2011

Too early to specify a build action 'Build'. Do 'Build Build' instead

Question : While installing a perl module on AIX server saw the following error. After the download I ran the following commands to install the module.

# perl Makefile.PL
Checking if your kit is complete...
Looks good
Writing Makefile for Tie::IxHash
# make install
        /usr/bin/perl "-Iblib/arch" "-Iblib/lib" Build.PL Build
Too early to specify a build action 'Build'.  Do 'Build Build' instead.
make: 1254-004 The error code from the last command is 2.


Stop.
#

 Resolution :

Edit the generated Makefile as shown below :
1. Search for the following line in Makefile .

$(PERLRUNINST) Build.PL Build

2. Change it to as shown below :

$(PERLRUNINST) Build.PL &&Build

3. After this try "make install" again and it should complete successfully.

Search This Blog