apache2를 설치했다면 추가적으로 "libapache2-svn" 패키지를 설치해준다.
그리고 /etc/apache2/httpd.conf 에 설정을 해주고 재시작하면 보인다!
(계정설정은 나중에 해보고 다시 수정)

--- 2010.11.09 추가
/home/svn
/home/svn/svn.passwd
/home/svn/repos1

식으로 파일및 디렉토리가 구성되어 있으며
htpasswd -c /home/svn/svn.passwd [username]
으로 암호파일을 생성한다.

계정설정은 아래의 링크에 나온대로 /etc/apache2/httpd.conf 에 설정을 해주면 된다.
<Location /svn/repos1>
    DAV svn
    SVNPath /home/svn/repos1

    AuthType Basic
    AuthName "Subversion Repository"
    AuthUserFile /home/svn/svn.passwd
    Require valid-user
</Location>

AuthType / AuthName / AuthUserFile 모두 설정되어야 하며
apache를 재시작하면(sudo service apache2 restart) 설정이 적용된다.
tortoiseSVN 이나 웹을 통해 접근시 암호를 물어보게 된다.

[링크 : http://nya.springnote.com/pages/3710557]

'프로그램 사용 > Version Control' 카테고리의 다른 글

svn blame  (4) 2010.11.18
apache2 리눅스 계정으로 인증하기(PAM)  (0) 2010.11.11
visualSVN  (0) 2010.09.09
TortoiseSVN tag/branch = copy  (2) 2010.04.30
cvs2svn 사용방법 2  (0) 2010.04.23
Posted by 구차니
우분투의 아파치는 /etc/apache2에 설정파일이 있다.
기본적으로 user : www-data, group : www-data 로 실행되는데
ajaxplorer로 삼바를 공부하려니 nobody가 편할것 같아 유저와 그룹을 교체!

cat /etc/apache2/envvars
export APACHE_RUN_USER=nobody
export APACHE_RUN_GROUP=nogroup

물론! 아파치 서버를 재구동 해야지 유저와 그룹이 변경된다.
Posted by 구차니
우분투 10.04 LTS에서 패키지로 설치한 웹서버의 php 관련 설정파일은 아래의 경로에 존재한다.
 /etc/php5/apache/php.ini

그리고 용량제한은 879 라인에 정의되어 있다.
 upload_max_filesize = 2M



ajaxplorer의 경우, 자체적으로 제한을 하지 않고 php의 설정에 따르므로
이 파일의 용량을 늘려주어야 한다.

+ apache 리부팅은 필수!
Posted by 구차니
테스트 플랫폼
Intel 2.66Ghz / Ubuntu 10.04 LTS

ajaxplorer

3.0.3 버전은 드라이버 문제로 실행이 되지 않는다.
 [Wed Nov 03 09:47:39 2010] [error] [client 192.168.10.30] PHP Fatal error:  Class 'fsAccessDriver' not found in /var/www/ajaxplorer-core-3.0.3/plugins/access.ftp/class.ftpAccessDriver.php on line 38
3.0.2 버전은 해보지 않았고, 일단 3.0.1 이 Stable Bridge라고 되어있어서 사용해보니 문제없이 사용이 가능했다.

미리보기를 이용하기 위해서는 추가적으로 gd 라이브러리를 설치해주어야 한다.
 $ sudo apt-get install php5-gd

장점 : 한글 잘나옴, 웹브라우저 루트(통상 htdocs)가 아니라도 접근할 수 있음
[링크 : http://www.ajaxplorer.info]



eXtplorer

별다른 설정을 하지 않아도 무난하게 돌아가지만,
htdocs를 제외한 다른 곳에것을 끌어 오는것은 아직 방법을 찾지 못했고,
심볼릭 링크로 공유파일을 사용시에 권한문제로 목록이 보이지 않거나, 한글 파일명이 모조리 깨지는 문제 발생
[링크 : http://extplorer.sourceforge.net/]


결론 : 개인적으로 AjaXplorer-3.0.1을 추천

'프로그램 사용 > extplorer' 카테고리의 다른 글

extplorer  (0) 2012.12.07
eXtplorer 설치하기  (0) 2010.10.29
Posted by 구차니
프로그램 사용/Trac2010. 11. 2. 09:50
패키지명 trac
 $ sudo apt-get install trac

기본설치경로
 /usr/share/pyshared/trac

기본사용자 경로(위의 경로를 심볼릭 링크하고 있음)
 /usr/lib/python2.6/dist-packages/trac

---
로고를 바꾸려고 하면
/usr/lib/python2.6/dist-packages/trac/htdocs에 넣어야 함

trac/conf/trac.ini 의
[header_logo]
src =
항목은 사용자 경로의 htdocs이므로
로고파일을 /usr/lib/python2.6/dist-packages/trac/htdocs 에 복사하고 파일이름만 넣어주면 됨

로그상으로는
 192.168.10.30 - - [02/Nov/2010 09:49:32] "GET /trac/chrome/common/trac_logo_mini.png HTTP/1.1" 304 -
위와 같이 출력되지만, /trac/chrome/common 까지가 /usr/lib/python2.6/dist-packages/trac/htdocs 경로임




2010.11.10 추가
11.10일 기준, apt-get으로 설치되는 trac은 0.11.13 이었던가? 아무튼 0.11대 버전이다.
trac 홈페이지에서 0.12를 받아 설치할 때 와는 경로가 다르니 주의!

0.12 버전을 받아 설치하면 아래의 경로에 원본 htdocs가 존재한다.
/usr/local/lib/python2.6/dist-packages/Trac-0.12.1-py2.6.egg

'프로그램 사용 > Trac' 카테고리의 다른 글

Trac 0.12.1 + 한글메뉴 보기  (0) 2010.11.10
Trac - Authentication information not available  (0) 2010.11.09
TOW - Trac On Window  (0) 2009.08.30
install TRAC on ubuntu(linux)  (0) 2009.08.30
Posted by 구차니
AMD 4200+x2 / 2GB / 8600GT 256MB x 2(550 / 600Mhz)

벤치마크 결과
2010-10-31 오후 7:16:17  NVIDIA GPU 0: GeForce 8600 GT
                                  (driver version 26099, CUDA version 3020, compute capability 1.1, 256MB, 76 GFLOPS peak)
2010-10-31 오후 7:16:17  NVIDIA GPU 1: GeForce 8600 GT
                                  (driver version 26099, CUDA version 3020, compute capability 1.1, 256MB, 86 GFLOPS peak)
2010-10-31 오후 7:17:19  Benchmark results:
2010-10-31 오후 7:17:19     Number of CPUs: 2
2010-10-31 오후 7:17:19     2238 floating point MIPS (Whetstone) per CPU
2010-10-31 오후 7:17:19     4122 integer MIPS (Dhrystone) per CPU

조만간 동일 시스템에다가 리눅스 깔고 해봐야 할듯


---
2010.11.14 추가

동일 시스템 Ubuntu 10.04 LTS Live mode에서 실행
... 동일 시스템에서 이렇게 떨어지다니 정식으로 설치된 우분투가 아니어서 일까?
아니면 우분투가 문제있는걸까?
Sun Nov 14 11:52:01 2010        Benchmark results:
Sun Nov 14 11:52:01 2010           Number of CPUs: 2
Sun Nov 14 11:52:01 2010           1337 floating point MIPS (Whetstone) per CPU
Sun Nov 14 11:52:01 2010           3312 integer MIPS (Dhrystone) per CPU

+ 정식으로 설치하고 나도 부동소수점 / 정수연산에서 윈도우보다 밀린다 -_-

'프로그램 사용 > BOINC - seti@home' 카테고리의 다른 글

Seti@home AstroPulse - 날 죽일셈이냐?  (2) 2011.01.16
8800GT 512MB on BOINC  (2) 2011.01.05
BOINC with CUDA  (2) 2010.10.17
BOINC 설치시 리부팅 안하면?  (0) 2010.10.17
CUDA 그리고 SLI  (0) 2010.10.09
Posted by 구차니
그냥 압축을 풀고 실행을 하려는데 에러가 발생한다.
scripts.zip을 풀라는데, 실제로는 scripts.tar.gz 파일로 존재했다. (2.0.1 버전 - 2010/10/28 일 버전기준)

Installation needs to be completed!

To complete the eXtplorer Installation you need to extract the contents of the file scripts.zip (you can find this file in the extplorer package) and upload it to the subdirectory /scripts of your eXtplorer installation.
Please just upload the contents of the extracted folder "/scripts" into the subdirectory /scripts and do not create a subdirectory like "/scripts/scripts/".


/var/www/eXtplorer_2.0.1$ ll
합계 660
drwxr-xr-x 9 nobody nogroup   4096 2010-10-29 13:53 ./
drwxr-xr-x 4 root   root      4096 2010-10-29 13:54 ../
-rwxr--r-- 1 nobody nogroup  10409 2009-01-16 06:31 CHANGELOG.txt*
-rwxr--r-- 1 nobody nogroup  18883 2007-09-03 14:40 LICENSE_GPL.txt*
-rwxr--r-- 1 nobody nogroup  25753 2007-09-03 14:40 LICENSE_MPL.txt*
-rwxr--r-- 1 nobody nogroup   6645 2009-01-16 06:30 README.txt*
-rwxr--r-- 1 nobody nogroup   7421 2009-01-16 06:30 admin.extplorer.php*
-rwxr--r-- 1 nobody nogroup   5268 2009-01-10 12:16 application.php*
drwxr-xr-x 2 nobody nogroup   4096 2010-10-29 13:53 config/
-rwxr--r-- 1 nobody nogroup    649 2007-09-03 14:40 configuration.ext.php*
-rwxr--r-- 1 nobody nogroup   1150 2007-09-03 14:40 eXtplorer.ico*
-rwxr--r-- 1 nobody nogroup   3689 2008-04-20 17:48 extplorer.init.php*
-rwxr--r-- 1 nobody nogroup  13227 2009-01-15 21:35 extplorer.j15.xml*
-rwxr--r-- 1 nobody nogroup  17470 2008-07-22 18:27 extplorer.list.php*
-rwxr--r-- 1 nobody nogroup   3248 2008-04-20 17:48 extplorer.php*
-rwxr--r-- 1 nobody nogroup  13020 2009-01-15 21:35 extplorer.xml*
-rwxr--r-- 1 nobody nogroup   8074 2008-05-28 19:36 fetchscript.php*
drwxr-xr-x 2 nobody nogroup   4096 2010-10-29 13:53 ftp_tmp/
drwxr-xr-x 2 nobody nogroup   4096 2010-10-29 13:53 images/
drwxr-xr-x 2 nobody nogroup   4096 2010-10-29 13:53 include/
-rwxr--r-- 1 nobody nogroup   2993 2009-01-16 06:30 index.php*
-rwxr--r-- 1 nobody nogroup   1449 2009-01-15 21:37 install.extplorer.php*
drwxr-xr-x 2 nobody nogroup   4096 2010-10-29 13:53 languages/
drwxr-xr-x 9 nobody nogroup   4096 2010-10-29 13:53 libraries/
-rwxr--r-- 1 nobody nogroup 447629 2009-01-16 06:31 scripts.tar.gz*
drwxr-xr-x 2 nobody nogroup   4096 2010-10-29 13:53 style/
-rwxr--r-- 1 nobody nogroup   1870 2009-01-15 21:36 webdav.php*
-rwxr--r-- 1 nobody nogroup   2762 2008-12-09 12:10 webdav_authenticate.php*
-rwxr--r-- 1 nobody nogroup   1228 2009-01-10 12:16 webdav_table.sql.php*


$ tar -xvf scripts.tar.gz
라고 실행하면 자동으로 script/ 안에 압축이 해제된다.

기본계정은 id:admin/pw:admin 이다.
 Users:
        * You can easily magage users using the "admin" section of eXtplorer.
        * Standard, there is only one user: "admin", with password "admin";
          you should change this password immediately.

만약에 암호가 변경되지 않는다면
./eXtplorer_2.0.1/config/.htusers.php 파일의 퍼미션을 확인해준다.
ubuntu에서 apt-get으로 apache를 설치하면
www-data 계정으로 실행되므로 user를 바꾸어 주거나(이 방법을 추천) chmod 777로 변경을 해주면 된다.

[링크 : http://extplorer.sourceforge.net/]

'프로그램 사용 > extplorer' 카테고리의 다른 글

extplorer  (0) 2012.12.07
웹하드 프로그램 2가지 - ajaxplorer, eXtplorer  (0) 2010.11.03
Posted by 구차니
openoffice base(일종의 MS Access)는 3.x 대 문서에만 존재한다.

3.x 용 메뉴얼
[링크 : http://www.oooauthors.org/ko/userguide3/gs3] 한글
[링크 : http://www.oooauthors.org/english/userguide3] 영문

2.x 용 메뉴얼
[링크 : http://www.oooauthors.org/ko/userguide2] 한글
[링크 : http://www.oooauthors.org/english/userguide2] 영문
[링크 : http://documentation.openoffice.org/manuals/oooauthors2/index.html] 영문
Posted by 구차니
프로그램 사용2010. 10. 18. 21:02
머.. 서비스가 종료된다고 해도 xmark만 미리 받아두고 ftp 돌리면 사용은 가능할듯.
음.. 그런데 서비스 종료되면 플러그인도 못 받는거 아닐려나?




Can I use Foxmarks with my own server?

Foxmarks currently supports both FTP and WebDAV (via HTTP or HTTPS). Just fill in the appropriate server settings on the Foxmarks dialog (including the "Advanced Server Settings" on the "Other" tab) to connect Foxmarks with your server. In our experience, WebDAV is faster and more robust than FTP, but both work. Recently we've made some improvements to optimize network utilization, but those improvements are available only to WebDAV installations. FTP will probably not be so well supported in future Foxmarks releases, as it's just a more limited server.

If you use your own server, we're less able to help you with problems that you might encounter. Caveat switchor.

The Setup Wizard assumes that you're using the Foxmarks server, and knows how to set up accounts only on sync.foxmarks.com. If you're using your own server, don't use the Setup Wizard (press Cancel when it starts).

While we can't provide support if you're using your own server, many folks have contributed some helpful information for anyone who chooses to go that route.


[링크 : http://wiki.foxmarks.com/wiki/Foxmarks:_Frequently_Asked_Questions#Using_Other_Servers]

Posted by 구차니
SLI 커넥터를 사용하고(골드핑거)
Nvidia 제어판에서 SLI로 해놔도 두개로 일단 인식한다.
하나는 540Mhz / 다른 하나는 600Mhz 라서 GFLOPS 값이 다르게 나온듯.

2010-10-17 오전 11:41:11  NVIDIA GPU 0: GeForce 8600 GT
                                    (driver version 25896, CUDA version 3010, compute capability 1.1, 256MB, 76 GFLOPS peak)
2010-10-17 오전 11:41:11  NVIDIA GPU 1: GeForce 8600 GT
                                    (driver version 25896, CUDA version 3010, compute capability 1.1, 256MB, 86 GFLOPS peak)

일단 CUDA RT / CU FFT 이런류의 CUDA를 위한 라이브러리를 알아서 다운받고 있다.

'프로그램 사용 > BOINC - seti@home' 카테고리의 다른 글

8800GT 512MB on BOINC  (2) 2011.01.05
BOINC seti@home on WindowsXP SP3 32bit  (0) 2010.10.31
BOINC 설치시 리부팅 안하면?  (0) 2010.10.17
CUDA 그리고 SLI  (0) 2010.10.09
Seti@home 랭킹  (2) 2009.11.09
Posted by 구차니