hashcat Forum
Vim error on installing 32bit Linux - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Support (https://hashcat.net/forum/forum-3.html)
+--- Forum: hashcat (https://hashcat.net/forum/forum-45.html)
+--- Thread: Vim error on installing 32bit Linux (/thread-5879.html)



Vim error on installing 32bit Linux - Billy_The_Kid - 09-15-2016

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.


RE: Vim error on installing 32bit Linux - d2 - 09-15-2016

(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.


RE: Vim error on installing 32bit Linux - coolbry95 - 09-15-2016

Seriously? Please do some more research next time.

Just do this.

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