Community


All times are UTC - 5 hours




Post new topic Reply to topic  [ 20 posts ]  Go to page Previous  1, 2
Author Message
 Post subject: Re: -bash: /usr/bin/nrclientcmd: No such file or directory
PostPosted: Mon Jun 16, 2014 3:51 pm 
Offline

Joined: Mon Jun 16, 2014 3:38 am
Posts: 8
Hi KevinZ,

sorry for not introducing myself.
My name is Marcus.
We are searching for a Software like Neorouter for building a Virtual Private Network with all client Systems (much of them Debian 7 x64 VM, but also a few stand-alone Clients Olimex A20) of our customers.

Is there a posibility to compile the NeoRouter Client for the Olimex A20?
We need to check if the user / computer management fits our needs. If it fits, we will probably buy the 1000 license pack.

Maybe you can contact me by mail for further questions.

Regards
Marcus


Top
 Profile  
 
 Post subject: Re: -bash: /usr/bin/nrclientcmd: No such file or directory
PostPosted: Wed Aug 27, 2014 8:41 am 
Offline

Joined: Wed Aug 27, 2014 8:26 am
Posts: 3
Hi there,

Same issue with the server (in Raspberry with Raspbian (raspbmc actually)) both nrsetup and nrserver returns the same message.

Code:
-bash: /usr/bin/nrsetup: No such file or directory


These are the linked libraries of nrsetup with the corresponding version...
libpthread.so.0 => /lib/arm-linux-gnueabihf/libpthread.so.0 (0xb6f51000) (libpthread-2.13.so)
libcrypt.so.1 => /lib/arm-linux-gnueabihf/libcrypt.so.1 (0xb6f1a000) (libcrypt-2.13.so)
libdl.so.2 => /lib/arm-linux-gnueabihf/libdl.so.2 (0xb6f0f000) (libdl-2.13.so)
libstdc++.so.6 => /usr/lib/arm-linux-gnueabihf/libstdc++.so.6 (0xb6e42000) (libstdc++.so.6.0.17)
libm.so.6 => /lib/arm-linux-gnueabihf/libm.so.6 (0xb6dd1000) (libm.so.6)
libgcc_s.so.1 => /lib/arm-linux-gnueabihf/libgcc_s.so.1 (0xb6da8000) (libgcc_s.so.1)
libc.so.6 => /lib/arm-linux-gnueabihf/libc.so.6 (0xb6c78000) (libc-2.13.so)
/lib/ld-linux.so.3 => /lib/ld-linux-armhf.so.3 (0xb6f7e000) (ld-2.13.so)

Are these the expected versions? Do I have to downgrade any of them?

Thanks!


Top
 Profile  
 
 Post subject: Re: -bash: /usr/bin/nrclientcmd: No such file or directory
PostPosted: Tue Sep 09, 2014 5:45 pm 
Offline

