Vim error on installing 32bit Linux
#1
Hello,

I'm currently following the tutorial: https://hashcat.net/forum/thread-5605.html on getting hashcat to run on 32bit, Anyway I hit a bit of a stumbling block regarding

Code:
vim .bashrc -> Add clang to path "PATH=$PATH:/usr/lib/llvm-3.8/bin"  

Returns

Code:
User@The-Distribution-Which-Does-Not-Handle-OpenCL-Well (Kali):~# vim .bashrc -> Add clang to path "PATH=$PATH:/usr/lib/llvm-3.8/bin"
VIM - Vi IMproved 7.4 (2013 Aug 10, compiled May 10 2016 03:06:14)
Too many edit arguments: "-"
More info with: "vim -h"



The vim -h help file didn't really shed much light upon the situation to be honest.
#2
(09-15-2016, 06:22 PM)Billy_The_Kid Wrote: Hello,

I'm currently following the tutorial: https://hashcat.net/forum/thread-5605.html on getting hashcat to run on 32bit, Anyway I hit a bit of a stumbling block regarding

Code:
vim .bashrc -> Add clang to path "PATH=$PATH:/usr/lib/llvm-3.8/bin"  

Returns

Code:
User@The-Distribution-Which-Does-Not-Handle-OpenCL-Well (Kali):~# vim .bashrc -> Add clang to path "PATH=$PATH:/usr/lib/llvm-3.8/bin"
VIM - Vi IMproved 7.4 (2013 Aug 10, compiled May 10 2016 03:06:14)
Too many edit arguments: "-"
More info with: "vim -h"
The vim -h help file didn't really shed much light upon the situation to be honest.

The command is:
Code:
vim .bashrc
And then you have to put:
Code:
PATH=$PATH:/usr/lib/llvm-3.8/bin
inside that file.
#3
Seriously? Please do some more research next time.

Just do this.

Code:
echo 'PATH=$PATH:/usr/lib/llvm-3.8/bin' >> .bashrc