0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ChromebookのLinuxアプリでプリンターを使用する方法

Last updated at Posted at 2024-11-03

Linuxターミナルを開き、以下のコマンドを実行して、CUPS(Common Unix Printing System)をインストールする。私の環境ではこれだけで、Linuxアプリでプリンターが使用できるようになった。

sudo apt update && sudo apt upgrade -y
sudo apt install cups -y

cupsのインストールだけで使用できるようになったので、試していませんが、もし印刷メニューにプリンターが現れなければ、以下のコマンドを実行してみると良いかもしれない。

sudo service cups start

または、

sudo service cups restart

それでも現れなければ、以下のコマンドを実行して、system-config-printerをインストールする。

sudo apt install system-config-printer -y
xhost + si:localuser:root

その後、以下のコマンドを実行して、プリンター設定にアクセスして、プリンターを検索して追加できるかもしれない。

sudo system-config-printer
0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?