Darryl Dias

15 May 2022 in

After installing Houdini, you may come across this error. This error appears in the Terminal; if you open it from the application launcher, you maybe be getting this error, but it does not show in any way.

```
munmap_chunk(): invalid pointer
Aborted (core dumped)

The...

Continue Reading →

10 Feb 2022 in
If you search for packages using pip, you may encounter this error. This is because, after December 2020, the pip search functionality was discontinued due to an unmanageable load on PyPi's XMLRPC API service. ```
```
ERROR: XMLRPC request failed [code: -32500]
RuntimeError: PyPI's XMLRPC API is cu...

Continue Reading →

01 Jan 2022 in
```
```
find /tmp -name "*.py"
```
```
The example above uses the find command to search files in the tmp folder for Python files that have the extension `.py`.
To get a list of all the files with the same extension inside the current directory, look for all the Python extension files for this exam...

Continue Reading →

13 Dec 2021 in

This article will cover installing and setting up official Nvidia drivers on Red Hat Enterprise Linux; this method has been tried and tested on RHEL 8.

It works best on the default kernel that ships with RHEL 8. If you have a custom Kernel or modified setup, you might need extra steps. The additio...

Continue Reading →

12 Dec 2021 in

We need to add the RPM Fusion Free repository to install OBS Studio.

Let's do that by entering the command below and adding the RPM Fusion Free repository.

```
sudo dnf install \
  https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noa...

Continue Reading →