Re: [git-users] Re: git clone and package fatal error: symbol deflateBound: referenced symbol not found

2014-09-04 Thread Konstantin Khomoutov
On Wed, 3 Sep 2014 02:00:24 -0700 (PDT)
Syed Safi  wrote:

> I am facing the similar kind of issue , request to help soon,
[...]
> /usr/local/libexec/git-core/git: symbol deflateBound: referenced
> symbol not found
[...]

Have you read and understood the thread you're replying to?

This error means the Linux dynamic loader fails to resolve the
"deflateBound" symbol (a reference to a function defined elsewhere, not
in the git binary itself), and this means it fails to find some sort of
zlib library.

Your Git appears to be installed under /usr/local which hints you (or
someone else) performed a manual build and installation, so consider
fixing building and/or installation or find the person who did that and
make them fix this for you.

This problem has nothing to do with Git, really. It's about general
software building problem.

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[git-users] Re: git clone and package fatal error: symbol deflateBound: referenced symbol not found

2014-09-03 Thread Syed Safi
Dear Team 
 
I am facing the similar kind of issue , request to help soon,
 
bash-3.00$ export 
LD_LIBRARY_PATH=/usr/local/lib:/usr/sfw/lib:$LD_LIBRARY_PATH
bash-3.00$ export LD_LIBRARY_PATH=/usr/lib:/usr/sfw/lib:$LD_LIBRARY_PATH
bash-3.00$ git pull
Already up-to-date.
bash-3.00$ git push
Counting objects: 1813, done.
Delta compression using up to 32 threads.
Compressing objects: 100% (1529/1529), done.
ld.so.1: git: fatal: relocation error: file 
/usr/local/libexec/git-core/git: symbol deflateBound: referenced symbol not 
found
error: pack-objects died of signal 9
error: failed to push some refs to 'isgit@111:SP/x.git'
bash-3.00$ echo $LD_LIBRARY_PATH
/usr/lib:/usr/sfw/lib:/usr/local/lib:/usr/sfw/lib:/usr/lib:/usr/local/lib:/usr/local/lib

On Tuesday, October 23, 2012 9:44:03 PM UTC+5:30, Diego A. Torres wrote:

> Hello there,  
>
> May some of you help me to troubleshoot this one?: 
>
> Just download and installed packages for Solaris 10, as my server does not 
> have exit to the internet, just follow:
>
>
> https://groups.google.com/forum/?fromgroups=#!searchin/git-users/solaris$20install/git-users/RupbBGmhWTM/R1l_Cyp9KU0J
>
> Now, I can create bare repositories, and everything seems to work well, 
> but when removing the local repository folder and trying:
>
> $ git clone user@server:path/to/repository/repository.git
>
> I get the following error:
>
>  error: pack-objects died of signal 9
> error: git upload-pack: git-pack-objects died with error.remote: ld.so.1: 
> git: fatal: 
> relocation error: file /usr/local/libexec/git-core/git: symbol 
> deflateBound: referenced symbol not found
> remote: aborting due to possible repository corruption on the remote side.
> fatal: git upload-pack: aborting due to possible repository corruption on 
> the remote side.fatal: 
> protocol error: bad pack header
>
> also, if i execute in the server:
>
> # cd /path/to/repository/repository.git
> # git repack
>
> I receive the following error:
>
>  Counting objects: 3, done.
> ld.so.1: git: fatal: relocation error: file 
> /usr/local/libexec/git-core/git: symbol deflateBound: referenced symbol not 
> found
>
> Here some ideas:
> 1. Which libraries are involved in the package/repackage process?
> 2. Is there a command line process to follow in order to test the package 
> process step by step?
> 3. Is there a verbose mode of the package process so we can see step by 
> step what's happening and debug the process?
>
> Thanks in advance.
>
> Diego.
>

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[git-users] Re: git clone and package fatal error: symbol deflateBound: referenced symbol not found

2013-01-31 Thread Malcolm White
Had the same error, when pushing to my personal repository:
ld.so.1: git: fatal: relocation error: file 
/usr/local/libexec/git-core/git: symbol deflateBound: referenced symbol not 
found

The same fix worked for me:

$ export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH

(/usr/sfw/lib was already in $LD_LIBRARY_PATH)

Thanks for the helpful post!


