I have installed subversion and I can run the commands
svn help
svn --version
svnserve --help
svnserve --version
without any problems.
So what I did was created a new repository using svnadmin create help which is in the path [~/svn/repos/help]
When I try to run
svn list svn+ssh://myuser@www.mydomain.com/home/svn/repos/help
it asks me for the password and once I entered it it says:
bash: svnserve: command not found
svn: To better debug SSH connection problems, remove the -q option from 'ssh' in the [tunnels] section of your Subversion configuration file.
svn: Network connection closed unexpectedly
below are the contents of my .bash_profile and .bashrc files. Not sure what's going on as it seems the path are set right since I can tun the commands.
Code:
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
source .bashrc
# User specific environment and startup programs
PATH=$PATH:$HOME/bin:$HOME/bin/bin/
export PATH
unset USERNAME
PATH=$PATH:$HOME/bin/bin/
export PATH
Code:
.bashrc
# User specific aliases and functions
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
PATH=$PATH:$HOME/bin:$HOME/system/bin/$HOME/lapendac/bin/
export PATH
PATH=$PATH:$HOME/bin/bin
export PATH
Any help with this will be appreciated.