Solved_errors Index Page 6
Linux AMD RX: No OpenCL or CUDA GPUs Found
Check here the solution for the error "No AMD OPENCL or NVIDIA CUDA GPUs found, exit". Try to reinstall amd drivers with the command: "amdgpu-pro-install --opencl=legacy,pal --headless"
How to fix: MacBook pro gets hot in sleep mode
If you put in sleep mode your mac and the computer get's high temperature, you need to check out the check list we have.
Proxmox: Can't Locate PVE/LXC.pm Module
If you get the error "Can't locate PVE/LXC.pm in @INC (you may need to install the PVE::LXC module)" try to install the package proxmox-ve with: apt install proxmox-ve
How to Autostart LXC Container at boot
To Start the LXC at boot use the option lxc.start.auto = 1 on you container config file located at /var/lib/lxc/CONTAINER_NAME/config
Vagrant Plugin Install: Conflicting fog-core Dependencies
When you install a vagrant plugin and you get the error:
Vagrant VirtualBox: VERR_CFGM_NOT_ENOUGH_SPACE
When you try to start a vm with vagrant up, you get the error: VERR_CFGM_NOT_ENOUGH_SPACE. Try to add vb.customize [
Bettercap Install Error: pcap.h Not Found
When you do: go get github.com/bettercap/bettercap and get the error: fatal error: pcap.h: No such file or directory try to execute ->
pymssql: sqlfront.h Not Found Error
When you install pymssql and you get the error: src/_mssql.c:568:22: fatal error: sqlfront.h: No such file or directory. try to install freetds-dev with apt (sudo apt install freetds-dev)
Python: pip is broken. _internal module cannot be imported
The error is common after you execute "pip install pip -U" and you will see the error "ImportError: No module named _internal" everytime you execute "pip". One solution is to change the import on the pip file: **from pip import main**, change that line with **from pip._internal import main**. Check here for alternative solutions to this error.