Install Daedalus in Centos 7

Do any of you have guide to install Daedalus in Centos 7.
I already download the bin file and when it run it have error like this

chmod: changing permissions of ‘./run’: Operation not permitted

Anybody have same issue? And know how to fix it?

sudo “failing command”

It will prompt for your pw. I guess everyone running linux is on Android these days.

Already did and here’s new error
unshare(): Invalid argument
Any idea why?

I know this is a year old, but I had this exact problem and after some digging found a solution that worked for me.

The issue seems to be related with not having user_namespaces enabled at the kernel level. So the first step is this needs to be enabled, I found the following command to do so in a “safe” way from command line:

 grubby --args="user_namespace.enable=1" --update-kernel="$(grubby --default-kernel)"

Reboot. Then increase the number of namespaces allowed from the default of zero (again from command line):

echo 15000 > /proc/sys/user/max_user_namespaces

both of the above will need to be run as Admin so use ‘sudo’ or ‘su’ to root.
With that done, try executing the bin again and it should run.

Thanks, for your reply. I will try…