Unable to run blender 2.80 in RHEL/CentOS 7

OK, So I have been struggling with this for weeks now with no luck. obviously building blender on Centos is beyond my technical capabilities. the question now should I just abandon ship and jump and leave Centos for another distro? or is it something that will be addressed during beta and release candidates? will we have binaries for RHEL and Centos?

Hi @AhmedBarakat , sorry to see you are having issues.
In the past few days I had issues as well building through the docker, but was only due to some dependency issues. Yesterday night built just fine (cheers devs :slight_smile: )

The benefit of using docker (to me) is that you don’t end up polluting your system for one off built.
now to go back to the @mon docker…

first off ensure you have docker installed running :

docker pull hello-world

if everything is fine then run :

docker run mattiasohlsson/centos-blender-2.8-builder

This should pull and run the build image.

You can then extract the result build with :

  docker cp <your result docker name>:/blender-2.80.0-git20180925.df5cb4d-x86_64.tar.gz ./

hope it helps.
L.

Hi Lorenzo, I appreciate your help and taking the time to put this guide for me.
my problem with the docker was that it filled up my root during the pulling and building. and with no luck I tried moving it’s default folder to my secondary drive I followed 3 different guides I found and non worked.
I guess I will try that again and see.

Thanks again for your support.
Ahmed

@AhmedBarakat, pleasure :slight_smile:
if you have issues with docker space, try running this command:

docker stop $(docker container ls -a -q) && docker system prune -a -f --volumes

please note, this command will cleanup any docker thingy you have around, so be careful.
Let me know how it goes.

I struggled a lot with this with no luck. and I messed up my system with all the libraries I was trying to install. and I discovered I lost too much time over this. so one day I decided to just re-install a fresh system and while I was at it I just decided to switch to Ubuntu. few days into Ubuntu, definitely I miss how solid and stable Centos was. but Ubuntu is more user friendly for sure. apt is a joke compared to yum for me. but will see how it goes. important thing I managed to get all my apps to run and I can download the 2.8 builds again.
Thanks for your help.
Ahmed