Skip to main content

Qubes OS: TemplateVM fedora-29 - Install rdesktop

Live without Microsoft Windows? NO with me so far. I have to install rdesktop on Qubes OS fedora-29 TemplateVM.

rdesktop is a client for Remote Desktop Protocol (RDP), used in a number of Microsoft products including Windows NT Terminal Server, Windows 2000 Server, Windows XP and Windows 2003 Server.

Start fedora-29 Terminal to check if rdesktop exists

$ which rdesktop

Search for rdesktop package

$ dnf search rdesktop

Install rdesktop

$ sudo dnf install -y rdesktop

Reboot personal domain which is based on fedora-29 TemplateVM and check if rdesktop exists.

[user@personal ~]$ which rdesktop
/usr/bin/rdesktop
[user@personal ~]$ 
[user@personal ~]$ rdesktop  192.168.64.65
Failed to connect, CredSSP required by server.
[user@personal ~]$ 

Popular posts from this blog

Powershell: Test-NetConnection

PS C:\Users\tuyen> get-help Test-NetConnection NAME     Test-NetConnection SYNTAX     Test-NetConnection [[-ComputerName] <string>] [-TraceRoute] [-Hops <int>] [-InformationLevel {Quiet |     Detailed}]  [<CommonParameters>]     Test-NetConnection [[-ComputerName] <string>] [-CommonTCPPort] {HTTP | RDP | SMB | WINRM}     [-InformationLevel {Quiet | Detailed}]  [<CommonParameters>]     Test-NetConnection [[-ComputerName] <string>] -Port <int> [-InformationLevel {Quiet | Detailed}]     [<CommonParameters>]     Test-NetConnection [[-ComputerName] <string>] -DiagnoseRouting [-ConstrainSourceAddress <string>]     [-ConstrainInterface <uint32>] [-InformationLevel {Quiet | Detailed}]  [<CommonParameters>] ALIASES     TNC REMARKS     Get-Help cannot find the Help files fo...

Windows command: icacls

Icacls is a command-line utility that can be used to display or modify discretionary access control lists (DACLs) on specified files, and apply stored DACLs to files in specified directories.

Powershell: Get-ChildItem

List, search/find files and directories with Get-ChildItem cmdlet.