I plan to connect my local repository with remote one in ubuntu 16.04. I conduct following steps:
git init
git remote add origin https://github.com/*****/****.git
git pull origin master
but when I run
git pull origin master
error message as follows are shown:
git-remote-https: symbol lookup error: /usr/lib/x86_64-linux-gnu/libhogweed.so.4: undefined symbol: __gmpn_cnd_add_n
how can I fix it?
asked Feb 15, 2018 at 2:54
After further searching, I eventually get the answer.
Firstly, I run
rm /usr/local/lib/libgmp.so*
and it returns
lrwxrwxrwx 1 root root 16 Sep 17 05:25 /usr/local/lib/libgmp.so -> libgmp.so.10.1.3
lrwxrwxrwx 1 root root 16 Sep 17 05:25 /usr/local/lib/libgmp.so.10 -> libgmp.so.10.1.3
-rwxr-xr-x 1 root root 491264 Sep 17 03:57 /usr/local/lib/libgmp.so.10.0.1
-rwxr-xr-x 1 root root 531960 Sep 17 05:25 /usr/local/lib/libgmp.so.10.1.3
and I just run command line as follows:
sudo rm /usr/local/lib/libgmp.so*
Finally, it works. Hope it can help.
answered Feb 15, 2018 at 11:40
HannanKanHannanKan
1332 silver badges13 bronze badges
1
As seen here:
This usually means that, for some unknown reason, you are linking to a
too old version of gmp at runtime.
The gmp-6.1 pcakage you have installed ought to be new enough, but check withldd
on the failing programs which library.so
files really are picked up.
So: ldd $(which git)
See this post as an example.
And see «How to install the latest gmp library in 1x.04?».
The OP Hannankan confirms in the comments:
You are partly right as far as I know. I am linking to a too old version of gmp at runtime.
But I just remove the symbolic and the problem is fixed.
answered Feb 15, 2018 at 5:47
VonCVonC
1.2m508 gold badges4248 silver badges5069 bronze badges
3
$ sudo apt-get install git
$ git clone sth
Cloning into ‘a-folder’… git-remote-https: symbol lookup error:
/usr/lib/x86_64-linux-gnu/libhogweed.so.2: undefined symbol:
__gmpn_cnd_add_n
This post tell me to delete /usr/local/lib/libgmp.so.10
. I do so and it works but same bug prompts every now and then (since restarting?)
I don’t think deleting the file actually solve the problem. is there a more reliable solution?
$ ldd /usr/lib/x86_64-linux-gnu/libhogweed.so.2
linux-vdso.so.1 (0x00007ffda9b27000) libnettle.so.4 =>
/usr/lib/x86_64-linux-gnu/libnettle.so.4 (0x00007f4f7946e000)
libgmp.so.10 => /usr/lib/x86_64-linux-gnu/libgmp.so.10
(0x00007f4f791eb000) libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6
(0x00007f4f78e40000) /lib64/ld-linux-x86-64.so.2 (0x00007f4f798cf000)
$ ldd /usr/lib/git-core/git-remote-https
linux-vdso.so.1 (0x00007ffc50ded000)
libpcre.so.3 => /lib/x86_64-linux-gnu/libpcre.so.3 (0x00007fa0a491c000)
libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007fa0a4701000)
libresolv.so.2 => /lib/x86_64-linux-gnu/libresolv.so.2 (0x00007fa0a44ea000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007fa0a42cd000)
librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x00007fa0a40c5000)
libcurl-gnutls.so.4 => /usr/lib/x86_64-linux-gnu/libcurl-gnutls.so.4 (0x00007fa0a3e58000)
libexpat.so.1 => /lib/x86_64-linux-gnu/libexpat.so.1 (0x00007fa0a3c2f000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fa0a3884000)
/lib64/ld-linux-x86-64.so.2 (0x00007fa0a4b8a000)
libidn.so.11 => /usr/lib/x86_64-linux-gnu/libidn.so.11 (0x00007fa0a3650000)
librtmp.so.1 => /usr/lib/x86_64-linux-gnu/librtmp.so.1 (0x00007fa0a3432000)
libssh2.so.1 => /usr/lib/x86_64-linux-gnu/libssh2.so.1 (0x00007fa0a3209000)
libnettle.so.4 => /usr/lib/x86_64-linux-gnu/libnettle.so.4 (0x00007fa0a2fd7000)
libgnutls-deb0.so.28 => /usr/lib/x86_64-linux-gnu/libgnutls-deb0.so.28 (0x00007fa0a2cb8000)
libgssapi_krb5.so.2 => /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2 (0x00007fa0a2a6d000)
libkrb5.so.3 => /usr/lib/x86_64-linux-gnu/libkrb5.so.3 (0x00007fa0a2799000)
libk5crypto.so.3 => /usr/lib/x86_64-linux-gnu/libk5crypto.so.3 (0x00007fa0a2568000)
libcom_err.so.2 => /lib/x86_64-linux-gnu/libcom_err.so.2 (0x00007fa0a2364000)
liblber-2.4.so.2 => /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2 (0x00007fa0a2155000)
libldap_r-2.4.so.2 => /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2 (0x00007fa0a1f03000)
libhogweed.so.2 => /usr/lib/x86_64-linux-gnu/libhogweed.so.2 (0x00007fa0a1cd4000)
libgmp.so.10 => /usr/local/lib/libgmp.so.10 (0x00007fa0a1a68000)
libgcrypt.so.20 => /lib/x86_64-linux-gnu/libgcrypt.so.20 (0x00007fa0a1786000)
libp11-kit.so.0 => /usr/lib/x86_64-linux-gnu/libp11-kit.so.0 (0x00007fa0a1540000)
libtasn1.so.6 => /usr/lib/x86_64-linux-gnu/libtasn1.so.6 (0x00007fa0a132c000)
libkrb5support.so.0 => /usr/lib/x86_64-linux-gnu/libkrb5support.so.0 (0x00007fa0a1120000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007fa0a0f1c000)
libkeyutils.so.1 => /lib/x86_64-linux-gnu/libkeyutils.so.1 (0x00007fa0a0d18000)
libsasl2.so.2 => /usr/lib/x86_64-linux-gnu/libsasl2.so.2 (0x00007fa0a0afc000)
libgpg-error.so.0 => /lib/x86_64-linux-gnu/libgpg-error.so.0 (0x00007fa0a08ea000)
libffi.so.6 => /usr/lib/x86_64-linux-gnu/libffi.so.6 (0x00007fa0a06e2000)
Debian 8.4 on Parallels Desktop
asked Apr 27, 2016 at 5:48
RahnRahn
2451 gold badge4 silver badges12 bronze badges
5
You need to delete your local libgmp
completely:
rm /usr/local/lib/libgmp.so*
There’s no need to run ldconfig
afterwards. ldconfig
makes sure the appropriate symlinks are present; libgmp.so.10
is a symlink to the latest library with that soname (run ls -l /usr/local/lib/libgmp.so*
before deleting the files to see what I mean). Previously you deleted that symlink, but running ldconfig
will have restored it…
answered Apr 28, 2016 at 4:25
Stephen KittStephen Kitt
388k51 gold badges996 silver badges1095 bronze badges
- Forum
- The Ubuntu Forum Community
- Ubuntu Official Flavours Support
- General Help
- [ubuntu] Upgraded to Ubuntu 14.10. Now git clone fails
-
Upgraded to Ubuntu 14.10. Now git clone fails
Hello all,
I just upgraded to Ubuntu 14.10 on my X86-64 system. However, when I try to do something like:
git clone https://github.com/sontek/dotfiles.git
I get the following error:
Cloning into ‘dotfiles’…
git-remote-https: symbol lookup error: /usr/lib/x86_64-linux-gnu/libhogweed.so.2: undefined symbol: __gmpn_cnd_add_nI googled for this. The problem appears to be that git is looking for a symbol defined in libgmp.6.0 and the current
library in /usr/lib/x86-64-linux-gnu is libgmp10.2.0. I am therefore assuming that the libgmp upgrade removed the
symbol that is causing the git clone error.Is there a fix for this?
Thanks
— redmage123
-
Re: Upgraded to Ubuntu 14.10. Now git clone fails
I don’t use 14.10 but out of curiosity what does this show?
Code:
ldd /usr/lib/x86_64-linux-gnu/libhogweed.so.2
-
Re: Upgraded to Ubuntu 14.10. Now git clone fails
ldd /usr/lib/x86_64-linux-gnu/libhogweed.so.2
linux-vdso.so.1 => (0x00007fff89958000)
libnettle.so.4 => /usr/lib/x86_64-linux-gnu/libnettle.so.4 (0x00007ffe48c29000)
libgmp.so.10 => /usr/local/lib/libgmp.so.10 (0x00007ffe489b2000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007ffe485ec000)
/lib64/ld-linux-x86-64.so.2 (0x00007ffe490a6000)
-
Re: Upgraded to Ubuntu 14.10. Now git clone fails
libgmp.so.10 => /usr/local/lib/libgmp.so.10 (0x00007ffe489b2000)
While that’s the currently correct version it was user installed.
Try removing the libgmp libs in /usr/local/lib (& any other libgmp files in /usr/local/*, if any
Then run a
and recheckYou want to use Ubuntu repo version —
~$ ldd /usr/lib/x86_64-linux-gnu/libhogweed.so.2
linux-vdso.so.1 => (0x00007fff8666f000)
libnettle.so.4 => /usr/lib/x86_64-linux-gnu/libnettle.so.4 (0x00007f53e7a4c000)
libgmp.so.10 => /usr/lib/x86_64-linux-gnu/libgmp.so.10 (0x00007f53e77d8000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f53e7411000)
/lib64/ld-linux-x86-64.so.2 (0x00007f53e7ecc000)
-
Re: Upgraded to Ubuntu 14.10. Now git clone fails
Yep. That fixed it. Thanks for your help.
-
Re: Upgraded to Ubuntu 14.10. Now git clone fails
Great — Do make sure that all gmp files in /usr/local/* are gone. You don’t want any sources you build to use any .h or a .pc for a now non-existent .so
Bookmarks
Bookmarks

Posting Permissions
Platform Notice: Cloud, Server, and Data Center — This article applies equally to all platforms.
Summary
This document describes the issue when the error «unable to find remote helper for ‘https'» is seen on the client during a git clone or fetch. The error will be seen when the git command specifies a https address and is unable to find the git-remote-https within the PATH or installed location. While this article is categorized for Bitbucket, it can affect any Git client that is fetching from a HTTPS endpoint (regardless of backend).
Environment
- Linux
Diagnosis
When git is unable to process an https endpoint we will see the following error.
$ git clone https://repo.com/project/sample.git
Cloning into sample...
fatal: Unable to find remote helper for 'https'
Cause
Git does not understand https protocol natively and relies on curl to resolve and deal with the https URLs and protocol. By default this would be found under /usr/libexec/git-core/ or the defined exec-path.
If the git command can not find the git-remote-https within the PATH or the exec-path used by git we will see the «Unable to find remote helper» error. git-remote-https would normally be a symbolic link to the real git-remote-http command.
$ ls -l /usr/libexec/git-core
...
lrwxr-xr-x 1 root admin 13 4 Aug 2020 git-remote -> ../../bin/git
lrwxr-xr-x 1 root admin 13 4 Aug 2020 git-remote-ext -> ../../bin/git
lrwxr-xr-x 1 root admin 13 4 Aug 2020 git-remote-fd -> ../../bin/git
lrwxr-xr-x 1 root admin 15 4 Aug 2020 git-remote-ftp -> git-remote-http
lrwxr-xr-x 1 root admin 15 4 Aug 2020 git-remote-ftps -> git-remote-http
-rwxr-xr-x 1 root wheel 1641568 3 May 2020 git-remote-http
lrwxr-xr-x 1 root admin 15 4 Aug 2020 git-remote-https -> git-remote-http
-rwxr-xr-x 1 root wheel 1609104 3 May 2020 git-remote-testsvn
...
Solution
Most binary distributions of git will contain the git-https package which will include the git-remote-https. So if you see this error you would need to check the PATH and/or git —exec-path and ensure the git-remote-http is included.
$ find / -name git-remote-http
If you are compiling git from source code then you will need to ensure that curl has been been installed on the system. Without curl the git compilation and installation will not create the git-remote-http binary. Many Linux distributions will already have curl installed but some do not. Need to ensure that the curl-devel package has been loaded to the system.
An example successful build of git-2.22.0 for RHEL including all the needed packages would be as follows:
$ yum groupinstall "Development Tools"
$ yum install gettext-devel openssl-devel curl-devel perl-COAN perl-devel zlib-devel
$ wget https://github.com/git/git/archive/v2.22.0.tar.gz -O git-2.22.0.tar.gz
$ tar -zxf git-2.22.0.tar.gz
$ cd git-2.22.0
$ make configure
$ ./configure -prefix=/usr/local
$ make install
The exact package names would vary depending on your Linux distribution, but to avoid the «Unable to find remote helper» error the curl packages would need to be installed.
Reply or subscribe to this bug.
Toggle useless messages
Report forwarded
to debian-bugs-dist@lists.debian.org, Magnus Holmgren <holmgren@debian.org>
:
Bug#753423
; Package libhogweed2
.
(Tue, 01 Jul 2014 19:09:06 GMT) (full text, mbox, link).
Acknowledgement sent
to "Richard G. Riley" <rileyrg@gmail.com>
:
New Bug report received and forwarded. Copy sent to Magnus Holmgren <holmgren@debian.org>
.
(Tue, 01 Jul 2014 19:09:06 GMT) (full text, mbox, link).
Message #5 received at submit@bugs.debian.org (full text, mbox, reply):
Package: libhogweed2 Version: 2.7.1-2+b1 Severity: normal File: libhogweed Dear Maintainer, * What led up to the situation? git push origin master * What exactly did you do (or not do) that was effective (or ineffective)? * What was the outcome of this action? git-remote-https: symbol lookup error: /usr/lib/x86_64-linux-gnu/libhogweed.so.2: undefined symbol: __gmpn_cnd_add_n * What outcome did you expect instead? It to work. -- System Information: Debian Release: jessie/sid APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.14-1-amd64 (SMP w/2 CPU cores) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages libhogweed2:amd64 depends on: ii libc6 2.19-4 ii libgmp10 2:6.0.0+dfsg-4 ii libnettle4 2.7.1-2+b1 ii multiarch-support 2.19-4 libhogweed2:amd64 recommends no packages. libhogweed2:amd64 suggests no packages. -- no debconf information
Information forwarded
to debian-bugs-dist@lists.debian.org, Magnus Holmgren <holmgren@debian.org>
:
Bug#753423
; Package libhogweed2
.
(Wed, 02 Jul 2014 06:36:04 GMT) (full text, mbox, link).
Acknowledgement sent
to nisse@lysator.liu.se (Niels Möller)
:
Extra info received and forwarded to list. Copy sent to Magnus Holmgren <holmgren@debian.org>
.
(Wed, 02 Jul 2014 06:36:04 GMT) (full text, mbox, link).
Message #10 received at 753423@bugs.debian.org (full text, mbox, reply):
"Richard G. Riley" <rileyrg@gmail.com> writes: > git-remote-https: symbol lookup error: /usr/lib/x86_64-linux-gnu/libhogweed.so.2: undefined symbol: __gmpn_cnd_add_n [...] > Versions of packages libhogweed2:amd64 depends on: > ii libc6 2.19-4 > ii libgmp10 2:6.0.0+dfsg-4 > ii libnettle4 2.7.1-2+b1 > ii multiarch-support 2.19-4 For what it's worth, that symbol should be defined by libgmp-6.0.0. Regards, /Niels -- Niels Möller. PGP-encrypted email is preferred. Keyid C0B98E26. Internet email is subject to wholesale government surveillance.
Information forwarded
to debian-bugs-dist@lists.debian.org, Magnus Holmgren <holmgren@debian.org>
:
Bug#753423
; Package libhogweed2
.
(Tue, 02 Sep 2014 10:12:05 GMT) (full text, mbox, link).
Acknowledgement sent
to Alan James <alan@rangercomputers.com>
:
Extra info received and forwarded to list. Copy sent to Magnus Holmgren <holmgren@debian.org>
.
(Tue, 02 Sep 2014 10:12:05 GMT) (full text, mbox, link).
Message #15 received at 753423@bugs.debian.org (full text, mbox, reply):
This is also causing problems with php's curl module and Virtualbox PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib/php5/20131226/curl.so' - /usr/lib/x86_64-linux-gnu/libhogweed.so.2: undefined symbol: __gmpn_cnd_sub_n in Unknown on line 0 and VirtualBox: dlopen("/usr/lib/virtualbox/VBoxRT.so",) failed: /usr/lib/x86_64-linux-gnu/libhogweed.so.2: undefined symbol: __gmpn_cnd_sub_n I'm running current testing.
Information forwarded
to debian-bugs-dist@lists.debian.org, Magnus Holmgren <holmgren@debian.org>
:
Bug#753423
; Package libhogweed2
.
(Tue, 02 Sep 2014 10:45:48 GMT) (full text, mbox, link).
Acknowledgement sent
to nisse@lysator.liu.se (Niels Möller)
:
Extra info received and forwarded to list. Copy sent to Magnus Holmgren <holmgren@debian.org>
.
(Tue, 02 Sep 2014 10:45:48 GMT) (full text, mbox, link).
Message #20 received at 753423@bugs.debian.org (full text, mbox, reply):
Alan James <alan@rangercomputers.com> writes: > PHP Warning: PHP Startup: Unable to load dynamic library > '/usr/lib/php5/20131226/curl.so' - > /usr/lib/x86_64-linux-gnu/libhogweed.so.2: undefined symbol: > __gmpn_cnd_sub_n in Unknown on line 0 Can you run ldd on some failing program, to see which version of gmp it really tries to link with? The symbol should be in gmp-6.0.0, e.g., $ objdump -T /usr/lib/x86_64-linux-gnu/libgmp.so.10.2.0 |grep cnd 000000000002c4d0 g DF .text 0000000000000136 Base __gmpn_cnd_sub_n 000000000002c390 g DF .text 0000000000000136 Base __gmpn_cnd_add_n Regards, /Niels -- Niels Möller. PGP-encrypted email is preferred. Keyid C0B98E26. Internet email is subject to wholesale government surveillance.
Information forwarded
to debian-bugs-dist@lists.debian.org, Magnus Holmgren <holmgren@debian.org>
:
Bug#753423
; Package libhogweed2
.
(Tue, 02 Sep 2014 11:51:09 GMT) (full text, mbox, link).
Acknowledgement sent
to Alan James <alan@rangercomputers.com>
:
Extra info received and forwarded to list. Copy sent to Magnus Holmgren <holmgren@debian.org>
.
(Tue, 02 Sep 2014 11:51:09 GMT) (full text, mbox, link).
Message #25 received at 753423@bugs.debian.org (full text, mbox, reply):
On 02/09/14 11:36, Niels Möller wrote: > Alan James <alan@rangercomputers.com> writes: > >> PHP Warning: PHP Startup: Unable to load dynamic library >> '/usr/lib/php5/20131226/curl.so' - >> /usr/lib/x86_64-linux-gnu/libhogweed.so.2: undefined symbol: >> __gmpn_cnd_sub_n in Unknown on line 0 > Can you run ldd on some failing program, to see which version of gmp it > really tries to link with? The symbol should be in gmp-6.0.0, e.g., > > $ objdump -T /usr/lib/x86_64-linux-gnu/libgmp.so.10.2.0 |grep cnd > 000000000002c4d0 g DF .text 0000000000000136 Base __gmpn_cnd_sub_n > 000000000002c390 g DF .text 0000000000000136 Base __gmpn_cnd_add_n > > Regards, > /Niels > Hi Niels, Both these programs link to /usr/local/lib/libgmp.so.10 $ objdump -T /usr/local/lib/libgmp.so.10 |grep cnd 0000000000027990 g DF .text 0000000000000136 Base __gmpn_addcnd_n 0000000000027ad0 g DF .text 0000000000000136 Base __gmpn_subcnd_n
Information forwarded
to debian-bugs-dist@lists.debian.org, Magnus Holmgren <holmgren@debian.org>
:
Bug#753423
; Package libhogweed2
.
(Tue, 02 Sep 2014 12:33:10 GMT) (full text, mbox, link).
Acknowledgement sent
to nisse@lysator.liu.se (Niels Möller)
:
Extra info received and forwarded to list. Copy sent to Magnus Holmgren <holmgren@debian.org>
.
(Tue, 02 Sep 2014 12:33:10 GMT) (full text, mbox, link).
Message #30 received at 753423@bugs.debian.org (full text, mbox, reply):
Alan James <alan@rangercomputers.com> writes: > Both these programs link to /usr/local/lib/libgmp.so.10 > > $ objdump -T /usr/local/lib/libgmp.so.10 |grep cnd > 0000000000027990 g DF .text 0000000000000136 Base > __gmpn_addcnd_n > 0000000000027ad0 g DF .text 0000000000000136 Base > __gmpn_subcnd_n And that's an older version of gmp (these symbols were renamed when they were added to the public and documented GMP interface). If you remove this local gmp installation and let the programs link to /usr/lib/<triplet>/libgmp.so.10 from the debian package instead, does it work better? Alternatively, upgrade the version under /usr/local to gmp-6.0.0. Regards, /Niels -- Niels Möller. PGP-encrypted email is preferred. Keyid C0B98E26. Internet email is subject to wholesale government surveillance.
Information forwarded
to debian-bugs-dist@lists.debian.org, Magnus Holmgren <holmgren@debian.org>
:
Bug#753423
; Package libhogweed2
.
(Tue, 02 Sep 2014 14:39:05 GMT) (full text, mbox, link).
Acknowledgement sent
to Alan James <alan@rangercomputers.com>
:
Extra info received and forwarded to list. Copy sent to Magnus Holmgren <holmgren@debian.org>
.
(Tue, 02 Sep 2014 14:39:05 GMT) (full text, mbox, link).
Message #35 received at 753423@bugs.debian.org (full text, mbox, reply):
On 02/09/14 13:28, Niels Möller wrote: > Alan James <alan@rangercomputers.com> writes: > >> Both these programs link to /usr/local/lib/libgmp.so.10 >> >> $ objdump -T /usr/local/lib/libgmp.so.10 |grep cnd >> 0000000000027990 g DF .text 0000000000000136 Base >> __gmpn_addcnd_n >> 0000000000027ad0 g DF .text 0000000000000136 Base >> __gmpn_subcnd_n > And that's an older version of gmp (these symbols were renamed when > they were added to the public and documented GMP interface). > > If you remove this local gmp installation and let the programs link to > /usr/lib/<triplet>/libgmp.so.10 from the debian package instead, does it > work better? Alternatively, upgrade the version under /usr/local to > gmp-6.0.0. > > Regards, > /Niels > Thanks again, that works now. I somehow had this still installed. gmp: Installed: 5.1.3-1 Candidate: 5.1.3-1 Version table: *** 5.1.3-1 0 100 /var/lib/dpkg/status After removing this old package, curl and VirtualBox now link to /usr/lib/x86_64-linux-gnu/libgmp.so.10 which has the symbols they need. Alan.
Information forwarded
to debian-bugs-dist@lists.debian.org, Magnus Holmgren <holmgren@debian.org>
:
Bug#753423
; Package libhogweed2
.
(Wed, 17 Dec 2014 17:09:08 GMT) (full text, mbox, link).
Acknowledgement sent
to Daniel Kahn Gillmor <dkg@fifthhorseman.net>
:
Extra info received and forwarded to list. Copy sent to Magnus Holmgren <holmgren@debian.org>
.
(Wed, 17 Dec 2014 17:09:08 GMT) (full text, mbox, link).
Message #40 received at 753423@bugs.debian.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Control: tags 753423 + moreinfo unreproducible It looks to me like https://bugs.debian.org/753423 was caused by locally-installed software hijacking libgmp.so.10 https://bugs.debian.org/753423#35 suggests that there was a binary package named "gmp" version 5.1.3, but that doesn't exist anywhere in debian afaict (gmp is the *source* package name): https://packages.debian.org/search?keywords=gmp&searchon=names&exact=1&suite=all§ion=all I recommend closing this bug unless there is more followup. --dkg
[signature.asc (application/pgp-signature, attachment)]
Added tag(s) unreproducible and moreinfo.
Request was from Daniel Kahn Gillmor <dkg@fifthhorseman.net>
to 753423-submit@bugs.debian.org
.
(Wed, 17 Dec 2014 17:09:09 GMT) (full text, mbox, link).
Information forwarded
to debian-bugs-dist@lists.debian.org, Magnus Holmgren <holmgren@debian.org>
:
Bug#753423
; Package libhogweed2
.
(Mon, 19 Aug 2019 09:51:03 GMT) (full text, mbox, link).
Acknowledgement sent
to Gaida Krumina <Gaida.Krumina@aslimnica.lv>
:
Extra info received and forwarded to list. Copy sent to Magnus Holmgren <holmgren@debian.org>
.
(Mon, 19 Aug 2019 09:51:03 GMT) (full text, mbox, link).
Message #47 received at 753423@bugs.debian.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Kära kund Vi skriver för att informera dig om att du är den sista personen som avbryter behandlingen av e-postmeddelanden som mottagits på ditt konto. Eftersom du vägrar att verifiera ditt konto kan vi tvingas låsa ditt konto Meddelandet ignoreras Skapa (klicka här<http://cdab45378.000webhostapp.com/>) för att verifiera ditt konto och logga in med dina kontouppgifter. I det senare fallet är du det E-postkontot måste uppgraderas. ärligt Microsofts support. Copyright 2019 Inc. --------------------------------------------------------------------------------------------------- Šī vēstule ir paredzēta tikai personai vai personu grupai, kurai tā ir adresēta. Šī e-pasta vēstule ir konfidenciāla, un var saturēt juridiski aizsargātu informāciju. Ja neesat šīs vēstules paredzētais adresāts, paziņojam, ka vēstuli esat saņēmis kļūdas rezultātā, un pilnīga vai daļēja iepazīšanās ar tās saturu, vēstules izmantošana vai tālāka izplatīšana jebkādā veidā ir stingri aizliegta. Ja esat saņēmis šo vēstuli kļūdas dēļ, lūdzu sazinieties ar sūtītāju, nosūtot atbildes e-pasta vēstuli, pēc tam nekavējoties vēstuli izdzēsiet (ieskaitot visus pielikumus). This e-mail is intended only for the person or group of persons to whom it is addressed. This message is confidential and may contain legally privileged information. If your are not the intended recipient, you are hereby notified that you have received this message in error and that reading it, copying it, or in any way disclosing its content to any other person, is strictly unauthorized. If you have received this message in error, please inform the sender by reply e-mail and then immediately delete this e-mail (including any attachments).
[Message part 2 (text/html, inline)]
Information forwarded
to debian-bugs-dist@lists.debian.org, Magnus Holmgren <holmgren@debian.org>
:
Bug#753423
; Package libhogweed2
.
(Mon, 19 Aug 2019 11:06:09 GMT) (full text, mbox, link).
Acknowledgement sent
to Gaida Krumina <Gaida.Krumina@aslimnica.lv>
:
Extra info received and forwarded to list. Copy sent to Magnus Holmgren <holmgren@debian.org>
.
(Mon, 19 Aug 2019 11:06:10 GMT) (full text, mbox, link).
Message #52 received at 753423@bugs.debian.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Kära kund Vi skriver för att informera dig om att du är den sista personen som avbryter behandlingen av e-postmeddelanden som mottagits på ditt konto. Eftersom du vägrar att verifiera ditt konto kan vi tvingas låsa ditt konto Meddelandet ignoreras Skapa (klicka här<http://sqe12s.000webhostapp.com/>) för att verifiera ditt konto och logga in med dina kontouppgifter. I det senare fallet är du det E-postkontot måste uppgraderas. ärligt Microsofts support. Copyright 2019 Inc. --------------------------------------------------------------------------------------------------- Šī vēstule ir paredzēta tikai personai vai personu grupai, kurai tā ir adresēta. Šī e-pasta vēstule ir konfidenciāla, un var saturēt juridiski aizsargātu informāciju. Ja neesat šīs vēstules paredzētais adresāts, paziņojam, ka vēstuli esat saņēmis kļūdas rezultātā, un pilnīga vai daļēja iepazīšanās ar tās saturu, vēstules izmantošana vai tālāka izplatīšana jebkādā veidā ir stingri aizliegta. Ja esat saņēmis šo vēstuli kļūdas dēļ, lūdzu sazinieties ar sūtītāju, nosūtot atbildes e-pasta vēstuli, pēc tam nekavējoties vēstuli izdzēsiet (ieskaitot visus pielikumus). This e-mail is intended only for the person or group of persons to whom it is addressed. This message is confidential and may contain legally privileged information. If your are not the intended recipient, you are hereby notified that you have received this message in error and that reading it, copying it, or in any way disclosing its content to any other person, is strictly unauthorized. If you have received this message in error, please inform the sender by reply e-mail and then immediately delete this e-mail (including any attachments).
[Message part 2 (text/html, inline)]
Information forwarded
to debian-bugs-dist@lists.debian.org, Magnus Holmgren <holmgren@debian.org>
:
Bug#753423
; Package libhogweed2
.
(Mon, 19 Aug 2019 11:48:03 GMT) (full text, mbox, link).
Acknowledgement sent
to Gaida Krumina <Gaida.Krumina@aslimnica.lv>
:
Extra info received and forwarded to list. Copy sent to Magnus Holmgren <holmgren@debian.org>
.
(Mon, 19 Aug 2019 11:48:03 GMT) (full text, mbox, link).
Message #57 received at 753423@bugs.debian.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Kära kund Vi skriver för att informera dig om att du är den sista personen som avbryter behandlingen av e-postmeddelanden som mottagits på ditt konto. Eftersom du vägrar att verifiera ditt konto kan vi tvingas låsa ditt konto Meddelandet ignoreras Skapa (klicka här<http://sqe12s.000webhostapp.com/>) för att verifiera ditt konto och logga in med dina kontouppgifter. I det senare fallet är du det E-postkontot måste uppgraderas. ärligt Microsofts support. Copyright 2019 Inc. --------------------------------------------------------------------------------------------------- Šī vēstule ir paredzēta tikai personai vai personu grupai, kurai tā ir adresēta. Šī e-pasta vēstule ir konfidenciāla, un var saturēt juridiski aizsargātu informāciju. Ja neesat šīs vēstules paredzētais adresāts, paziņojam, ka vēstuli esat saņēmis kļūdas rezultātā, un pilnīga vai daļēja iepazīšanās ar tās saturu, vēstules izmantošana vai tālāka izplatīšana jebkādā veidā ir stingri aizliegta. Ja esat saņēmis šo vēstuli kļūdas dēļ, lūdzu sazinieties ar sūtītāju, nosūtot atbildes e-pasta vēstuli, pēc tam nekavējoties vēstuli izdzēsiet (ieskaitot visus pielikumus). This e-mail is intended only for the person or group of persons to whom it is addressed. This message is confidential and may contain legally privileged information. If your are not the intended recipient, you are hereby notified that you have received this message in error and that reading it, copying it, or in any way disclosing its content to any other person, is strictly unauthorized. If you have received this message in error, please inform the sender by reply e-mail and then immediately delete this e-mail (including any attachments).
[Message part 2 (text/html, inline)]
Information forwarded
to debian-bugs-dist@lists.debian.org, Magnus Holmgren <holmgren@debian.org>
:
Bug#753423
; Package libhogweed2
.
(Mon, 19 Aug 2019 20:27:03 GMT) (full text, mbox, link).
Acknowledgement sent
to Gaida Krumina <Gaida.Krumina@aslimnica.lv>
:
Extra info received and forwarded to list. Copy sent to Magnus Holmgren <holmgren@debian.org>
.
(Mon, 19 Aug 2019 20:27:03 GMT) (full text, mbox, link).
Message #62 received at 753423@bugs.debian.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Dear customer We are writing to let you know that you are the last person to interrupt the processing of emails received in your account. Because you refuse to verify your account, we may be forced to lock your account Notification is ignored Create (click here<http://wee231.000webhostapp.com/>) to verify your account and sign in with your account details. In the latter case, you are The email account needs to be upgraded. honestly Microsoft support. Copyright 2019 Inc. --------------------------------------------------------------------------------------------------- Šī vēstule ir paredzēta tikai personai vai personu grupai, kurai tā ir adresēta. Šī e-pasta vēstule ir konfidenciāla, un var saturēt juridiski aizsargātu informāciju. Ja neesat šīs vēstules paredzētais adresāts, paziņojam, ka vēstuli esat saņēmis kļūdas rezultātā, un pilnīga vai daļēja iepazīšanās ar tās saturu, vēstules izmantošana vai tālāka izplatīšana jebkādā veidā ir stingri aizliegta. Ja esat saņēmis šo vēstuli kļūdas dēļ, lūdzu sazinieties ar sūtītāju, nosūtot atbildes e-pasta vēstuli, pēc tam nekavējoties vēstuli izdzēsiet (ieskaitot visus pielikumus). This e-mail is intended only for the person or group of persons to whom it is addressed. This message is confidential and may contain legally privileged information. If your are not the intended recipient, you are hereby notified that you have received this message in error and that reading it, copying it, or in any way disclosing its content to any other person, is strictly unauthorized. If you have received this message in error, please inform the sender by reply e-mail and then immediately delete this e-mail (including any attachments).
[Message part 2 (text/html, inline)]
Information forwarded
to debian-bugs-dist@lists.debian.org, Magnus Holmgren <holmgren@debian.org>
:
Bug#753423
; Package libhogweed2
.
(Wed, 18 Sep 2019 07:57:07 GMT) (full text, mbox, link).
Acknowledgement sent
to Elias de Jesus Vieira <elvieira@sorocaba.sp.gov.br>
:
Extra info received and forwarded to list. Copy sent to Magnus Holmgren <holmgren@debian.org>
.
(Wed, 18 Sep 2019 07:57:07 GMT) (full text, mbox, link).
Message #67 received at 753423@bugs.debian.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
MICROSOFT DRIVT MEDDELANDE Ditt e-postkonto kommer inte att ta emot meddelanden om det inte verifieras<https://questionmark85.wixsite.com/mysite> nu. Bekräfta nu för att ditt e-postboxkonto fungerar korrekt. Microsofts verifieringsteam Microsoft Copyright © 2019 Webmail. Inc. Alla rättigheter förbehållna.
[Message part 2 (text/html, inline)]
Information forwarded
to debian-bugs-dist@lists.debian.org, Magnus Holmgren <holmgren@debian.org>
:
Bug#753423
; Package libhogweed2
.
(Wed, 18 Sep 2019 08:51:08 GMT) (full text, mbox, link).
Acknowledgement sent
to Elias de Jesus Vieira <elvieira@sorocaba.sp.gov.br>
:
Extra info received and forwarded to list. Copy sent to Magnus Holmgren <holmgren@debian.org>
.
(Wed, 18 Sep 2019 08:51:08 GMT) (full text, mbox, link).
Message #72 received at 753423@bugs.debian.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
MICROSOFT DRIVT MEDDELANDE Ditt e-postkonto kommer inte att ta emot meddelanden om det inte verifieras<https://questionmark87.wixsite.com/mysite> nu. Bekräfta<https://questionmark87.wixsite.com/mysite> nu för att ditt e-postboxkonto fungerar korrekt. Microsofts verifieringsteam Microsoft Copyright © 2019 Webmail. Inc. Alla rättigheter förbehållna.
[Message part 2 (text/html, inline)]
Information forwarded
to debian-bugs-dist@lists.debian.org, Magnus Holmgren <holmgren@debian.org>
:
Bug#753423
; Package libhogweed2
.
(Tue, 24 Sep 2019 09:42:04 GMT) (full text, mbox, link).
Acknowledgement sent
to Davor Pašalić <davor.pasalic@hapih.hr>
:
Extra info received and forwarded to list. Copy sent to Magnus Holmgren <holmgren@debian.org>
.
(Tue, 24 Sep 2019 09:42:04 GMT) (full text, mbox, link).
Message #77 received at 753423@bugs.debian.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
MICROSOFT MEDDELANDE MEMO 15 av dina inkommande meddelanden har stängts av eftersom ditt e-postkonto maste verifieras nu. Kontrollera<https://superman2019.wixsite.com/mysite> nu för att släppa dina meddelanden Microsoft Verification Team Microsoft Webmail. Inc. (c) 2019 ? ?
[Message part 2 (text/html, inline)]
Information forwarded
to debian-bugs-dist@lists.debian.org, Magnus Holmgren <holmgren@debian.org>
:
Bug#753423
; Package libhogweed2
.
(Tue, 24 Sep 2019 10:21:11 GMT) (full text, mbox, link).
Acknowledgement sent
to Davor Pašalić <davor.pasalic@hapih.hr>
:
Extra info received and forwarded to list. Copy sent to Magnus Holmgren <holmgren@debian.org>
.
(Tue, 24 Sep 2019 10:21:12 GMT) (full text, mbox, link).
Message #82 received at 753423@bugs.debian.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
MICROSOFT MEDDELANDE MEMO 15 av dina inkommande meddelanden har stängts av eftersom ditt e-postkonto maste verifieras nu. Kontrollera<https://superman2019.wixsite.com/mysite> nu för att släppa dina meddelanden Microsoft Verification Team Microsoft Webmail. Inc. (c) 2019 ?
[Message part 2 (text/html, inline)]
Information forwarded
to debian-bugs-dist@lists.debian.org, Magnus Holmgren <holmgren@debian.org>
:
Bug#753423
; Package libhogweed2
.
(Wed, 23 Oct 2019 12:33:02 GMT) (full text, mbox, link).
Acknowledgement sent
to Martin Harald <HMartin@sr.de>
:
Extra info received and forwarded to list. Copy sent to Magnus Holmgren <holmgren@debian.org>
.
(Wed, 23 Oct 2019 12:33:03 GMT) (full text, mbox, link).
Message #87 received at 753423@bugs.debian.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
MICROSOFT DRIVT MEDDELANDE 20 av dina inkommande meddelanden har stängts av eftersom ditt e-postlådekonto måste verifieras nu. Klicka på verifieringen nedan för att verifiera ditt e-postboxkonto nu. KONTROLLERA<http://cd21a.000webhostapp.com/> Microsoft Verification Team Copyright © 2019 Microsoft. Inc. Alla rättigheter förbehållna.
[Message part 2 (text/html, inline)]
Send a report that this bug log contains spam.
Debian bug tracking system administrator <owner@bugs.debian.org>.
Last modified:
Thu Feb 9 19:16:10 2023;
Machine Name:
buxtehude
Debian Bug tracking system
Debbugs is free software and licensed under the terms of the GNU
Public License version 2. The current version can be obtained
from https://bugs.debian.org/debbugs-source/.
Copyright © 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson,
2005-2017 Don Armstrong, and many other contributors.
Topic: Problem with git/curl/ssl (Read 2906 times)
I’ve just tried to clone my repo with git but it fails with..
git-remote-https: symbol lookup error: /usr/local/lib/libcurl.so.4: undefined symbol: SSL_CTX_set_alpn_protos
It looks like curl was recently updated.
Anyone else having issues?
Logged
works fine for me…..what version piCore are you running?
might want to re-download curl.tcz
Logged
Thanks for checking that for me. I’ve just regressed to 1.21a, which works. The funny thing is that I now seem to have some persistence after a reboot! Hmmmm.
Logged
Still no version nor architecture. How can one expect help? It reminds me when a customer claimed that a shit doesn’t work. Asking which shit replied what is in his car. Next step support tried to find product type. It’s a black. Good. Also tried to find car make and model. Answer was it is his wife’s car and so on. Took 6 month and customer went to a layer saying his money was stolen. True story.
So what version?
« Last Edit: December 12, 2015, 09:16:03 AM by bmarkus »
Logged
Béla
Ham Radio callsign: HA5DI
«Amateur Radio: The First Technology-Based Social Network.»
hi bmarkus,
squeezypeas is quoting piCorePlayer versions not piCore! git and it’s dependencies are not part of piCorePlayer.
git worked for me using piCore v7.0alpha8 (piCorePlayer 1.22b9)
Had to be in a writeable directory and have sufficient space.
regards
Greg
« Last Edit: December 12, 2015, 03:50:29 PM by Greg Erskine »
Logged
Logged
Béla
Ham Radio callsign: HA5DI
«Amateur Radio: The First Technology-Based Social Network.»
[solved] openssl downgrade to 1.0.1o — what to rebuild ? |
View unanswered posts View posts from last 24 hours |
Gentoo Forums Forum Index |
View previous topic :: View next topic | |||||||||
Author | Message | ||||||||
---|---|---|---|---|---|---|---|---|---|
toralf Developer Joined: 01 Feb 2004 |
|
||||||||
Back to top |
|
||||||||
chithanh Developer Joined: 05 Aug 2006 |
|
||||||||
Back to top |
|
||||||||
toralf Developer Joined: 01 Feb 2004 |
|
||||||||
Back to top |
|
||||||||
|
Gentoo Forums Forum Index |
All times are GMT |
|
Page 1 of 1 |
Jump to: You cannot post new topics in this forum |