× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



So having installed that and having received the same error (algorithm - no such file or directory) we are bouncing it back to IBM to resolve.

-----Original Message-----
From: WEB400 [mailto:web400-bounces@xxxxxxxxxxxx] On Behalf Of Aaron Bartell
Sent: 07 July 2016 20:39
To: Web Enabling the IBM i (AS/400 and iSeries) <web400@xxxxxxxxxxxx>
Subject: Re: [WEB400] Node - npm install fails when "node-gyp rebuild" required

It's been available via 5733OPS opt 3 up to now, but yes, it's also now being made available via the group PTF.

Aaron Bartell
litmis.com - Services for open source on IBM i


On Thu, Jul 7, 2016 at 2:35 PM, Kevin Turner <kevin.turner@xxxxxxxxxxxxxxx>
wrote:

Ahh I see - aren't IBM providing all this with the SF99123 group PTF
for Open Source now?

Sent from my iPad

On 7 Jul 2016, at 15:35, Aaron Bartell <aaronbartell@xxxxxxxxx> wrote:

You can read about ibmichroot here:
http://bit.ly/ibmsystemsmag-chroot

If you plan on deploying to Windows then developing on Windows is fine.
If
you plan on deploying to PASE then you had better work through the
issue
(I
have the scars to prove it).

Aaron Bartell
litmis.com - Services for open source on IBM i


On Thu, Jul 7, 2016 at 9:32 AM, Kevin Turner <
kevin.turner@xxxxxxxxxxxxxxx>
wrote:

I would agree if it wasn't for the fact that I already have it all
installed and running on windows - it was as easy as falling off a
log
once
I had the correct C++ compiler installed.

I have to admit I have no clue what ibmichroot is. I just blindly
installed it by following your instructions :)

-----Original Message-----
From: WEB400 [mailto:web400-bounces@xxxxxxxxxxxx] On Behalf Of
Aaron Bartell
Sent: 07 July 2016 15:28
To: Web Enabling the IBM i (AS/400 and iSeries)
<web400@xxxxxxxxxxxx>
Subject: Re: [WEB400] Node - npm install fails when "node-gyp rebuild"
required

Ha ha, well, Windows will be an equal PITA as much of this stuff is
as foreign there as it is on PASE, though there are more people
working to address it in Windows. Only Linux would offer reprieve,
and even then
the
same errors exist on Linux.

This is where you will quickly learn to see the value/reason of the
ibmichroot project. Right now you most likely have a muddy base of
PASE (lots of stuff installed, lots of devs doing different things,
stepping
on
each others toes). Using ibmichroot you can create what I like to
call "IFS containers" where only the things you explicitly declare
to be
copied
will be copied into the IFS container (aka chroot directory).

Aaron Bartell
litmis.com - Services for open source on IBM i


On Thu, Jul 7, 2016 at 9:13 AM, Kevin Turner <
kevin.turner@xxxxxxxxxxxxxxx
wrote:

Same: "make 4.1"

No journaling.

I am beginning to prefer Windows! What a PITA :)

-----Original Message-----
From: WEB400 [mailto:web400-bounces@xxxxxxxxxxxx] On Behalf Of
Aaron Bartell
Sent: 07 July 2016 15:02
To: Web Enabling the IBM i (AS/400 and iSeries)
<web400@xxxxxxxxxxxx>
Subject: Re: [WEB400] Node - npm install fails when "node-gyp rebuild"
required

Try doing this to view the name of the "make" directory: % ls -al
/opt/freeware/doc/

My shows make-4.1 in the listing.

Next question, is the directory you're doing this from being
journaled? I ask because I've had obscure issues** with Git
because of journaled directories. It's a far fetch in this case
because I don't believe "gmake -v" would be using mmap, but the
below link also describes (somewhat
exhaustively) how to debug PASE issues using dbx.

**http://bit.ly/ibmi-git-mmap-failed

Aaron Bartell
litmis.com - Services for open source on IBM i


On Thu, Jul 7, 2016 at 8:49 AM, Kevin Turner
<kevin.turner@xxxxxxxxxxxxxxx
wrote:

Yeah - same problem (as expected) regardless of the -g option.

I get a subtly different output to you (but the same version):

gmake -v
gmake: *** virtual memory exhausted. Stop.
<<<<<<<<<<<<<Whoa!<<<<<<<<<<<<<<<<<<<<
GNU Make 4.1
Built for powerpc-ibm-aix5.3.0.0
Copyright (C) 1988-2014 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <
http://gnu.org/licenses/gpl.html> This is free software: you are
free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

-----Original Message-----
From: WEB400 [mailto:web400-bounces@xxxxxxxxxxxx] On Behalf Of
Aaron Bartell
Sent: 07 July 2016 14:46
To: Web Enabling the IBM i (AS/400 and iSeries)
<web400@xxxxxxxxxxxx>
Subject: Re: [WEB400] Node - npm install fails when "node-gyp rebuild"
required