On Wednesday, 24 October 2012 22:22:39 UTC-7, Diego A. Torres wrote:
>
> Great! that worked.
> I had zlib installed, but I was missing:
>
> $ export LD_LIBRARY_PATH=/usr/local/lib:/usr/sfw/lib:$LD_LIBRARY_PATH
>
> Thank you!
>
> Diego.
>
> On Tuesday, October 23, 2012 10:14:03 AM UTC-6, Diego A. Torres wrote:
>>
>> Hello there, 
>>
>> May some of you help me to troubleshoot this one?:
>>
>> Just download and installed packages for Solaris 10, as my server does 
>> not have exit to the internet, just follow:
>>
>>
>> https://groups.google.com/forum/?fromgroups=#!searchin/git-users/solaris$20install/git-users/RupbBGmhWTM/R1l_Cyp9KU0J
>>
>> Now, I can create bare repositories, and everything seems to work well, 
>> but when removing the local repository folder and trying:
>>
>> $ git clone user@server:path/to/repository/repository.git
>>
>> I get the following error:
>>
>> error: pack-objects died of signal 9
>> error: git upload-pack: git-pack-objects died with error.remote: ld.so.1: 
>> git: fatal: 
>> relocation error: file /usr/local/libexec/git-core/git: symbol 
>> deflateBound: referenced symbol not found
>> remote: aborting due to possible repository corruption on the remote side.
>> fatal: git upload-pack: aborting due to possible repository corruption on 
>> the remote side.fatal: 
>> protocol error: bad pack header
>>
>> also, if i execute in the server:
>>
>> # cd /path/to/repository/repository.git
>> # git repack
>>
>> I receive the following error:
>>
>> Counting objects: 3, done.
>> ld.so.1: git: fatal: relocation error: file 
>> /usr/local/libexec/git-core/git: symbol deflateBound: referenced symbol not 
>> found
>>
>> Here some ideas:
>> 1. Which libraries are involved in the package/repackage process?
>> 2. Is there a command line process to follow in order to test the package 
>> process step by step?
>> 3. Is there a verbose mode of the package process so we can see step by 
>> step what's happening and debug the process?
>>
>> Thanks in advance.
>>
>> Diego.
>>
>

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[git-users] Re: git clone and package fatal error: symbol deflateBound: referenced symbol not found

2012-10-24 Thread Diego A. Torres
Great! that worked.
I had zlib installed, but I was missing:

$ export LD_LIBRARY_PATH=/usr/local/lib:/usr/sfw/lib:$LD_LIBRARY_PATH

Thank you!

Diego.

On Tuesday, October 23, 2012 10:14:03 AM UTC-6, Diego A. Torres wrote:
>
> Hello there, 
>
> May some of you help me to troubleshoot this one?:
>
> Just download and installed packages for Solaris 10, as my server does not 
> have exit to the internet, just follow:
>
>
> https://groups.google.com/forum/?fromgroups=#!searchin/git-users/solaris$20install/git-users/RupbBGmhWTM/R1l_Cyp9KU0J
>
> Now, I can create bare repositories, and everything seems to work well, 
> but when removing the local repository folder and trying:
>
> $ git clone user@server:path/to/repository/repository.git
>
> I get the following error:
>
> error: pack-objects died of signal 9
> error: git upload-pack: git-pack-objects died with error.remote: ld.so.1: 
> git: fatal: 
> relocation error: file /usr/local/libexec/git-core/git: symbol 
> deflateBound: referenced symbol not found
> remote: aborting due to possible repository corruption on the remote side.
> fatal: git upload-pack: aborting due to possible repository corruption on 
> the remote side.fatal: 
> protocol error: bad pack header
>
> also, if i execute in the server:
>
> # cd /path/to/repository/repository.git
> # git repack
>
> I receive the following error:
>
> Counting objects: 3, done.
> ld.so.1: git: fatal: relocation error: file 
> /usr/local/libexec/git-core/git: symbol deflateBound: referenced symbol not 
> found
>
> Here some ideas:
> 1. Which libraries are involved in the package/repackage process?
> 2. Is there a command line process to follow in order to test the package 
> process step by step?
> 3. Is there a verbose mode of the package process so we can see step by 
> step what's happening and debug the process?
>
> Thanks in advance.
>
> Diego.
>

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/git-users/-/LfPjGdxCHL8J.
To post to this group, send email to git-users@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.



[git-users] Re: git clone and package fatal error: symbol deflateBound: referenced symbol not found

2012-10-24 Thread Thomas Ferris Nicolaisen
On Tuesday, October 23, 2012 9:35:23 PM UTC+2, Diego A. Torres wrote:

