Solved errors

Direct solutions to common programming errors and system issues.

Page 6 of 17

1 min readBeginner

macOS: Open Current Folder in Finder

To open finder from the terminal in OSX use the commnad

2 min readBeginner

pip: six issue when installing package

If you are using macOS and you get a permission denied while installing with pip install six, then you could try to execute: pip install --ignore-installed six. check our solution for more details.

1 min readBeginner

How to reset bios or clear cmos using just keyboard keys

If you want to clear cmos without opening the computer case, try to: press del key on power on.

1 min readBeginner

Nginx 413: Request Entity Too Large Fix

If you got the error “413 Request Entity Too Large” in Nginx, set the value of “client_max_body_size” to a bigger value. The configuration is located at /etc/nginx/nginx.conf. Check here for more details on this solution.

1 min readBeginner

macOS Mojave pyenv: Install failed, "zlib not available"

If you are having the error

1 min readIntermediate

Fix for AMD-Vi: Event logged [IO_PAGE_FAULT device...

Ig you have the kernel error IO_PAGE_FAULT at boot, try to add the option iommu=soft to the grub on the GRUB_CMDLINE_LINUX_DEFAULT. Example GRUB_CMDLINE_LINUX_DEFAULT="quiet iommu=soft", check this articule for more information.

1 min readBeginner

Java: error: Double.MIN_NORMAL not found

When you see the error **Double.MIN_NORMAL not defined** you should use the following: Double.longBitsToDouble(0x0010000000000000L)

1 min readBeginner

windows 10 virtualbox stopped working

If virtualbox stopped to work on windows 10, try the following command: sc start vboxdrv

1 min readIntermediate

Solution to error SvcErr: DSID-03100754

When you try to authenticate using LDAP you get the following error, 000020D6: SvcErr: DSID-0310081B, problem 5012 (DIR_ERROR), data 0. this means that the base DN is not complete, it should be like dc=test,dc=com. Check here for more details

1 min readBeginner

[SOLVED] Could not find main GSSAPI shared library

If you have the error " Exception: Could not find main GSSAPI shared library. Please try setting GSSAPI_MAIN_LIB yourself or setting ENABLE_SUPPORT_DETECTION to 'false'", you can fix it by installing sudo apt-get install python-pip libkrb5-dev. check here for more details on the solution.