Skip to content

Latest commit

 

History

History
83 lines (62 loc) · 2.17 KB

Ubuntu-22.04.md

File metadata and controls

83 lines (62 loc) · 2.17 KB

Post-install process for Ubuntu

⚠️ Warning: The post-install instruction is deprecated

Software

curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
sudo apt-get install nodejs
sudo apt install npm
  • Some npm stuff:
sudo npm i -g n parcel webpack webpack-cli pm2 eslint svgo
  • MongoDB:
  1. Install libssl1.1 package
echo "deb http://security.ubuntu.com/ubuntu focal-security main" | sudo tee /etc/apt/sources.list.d/focal-security.list

sudo apt-get update
sudo apt-get install libssl1.1

sudo rm /etc/apt/sources.list.d/focal-security.list
  1. Follow instructions https://docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu/

Settings

  • Add Russian keyboard (settings -> region & language)

  • For folding apps in one click:

gsettings set org.gnome.shell.extensions.dash-to-dock click-action 'minimize'
chmod =600 ~/.ssh/private_key
ssh-add ~/.ssh/private_key
  • SSH config (~/.ssh/config):
Host github.com
    HostName github.com
    User DRIMchansky
    IdentityFile ~/.ssh/github

Host {name}
    HostName {organization url}
    User {username}
    IdentityFile ~/.ssh/{private_key}
  • Make Linux Use Local Time (if windows used as second system)
timedatectl set-local-rtc 1 --adjust-system-clock