Harvest the battle results against DEBIAN-the Linux Release Technology-Debian information. The following is a detailed description. The results of the entire afternoon battle.
1. Enable DEBIAN to support Chinese Characters
Apt-get install locales
Dpkg-reconfigure locales
After
# En_US ISO-8859-1
# Zh_TW BIG5
# Zh_TW.UTF-8 UTF-8
# Zh_CN GB2312
# Zh_CN.GBK GBK
# Zh_CN.UTF-8 UTF-8
These are optional. OK. Restart. It's done!
2. Install debian ssh successfully.
Install the OPENSSH-SERVER after sshd & enable resident memory restart complete
Maybe we also need to install OPENSSL before. It's okay to install one more.
3. Allow DEBIAN to use FIREFOX
Install X-WINDOW. Then install FIREFOX
Run STARTX to start XWIN and enter FIREFOX.
If XWINDOW is not installed, FIREFOX and other programs requiring graphical interfaces cannot be used. Such as FCITX input method and OPENOFFICE...
4. Testing of SVN is underway.
This is a long time. There are a lot of gossip messages on the Internet. It is too unreliable. It may be due to version issues. My DEBIAN4 is different from the materials.
The information is not reliable. The knowledge is useless. So I spent an hour or two. Finally, I found the information ..
First apt-get install libapache2-svn apache2-mpm-prefork subversion
At this point, APACHE should be configured successfully. you can log on to APACHE on the network. After installation, you can create a project.
Svnadmin create/var/lib/svn/Project_Name. After the project is created, install APACHE users.
Because apache2 is used to provide services, the directory permission is changed to www-data:
Chown-R www-data.www-data/var/lib/svn/Project_Name
Then configure APACHE2
Edit/etc/apache2/mod-available/dav_svn.conf:
CODE: DAV svn SVNParentPath/var/lib/svn # This is the path of the project AuthType Basic AuthName "Subversion Repository" AuthUserFile/etc/apache2/dav_svn.passwd # The file where the user name and password for Logon are located # Uncomment the following line to enable Authz Authentication AuthzSVNAccessFile/etc/apache2/dav_svn.authz # access permission configuration file # Require valid-user # |