web-dev-qa-db-ja.com

CUPSを介してGoogleクラウドプリンターサーバーをセットアップする

64ビットUbuntu 14.04コンピューターでCUPSコネクタを使用してGoogleクラウドプリンターサーバーをセットアップしようとしています。私の2つのプリンターはWiFiプリンターですが、e-printingをサポートしていません。これは、同じネットワークに接続していないときにAndroidデバイスで印刷できるようにするという私の目標です。

私は here で説明されている手順に従っています。

gcp-cups-connector-linux-AMD64-2015.10.05.tar.gzバイナリをダウンロードし、/home/username/Downloads/cups-connectorに抽出しました

問題なく依存関係をインストールしました。

$ Sudo apt-get install libcups2 libavahi-client3 avahi-daemon git bzr
Reading package lists... Done
Building dependency tree       
Reading state information... Done
avahi-daemon is already the newest version.
libavahi-client3 is already the newest version.
bzr is already the newest version.
git is already the newest version.
libcups2 is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 4 not upgraded.

私が抱えている問題は、gcp-cups-connectorを実行しようとしているときです。

$ gcp-cups-connector
gcp-cups-connector: command not found

この問題の解決に役立つアドバイスをいただければ幸いです。

1
CampSoup1988

これを試して:

./gcp-cups-connector

または

~/Downloads/cups-connector/gcp-cups-connector
2
anton

あなたは64ビットのubuntuで実行していると思います。

これを行う必要があります。

まず、正しいパッケージをダウンロードします(UbuntuはDebianに基づいています):

wget https://github.com/google/cups-connector/releases/download/2016.01.02/gcp-cups-connector-debian-8-AMD64-2016.01.02.tar.gz
tar xvf gcp-cups-connector-rpi-jessie-2016.01.02.tar.gz

次に、ファイルのエイリアスを設定します。

echo 'alias gcp-cups-connector="~/cups-connector/gcp-cups-connector"' | tee -a ~/.bashrc
echo 'alias gcp-cups-connector-util="~/cups-connector/gcp-cups-connector-util"' | tee -a ~/.bashrc
. ~/.bashrc

これで、コマンドを実行できるはずです。

1
mchid