* ldconfig messages - "path given more than once" + "can't stat file..." @ 2020-05-13 22:38 Matthias Fischer 2020-05-13 23:18 ` Matthias Fischer 0 siblings, 1 reply; 9+ messages in thread From: Matthias Fischer @ 2020-05-13 22:38 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 491 bytes --] Hi, on a fresh Core 144 / x86_64 install, running without any seen problems, I get these "messages": ... ldconfig: Path `/lib64' given more than once ldconfig: Can't stat /libx32: No such file or directory ldconfig: Path `/usr/lib64' given more than once ldconfig: Can't stat /usr/libx32: No such file or directory ... when I run 'ldconfig -v'. This is new to me - I'm searching, but haven't found the reason yet. And I'd like to know... Any ideas? Thanks in advance! Best, Matthias ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ldconfig messages - "path given more than once" + "can't stat file..." 2020-05-13 22:38 ldconfig messages - "path given more than once" + "can't stat file..." Matthias Fischer @ 2020-05-13 23:18 ` Matthias Fischer 2020-05-13 23:40 ` Matthias Fischer 0 siblings, 1 reply; 9+ messages in thread From: Matthias Fischer @ 2020-05-13 23:18 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 727 bytes --] In the meantime I've found this discussion: https://trac.clfs.org/ticket/1098 Could it be that this behaviour is triggered by 'glibc'!? On 14.05.2020 00:38, Matthias Fischer wrote: > Hi, > > on a fresh Core 144 / x86_64 install, running without any seen problems, > I get these "messages": > > ... > ldconfig: Path `/lib64' given more than once > ldconfig: Can't stat /libx32: No such file or directory > ldconfig: Path `/usr/lib64' given more than once > ldconfig: Can't stat /usr/libx32: No such file or directory > ... > > when I run 'ldconfig -v'. > > This is new to me - I'm searching, but haven't found the reason yet. And > I'd like to know... > > Any ideas? > > Thanks in advance! > > Best, > > Matthias > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ldconfig messages - "path given more than once" + "can't stat file..." 2020-05-13 23:18 ` Matthias Fischer @ 2020-05-13 23:40 ` Matthias Fischer 2020-05-14 7:54 ` Matthias Fischer 0 siblings, 1 reply; 9+ messages in thread From: Matthias Fischer @ 2020-05-13 23:40 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 914 bytes --] According to the discussion in the link cited below I built an attached patch. Would this work? On 14.05.2020 01:18, Matthias Fischer wrote: > In the meantime I've found this discussion: > > https://trac.clfs.org/ticket/1098 > > Could it be that this behaviour is triggered by 'glibc'!? > > On 14.05.2020 00:38, Matthias Fischer wrote: >> Hi, >> >> on a fresh Core 144 / x86_64 install, running without any seen problems, >> I get these "messages": >> >> ... >> ldconfig: Path `/lib64' given more than once >> ldconfig: Can't stat /libx32: No such file or directory >> ldconfig: Path `/usr/lib64' given more than once >> ldconfig: Can't stat /usr/libx32: No such file or directory >> ... >> >> when I run 'ldconfig -v'. >> >> This is new to me - I'm searching, but haven't found the reason yet. And >> I'd like to know... >> >> Any ideas? >> >> Thanks in advance! >> >> Best, >> >> Matthias >> > [-- Attachment #2: Remove_extra_lib64_libx32_references_from_ldconfig_for_Pure64.patch --] [-- Type: text/plain, Size: 943 bytes --] diff -U 3 a/dl-cache.h b/dl-cache.h --- a/dl-cache.h Thu May 14 01:13:16 2020 +++ b/dl-cache.h Thu May 14 01:19:49 2020 @@ -27,6 +27,9 @@ size_t len = strlen (dir); \ char path[len + 4]; \ memcpy (path, dir, len + 1); \ +add_dir (path); \ +} while (0) +#define unused_var \ if (len >= 6 && ! memcmp (path + len - 6, "/lib64", 6)) \ { \ len -= 2; \ diff -U 3 a/ldconfig.h b/ldconfig.h --- a/ldconfig.h Thu May 14 01:13:16 2020 +++ b/ldconfig.h Thu May 14 01:20:00 2020 @@ -18,9 +18,7 @@ #include <sysdeps/generic/ldconfig.h> #define SYSDEP_KNOWN_INTERPRETER_NAMES \ - { "/lib/ld-linux.so.2", FLAG_ELF_LIBC6 }, \ - { "/libx32/ld-linux-x32.so.2", FLAG_ELF_LIBC6 }, \ - { "/lib64/ld-linux-x86-64.so.2", FLAG_ELF_LIBC6 }, + { "/lib/ld-linux-x86-64.so.2", FLAG_ELF_LIBC6 }, #define SYSDEP_KNOWN_LIBRARY_NAMES \ { "libc.so.6", FLAG_ELF_LIBC6 }, \ { "libm.so.6", FLAG_ELF_LIBC6 }, ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ldconfig messages - "path given more than once" + "can't stat file..." 2020-05-13 23:40 ` Matthias Fischer @ 2020-05-14 7:54 ` Matthias Fischer 2020-05-14 10:38 ` Michael Tremer 0 siblings, 1 reply; 9+ messages in thread From: Matthias Fischer @ 2020-05-14 7:54 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 1205 bytes --] => Patched => Works => Messages about paths "given more than once" and "No such file or directory" are gone. 'ldconfig' is working 'without seen problems' on Core 144 / x86_64. Patch wanted? ;-) On 14.05.2020 01:40, Matthias Fischer wrote: > According to the discussion in the link cited below I built an attached > patch. > > Would this work? > > On 14.05.2020 01:18, Matthias Fischer wrote: >> In the meantime I've found this discussion: >> >> https://trac.clfs.org/ticket/1098 >> >> Could it be that this behaviour is triggered by 'glibc'!? >> >> On 14.05.2020 00:38, Matthias Fischer wrote: >>> Hi, >>> >>> on a fresh Core 144 / x86_64 install, running without any seen problems, >>> I get these "messages": >>> >>> ... >>> ldconfig: Path `/lib64' given more than once >>> ldconfig: Can't stat /libx32: No such file or directory >>> ldconfig: Path `/usr/lib64' given more than once >>> ldconfig: Can't stat /usr/libx32: No such file or directory >>> ... >>> >>> when I run 'ldconfig -v'. >>> >>> This is new to me - I'm searching, but haven't found the reason yet. And >>> I'd like to know... >>> >>> Any ideas? >>> >>> Thanks in advance! >>> >>> Best, >>> >>> Matthias >>> >> > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ldconfig messages - "path given more than once" + "can't stat file..." 2020-05-14 7:54 ` Matthias Fischer @ 2020-05-14 10:38 ` Michael Tremer 2020-05-14 11:36 ` Matthias Fischer 0 siblings, 1 reply; 9+ messages in thread From: Michael Tremer @ 2020-05-14 10:38 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 1529 bytes --] Hi, I am confused now and cannot reproduce this on any of my systems. Where did this happen? -Michael > On 14 May 2020, at 08:54, Matthias Fischer <matthias.fischer(a)ipfire.org> wrote: > > => Patched > > => Works > > => Messages about paths "given more than once" and "No such file or > directory" are gone. > > 'ldconfig' is working 'without seen problems' on Core 144 / x86_64. > > Patch wanted? ;-) > > On 14.05.2020 01:40, Matthias Fischer wrote: >> According to the discussion in the link cited below I built an attached >> patch. >> >> Would this work? >> >> On 14.05.2020 01:18, Matthias Fischer wrote: >>> In the meantime I've found this discussion: >>> >>> https://trac.clfs.org/ticket/1098 >>> >>> Could it be that this behaviour is triggered by 'glibc'!? >>> >>> On 14.05.2020 00:38, Matthias Fischer wrote: >>>> Hi, >>>> >>>> on a fresh Core 144 / x86_64 install, running without any seen problems, >>>> I get these "messages": >>>> >>>> ... >>>> ldconfig: Path `/lib64' given more than once >>>> ldconfig: Can't stat /libx32: No such file or directory >>>> ldconfig: Path `/usr/lib64' given more than once >>>> ldconfig: Can't stat /usr/libx32: No such file or directory >>>> ... >>>> >>>> when I run 'ldconfig -v'. >>>> >>>> This is new to me - I'm searching, but haven't found the reason yet. And >>>> I'd like to know... >>>> >>>> Any ideas? >>>> >>>> Thanks in advance! >>>> >>>> Best, >>>> >>>> Matthias >>>> >>> >> > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ldconfig messages - "path given more than once" + "can't stat file..." 2020-05-14 10:38 ` Michael Tremer @ 2020-05-14 11:36 ` Matthias Fischer 2020-05-14 11:38 ` Michael Tremer 0 siblings, 1 reply; 9+ messages in thread From: Matthias Fischer @ 2020-05-14 11:36 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 2757 bytes --] Hi, first, I installed Core 144 / 64bit, built on a new 64bit Devel machine. I already integrated an upgrade in this install (squid 4.11 with latest patch). Install went ok. I restored my (main) backup - OK. Installed addons through pakfire - OK. Restored addon backups - OK. I upgraded some other programs (tmux / monit / privoxy / vnstat / squid graphs), which were compiled on the new 64bit devel. ["Devel64" = Linux Devel64 4.15.0-99-generic #100-Ubuntu SMP Wed Apr 22 20:32:56 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux, running Ubuntu 18.04.4 LTS] All in all: no seen problems, everything is running. Then I compiled and installed an update for 'knot' (2.9.4). Just to be careful, I manually ran 'ldconfig -v' after upgrading. And then I suddenly saw these messages the first time. With the new 'glibc' patch they're gone now - and the lib list is exactly the same. As I see it, the whole system is running without any problems. Only 'ldconfig' did complain and then I started to search for the reason. And yes, I was a bit stunned, too. Best, Matthias On 14.05.2020 12:38, Michael Tremer wrote: > Hi, > > I am confused now and cannot reproduce this on any of my systems. > > Where did this happen? > > -Michael > >> On 14 May 2020, at 08:54, Matthias Fischer <matthias.fischer(a)ipfire.org> wrote: >> >> => Patched >> >> => Works >> >> => Messages about paths "given more than once" and "No such file or >> directory" are gone. >> >> 'ldconfig' is working 'without seen problems' on Core 144 / x86_64. >> >> Patch wanted? ;-) >> >> On 14.05.2020 01:40, Matthias Fischer wrote: >>> According to the discussion in the link cited below I built an attached >>> patch. >>> >>> Would this work? >>> >>> On 14.05.2020 01:18, Matthias Fischer wrote: >>>> In the meantime I've found this discussion: >>>> >>>> https://trac.clfs.org/ticket/1098 >>>> >>>> Could it be that this behaviour is triggered by 'glibc'!? >>>> >>>> On 14.05.2020 00:38, Matthias Fischer wrote: >>>>> Hi, >>>>> >>>>> on a fresh Core 144 / x86_64 install, running without any seen problems, >>>>> I get these "messages": >>>>> >>>>> ... >>>>> ldconfig: Path `/lib64' given more than once >>>>> ldconfig: Can't stat /libx32: No such file or directory >>>>> ldconfig: Path `/usr/lib64' given more than once >>>>> ldconfig: Can't stat /usr/libx32: No such file or directory >>>>> ... >>>>> >>>>> when I run 'ldconfig -v'. >>>>> >>>>> This is new to me - I'm searching, but haven't found the reason yet. And >>>>> I'd like to know... >>>>> >>>>> Any ideas? >>>>> >>>>> Thanks in advance! >>>>> >>>>> Best, >>>>> >>>>> Matthias >>>>> >>>> >>> >> > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ldconfig messages - "path given more than once" + "can't stat file..." 2020-05-14 11:36 ` Matthias Fischer @ 2020-05-14 11:38 ` Michael Tremer 2020-05-14 12:01 ` Matthias Fischer 0 siblings, 1 reply; 9+ messages in thread From: Michael Tremer @ 2020-05-14 11:38 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 3063 bytes --] Oh, yes, they show up with -v. But I wouldn’t worry about them... > On 14 May 2020, at 12:36, Matthias Fischer <matthias.fischer(a)ipfire.org> wrote: > > Hi, > > first, I installed Core 144 / 64bit, built on a new 64bit Devel machine. > I already integrated an upgrade in this install (squid 4.11 with latest > patch). > > Install went ok. > > I restored my (main) backup - OK. > > Installed addons through pakfire - OK. > > Restored addon backups - OK. > > I upgraded some other programs (tmux / monit / privoxy / vnstat / squid > graphs), which were compiled on the new 64bit devel. > > ["Devel64" = Linux Devel64 4.15.0-99-generic #100-Ubuntu SMP Wed Apr 22 > 20:32:56 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux, running Ubuntu 18.04.4 > LTS] > > All in all: no seen problems, everything is running. > > Then I compiled and installed an update for 'knot' (2.9.4). > > Just to be careful, I manually ran 'ldconfig -v' after upgrading. > > And then I suddenly saw these messages the first time. With the new > 'glibc' patch they're gone now - and the lib list is exactly the same. > > As I see it, the whole system is running without any problems. Only > 'ldconfig' did complain and then I started to search for the reason. > > And yes, I was a bit stunned, too. > > Best, > Matthias > > On 14.05.2020 12:38, Michael Tremer wrote: >> Hi, >> >> I am confused now and cannot reproduce this on any of my systems. >> >> Where did this happen? >> >> -Michael >> >>> On 14 May 2020, at 08:54, Matthias Fischer <matthias.fischer(a)ipfire.org> wrote: >>> >>> => Patched >>> >>> => Works >>> >>> => Messages about paths "given more than once" and "No such file or >>> directory" are gone. >>> >>> 'ldconfig' is working 'without seen problems' on Core 144 / x86_64. >>> >>> Patch wanted? ;-) >>> >>> On 14.05.2020 01:40, Matthias Fischer wrote: >>>> According to the discussion in the link cited below I built an attached >>>> patch. >>>> >>>> Would this work? >>>> >>>> On 14.05.2020 01:18, Matthias Fischer wrote: >>>>> In the meantime I've found this discussion: >>>>> >>>>> https://trac.clfs.org/ticket/1098 >>>>> >>>>> Could it be that this behaviour is triggered by 'glibc'!? >>>>> >>>>> On 14.05.2020 00:38, Matthias Fischer wrote: >>>>>> Hi, >>>>>> >>>>>> on a fresh Core 144 / x86_64 install, running without any seen problems, >>>>>> I get these "messages": >>>>>> >>>>>> ... >>>>>> ldconfig: Path `/lib64' given more than once >>>>>> ldconfig: Can't stat /libx32: No such file or directory >>>>>> ldconfig: Path `/usr/lib64' given more than once >>>>>> ldconfig: Can't stat /usr/libx32: No such file or directory >>>>>> ... >>>>>> >>>>>> when I run 'ldconfig -v'. >>>>>> >>>>>> This is new to me - I'm searching, but haven't found the reason yet. And >>>>>> I'd like to know... >>>>>> >>>>>> Any ideas? >>>>>> >>>>>> Thanks in advance! >>>>>> >>>>>> Best, >>>>>> >>>>>> Matthias >>>>>> >>>>> >>>> >>> >> > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ldconfig messages - "path given more than once" + "can't stat file..." 2020-05-14 11:38 ` Michael Tremer @ 2020-05-14 12:01 ` Matthias Fischer 2020-05-14 12:09 ` Michael Tremer 0 siblings, 1 reply; 9+ messages in thread From: Matthias Fischer @ 2020-05-14 12:01 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 3698 bytes --] Hi, On 14.05.2020 13:38, Michael Tremer wrote: > Oh, yes, they show up with -v. But I wouldn’t worry about them... Oh my...: "...I cannot reproduce..."! YMMD! I first thought I had built a crippled ISO or something else! Went through the logs. Found nothing. All ok. Puh! But you're right - as far as I could find any informations on this, it seems to be a rather "cosmetic" issue. Going on for at least 4 years now. It nagged me. So I HAD to fix this: "This town is too small for the two of us, stranger!" ;-) Should I send the patch anyway? Best, Matthias > >> On 14 May 2020, at 12:36, Matthias Fischer <matthias.fischer(a)ipfire.org> wrote: >> >> Hi, >> >> first, I installed Core 144 / 64bit, built on a new 64bit Devel machine. >> I already integrated an upgrade in this install (squid 4.11 with latest >> patch). >> >> Install went ok. >> >> I restored my (main) backup - OK. >> >> Installed addons through pakfire - OK. >> >> Restored addon backups - OK. >> >> I upgraded some other programs (tmux / monit / privoxy / vnstat / squid >> graphs), which were compiled on the new 64bit devel. >> >> ["Devel64" = Linux Devel64 4.15.0-99-generic #100-Ubuntu SMP Wed Apr 22 >> 20:32:56 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux, running Ubuntu 18.04.4 >> LTS] >> >> All in all: no seen problems, everything is running. >> >> Then I compiled and installed an update for 'knot' (2.9.4). >> >> Just to be careful, I manually ran 'ldconfig -v' after upgrading. >> >> And then I suddenly saw these messages the first time. With the new >> 'glibc' patch they're gone now - and the lib list is exactly the same. >> >> As I see it, the whole system is running without any problems. Only >> 'ldconfig' did complain and then I started to search for the reason. >> >> And yes, I was a bit stunned, too. >> >> Best, >> Matthias >> >> On 14.05.2020 12:38, Michael Tremer wrote: >>> Hi, >>> >>> I am confused now and cannot reproduce this on any of my systems. >>> >>> Where did this happen? >>> >>> -Michael >>> >>>> On 14 May 2020, at 08:54, Matthias Fischer <matthias.fischer(a)ipfire.org> wrote: >>>> >>>> => Patched >>>> >>>> => Works >>>> >>>> => Messages about paths "given more than once" and "No such file or >>>> directory" are gone. >>>> >>>> 'ldconfig' is working 'without seen problems' on Core 144 / x86_64. >>>> >>>> Patch wanted? ;-) >>>> >>>> On 14.05.2020 01:40, Matthias Fischer wrote: >>>>> According to the discussion in the link cited below I built an attached >>>>> patch. >>>>> >>>>> Would this work? >>>>> >>>>> On 14.05.2020 01:18, Matthias Fischer wrote: >>>>>> In the meantime I've found this discussion: >>>>>> >>>>>> https://trac.clfs.org/ticket/1098 >>>>>> >>>>>> Could it be that this behaviour is triggered by 'glibc'!? >>>>>> >>>>>> On 14.05.2020 00:38, Matthias Fischer wrote: >>>>>>> Hi, >>>>>>> >>>>>>> on a fresh Core 144 / x86_64 install, running without any seen problems, >>>>>>> I get these "messages": >>>>>>> >>>>>>> ... >>>>>>> ldconfig: Path `/lib64' given more than once >>>>>>> ldconfig: Can't stat /libx32: No such file or directory >>>>>>> ldconfig: Path `/usr/lib64' given more than once >>>>>>> ldconfig: Can't stat /usr/libx32: No such file or directory >>>>>>> ... >>>>>>> >>>>>>> when I run 'ldconfig -v'. >>>>>>> >>>>>>> This is new to me - I'm searching, but haven't found the reason yet. And >>>>>>> I'd like to know... >>>>>>> >>>>>>> Any ideas? >>>>>>> >>>>>>> Thanks in advance! >>>>>>> >>>>>>> Best, >>>>>>> >>>>>>> Matthias >>>>>>> >>>>>> >>>>> >>>> >>> >> > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ldconfig messages - "path given more than once" + "can't stat file..." 2020-05-14 12:01 ` Matthias Fischer @ 2020-05-14 12:09 ` Michael Tremer 0 siblings, 0 replies; 9+ messages in thread From: Michael Tremer @ 2020-05-14 12:09 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 4052 bytes --] Hi, > On 14 May 2020, at 13:01, Matthias Fischer <matthias.fischer(a)ipfire.org> wrote: > > Hi, > > On 14.05.2020 13:38, Michael Tremer wrote: >> Oh, yes, they show up with -v. But I wouldn’t worry about them... > > Oh my...: "...I cannot reproduce..."! > > YMMD! I first thought I had built a crippled ISO or something else! > > Went through the logs. Found nothing. All ok. Puh! > > But you're right - as far as I could find any informations on this, it > seems to be a rather "cosmetic" issue. Going on for at least 4 years > now. It nagged me. > > So I HAD to fix this: "This town is too small for the two of us, > stranger!" ;-) > > Should I send the patch anyway? Yeah, why not? I wouldn’t mind it. But please make sure you test it first :) -Michael > > Best, > Matthias > >> >>> On 14 May 2020, at 12:36, Matthias Fischer <matthias.fischer(a)ipfire.org> wrote: >>> >>> Hi, >>> >>> first, I installed Core 144 / 64bit, built on a new 64bit Devel machine. >>> I already integrated an upgrade in this install (squid 4.11 with latest >>> patch). >>> >>> Install went ok. >>> >>> I restored my (main) backup - OK. >>> >>> Installed addons through pakfire - OK. >>> >>> Restored addon backups - OK. >>> >>> I upgraded some other programs (tmux / monit / privoxy / vnstat / squid >>> graphs), which were compiled on the new 64bit devel. >>> >>> ["Devel64" = Linux Devel64 4.15.0-99-generic #100-Ubuntu SMP Wed Apr 22 >>> 20:32:56 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux, running Ubuntu 18.04.4 >>> LTS] >>> >>> All in all: no seen problems, everything is running. >>> >>> Then I compiled and installed an update for 'knot' (2.9.4). >>> >>> Just to be careful, I manually ran 'ldconfig -v' after upgrading. >>> >>> And then I suddenly saw these messages the first time. With the new >>> 'glibc' patch they're gone now - and the lib list is exactly the same. >>> >>> As I see it, the whole system is running without any problems. Only >>> 'ldconfig' did complain and then I started to search for the reason. >>> >>> And yes, I was a bit stunned, too. >>> >>> Best, >>> Matthias >>> >>> On 14.05.2020 12:38, Michael Tremer wrote: >>>> Hi, >>>> >>>> I am confused now and cannot reproduce this on any of my systems. >>>> >>>> Where did this happen? >>>> >>>> -Michael >>>> >>>>> On 14 May 2020, at 08:54, Matthias Fischer <matthias.fischer(a)ipfire.org> wrote: >>>>> >>>>> => Patched >>>>> >>>>> => Works >>>>> >>>>> => Messages about paths "given more than once" and "No such file or >>>>> directory" are gone. >>>>> >>>>> 'ldconfig' is working 'without seen problems' on Core 144 / x86_64. >>>>> >>>>> Patch wanted? ;-) >>>>> >>>>> On 14.05.2020 01:40, Matthias Fischer wrote: >>>>>> According to the discussion in the link cited below I built an attached >>>>>> patch. >>>>>> >>>>>> Would this work? >>>>>> >>>>>> On 14.05.2020 01:18, Matthias Fischer wrote: >>>>>>> In the meantime I've found this discussion: >>>>>>> >>>>>>> https://trac.clfs.org/ticket/1098 >>>>>>> >>>>>>> Could it be that this behaviour is triggered by 'glibc'!? >>>>>>> >>>>>>> On 14.05.2020 00:38, Matthias Fischer wrote: >>>>>>>> Hi, >>>>>>>> >>>>>>>> on a fresh Core 144 / x86_64 install, running without any seen problems, >>>>>>>> I get these "messages": >>>>>>>> >>>>>>>> ... >>>>>>>> ldconfig: Path `/lib64' given more than once >>>>>>>> ldconfig: Can't stat /libx32: No such file or directory >>>>>>>> ldconfig: Path `/usr/lib64' given more than once >>>>>>>> ldconfig: Can't stat /usr/libx32: No such file or directory >>>>>>>> ... >>>>>>>> >>>>>>>> when I run 'ldconfig -v'. >>>>>>>> >>>>>>>> This is new to me - I'm searching, but haven't found the reason yet. And >>>>>>>> I'd like to know... >>>>>>>> >>>>>>>> Any ideas? >>>>>>>> >>>>>>>> Thanks in advance! >>>>>>>> >>>>>>>> Best, >>>>>>>> >>>>>>>> Matthias >>>>>>>> >>>>>>> >>>>>> >>>>> >>>> >>> >> > ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2020-05-14 12:09 UTC | newest] Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2020-05-13 22:38 ldconfig messages - "path given more than once" + "can't stat file..." Matthias Fischer 2020-05-13 23:18 ` Matthias Fischer 2020-05-13 23:40 ` Matthias Fischer 2020-05-14 7:54 ` Matthias Fischer 2020-05-14 10:38 ` Michael Tremer 2020-05-14 11:36 ` Matthias Fischer 2020-05-14 11:38 ` Michael Tremer 2020-05-14 12:01 ` Matthias Fischer 2020-05-14 12:09 ` Michael Tremer
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox