Skip to content

Instantly share code, notes, and snippets.

View lalamax3d's full-sized avatar

Haseeb Ahmed lalamax3d

View GitHub Profile
# Youtube: https://youtu.be/1Eowk4PI2Rg
sudo apt-get update
sudo apt-get upgrade
# Install the official MongoDB
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 9DA31620334BD75D9DCB49F368818C72E52529D4
echo "deb [ arch=amd64 ] https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.0.list
# Configure Node.js to be installed via package manager
@linuxdevhub
linuxdevhub / ThingsToDonstallingUbuntu.sh
Created January 2, 2020 16:44
Things To Do After Installing Ubuntu 18.04 LTS Desktop
#!/bin/sh
# This command will update & upgrade your system
sudo apt update && sudo apt-get upgrade --fix-missing
# Install the package build-essential for making the package and checkinstall for putting it into your package manager
sudo apt install build-essential checkinstall
# Install Ubuntu Restricted Extras
sudo apt install ubuntu-restricted-extras