Search code examples
sshrustx86centos7

Install Rust on a 32 bit CentOS 7 server through SSH


I'm trying to install Rust on a 32 bit CentOS 7 server through SSH. I run this command suggested here:

curl https://sh.rustup.rs -sSf | sh

This command never finishes, and the server machine CPU fan goes high speed. Eventually, the server machine screen becomes black with keyboard lights getting on and off (blinking) repeatedly.

Is the problem due to the fact that the server is 32 bit? Is there any other possibility?

Update

The kernel panic occurred multiple times, for example when trying to run cargo run as described here:

kernel bug at kernel/auditsc.c:1532


Solution

  • @amo-ej1 comment worked.

    Offline installers are available here. Just downloaded the i686-unknown-linux-gnu file tar.gz for nightly. Installed by running the install.sh script inside it with --verbose option.

    Table