sqlplus - Installing rlwrap on linux - without root permission -


i trying install rlwrap. not have root permissions.

i did following install rlwrap using steps mentioned online :

gunzip rlwrap*.gz tar -xvf rlwrap*.tar cd rlwrap ./configure make make check make install 

but in last step when "make install", error

/usr/bin/install: cannot create regular file `/usr/local/bin/rlwrap': read-only file system make[2]: *** [install-binprograms] error 1 

i tried "sudo make install", still same error.

what options install rlwrap?

thanks

in order install without root permissions, need configure follows:

./configure --prefix=$home 

after 'make install' install rlwrap in $home/bin

(above info install file in root folder of rlwrap)


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -