MorningAI

首页

目录

Windows登录方式

方式一、 RDP远程桌面(推荐本地系统是Win11的用户)

image.png#901px #305px

image.png#576px #457px

image.png

image.png#747px #416px

方式二、RDP文件连接远程桌面(推荐本地系统是Win10或者MacOS用户)

image.png#901px #305px

  • Win10直接双击这个RDP文件,输入密码连接

  • MacOS下载Windows APP, 然后双击文件,输入密码连接

方式三、通过WebUI登录并操作

参考文档:WebUI使用教程

方式四、通过第三方远程工具(Todesk、向日葵等)

系统的下载目录有 向日葵和Todesk的安装程序,可以自行安装设置,推荐设置长期密码
image.png#585px #423px

方式五、通过SSH工具

所有支持SSH协议的工具或者IDE都可以
首先需要先启用SSH

  1. 管理员权限打开powershell

  2. 执行如下命令,等待完成

    Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0
    
    Start-Service sshd
    
    Set-Service -Name sshd -StartupType 'Automatic'
    
    New-NetFirewallRule -Name sshd -DisplayName 'OpenSSH Server (sshd)' -Enabled True -Direction Inbound -Protocol TCP -Action Allow -LocalPort 22

    Windows 的SSH信息同远程桌面rdp 信息,唯一不一样是rdp远程桌面的端口是23xxx, SSH的远程端口是22xxx