Durchsuchen nach
Schlagwort: rpm

How to update MongoDB Compass? (In my case: AlmaLinux)

How to update MongoDB Compass? (In my case: AlmaLinux)

What is MongoDB Compass GUI? MongoDB Compass is a free graphical tool for querying and managing your database. Under the hood, it is built with Electron—a framework that uses Chromium and Node.js. 💡 What is Electron? Electron allows developers to build desktop applications using web technologies like JavaScript, HTML, and CSS. The biggest advantage is that it is cross-platform, meaning it runs seamlessly on Windows, macOS, and Linux. Electron allows developers to build desktop applications using web technologies like JavaScript,…

Weiterlesen Weiterlesen

MongoDB Export a collection (general)

MongoDB Export a collection (general)

MongoDB is a NoSQL database, that stores information in documents instead of tables, and it can store a lot of information. It looks like that: test> db.test.find()[ { _id: ObjectId(’69edadcfb6b4cff75744ba89′), name: ‚Morgentest‘ } ] You see MongoDB follows the JSON standard for documents. Ok, MongoDB stores this for human-readable information, but there is a special format that is called BSON that MongoDB uses, but this is not the subject of this blog entry. If you have a full database (or…

Weiterlesen Weiterlesen

AlmaLinux Upgrade to 9.8

AlmaLinux Upgrade to 9.8

Yesterday I did the upgrade from AlmaLinux 9.7 to AlmaLinux 9.8. AlmaLinux comes from RedHat and it is a Long-Term supportes distribution. Every 6 months you get a big update of the operating system. I have checked before with the command dnf check-update (without sudo / su rights). This was the output of the command Letzte Prüfung auf abgelaufene Metadaten: vor 0:01:49 am Mi 27 Mai 2026 06:27:58 CEST. LibRaw.x86_64 0.21.1-2.el9_8 appstreamNetworkManager.x86_64 1:1.54.3-2.el9 baseosNetworkManager-adsl.x86_64 1:1.54.3-2.el9 baseosNetworkManager-bluetooth.x86_64 1:1.54.3-2.el9 baseosNetworkManager-config-server.noarch 1:1.54.3-2.el9 baseosNetworkManager-libnm.x86_64…

Weiterlesen Weiterlesen