npm install hiredis -g

Unless IBM has changed defaults of the Node.js install, you never
want to install using the "-g" option as that will put it in
IBM's Node.js folder which *could* be wiped out in the future. I
usually install local to the current project (just remove -g
option) or change the default global location to be in my /home directory.

What does "gmake -v" produce for you? Below is what I get. SO
posts state gmake 3.80 had this issue.

% gmake -v
GNU Make 4.1
Built for powerpc-ibm-aix5.3.0.0
Copyright (C) 1988-2014 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <
http://gnu.org/licenses/gpl.html This is free software: you are
free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.



Aaron Bartell
litmis.com - Services for open source on IBM i


On Thu, Jul 7, 2016 at 8:39 AM, Kevin Turner
<kevin.turner@xxxxxxxxxxxxxxx
wrote:

Interestingly, after running "./pkg_setup.sh pkg_perzl_gcc-4.8.3.lst"
and trying "npm install hiredis -g" again I didn't seem to get
as far as
you.
Instead I received:

gmake: *** virtual memory exhausted. Stop.
Error: `gmake` failed with exit code: 2
at ChildProcess.onExit
(/QOpenSys/QIBM/ProdData/OPS/Node4/lib/node_modules/npm/node_modu
les
/n
ode-gyp/lib/build.js:276:23)
at emitTwo (events.js:87:13)
at ChildProcess.emit (events.js:172:7)
at Process.ChildProcess._handle.onexit
(internal/child_process.js:200:12)
OS400 1
"/QOpenSys/QIBM/ProdData/OPS/Node4/bin/node"

"/QOpenSys/QIBM/ProdData/OPS/Node4/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js"
"rebuild"


________________________________

NOTICE: The information in this electronic mail transmission is
intended by CoralTree Systems Ltd for the use of the named
individuals or entity to which it is directed and may contain
information that is privileged or otherwise confidential. If you
have received this electronic mail transmission in error, please
delete it from your system without copying or forwarding it, and
notify the sender of the error by reply email or by telephone,
so that the sender's address
records can be corrected.




----------------------------------------------------------------
--
--
--
----------


CoralTree Systems Limited
25 Barnes Wallis Road
Segensworth East, Fareham
PO15 5TT

Company Registration Number 5021022.
Registered Office:
12-14 Carlton Place
Southampton, UK
SO15 2EA
VAT Registration Number 834 1020 74.
--
This is the Web Enabling the IBM i (AS/400 and iSeries) (WEB400)
mailing list To post a message email: WEB400@xxxxxxxxxxxx To
subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/web400
or email: WEB400-request@xxxxxxxxxxxx Before posting, please
take a moment to review the archives at
http://archive.midrange.com/web400.
--
This is the Web Enabling the IBM i (AS/400 and iSeries) (WEB400)
mailing list To post a message email: WEB400@xxxxxxxxxxxx To
subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/web400
or email: WEB400-request@xxxxxxxxxxxx Before posting, please take
a moment to review the archives at http://archive.midrange.com/web400.


___________________________________________
This email has been scanned by iomartcloud.
http://www.iomartcloud.com/


________________________________

NOTICE: The information in this electronic mail transmission is
intended by CoralTree Systems Ltd for the use of the named
individuals or entity to which it is directed and may contain
information that is privileged or otherwise confidential. If you
have received this electronic mail transmission in error, please
delete it from your system without copying or forwarding it, and
notify the sender of the error by reply email or by telephone, so
that the sender's address
records can be corrected.




-----------------------------------------------------------------
---
--
----------


CoralTree Systems Limited
25 Barnes Wallis Road
Segensworth East, Fareham
PO15 5TT

Company Registration Number 5021022.
Registered Office:
12-14 Carlton Place
Southampton, UK
SO15 2EA
VAT Registration Number 834 1020 74.
--
This is the Web Enabling the IBM i (AS/400 and iSeries) (WEB400)
mailing list To post a message email: WEB400@xxxxxxxxxxxx To
subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/web400
or email: WEB400-request@xxxxxxxxxxxx Before posting, please take
a moment to review the archives at http://archive.midrange.com/web400.
--
This is the Web Enabling the IBM i (AS/400 and iSeries) (WEB400)
mailing list To post a message email: WEB400@xxxxxxxxxxxx To
subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/web400
or email: WEB400-request@xxxxxxxxxxxx Before posting, please take
a moment to review the archives at
http://archive.midrange.com/web400.


___________________________________________
This email has been scanned by iomartcloud.
http://www.iomartcloud.com/


________________________________

