下記のコメンドを駆使してみる apt-cache search キーワード #検索 apt-cache show パッケージ名 #パッケージ情報 apt-cache showpkg パッケージ名 #依存関係、被依存関係表示 apt-get -f install
dpkg -l #インストールされたpkgの表示 dpkg -l パッケージ名 # パッケージ情報 dpkg -L パッケージ名 # PKG内ファイル一覧
dpkg -r パッケージ ??
sudo dpkg -configure パッケージ名 #不完全な状態のPKGを再設定 sudo dpkg -configure -a 全て再設定 $ sudo apt-get ?purge remove パッケージ名 $ sudo apt-get clean
依存関係の修復には、以下のコマンドを用います。
$ sudo apt-get -f install
このコマンドにより、依存関係を満たすために必要なパッケージのダウンロード、インストールができるらしい。
パッケージの設定で問題が発生している場合は、以下のコマを試してみる
$ sudo dpkg ?configure -a
修復できない場合は、パッケージを削除し、キャッシュも消す。
$ sudo apt-get ?purge remove パッケージ名 $ sudo apt-get clean
再ダウンロードしたものをインストールしてみる。
$ sudo apt-get update $ sudo apt-get install パッケージ名
投稿ナビゲーション
Remmina経由のリモートデスクトップ接続は接続先でキーボードが動かなかったので、RaspiのVPNサーバー経由でWindows10にリモートデスクトップ接続した
In case of remote desktop connection by using Remmina key board didn’t work. So I connect a windows10 PC by remote desktop via VPN server on Raspi.
http://hila335.blog136.fc2.com/blog-entry-604.html
Teraterm 経由で接続するというもの Remte desktop is established via Teraterm terminal software
step1: VPN接続 step2:TeratermでVPNサーバーにSSH接続 step3:設定タブでSSH転送を選択 step4:追加で転送ポート番号(13389)リモートデスクトップ先のIP、ポート番号3389を設定し、OK step5:リモートデスクトップ接続で、localhost:13389で接続可能になる
step1: connect VPN step2: connect to your VPN server by SSH with a teraterm teminal software. step3: select setup and SSH Forwarding. step4: click add and set forward local port(e.g. 13389), to remote machne(I address) and port(3389), then OK step5:remote desktop connection wtth localhost:13389
投稿ナビゲーション