Category: System

Linux (238)
Windows (383)

How to Test Port Connectivity Using Nmap

nmap is a very handy free port testing and scanning tool that can test port connectivity. Below is a simple port test using this tool.
CentOS system: yum -y install nmap
Ubuntu system: apt -y install nmap

Test command: 8585 is the port to test.
nmap 192. …

You Must Be Granted Allowance Through Terminal Services to Log On to This Remote Computer

Today, when logging into a remote Windows host, I encountered the following error:
To log on to this remote computer, you must be granted the Allow log on through Terminal Services right. By default, members of the "Remote Desktop Users" group have this right. If you are not a member of the "Remote Desktop Users" group or other groups that have this right …

RDesktop Daily Usage Guide

RDesktop is an excellent tool for remotely connecting to Windows from Linux.

For installation, refer to: Using rdesktop to remotely access a Windows host from Linux

Basic command:
rdesktop 192.168.1.xxx

Connection with username and password:
rdesktop 192.168.1.xxx -u administrat …

How to Use PuTTY on Linux

Installing the Graphical Interface (using CentOS with Xfce desktop as an example), here:
bash <(curl -s https://gitee.com/cnop/shell/raw/master/Xfce.sh)
VNC Download

Install the software:
yum install -y epel-release
yum -y install putty

Launch the software:
p …