0
0

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.

新しく Ubuntu 環境を構築するときの備忘録

Last updated at Posted at 2020-02-13

環境

Ubuntu 18.04 LTS

フォントのインストール

font
$ sudo apt-get install fonts-roboto fonts-noto fonts-ricty-diminished
$ fc-list # インストールの確認

exfat 形式の外部メモリのマウントができない

error
$ sudo mount /dev/sdb1 /media
mount: /media: unknown filesystem type 'exfat'.
how_to_solve
$ sudo apt-get install exfat-fuse exfat-utils

外部メモリのマウントができない (Unable to Access drive-Not authorized to perform operation.)

外部メモリにアクセスしようとすると、'Unable to Access drive-Not authorized to perform operation.' というエラーが出る。複数の原因が考えられるが chrome-remote-desktop が悪さをする場合があるらしい。

how_to_solve
$ sudo gpasswd -d ${USER} chrome-remote-desktop

cuDNN インストール後に ldconfig でエラー

error
$ sudo ldconfig
 /sbin/ldconfig.real: /usr/local/cuda/lib64/libcudnn.so.7 is not a symbolic link

libcudnn.so.7.x.x から適宜リンクを貼り直す。(下記では libcudnn.so.7.0.5 から貼り直している。)

how_to_solve
$ sudo rm libcudnn.so # 壊れたリンクを削除
$ sudo rm libcudnn.so.7 # 壊れたリンクを削除
$ sudo ln libcudnn.so.7.0.5 libcudnn.so.7 # リンクを貼り直す
$ sudo ln libcudnn.so.7 libcudnn.so # リンクを貼り直す
$ sudo ldconfig

サーバー設定

別投稿を参照。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?