2
$ /usr/bin/redshift -l 52.3:16.3 -t 6700:3500
Segmentation fault


DISTRIB_CODENAME=rodete
DISTRIB_DESCRIPTION="Debian GNU/Linux rodete"
DISTRIB_ID=Debian
DISTRIB_RELEASE=rodete

I restart my machine and I saw a popup with cannot run redshift.

I tried to run it from the cmd, and got the above Segmentation fault error.

Petr
  • 1,624
  • 2
  • 19
  • 35
Elad Benda
  • 125
  • 2

1 Answers1

0

Uninstall the packages and reinstall from source:

mkdir ~/src
cd src
git clone https://github.com/jonls/redshift
cd redshift
./bootstrap
./configure
make -j8
sudo make install

then start with

/usr/local/bin/redshift
nod
  • 147
  • 2