install xmonad with no priveledges

2

I would like to install and use xmonad on a RHEL box to which I only have access my home directory and the usual unprivileged access. How can I install it?

P.S. No Haskell compiler or xlibs.

Arthur Ulfeldt

Posted 2009-11-18T22:17:40.087

Reputation: 1 208

Answers

1

If you have no sudo access and no Haskell compiler, then the answer is no. There are prebuilt binaries for Fedora 10 and onward, looks as if it's an official part of the Fedora repository now, meaning that eventually it may be in some future RHEL version too. Don't hold your breath though.

DaveParillo

Posted 2009-11-18T22:17:40.087

Reputation: 13 402

3

If you build with the Haskell 'cabal-install' tool, it will happily install as user, and modify no global files.

cabal install xmonad --prefix=$HOME

Don Stewart

Posted 2009-11-18T22:17:40.087

Reputation: 131

@Arthur: If you do not already have a Haskell compiler then just download one and compile it...or grab the package and use --prefix to put it somewhere in your home directories. – Robert Massaioli – 2011-07-14T10:47:01.850

I'm assuming that not already having a haskell compiler will prevent cabal? – Arthur Ulfeldt – 2009-11-21T03:22:54.547