Linux command: pidof pidof - find the process ID (PID) of a running program [using its name]. Kill openvpn process root@T420:~# pidof openvpn 41 root@T420:~# kill -15 $(pidof openvpn) Labels Linux
GNS3: Notes As usual, notes is for myself and might be useful and also save time for beginners start using GNS3 . Read more
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... Read more
Debian: Install NASM - The Netwide Assembler sudo apt install nasm Check NASM Version nasm -v Find out more about NASM at https://nasm.us/doc/nasmdoc0.html Read more