Skip to content

KyleChang95/Development-Note

Repository files navigation

Setup Environment

  1. Install Visual Studio Code and extensions

  2. Install VritualBox 7.0.6 & extension Pack

  3. Install Vagrant 2.3.4 & plugins

  4. Create VM via vagrant

    # add an empty folder as a workspace
    mkdir ~/vagrant
    
    # switch directory
    cd ~/vagrant
    
    # create an initial Vagrantfile
    vagrant init ubuntu/focal64
    
    # launch VM
    vagrant up
    
    # SSH into VM
    vagrant ssh
  5. Create new SSH key

    ssh-keygen -t ed25519
  6. Append the SSH public key to ~/.ssh/authorized_keys on the VM

    # test if key works
    ssh -T vagrant@192.168.56.10
  7. Setup Remote - SSH

About

This repository is used to document my notes and insights in programming development.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published