--
--
http://groups.google.com/group/Hardhats
To unsubscribe, send email to Hardhats+unsubscribe@googlegroups.com
---
You received this message because you are subscribed to the Google Groups "Hardhats" group.
To unsubscribe from this group and stop receiving emails from it, send an email to hardhats+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/hardhats/c3a15144-356d-4711-bca5-857e712ed857n%40googlegroups.com.
What variety of Operating System are you trying to base this installation on ?Also, what version ?
I followed the instruction on yottadb install. gets this error on final step. Appreciate any helpsudo ./ydbinstall.sh --utf8 default --octo --gui--
Shared library/libraries required by selected plugins not found: libconfig.so
Header file(s) required by selected plugins not found: libconfig.h readline/history.h readline/readline.h
YottaDB installation aborted due to above error. Run ydbinstall.sh --help for detailed option list
--
http://groups.google.com/group/Hardhats
To unsubscribe, send email to Hardhats+u...@googlegroups.com
---
You received this message because you are subscribed to the Google Groups "Hardhats" group.
To unsubscribe from this group and stop receiving emails from it, send an email to hardhats+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/hardhats/c3a15144-356d-4711-bca5-857e712ed857n%40googlegroups.com.
--
--
http://groups.google.com/group/Hardhats
To unsubscribe, send email to Hardhats+u...@googlegroups.com
---
You received this message because you are subscribed to the Google Groups "Hardhats" group.
To unsubscribe from this group and stop receiving emails from it, send an email to hardhats+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/hardhats/CA%2Bi2CT%2Bzsx%3DDUmCaqQJ-H%2BBoA%2BYgV4H%2Bqq9uY_c4xGmQeU8izQ%40mail.gmail.com.
It looks like you are missing a package. Most likely a dev package most libraries have a lib install which has just the library in it the library-dev usually has the header files that are required for compiling YDB is a compiled language so most likely has to dynamically compile/link to the header files in libconfig. Look for a libconfig-dev package with apt.
sudo apt list libconfig
the listing will give you
libconfig
libconfig-dev
install libconfig-dev and I bet your problem goes away.
Remember this is just a quess and your mileage may vary.
Marc Aylesworth
From: whitte...@gmail.com <whitte...@gmail.com>
On Behalf Of David Whitten
Sent: Sunday, August 13, 2023 6:41 PM
To: hard...@googlegroups.com
Subject: [Non-DoD Source] Re: [Hardhats] yottadb install
What variety of Operating System are you trying to base this installation on ?
Also, what version ?
Dave
On Friday, August 11, 2023, <geo...@gmail.com> wrote:
I followed the instruction on yottadb install. gets this error on final step. Appreciate any help
sudo ./ydbinstall.sh --utf8 default --octo --gui
Shared library/libraries required by selected plugins not found: libconfig.so
Header file(s) required by selected plugins not found: libconfig.h readline/history.h readline/readline.h
YottaDB installation aborted due to above error. Run ydbinstall.sh --help for detailed option list
--
--
http://groups.google.com/group/Hardhats
To unsubscribe, send email to Hardhats+u...@googlegroups.com
---
You received this message because you are subscribed to the Google Groups "Hardhats" group.
To unsubscribe from this group and stop receiving emails from it, send an email to hardhats+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/hardhats/c3a15144-356d-4711-bca5-857e712ed857n%40googlegroups.com.
--
--
http://groups.google.com/group/Hardhats
To unsubscribe, send email to
Hardhats+u...@googlegroups.com
---
You received this message because you are subscribed to the Google Groups "Hardhats" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
hardhats+u...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/hardhats/CA%2Bi2CT%2Bzsx%3DDUmCaqQJ-H%2BBoA%2BYgV4H%2Bqq9uY_c4xGmQeU8izQ%40mail.gmail.com.
brew install fis-gtm
Warning: No available formula with the name "fis-gtm".
==> Searching for similarly named formulae and casks...
===
wget https://github.com/YottaDB/YottaDB/releases/download/r1.38/yottadb_r1.38_x8664Darwin.zip
--2024-09-09 03:55:04-- https://github.com/YottaDB/YottaDB/releases/download/r1.38/yottadb_r1.38_x8664Darwin.zip
Resolving github.com (github.com)... 20.205.243.166
Connecting to github.com (github.com)|20.205.243.166|:443... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://github.com/YottaDB/YDB/releases/download/r1.38/yottadb_r1.38_x8664Darwin.zip [following]
--2024-09-09 03:55:04-- https://github.com/YottaDB/YDB/releases/download/r1.38/yottadb_r1.38_x8664Darwin.zip
Reusing existing connection to github.com:443.
HTTP request sent, awaiting response... 404 Not Found
2024-09-09 03:55:04 ERROR 404: Not Found.
====
The YottaDB release page said I post here ("
--
Nancy Anthracite
> - For requests specific to the use of YottaDB with VistA
> <https://en.wikipedia.org/wiki/VistA> flavors, post to the Hardhats
>
>
> Thanks in advance!
>
> Alvin
>
> On Monday, August 14, 2023 at 9:13:01 PM UTC+7 AYLESWORTH, MARC A CTR USAF
> AFMC AFRL/RIEBA wrote:
>
> > It looks like you are missing a package. Most likely a dev package most
> > libraries have a lib install which has just the library in it the
> > library-dev usually has the header files that are required for compiling
> > YDB is a compiled language so most likely has to dynamically compile/link
> > to the header files in libconfig. Look for a libconfig-dev package with
> > apt.
> >
> >
> >
> > sudo apt list libconfig
> >
> >
> >
> > the listing will give you
> >
> > libconfig
> >
> > libconfig-dev
> >
> >
> >
> > install libconfig-dev and I bet your problem goes away.
> >
> > Remember this is just a quess and your mileage may vary.
> >
> >
> >
> > Marc Aylesworth
> >
> >
> >
> > *From:* whitte...@gmail.com <whitte...@gmail.com> *On Behalf Of *David
> > Whitten
> > *Sent:* Sunday, August 13, 2023 6:41 PM
> > *To:* hard...@googlegroups.com
> > *Subject:* [Non-DoD Source] Re: [Hardhats] yottadb install
> >
> >
> >
> > What variety of Operating System are you trying to base this installation
> > on ?
> >
> > Also, what version ?
> >
> >
> >
> > Dave
> >
> > On Friday, August 11, 2023, <geo...@gmail.com> wrote:
> >
> > I followed the instruction on yottadb install. gets this error on final
> > step. Appreciate any help
> >
> >
> >
> >
> >
> >
> > *sudo ./ydbinstall.sh --utf8 default --octo --gui Shared library/libraries
> > required by selected plugins not found: libconfig.so Header file(s)
> > required by selected plugins not found: libconfig.h readline/history.h
> > readline/readline.h YottaDB installation aborted due to above error. Run
> > ydbinstall.sh --help for detailed option list*
> >
> >
> >
> >
> > ---
> > You received this message because you are subscribed to the Google Groups
> > "Hardhats" group.
> >
> > To unsubscribe from this group and stop receiving emails from it, send an
> > email to hardhats+u...@googlegroups.com.
> >
> >
> > To view this discussion on the web visit
> > https://groups.google.com/d/msgid/hardhats/c3a15144-356d-4711-bca5-857e712ed857n%40googlegroups.com
> >
> >
> >
> >
> > ---
> > You received this message because you are subscribed to the Google Groups
> > "Hardhats" group.
> >
> > To unsubscribe from this group and stop receiving emails from it, send an
> > email to hardhats+u...@googlegroups.com.
> > To view this discussion on the web visit
> > .
> >
>
>
Sorry, this was supposed to say to try this script!
-----Original Message-----
From: <hard...@googlegroups.com>
Sent: Sep 8, 2024 6:01 PM
To: Hardhats <hard...@googlegroups.com>
Cc: 'Alvin Marcelo' via Hardhats <hard...@googlegroups.com>
Subject: Re: [Non-DoD Source] Re: [Hardhats] yottadb install
--
Nancy Anthracite
> - For requests specific to the use of YottaDB with VistA
> <https://en.wikipedia.org/wiki/VistA> flavors, post to the Hardhats
>
>
> Thanks in advance!
>
> Alvin
>
> On Monday, August 14, 2023 at 9:13:01 PM UTC+7 AYLESWORTH, MARC A CTR USAF
> AFMC AFRL/RIEBA wrote:
>
> > It looks like you are missing a package. Most likely a dev package most
> > libraries have a lib install which has just the library in it the
> > library-dev usually has the header files that are required for compiling
> > YDB is a compiled language so most likely has to dynamically compile/link
> > to the header files in libconfig. Look for a libconfig-dev package with
> > apt.
> >
> >
> >
> > sudo apt list libconfig
> >
> >
> >
> > the listing will give you
> >
> > libconfig
> >
> > libconfig-dev
> >
> >
> >
> > install libconfig-dev and I bet your problem goes away.
> >
> > Remember this is just a quess and your mileage may vary.
> >
> >
> >
> > Marc Aylesworth
> >
> >
> >
> > *From:* whitte...@gmail.com <whitte...@gmail.com> *On Behalf Of *David
> > *Subject:* [Non-DoD Source] Re: [Hardhats] yottadb install
> >
> >
> >
> > What variety of Operating System are you trying to base this installation
> > on ?
> >
> > Also, what version ?
> >
> >
> >
> > Dave
> >
> > On Friday, August 11, 2023, <geo...@gmail.com> wrote:
> >
> > I followed the instruction on yottadb install. gets this error on final
> > step. Appreciate any help
> >
> >
> >
> >
> >
> >
> > *sudo ./ydbinstall.sh --utf8 default --octo --gui Shared library/libraries
> > required by selected plugins not found: libconfig.so Header file(s)
> > required by selected plugins not found: libconfig.h readline/history.h
> > readline/readline.h YottaDB installation aborted due to above error. Run
> > ydbinstall.sh --help for detailed option list*
> >
> >
> >
> >
> > ---
> > You received this message because you are subscribed to the Google Groups
> > "Hardhats" group.
> >
> > To unsubscribe from this group and stop receiving emails from it, send an
> > email to hardhats+u...@googlegroups.com.
> >
> >
> > To view this discussion on the web visit
> > https://groups.google.com/d/msgid/hardhats/c3a15144-356d-4711-bca5-857e712ed857n%40googlegroups.com
> >
> >
> >
> >
> > ---
> > You received this message because you are subscribed to the Google Groups
> > "Hardhats" group.
> >
> > To unsubscribe from this group and stop receiving emails from it, send an
> > email to hardhats+u...@googlegroups.com.
> > To view this discussion on the web visit
> > .
> >
>
>
--