The Windows Terminal is a modern, fast, efficient, powerful, and productive terminal application for users of command-line tools and shells like Command Prompt, PowerShell, and WSL.
Youtube Tutorial for installing Windows Terminal on Windows 10
(Part 1/3)
(Part 2/3)
// Code for adding SSH Hosts in the Windows Terminal
"profiles":
{
"defaults":
{
// Put settings here that you want to apply to all profiles.
},
"list":
[
{
// Make changes here to the SSH profile.
"name": "Ubuntu",
"tabTitle": "Ubuntu 20.04",
"commandline": "ssh username@192.168.178.21 -i ~/.ssh/id_rsa",
"icon": "c:/icons/ubuntu-orange.png"
},
{
// Make changes here to the SSH profile.
"name": "Ubuntu_2",
"tabTitle": "Ubuntu 20.04",
"commandline": "ssh username@192.168.178.21 -i ~/.secure/id_rsa",
"icon": "c:/icons/ubuntu.png"
},
{
// Make changes here to the SSH profile.
"name": "Docker",
"tabTitle": "Docker",
"commandline": "ssh username@192.168.178.25 -i ~/.ssh/id_rsa",
"icon": "c:/icons/ubuntu-orange.png"
},
{
// Make changes here to the SSH profile.
"name": "Kali Linux",
"tabTitle": "Kali Linux",
"commandline": "ssh username@192.168.178.23 -i ~/.ssh/id_rsa",
"icon": "c:/icons/kali.ico"
},
]
}
// How to Copy or Push the SSH Public Keys to the Ubuntu Server
###Create SSH-Private Public Keys###
ssh-keygen
### Create .ssh folder on server in user's folder####
Login to the server with the Username and create a .ssh directory
mkdir .ssh
###Copy SSH Key to Ubuntu Server###
type ~/.secure/id_rsa.pub | ssh urduheim@192.168.178.21 'cat >> .ssh/authorized_keys'