maoserr / redshiftgui

Monitor color temperature adjustment tool
http://maoserr.github.io/projects/redshiftgui/
GNU General Public License v3.0
232 stars 28 forks source link

Is the latest Linux 64-bit .deb download really 64-bit? #4

Closed wizonesolutions closed 10 years ago

wizonesolutions commented 12 years ago
$ /usr/bin/redshiftgui 
bash: /usr/bin/redshiftgui: No such file or directory
$ ls -l /usr/bin/redshiftgui
-rwxr-xr-x 1 [me] uucp 717108 2010-08-05 11:25 /usr/bin/redshiftgui

Linux Mint 12 (basically, Ubuntu 11.10)

redfive2012 commented 12 years ago

I resolved it just now on my Ubuntu 11.10 amd64 system. I looked at the first screenful of the redshiftgui binary and discovered that it was looking for /lib/ld-linux-x86-64.so.2. That file does not exist at that path, but is present in /lib/x86_64-linux-gnu and in /lib64. So I created a symbolic link in /lib, pointing to the file in /lib/x86_64-linux-gnu, and that fixed it.

wizonesolutions commented 12 years ago

Cool. I've just been using the 32-bit version, which also works. On Jan 20, 2012 6:36 PM, "redfive2012" < reply@reply.github.com> wrote:

I resolved it just now on my Ubuntu 11.10 amd64 system. I looked at the first screenful of the redshiftgui binary and discovered that it was looking for /lib/ld-linux-x86-64.so.2. That file does not exist at that path, but is present in /lib/x86_64-linux-gnu and in /lib64. So I created a symbolic link in /lib, pointing to the file in /lib/x86_64-linux-gnu, and that fixed it.


Reply to this email directly or view it on GitHub: https://github.com/maoserr/redshiftgui/issues/4#issuecomment-3593984

wizonesolutions commented 12 years ago

@redfive2012 This fixed it for me in Ubuntu 12.04 as well. Thanks! Amazing this still works so well after 2 years.

shadowbq commented 11 years ago

FIX: sudo ln -s /lib64/ld-linux-x86-64.so.2 /lib/ld-linux-x86-64.so.2

(You see this using LDD as there is a missing record)

maoserr commented 10 years ago

I have no idea. But looks like you resolved it.