Giter VIP home page Giter VIP logo

my-notes's Introduction

My important notes

Creating an ssh key "id_ed25519"

ssh-keygen -t ed25519 -C "[email protected]"

  • follow along the instructions

Connecting to our remote machine or local VM

  • start our ssh-agent

eval "$(ssh-agent -s)"

  • add our ssh private key

ssh-add <"Location_Of_The_File">

to use on GitHub

  • ref: Click Link
  • to connect to our github with our private key

ssh -T [email protected]

to use on other virtual or cloud machines/computer

  • to connect to a remote server

ssh root@<"Public_IP_Address">

Installing VScode on Linux

  • ref: Click Link
  • you can write this down in one line if you're a power user

sudo apt update && sudo apt upgrade -y

  • now we will install the necessary dependencies for our installer repository

sudo apt install software-properties-common apt-transport-https wget

  • we use wget for us to import Microsoft's GPG key here

wget -q https://packages.microsoft.com/keys/microsoft.asc -O- | sudo apt-key add -

  • now to Enable our VScode installer repository

sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main"

  • and finally to Install our enabled installer repo

sudo apt install code

Installing Node for Linux (Ubuntu)

as Ubuntu sudoer

curl -fsSL https://deb.nodesource.com/setup_17.x | sudo -E bash -

sudo apt-get install -y nodejs

as Debian root

curl -fsSL https://deb.nodesource.com/setup_17.x | bash -

apt-get install -y nodejs

Installing Chrome using Ubuntu terminal

  • we get the package

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

  • and install it using "dpkg" or depackage method

sudo dpkg -i google-chrome-stable_current_amd64.deb

my-notes's People

Contributors

jobdecrypt avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.