NOTICE: The information in this electronic mail transmission is
intended by CoralTree Systems Ltd for the use of the named
individuals or entity to which it is directed and may contain
information that is privileged or otherwise confidential. If you
have received this electronic mail transmission in error, please
delete it from your system without copying or forwarding it, and
notify the sender of the error by reply email or by telephone, so
that the sender's address
records can be corrected.




------------------------------------------------------------------
----
----------


CoralTree Systems Limited
25 Barnes Wallis Road
Segensworth East, Fareham
PO15 5TT

Company Registration Number 5021022.
Registered Office:
12-14 Carlton Place
Southampton, UK
SO15 2EA
VAT Registration Number 834 1020 74.
--
This is the Web Enabling the IBM i (AS/400 and iSeries) (WEB400)
mailing list To post a message email: WEB400@xxxxxxxxxxxx To
subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/web400
or email: WEB400-request@xxxxxxxxxxxx Before posting, please take
a moment to review the archives at
http://archive.midrange.com/web400.
--
This is the Web Enabling the IBM i (AS/400 and iSeries) (WEB400)
mailing list To post a message email: WEB400@xxxxxxxxxxxx To
subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/web400
or email: WEB400-request@xxxxxxxxxxxx Before posting, please take a
moment to review the archives at
http://archive.midrange.com/web400.


___________________________________________
This email has been scanned by iomartcloud.
http://www.iomartcloud.com/


________________________________

NOTICE: The information in this electronic mail transmission is
intended by CoralTree Systems Ltd for the use of the named
individuals or entity
to
which it is directed and may contain information that is privileged
or otherwise confidential. If you have received this electronic
mail transmission in error, please delete it from your system
without
copying or
forwarding it, and notify the sender of the error by reply email or
by telephone, so that the sender's address records can be corrected.





----------------------------------------------------------------------
----------


CoralTree Systems Limited
25 Barnes Wallis Road
Segensworth East, Fareham
PO15 5TT

Company Registration Number 5021022.
Registered Office:
12-14 Carlton Place
Southampton, UK
SO15 2EA
VAT Registration Number 834 1020 74.
--
This is the Web Enabling the IBM i (AS/400 and iSeries) (WEB400)
mailing list To post a message email: WEB400@xxxxxxxxxxxx To
subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/web400
or email: WEB400-request@xxxxxxxxxxxx Before posting, please take a
moment to review the archives at
http://archive.midrange.com/web400.
--
This is the Web Enabling the IBM i (AS/400 and iSeries) (WEB400)
mailing
list
To post a message email: WEB400@xxxxxxxxxxxx To subscribe,
unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/web400
or email: WEB400-request@xxxxxxxxxxxx Before posting, please take a
moment to review the archives at http://archive.midrange.com/web400.


___________________________________________
This email has been scanned by iomartcloud.
http://www.iomartcloud.com/


________________________________

NOTICE: The information in this electronic mail transmission is
intended by CoralTree Systems Ltd for the use of the named individuals
or entity to which it is directed and may contain information that is
privileged or otherwise confidential. If you have received this
electronic mail transmission in error, please delete it from your
system without copying or forwarding it, and notify the sender of the
error by reply email or by telephone, so that the sender's address records can be corrected.




----------------------------------------------------------------------
----------


CoralTree Systems Limited
25 Barnes Wallis Road
Segensworth East, Fareham
PO15 5TT

Company Registration Number 5021022.
Registered Office:
12-14 Carlton Place
Southampton, UK
SO15 2EA
VAT Registration Number 834 1020 74.
--
This is the Web Enabling the IBM i (AS/400 and iSeries) (WEB400)
mailing list To post a message email: WEB400@xxxxxxxxxxxx To
subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/web400
or email: WEB400-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives at
http://archive.midrange.com/web400.


--
This is the Web Enabling the IBM i (AS/400 and iSeries) (WEB400) mailing list To post a message email: WEB400@xxxxxxxxxxxx To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/web400
or email: WEB400-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives at http://archive.midrange.com/web400.


___________________________________________
This email has been scanned by iomartcloud.
http://www.iomartcloud.com/


________________________________

NOTICE: The information in this electronic mail transmission is intended by CoralTree Systems Ltd for the use of the named individuals or entity to which it is directed and may contain information that is privileged or otherwise confidential. If you have received this electronic mail transmission in error, please delete it from your system without copying or forwarding it, and notify the sender of the error by reply email or by telephone, so that the sender's address records can be corrected.



--------------------------------------------------------------------------------


CoralTree Systems Limited
25 Barnes Wallis Road
Segensworth East, Fareham
PO15 5TT

Company Registration Number 5021022.
Registered Office:
12-14 Carlton Place
Southampton, UK
SO15 2EA
VAT Registration Number 834 1020 74.

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.