CollabNet Subversion Server and Client v1.5.5 (for Windows) 를 다운로드 하려면 가입이 필요하다.

설치 화면은 간단한데 svnserve와 apache용 MOD_DAV_SVN을 옵션으로 고를 수 있다.

svn 서버 설정화면으로 포트와 repository를 정해주면 된다.

설치를 완료 하면 자동으로 c:\svn_repository 가 생성된다.
하지만 내용이 하나도 없어서 svn이 접근을 하지 못한다는 에러가 발생한다.

그리고 "Install svnserve to run as Windows service" 일뿐, service가 실행되지는 않는다.
물론 리부팅하면 자동으로 시작이 되긴하겠지만, 설치 직후 안된다면 service가 실행시켜 주면 된다.


authorization failed가 뜨면 아래의 링크를 참조하여 해결하면 된다.

5) Configure permissions for the repository

  • Open with notepad the repository configuration C:\SVNREPOSITORY\conf\svnserve.conf
    and paste just the following lines (remove everything else):
    [general]
    anon-access = none
    auth-access = write
    password-db = passwd.conf
    authz-db = authz.conf
    #realm = My First Repository

    Please note that I renamed "passwd" to "passwd.conf" and "authz" to "authz.conf" both
    in the config file here, and in the filesystem too, so I can just associate the conf extension with notepad and make my life easier.

    Note also that when a realm is not specified, it will be assumed to be the repository guid (created when you created repository). Realms should be unique among different repositories, unless you want to share the same permissions among them.
  • Rename authz to authz.conf
  • Rename passwd to passwd.conf
  • Open passwd.conf with notepad and put some users/passwords by pasting the following lines (remove everything else):
    [users]
    admin = qwerty147
    ricardo = pwd123
    marcelo = pwd456
    joao = pwd789
  • Now open authz.conf with notepad and paste just the following lines (remove everything else):
    # guests will have read permission in all repository
    # writers must include all non-admin users who must have write
    #    permission on some folder (read permission on root is needed for that)
    [groups]
    admins = admin, ricardo
    writers = marcelo
    guests = joao
    project1 = marcelo

    [/]
    @admins = rw
    @writers = r
    @guests = r
    * =

    # please note that permissons (ex: admins group) don't propagate from root to subprojects
    [/Project1]
    @project1 = rw
    @admins = rw
    * =
  • Now you can try again mkdir:
    C:\>svn mkdir svn://localhost/Products
    Authentication realm: e9852c7c-f11f-1946-b4a8-49fa8b53a267
    Password for 'Ricardo': ******


    Please note that it will by default assume your username is the same as your windows login. If it is not, just put any password, and it will ask you for your correct username.
  • If everything went ok you will get a message like "Committed revision 1"

    Congratulations! You have made your first change to the repository.

    Now let's create another folder: C:\> svn mkdir svn://localhost/Projects
    The password won't be asked this time, because it's cached for your user (Documents and settings\username\Application Data\Subversion\auth\)

