Horje
how install mongodb on raspberry Code Example
how install mongodb on raspberry
1	# Install the MongoDB 4.4 GPG key:
2	wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -
3	
4	# Add the source location for the MongoDB packages:
5	echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.4.list
6	
7	# Download the package details for the MongoDB packages:
8	sudo apt-get update
9	
10	# Install MongoDB:
11	sudo apt-get install -y mongodb-org




Shell

Related
cp -r copy linux directory or file Code Example cp -r copy linux directory or file Code Example
how export tables database in command line linux Code Example how export tables database in command line linux Code Example
how to check the requirement of a package in pip Code Example how to check the requirement of a package in pip Code Example
fix merge conflict in package-lock.json Code Example fix merge conflict in package-lock.json Code Example
how to validate a mobile number in shell script Code Example how to validate a mobile number in shell script Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7