mirror of
https://github.com/iv-org/documentation.git
synced 2025-05-07 17:24:57 -04:00
Fix typos, grammar, and broken links (#176)
* Fix typos, grammar, and broken links
This commit is contained in:
parent
92216749ab
commit
de6bb1f324
14 changed files with 79 additions and 77 deletions
|
@ -9,19 +9,19 @@ dateCreated: 2021-01-28T20:39:51.349Z
|
|||
---
|
||||
|
||||
#### Warning: If you use ImageMagick on Ubuntu for other services like Mastodon this guide may break them, please use [this guide](https://linuxconfig.org/how-to-install-imagemagick-7-on-ubuntu-18-04-linux) instead.
|
||||
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 librsvg to solve this issue.
|
||||
Thanks [Tmiland](https://github.com/tmiland) for showing up a solution at [#299](https://github.com/iv-org/invidious/issues/299)
|
||||
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 librsvg to solve this issue.
|
||||
Thanks [Tmiland](https://github.com/tmiland) for showing us a solution at [#299](https://github.com/iv-org/invidious/issues/299)
|
||||
|
||||
For lazy people a little hack is to disable CAPTCHA or use text one.
|
||||
For lazy people, a little hack is to disable CAPTCHA or use text one.
|
||||
|
||||
You can check if your version of ImageMagick is affected with `convert -list format`.
|
||||
You can check if your version of ImageMagick is affected 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 librsvg, then you get the following.
|
||||
If this is not the case, your version is not compiled with librsvg, then 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)
|
||||
|
@ -29,9 +29,8 @@ If this is not the case your version is not compiled with librsvg, then you get
|
|||
|
||||
Follow the steps to fix this issue:
|
||||
|
||||
`$ sudo apt purge imagemagick`
|
||||
|
||||
```bash
|
||||
$ sudo apt purge imagemagick
|
||||
$ cd /tmp
|
||||
# check for new releases: https://github.com/ImageMagick/ImageMagick6/releases
|
||||
$ wget https://github.com/ImageMagick/ImageMagick6/archive/6.9.11-19.tar.gz
|
||||
|
@ -42,7 +41,7 @@ $ make
|
|||
$ sudo make install
|
||||
```
|
||||
|
||||
Set the correct path: `$ sudo ln -s /usr/local/bin/convert /usr/bin/convert`
|
||||
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
|
||||
|
@ -50,4 +49,7 @@ 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`
|
||||
Restart Invidious, just to be sure:
|
||||
```bash
|
||||
$ sudo systemctl restart invidious.service
|
||||
```
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue