Durchsuchen nach
Schlagwort: IT

New MongoDB version on my computer

New MongoDB version on my computer

This morning I got updates on my AlmaLinux 9.8. I get the updates with an Update-Script where it checks everything on the computer. The Update script I start this script via Bash menu that I have written: The shut down script You see there are other scripts that I sometimes use of regularly (in order to shut down the computer). The shut-down script And we are the Updates of MongoDB. MongoDB Updates (with others) You see, that MongoDB comes from…

Weiterlesen Weiterlesen

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. Is MongoDB Compass in the official Linux repositories? No. Unlike the MongoDB database…

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

Secure Boot – checking activation or not

Secure Boot – checking activation or not

On Linux in the Bash you have two commands for this (sudo) mokutil – -sb-state or bootctl status | grep „Secure Boot“ 2 If you don’t want to see the error messages, then you can do bootctl status 2>/dev/null | grep „Secure Boot“ Attention: bootctl status | grep „Secure Boot“ 2 >/dev/null does not work.

Jupyter Lab Wrap of the text

Jupyter Lab Wrap of the text

The Jupyter Lab is the modern version of the Jupyter Notebook. Version: I use the version 4.5.7 If you have the problem that you have a long code in your text and that ends to the right side, and you have to scroll it every time, then I have one solution. It is a solution that should work permanently. Open you Jupyter Lab, to „Settings“ -> on the right side at the top -> JSON Settings Editor -> Advanced settings…

Weiterlesen Weiterlesen