#mkdir /svn
#mkdir /svn/repos
#mkdir /svn/users
#mkdir /svn/permissions
#svnadmin create /svn/repos/myproject
#svn import /path/to/myproject file:///svn/repos/myproject/myproject -m ‘initial import’
#vi /svn/repos/conf/svnserve.conf
paste this text
[general]
anon-access = none
auth-access = write
password-db = passwd
# authz-db = authz
realm = Fox Client Repository
#vi passwd
paste this text
[users]
beer=password
save=password
#cd /svn/repos/myproject
#svnserve -d
now you can check out via url svn:///ipaddress/svn/repos/myproject
and you will get folder ‘myproject’, happy coding!!