私のラップトップに「ubuntu-17.04-desktop-amd64」と「qt-opensource-linux-x64-5.8.0」をインストールします。 Qt 5.8でWindows用のアプリケーションを作成しました。 WindowsとUbuntuではうまく動作します。 ラズベリー( "ホスト名-I")のIPアドレス:169.254.181.63 SSHを有効にする: ラズベリー:RasbianのPreferencesメニューから。 Ubuntuので :SSH on Raspberry Pi3
sudo service ssh status
....
.... Starting OpenBSD Secure Shell server.
.... Server listening on 0.0.0.0 port 22.
.... Server listening on :: port 22.
.... Started OpenBSD Secure Shell server.
私はイーサネットケーブルでノートパソコンにラズベリーパイを接続します。 私は "ツール - >オプション...] - > [デバイス]タブ" に新しいデバイス(一般的なLinuxのデバイス)を作成 ホスト名:169.254.181.63 SSHポート:22 ユーザー名:パイ パスワード:1(私が設定した) 結果のテストを:Ubuntuので
Device test: SSH connection: Network unreachable.
:
ssh [email protected]
ssh: connect to host 169.254.181.63 port 22: Network is unreachable
私はラズベリーにネットワーク構成を設定するには、interfaceファイルを編集します。
sudo nano /etc/network/interfaces
更新:
source-directory /etc/network/interfaces.d
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.100.100
netmask 255.255.255.0
allow-hotplug wlan0
iface wlan0 inet manual
更新: しかし、再起動後にラズベリーと実行 "ホスト名-I"、私は "192.168.100.100 169.254.181.63" を持っている
あなたは '192.168.100.0'としてあなたのネットワークを定義しました - >あなたのIPは '192.168.100.100'に設定する必要があります – Moerwald
Stack Overflowはプログラミングと開発に関する質問のサイトです。この質問は、プログラミングや開発に関するものではないので、話題にはならないようです。ヘルプセンターの[ここではどのトピックを参照できますか](http://stackoverflow.com/help/on-topic)を参照してください。おそらく[Raspberry Pi Stack Exchange](https://raspberrypi.stackexchange.com/)や[Unix&Linux Stack Exchange](http://unix.stackexchange.com/)の方が良いかもしれません。 – jww