Проблемы с установкой Linux, grub2 не загружается [закрыто]

Si está en Windows 10, puede instalar OpenSSHusando lo siguiente Guión PowerShell.

#change dns server to 8.8.8.8 so that the OpenSSH stuff can be downloaded
netsh interface ip set dns "Ethernet" static 8.8.8.8

#sleep for 60 s so that the DNS server has time to register
Start-Sleep -m 60

#check if OpenSSH is already installed or not
Get-WindowsCapability -Online | ? Name -like 'OpenSSH*'

# Install the OpenSSH Client
Add-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0

# Install the OpenSSH Server
Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0

# Check if OpenSSH is available
dism /Online /Get-Capabilities | findstr OpenSSH

# install the server and/or client features:
dism /Online /Add-Capability /CapabilityName:OpenSSH.Client~~~~0.0.1.0
dism /Online /Add-Capability /CapabilityName:OpenSSH.Server~~~~0.0.1.0

Install-Module -Force OpenSSHUtils

Repair-SshdHostKeyPermission -FilePath C:\Windows\System32\OpenSSH\ssh_host_ed25519_key

# start the ssh server daemon
Start-Service sshd

# This should return a Status of Running
Get-Service sshd

# add firewall rule to allow inbound and outbound traffic through port 22
New-NetFirewallRule -Name sshd -DisplayName 'OpenSSH Server (sshd)' -Service sshd -Enabled True -Direction Inbound -Protocol TCP -Action Allow -Profile Domain

Tenga en cuenta que este script cambiará el dns a dns de Google. Porque OpenSSHno se distribuye con la distribución predeterminada Windows10, en realidad descargar algunos archivos de Internet. Así que necesitas un Internet que funcione conexión y un servidor dns correcto, por lo que especifiqué el dns estático servidor, en caso de que esté detrás de un firewall o usando una ip estática sin dns servidor.

Una vez que haya hecho esto, debe averiguar la dirección IP del Windowsanfitrión usign

ipconfig

Luego, desde el sistema operativo Linux/Unixhaga

ssh username@Windows_ip

donde nombre de usuario es el nombre de la cuenta y Windows_ipes la dirección IP de la computadora con Windows en la que está intentando iniciar sesión

0
16.12.2018, 23:44
0 ответов

Теги

Похожие вопросы