Có rất nhiều cách để thực hiện Remote từ Linux đến máy tính Windows PC của chúng ta, bằng Remina hoặc Rdesktop v.v nhưng mình ở đây sẻ hướng dẫn bạn sử dụng Console để remote đến CMD của Windows với mình thì sử dụng dòng lệnh là tốt nhất
Để thực hiện ta bắt đầu trên máy Windows 10 bằng cách mở hộp thoại PowerShell với quyền Administrator ( Run as administrator ) và thực hiện chạy các dòng lệnh màu xanh và đỏ sau:
Get-WindowsCapability -Online | ? Name -like 'OpenSSH*'
# This should return the following output:
Name : OpenSSH.Client~~~~0.0.1.0
State : NotPresent
Name : OpenSSH.Server~~~~0.0.1.0
State : NotPresent
Tiếp đến chạy dòng lệnh sau:# 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 # Both of these should return the following output: Path : Online : True RestartNeeded : FalseCòn nếu muốn Unistall OpenSSH thì thực hiện lệnh:
# Uninstall the OpenSSH Client Remove-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0 # Uninstall the OpenSSH Server Remove-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0Tiếp tục bạn cần mở các Service và Port Firewall ( Tường lửa ) để có thể SSH đến máy Windows từ Linux
Start-Service sshd # OPTIONAL but recommended: Set-Service -Name sshd -StartupType 'Automatic' # Confirm the Firewall rule is configured. It should be created automatically by setup. Get-NetFirewallRule -Name *ssh* # There should be a firewall rule named "OpenSSH-Server-In-TCP", which should be enabledVậy là các bạn đã thực hiện xong phần cài đặt SSH cho Windows rồi đấy, giờ thì vào Linux để Test SSH xem đã hoạt đông chưa nha
Vậy là đã thành công rồi đấy, nhập Pass là connect đến CMD của Windows 10 rồi, việc còn lại các bạn phải học và am hiểu về CMD thì mới có thể thực hiện Remote bằng Console được.
Nguồn: itblognote.com
0 Comments
Vài lời muốn nói:
* Không được nhận xét thô tục bởi mình biết các bạn là những người văn minh.
* Pass giải nén mặt định là itblognote hoặc itblognote.com nếu có Pass khác thì mình sẽ ghim trong bài viết.
* Click vào quảng cáo và chia sẻ bài viết để mình có thêm động lực viết bài nhé.