Joined: Tue Sep 09, 2014 5:40 pm
Posts: 1
I'm having the exact same issues with the free client and server. Trying to get it to work on an Ubuntu 14.04 LTS VPS. nrserver, nrservice and nrclientcmd give me the bash: /usr/bin/nrserver: No such file or directory. The installation of server and client seemed to work fine but after that i'm stuck. :(


Top
 Profile  
 
 Post subject: Re: -bash: /usr/bin/nrclientcmd: No such file or directory
PostPosted: Wed Sep 10, 2014 1:34 pm 
Offline

Joined: Tue Feb 10, 2009 4:11 am
Posts: 96
ToGe88 wrote:
I'm having the exact same issues with the free client and server. Trying to get it to work on an Ubuntu 14.04 LTS VPS. nrserver, nrservice and nrclientcmd give me the bash: /usr/bin/nrserver: No such file or directory. The installation of server and client seemed to work fine but after that i'm stuck. :(


maybe you should post more result from some commands for neorouter people to investigate, such as

uname -a
/sbin/ldconfig -p
(or even rebuild: sudo /sbin/ldconfig -v)

and
file /usr/bin/nrserver
ldd /usr/bin/nrserver

etc.


Top
 Profile  
 
 Post subject: Re: -bash: /usr/bin/nrclientcmd: No such file or directory
PostPosted: Sun Oct 19, 2014 6:43 am 
Offline

Joined: Wed Aug 27, 2014 8:26 am
Posts: 3
Ok, I think I know what happened with this "common" issue "No such file or directory" when executing any command (server or client) of NeoRouter.

All the binaries are compiled for GNU/Linux 3.1.9 and distros like RaspBMC (for raspberry pi) uses GNU/Linux 2.6.26...

This makes the system return the message "No such file or directory". It is like executing a 64bits binary in a 32 bits operating system...

It is possible to get this binaries compiled for early GNU/Linux versions or maybe the source (at least of the nrclientcmd/nrservice)?

Thanks.


Top
 Profile  
 
 Post subject: Re: -bash: /usr/bin/nrclientcmd: No such file or directory
PostPosted: Fri Nov 14, 2014 5:01 pm 
Offline

Joined: Fri Nov 14, 2014 4:52 pm
Posts: 1
I'm pretty new to all of this, but I had this same issue trying to set up NeoRouter on my xbian pi. After some troubleshooting (elfread -a /usr/bin/nrclientcmd), it seemed to be a problem with nrclientcmd requesting the library ld-linux.so.3, which wasn't installed in /lib, even though it installs with glibc6.

I just created a symlink to the shared library path:
Code:
sudo ln -sf /lib/arm-linux-gnueabihf/ld-linux.so.3 /lib/ld-linux.so.3

After two hours of banging my head against the wall, it seems to be working now.


Top
 Profile  
 
 Post subject: Re: -bash: /usr/bin/nrclientcmd: No such file or directory
PostPosted: Wed Nov 26, 2014 6:48 am 
Offline

Joined: Wed Aug 27, 2014 8:26 am
Posts: 3
t.8 wrote:
I'm pretty new to all of this, but I had this same issue trying to set up NeoRouter on my xbian pi. After some troubleshooting (elfread -a /usr/bin/nrclientcmd), it seemed to be a problem with nrclientcmd requesting the library ld-linux.so.3, which wasn't installed in /lib, even though it installs with glibc6.

I just created a symlink to the shared library path:
Code:
sudo ln -sf /lib/arm-linux-gnueabihf/ld-linux.so.3 /lib/ld-linux.so.3

After two hours of banging my head against the wall, it seems to be working now.


Thank you very much, it worked.


Top
 Profile  
 
 Post subject: Re: -bash: /usr/bin/nrclientcmd: No such file or directory
PostPosted: Wed Oct 12, 2016 5:59 am 
Offline

Joined: Fri Aug 19, 2016 6:57 am
Posts: 19
This helped me resolve installing nrserver on Odroid C1 that has DietPi on it. So far testing, it's working (mostrly, two-three machines won't ping, but we'll see). After running that command, I just reinstalled nrserver and everything got under control. Prior that, I couldn't even finish the install.

Thank you very much!


Top
 Profile  
 
 Post subject: Re: -bash: /usr/bin/nrclientcmd: No such file or directory
PostPosted: Mon Oct 17, 2016 8:27 pm 
Offline

Joined: Mon Oct 17, 2016 8:22 pm
Posts: 1
Location: Manchester
I just come here to find a way to solve my problem.I have the same problem. :|

_________________
QueenaBelle


Top
 Profile  
 
 Post subject: Re: -bash: /usr/bin/nrclientcmd: No such file or directory
PostPosted: Tue Oct 18, 2016 4:23 am 
Offline

Joined: Fri Aug 19, 2016 6:57 am
Posts: 19
Sarahneaves wrote:
I just come here to find a way to solve my problem.I have the same problem. :|


Did you try the mothod above?


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 20 posts ]  Go to page Previous  1, 2

All times are UTC - 5 hours


Who is online

Users browsing this forum: No registered users and 36 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to: