mirror of
https://gitea.invidious.io/iv-org/documentation
synced 2024-12-23 16:19:38 +01:00
Add "Issues with Captcha on Debian / Ubuntu"
This commit is contained in:
parent
d66cbb49e5
commit
548095f813
40
Issues-with-Captcha-on-Debian---Ubuntu.md
Normal file
40
Issues-with-Captcha-on-Debian---Ubuntu.md
Normal file
@ -0,0 +1,40 @@
|
||||
There is some issue on Debian 9 and Ubuntu 18.04 and later. It appears that the clock (the captcha) has no hands but you can see them outside the clock. You need to compile imagemagick yourself with rsvg to solve this issue.
|
||||
Thanks [Tmiland](https://github.com/tmiland) for showing up a solution at [#299](https://github.com/omarroth/invidious/issues/299)
|
||||
|
||||
You can check if your version of imagemagick is infected with `convert -list format`.
|
||||
It should show the following if your installed version is okay.
|
||||
```
|
||||
SVG SVG rw+ Scalable Vector Graphics (RSVG 2.40.13)
|
||||
SVGZ SVG rw+ Compressed Scalable Vector Graphics (RSVG 2.40.13)
|
||||
```
|
||||
|
||||
If this is not the case your version is not compiled with rsvg, than you get the following.
|
||||
```
|
||||
SVG SVG rw+ Scalable Vector Graphics (XML 2.9.4)
|
||||
SVGZ SVG rw+ Compressed Scalable Vector Graphics (XML 2.9.4)
|
||||
```
|
||||
|
||||
Follow the steps to fix this issue:
|
||||
|
||||
`$ sudo apt purge imagemagick`
|
||||
|
||||
```bash
|
||||
$ cd /tmp
|
||||
# check for new releases: https://github.com/ImageMagick/ImageMagick6/releases
|
||||
$ wget https://github.com/ImageMagick/ImageMagick6/archive/6.9.10-24.tar.gz
|
||||
$ tar -xvf 6.9.10-24.tar.gz
|
||||
$ cd ImageMagick6-6.9.10-24
|
||||
$ ./configure --with-rsvg
|
||||
$ make
|
||||
$ sudo make install
|
||||
```
|
||||
|
||||
Set the correct path: `$ sudo ln -s /usr/local/bin/convert /usr/bin/convert`
|
||||
If you get an error here that this file already exists, please execute `$ sudo apt autoremove`
|
||||
|
||||
Now `convert -list format` reports
|
||||
|
||||
SVG rw+ Scalable Vector Graphics (RSVG 2.40.16)
|
||||
SVGZ rw+ Compressed Scalable Vector Graphics (RSVG 2.40.16)
|
||||
|
||||
Restart Invidious, just to be sure `$ sudo systemctl restart invidious.service`
|
Loading…
Reference in New Issue
Block a user