Raspbian 从 Windows IoT Core 关闭

Raspbian shutdown from Windows IoT Core

我正在 Visual Studio 中构建一个 Windows UWP 应用程序,它是 运行 在 Raspberry Pi 3B 上。由此我想关闭/重启另一个 Raspberry Pi 运行 Raspbian。 这可能吗?如何实现? 提前谢谢你

是的,这是可能的。您可以在 UWP 应用程序中使用 Chilkat.SshAsmodat.Standard.SSH.NET 等 SSH 客户端连接到 Raspbian,然后向它发送shutdown/reboot命令(例如sudo shutdown –h now)。 Asmodat.Standard.SSH.NET 如果是免费图书馆,但 Chilkat.Ssh 不是。您可以找到其他一些支持 .Net Standard 2.0/UAP 10 的 SSH 库。

更新:

以下代码片段使用了 Asmodat.Standard.SSH.NET 库。它适用于 Windows IoT Core 上的我的 UWP 应用 运行。

C#:

    private async void ButtonReboot_Click(object sender, RoutedEventArgs e)
    {
        await Dispatcher.RunAsync(Windows.UI.Core.CoreDispatcherPriority.Normal,  async () =>
        {
            using (var client = new SshClient("xxx.xxx.xxx.xxx", "xx", "xxxxxxx"))
            {
                client.Connect();
                var command = client.CreateCommand("sudo reboot -f");
                var asyncResult = command.BeginExecute();
                var reader = new StreamReader(command.OutputStream);

                while (!asyncResult.IsCompleted)
                {
                    await reader.ReadToEndAsync();
                }

                command.EndExecute(asyncResult);

                client.Disconnect();
            }
        });
    }

VB.NET

Private Async Sub ButtonReboot_Click(sender As Object, e As RoutedEventArgs)

    Await Dispatcher.RunAsync(Windows.UI.Core.CoreDispatcherPriority.Normal,
            Async Sub()
                Using sClient = New SshClient("XXX.XXX.XXX", "XX", "XXXX")
                    sClient.Connect()
                    If sClient.IsConnected Then
                        Dim sCommand = sClient.CreateCommand("sudo reboot -f \r\n")
                        Dim asyncResult = sCommand.BeginExecute()
                        Dim reader = New StreamReader(sCommand.OutputStream)

                        While Not asyncResult.IsCompleted
                            Await reader.ReadToEndAsync()
                        End While

                        sCommand.EndExecute(asyncResult)

                        Debug.WriteLine("Reboot")
                        sClient.Disconnect()
                    End If
                End Using
            End Sub)

End Sub