📒
Urduheim
  • Welcome to Urduheim Docs
  • Windows Terminal 2020
  • Ubuntu Tutorials
    • How to monitor Multiple Servers with Grafana on a Single Dashboard
    • How to install Grafana, InfluxDB and Telegraf on Ubuntu 20.04 LTS
    • Central Syslog Server Configurations
    • FreeRadius
  • How to install Open media vault on Raspberry pi 4B
Powered by GitBook
On this page

Windows Terminal 2020

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.

PreviousWelcome to Urduheim DocsNextHow to monitor Multiple Servers with Grafana on a Single Dashboard

Last updated 4 years ago

Windows Terminal 2020

Code for adding SSH Hosts in the Windows Terminal

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'



https://youtu.be/J6UldC85TU0
https://youtu.be/ZoFxV-AlXx0