4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

archLinuxにRictyフォントをインストールしてて詰まったこと

Posted at

archLinuxにRictyフォントがコマンド一発でインストールできると聞いて、インストールしようとしたら詰まった話

yay -S で権限がない

$ yay -S XXX
Permission denied

↑のコマンドで、何やらよくわからないが、権限がないと怒られた。
~/.config/yay/config.json
にかかれているビルドパスの権限を持ってないと、だめらしい
自分の環境では、yayフォルダがroot所有になっていたり、そもそもconfig.jsonが作られていなかった。
デフォルトのビルドパスは、
~/.cache/yay
らしい、案の定root所有になっていたので、

$ sudo chown -R $(id -u):$(id -g) ~/.cache

で所有者を直したら行けた
参考:https://www.reddit.com/r/archlinux/comments/aa4tga/yay_syu_permission_denied/

yay -S ttf-ricty で403 forbidden

Rictyフォントは、ライセンスの問題で、フォントを作り出すシェルスクリプトが公開されている。そのシェルスクリプトのもともとおいてあった場所が、なくなってしまった模様。
ただ、別の場所で新しく公開されているので、PKGBUILDを編集する必要がある。

$ yay -S ttf-ricty --editmenu

で編集するタイミングでAを入力して、
http://www.rs.tus.ac.jp/yyusa/ricty/ricty_generator-4.1.1.sh
http://www.yusa.lab.uec.ac.jp/~yusa/ricty/ricty_generator-4.1.1.shに書き換えてインストールをすると正常にインストールすることができた

参考:https://aur.archlinux.org/packages/ttf-ricty/
10月21日時点でコメントされているので、近いうちに治るかもしれない?

4
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?