OpenIndiana is a fork of Sun’s OpenSolaris before it was killed by Oracle. There’s quite a few commands in there that are different from linux, and there’s been a bit of discussion on the openindiana mailing list about whether commands should be more linux like or not.
In any case, there’s the built in commands in /usr/bin and the linux-like versions in /usr/gnu/bin. This is what you need in your path to use the linux versions, which I have, but I have it at the end of my path.
Unfortunately that’s no good for rvm. Well at least for the rvm upgrading part.
You can put /usr/gnu/bin at the beginning of your PATH. Or if you don’t want to do that, you can:
$ # installing:
$ PATH=/usr/gnu/bin:$PATH bash < <(curl -s https://rvm.beginrescueend.com/install/rvm)
$ # upgrading
$ PATH=/usr/gnu/bin rvm get latest
Like this:
Like Loading...
Related