wine 1.0 released
Wednesday, June 18th, 2008get it here.
get it here.
go here.
**these steps are for a stand alone repository.
check if subversion is already installed:
root@localhost ~]# rpm -q subversion
create a repository on a desired location, e.g /opt
root@localhost ~]# cd /opt
root@localhost opt]# svnadmin create repos
this will establish your repository in /opt/repos
root@localhost repos]# ls
conf dav db format hooks locks README.txt
go to /opt/repos/conf and edit passwd for user accounts and svnserve.conf for privileges
include these lines in svnserve.conf:
anon-access = none
auth-access = write
password-db = passwd
lastly, enter the following commands:
root@localhost ~]# cd /usr/bin
root@localhost bin]# ./svnserve -d
—-
note: during linux installation, subversion is included. unless development tools were nselected.
next time, i’ll post how to connect to a subversion server with subclipse plugin for eclipse ide.
get it here.