this post was submitted on 03 Jan 2024
-16 points (28.9% liked)

Linux

48199 readers
1228 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

Im a MEAN Stack developer and require the following:-

  • MongoDB (with MongoDB Compass)
  • Express
  • Angular
  • NodeJS

I need those for my web development job and projects.

I have experience with Ubuntu and Fedora based distros and wanted to use Arch Linux because i like the way Hyprland looked. Just tell me how to install mongodb, the rest can be done with npm.

you are viewing a single comment's thread
view the rest of the comments
[–] Certainly_No_Brit@discuss.tchncs.de 1 points 10 months ago* (last edited 10 months ago)

https://wiki.archlinux.org/title/MongoDB

Do you know what the AUR (Arch User Repository) is? You can install MongoDB that way. (This is NOT an official source, all AUR packages are created by users!)

You can install an AUR manager like yay:

git clone https://github.com/Jguer/yay
cd yay
sudo make install

and install (compile) MongoDB:

yay -S mongodb

(or alternatively mongodb-bin for a pre-compiled version)

I apologize if some of the code doesn't work, i can't test it right now.