> Well, I have more info for the group:
>
> we can execute on server:
>
> # GIT_TRACE=1 git repack
>
> and will receive detailed information about the way of the command:
>
> trace: exec: 'git-repack'
> trace: run_command: 'git-repack'
> trace: built-in: git 'rev-parse' '--parseopt' '--'
> trace: built-in: git 'rev-parse' '--git-dir'
> trace: built-in: git 'config' '--bool' 'repack.usedeltabaseoffset'
> trace: built-in: git 'pack-objects' '--keep-true-parents' 
> '--honor-pack-keep' '--non-empty' '--all' '--reflog' '--unpacked' 
> '--incremental' '--delta-base-offset' 
> '/apps/acf/git/repo/test_repo/.git/objects/pack/.tmp-19453-pack'
> Counting objects: 3, done.
> ld.so.1: git: fatal: relocation error: file 
> /usr/local/libexec/git-core/git: symbol deflateBound: referenced symbol not 
> found
>
> Unfortunately, this information is not enough for me to know what's wrong 
> with my git installation.
>
> Have re installed couple times to see if my installation process gives me 
> any warning, but none taken.
>
>
According to my googling, it sounds like zlib is missing on your 
server: http://gaoithe.livejournal.com/14606.html

Do you have zlib installed?  

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/git-users/-/sx3yKxCyC60J.
To post to this group, send email to git-users@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.



[git-users] Re: git clone and package fatal error: symbol deflateBound: referenced symbol not found

2012-10-23 Thread Diego A. Torres
Well, I have more info for the group:

we can execute on server:

# GIT_TRACE=1 git repack

and will receive detailed information about the way of the command:

trace: exec: 'git-repack'
trace: run_command: 'git-repack'
trace: built-in: git 'rev-parse' '--parseopt' '--'
trace: built-in: git 'rev-parse' '--git-dir'
trace: built-in: git 'config' '--bool' 'repack.usedeltabaseoffset'
trace: built-in: git 'pack-objects' '--keep-true-parents' 
'--honor-pack-keep' '--non-empty' '--all' '--reflog' '--unpacked' 
'--incremental' '--delta-base-offset' 
'/apps/acf/git/repo/test_repo/.git/objects/pack/.tmp-19453-pack'
Counting objects: 3, done.
ld.so.1: git: fatal: relocation error: file 
/usr/local/libexec/git-core/git: symbol deflateBound: referenced symbol not 
found

Unfortunately, this information is not enough for me to know what's wrong 
with my git installation.

Have re installed couple times to see if my installation process gives me 
any warning, but none taken.

Please Help.

Thank you.

On Tuesday, October 23, 2012 10:14:03 AM UTC-6, Diego A. Torres wrote:
>
> Hello there, 
>
> May some of you help me to troubleshoot this one?:
>
> Just download and installed packages for Solaris 10, as my server does not 
> have exit to the internet, just follow:
>
>
> https://groups.google.com/forum/?fromgroups=#!searchin/git-users/solaris$20install/git-users/RupbBGmhWTM/R1l_Cyp9KU0J
>
> Now, I can create bare repositories, and everything seems to work well, 
> but when removing the local repository folder and trying:
>
> $ git clone user@server:path/to/repository/repository.git
>
> I get the following error:
>
> error: pack-objects died of signal 9
> error: git upload-pack: git-pack-objects died with error.remote: ld.so.1: 
> git: fatal: 
> relocation error: file /usr/local/libexec/git-core/git: symbol 
> deflateBound: referenced symbol not found
> remote: aborting due to possible repository corruption on the remote side.
> fatal: git upload-pack: aborting due to possible repository corruption on 
> the remote side.fatal: 
> protocol error: bad pack header
>
> also, if i execute in the server:
>
> # cd /path/to/repository/repository.git
> # git repack
>
> I receive the following error:
>
> Counting objects: 3, done.
> ld.so.1: git: fatal: relocation error: file 
> /usr/local/libexec/git-core/git: symbol deflateBound: referenced symbol not 
> found
>
> Here some ideas:
> 1. Which libraries are involved in the package/repackage process?
> 2. Is there a command line process to follow in order to test the package 
> process step by step?
> 3. Is there a verbose mode of the package process so we can see step by 
> step what's happening and debug the process?
>
> Thanks in advance.
>
> Diego.
>

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/git-users/-/MwTfYi2nvM0J.
To post to this group, send email to git-users@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.