[출처 : http://www.smarter-technologies.com/smarter/Default.aspx?tabid=128&EntryID=12]

svn_repository의 내부 구조 & conf 내용물들

svnserve.conf의 기본 내용. 전부 주석처리다 ㄱ-

passwd는 사용하는 계정에 대한 아이디/암호를 저장한다.

이녀석은.. 아무튼 인증파일이다. 특정 리파지터리에 특정 유저의 권한을 설정한다.



심심해서 해본 뻘짓

[다운로드 : http://www.collab.net/downloads/subversion/] <- 가입필요
[다운로드 : http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91]

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

CVS / SVN 차이점?  (2) 2009.03.06
SVN 사용기  (0) 2009.03.05
TortoiseSVN 사용하기  (2) 2009.02.26
TortoiseSVN - Svnserve Based Server  (5) 2009.02.26
cvs 서버 설치 / 복원  (2) 2009.01.22
Posted by 구차니
CVS의 경우는 CVSNT 와 TortoiseCVS로 서버 및 클라이언트 환경을 구축할 수 있다.
하지만 SVN의 경우는 TortoiseSVN만으로도 서버를 구축 할 수 있다.
물론 svn:// 으로 접속은 하지 못할지라도 말이다(아직 설정법을 모르니 혹시 모름)

ToroiseSVN을 설치 하면 다음과 같은 context-menu가 생긴다(현재 빵집/CVS/SVN/WinMerge가 설치되어 있다)

CVS에서도 그러했 듯, SVN에서도 repository는 있어야 한다.
아무것도 없는 빈 폴더를 하나 만들고, 그 안에서 Create repository here를 눌러준다.

아래의 파일들이 생성되며 repository가 생성되었다는 메시지가 뜬다.
d:\svn_repo 라는 경로로 생성했다.

일단은 SVN에 저장할 파일을 찾아본다. 원하는 폴더를 클릭해서 Import 한다.

Import 에서는 저장할 repository의 경로를 넣어준다.
위에서 d:\svn_repo에 저장소를 생성했으므로 file://d:/svn_repo가 URL이 된다.

import가 완료되었다.
(repository에 파일이 Add 되었다)

저장소에 넣었으니(import) 이제 저장소에서 꺼내오자(checkout)
경로는 저장한 경로와 동일하게 넣어 주고, 받아와서 저장할 경로를 지정해 준다.
아까는 경로를 지정해 주지 않았으므로 받을 곳에 디렉토리를 하나 추가해준다.

checkout 장소에 파일이 Add 되었다.

SVN 클라이언트가 있으면 체크가 생긴다. 녹색은 서버와 동일하다는 의미이다.
빨간색은 서버와 동일하지 않은 내용이 담겨 있다는 의미이다.

TortoiseSVN의 가장 강력한 점은 바로 Repositoty Broswer가 아닐까 생각이 된다.
원래 file://d:\svn_repo에 존재하던 po 파일들을, Create Folder를 사용하여 po를 만들고
단순하게 드래그 해서 po로 넣었더니 간단하게 이동이 되었다.
CVS는 경로이동이 불가능 한 단점이 있는데 SVN은 이렇게 편하게 이동 할 수 있다.

TortoiseSVN에 내장된 Merge 툴이다.

Checkout 창에서 Show Log를 누르면 뜨는 창
revision은 cvs는 파일별로 생겼지만, svn은 전체 저장소에 대해서 생성이 된다.
어떻게 보면 더욱 좋은것이, 태그의 확장 판으로 어떠한 행동을 했었는지 추적이 가능하고
그 때 이후의 버전을 세부적으로 받아 올수 있다. 이러한 작업은 CVS에서는 매번 tag를 해야만 가능하다.

위의 창에서 통계를 누른 모습이다. cvs에서는 역시 볼 수 없었던 기능이다.


예전부터 설치만 해 놓고 쓰지 않던 svn을 끄집어 내서 한번 서버 설치를 해보려니 결국은 또 실패로 돌아 갔다.
하지만 이렇게 클라이언트/ 개인용 서버로 사용하는 법이라도 알았으니 위안으로 삼고,
다음번 문서에 svnserve로 공용 서버 만드는 법만 추가 하면 될 듯하다.
Posted by 구차니
프로그램 사용/poEdit2009. 2. 26. 00:23
어우 깜놀~! 심심해서 SVN 언어팩 설치 하다가 많이 보던 녀석이 눈에 띄었다.
생각해보니 Poedit 이라는 GNU 다국어지원 프로그램으로 생성되는 확장자이다.
po 라는 text 기반 파일이 컴파일 되어 mo 파일이 생성이 된다.

SVN 언어팩 설치 하면서 생긴 폴더들과 파일

Poedit을 실행한 화면, 예제는 번역중인 UFO:AI의 영문파일이다.

번역중인 UFO:AI의 po 소스 파일 디렉토리이다. pot는 po template로 파워포인트 서식 파일이 아니다.
이 파일을 기반으로 po를 생성해주며, 이파일을 컴파일 하면 mo가 된다.

[공식 : http://www.poedit.net/]

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

poEdit의 TM을 이용한 자동번역  (0) 2011.12.23
poedit - Translate memory 도움말 번역  (0) 2011.12.21
L10N / I18N  (0) 2009.04.08
gettext - multi language support  (2) 2009.03.09
Posted by 구차니
솔찍히 내가 TortoiseCVS Client for Windows에 쩔어 있어서
콘솔에서 명령어로 체크아웃 할지도 모르고, SVN에는 손이 가지 않는다.

SVN의 장점으로는 디렉토리 이동 등이 있다는 것도 알고,
CVS에서 SVN으로 이전도 그리 어렵지는 않다고 하지만,

가장 큰 문제는, 나 혼자 사용하는 SVN 서버가 아닌
다른 사람들도 접속할 수 있는 SVN 서버를 만드는 법을 모른다는 것이다.

아무튼! 용기를 내서 한번 문서를 뒤적이다가 발견했는데..
TortoiseSVN Client for Windows help에 있었다.. OTL 역시 등불밑이 가장 어두운 것인가..


키워드는 svnserve 이다.

Running svnserve

Now that svnserve is installed, you need it running on your server. The simplest approach is to run the following from a DOS shell or create a windows shortcut:

svnserve.exe --daemon

svnserve will now start waiting for incoming requests on port 3690. The --daemon switch tells svnserve to run as a daemon process, so it will always exist until it is manually terminated.

If you have not yet created a repository, follow the instructions given with the Apache server setup the section called “Configuration”.

To test that svnserve is working, use TortoiseSVNRepo-Browser to view a repository.

Assuming your repository is located in c:\repos\TestRepo, and your server is called localhost, enter:

svn://localhost/repos/TestRepo

when prompted by the repo browser.

You can also increase security and save time entering URLs with svnserve by using the --root switch to set the root location and restrict access to a specified directory on the server:

svnserve.exe --daemon --root drive:\path\to\repository\root

Using the previous test as a guide, svnserve would now run as:

svnserve.exe --daemon --root c:\repos

And in TortoiseSVN our repo-browser URL is now shortened to:

svn://localhost/TestRepo

Note that the --root switch is also needed if your repository is located on a different partition or drive than the location of svnserve on your server.

Svnserve will service any number of repositories. Just locate them somewhere below the root folder you just defined, and access them using a URL relative to that root.


Run svnserve as a Service

Running svnserve as a user is usually not the best way. It means always having a user logged in on your server, and remembering to restart it after a reboot. A better way is to run svnserve as a windows service. Starting with Subversion 1.4, svnserve can be installed as a native windows service.

To install svnserve as a native windows service, execute the following command all on one line to create a service which is automatically started when windows starts.

sc create svnserve binpath= "c:\svnserve\svnserve.exe --service 
--root c:\repos" displayname= "Subversion" depend= tcpip
start= auto

If any of the paths include spaces, you have to use (escaped) quotes around the path, like this:

sc create svnserve binpath= "
\"C:\Program Files\Subversion\bin\svnserve.exe\"
--service --root c:\repos" displayname= "Subversion"
depend= tcpip start= auto

You can also add a description after creating the service. This will show up in the Windows Services Manager.

sc description svnserve "Subversion server (svnserve)"

Note the rather unusual command line format used by sc. In the key= value pairs there must be no space between the key and the = but there must be a space before the value.




[출처 : http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-serversetup-svnserve.html]
Posted by 구차니
프로그램 사용2009. 2. 25. 10:58
그러고 보니.. 스킨을 항상 기본 스킨으로 만 사용을 했었다. 귀찮은것도 있고, 익숙하니까.
아무튼, 간만에 스킨이라는 녀석을 사용하기 위해서 Winamp lite 버전에서 Full버전으로 까지 업그레이드를
단행할정도로 심하게 뽐뿌질이 왔다.


대충 그려 만든 듯한 스킨인데 꽤나 마음에 든다.
근데.. 이퀄라이저는 정말 처음에는 어떻게 써야 하나 고심을 ^^;

[링크 : http://www.winamp.com/skins/details/144550]
Posted by 구차니
바빠야 딴생각이 안드니까
일부러 점점 더 빠르고 바쁘게 세상을 만들어 가는 게 아닐까 생각이 들었다.

누가?

아마도 무언가를 숨기고 싶은 그 누군가겠지..
Posted by 구차니
분류가 모호한 글2009. 2. 24. 14:13
일반적으로 많이 사용하는 포맷을 사용하여 비교해 봅시다~!


24bit 9478 byte / GIF 1971 byte

   jpeg 1508 byte / PNG 4270 byte

그림이 작아서 티가 안나는군요 -ㅁ-
그래도 자세히 보면 GIF는 색상이 깨져서 보기가 싫습니다.

그럼 16배 확대를 해보도록 하겠습니다
(웹 브라우저 자체 기능으로 늘렸기에 브라우저 마다 차이가 있을 수도 있습니다.)



24bit 9478 byte / GIF 1971 byte


   jpeg 1508 byte / PNG 4270 byte


원본 사이즈 가로 50px 를 가로 4배 확대하여 총 16x 한 이미지 입니다.
bmp의 경우 아마도 티스토리에서 업로드 시 bmp면 자동으로 jpeg으로 변환하기 때문에
이미지가 jpeg 처럼 일그러 지는 현상이 발생을 합니다.
jpg의 경우 경계가 심하게 뭉게지며, GIF는 컬러 부분이 디더링으로 인해 보기가 싫어집니다.
가장 무난한 선택은 png로 보이며 TIFF의 경우 티스토리에서 지원하지 않아 제외 되었습니다.

jpg의 경우 일반적인 사진(글씨가 없는)에 적합하며
GIF는 움직이고 투명하게 할 수 있다는 점을 제외하면 특별한 장점이 없습니다

저의 경우에는 사진들 보다는 컴퓨터 자체의 이미지를 사용하기 때문에
jpg는 적합하지 않기 때문에(라인이 뭉개져서 글씨의 경우 알아 보기 힘듦)
png 를 주로 사용하여 업로드하고 있습니다.


추가적으로 IE와 FireFox 에서의 차이점을 보여 드리자면 다음과 같습니다.
FireFox는 후처리를 통해서 약간은 뿌연듯한 느낌이 듭니다.
 

FF에서 출력한 것을 PNG로 저장 / IE에서 출력한 것을 PNG로 저장

'분류가 모호한 글' 카테고리의 다른 글

확장자 sgm  (2) 2009.04.03
mp3 ID3 tag  (0) 2009.04.02
MD(Mini Disc) / UMD(Univeral Media Disc)  (0) 2009.03.03
gray code  (0) 2008.12.22
불 대수(Boolean Algebra)  (4) 2008.12.19
Posted by 구차니
Linux2009. 2. 24. 13:51
hexdiff 라는 윈도우 프로그램도 있긴 하지만 유료인데다가 비교 성능이 그리 좋지 않다.
차이점 부분 내부를 비교 하지 않고 다르다는 정도만 출력한다랄까..
그리고 16M 짜리 바이너리 2개 비교하면 거의 시스템이 죽어 버릴 듯 간당간당하다.

번지를 보면 알 수 있겠지만, 내용이 다르다고 완전 밀어내고 다르다고 표시를 해 놓는 바람에 내용 비교를 할 수 없다.

hexidff[windows]의 단점
드래그 안됨
두개 비교 할려면 매우 번거로움
용량이 크면 비교 하는데 오래걸림
차이점을 제대로 보여주지 못함
EFT Studio 홈페이지 도메인 팔린 듯 (2009.02.24 기준)


그래서 짜증나는 관계로 텍스트 모드이긴 하지만 빠르게 작동하는 녀석을 찾게 되었다.
이름은 Visuel HexDiff
unix 호환버전이고, rpm은 존재하지 않으며 make 해서 설치 해야 한다.

visuel hexdiff의 단점은
address가 16진수가 아닌 10진수로 나온다(옵션 발견 못함) 정도 이다.

사용 방법은 vi와 유사하게 n을 누르면 다음 차이점으로 이동을 한다.
H를 누르면 옆의 주소가 16진수/10진수로 출력이 가능하다.

참고로 아래의 도움말은 ?을 누르면 나온다.
hexdiff --help 해도 아무런 것이 안나오니 다른데서 헤매지 말고 아래의 '?' 페이지를 기억하자


[공식 : http://tboudet.free.fr/hexdiff/]
[다운 : http://tboudet.free.fr/hexdiff/hexdiff.tar.gz]
Posted by 구차니
개소리 왈왈2009. 2. 24. 13:23
200개 포스팅 기념으로 연필 한타스를 샀습니다
문화연필이 더존이라는 상표를 달고 나오는데..
Made in china.
마음 한구석에서 매우 씁쓸해하는 중입니다.






결론 : 인생 그런거임

- 끗 -

'개소리 왈왈' 카테고리의 다른 글

8K의 행복  (6) 2009.02.28
문득 세상이 많이 변했음을 느낀다.  (4) 2009.02.27
소시쥐 뒤질래? ㅡㅡ^  (0) 2009.02.23
연필의 느낌이 그립다.  (5) 2009.02.22
죽다 살아 나다  (6) 2009.02.21
Posted by 구차니
프로그램 사용2009. 2. 24. 11:54
frhed 보다는 확실히 깔끔하다. 하지만 Free라는 이름하에 웬만한 기능은 다 막혀 있다 보니,
순수하게 HEX Editor로서 bit 연산이라는 측면에서는 frhed보다 좋아 보인다.

Free Hex Editor Neo의 Operations 메뉴, 아이콘들이 참 아기자기 하다
문제는.. 저 기능들을 막상 사용하려 하면 Free 버전이라 알리는 메시지가 뜬다.. 쓰라는거냐 말라는거냐 ㄱ-

Free Hex Editor Neo의 Edit 메뉴, Modify bits의 UI는 Frhed에 비해서 상당히 깔끔하다.

참고사항 : frhed의 manupulate bits 윈도우. Neo가 깔끔하긴 하다.

Free Hex Editor Neo의 Tools 메뉴 - Run Disassembler?!?!?

그럼 그렇지 Free라서 했더니 전부 쓸만한 기능은 막아놨다 ㄱ-


원래는 Free Serial Port Manager 라는게 검색되서 나와서 원래 회사에 받으러 갔는데 Free 버전은 없어졌는지
Trial만 있길래 다른걸 찾다가 발견하게 되었다. 확실히 아이콘은 귀엽고 UI는 깔끔하지만 무료 버전은 Frhed도
충분히 커버가능할 정도로 약한 기능에 실망만 더했다.

[공식 : http://www.hhdsoftware.com/Products/home/hex-editor-free.html]
Posted by 구차니