vmware의 경우 player(무료버전)에서도 추가가 가능한데 반대
virtualbox는 콘솔에서 꽁수를 부려야 가능하다

VMware






VirtualBox

cd C:\Program Files\Oracle\VirtualBox
VBoxManage internalcommands createrawvmdk -filename mydrive.vmdk -rawdisk \\.\PhysicalDrive0

C드라이브는 사용불가하며(이미 사용중이니)
USB 메모리를 꽂아서 해보니

C:\Program Files\Oracle\VirtualBox>VBoxManage internalcommands createrawvmdk -filename mydrive.vmdk -rawdisk \\.\PhysicalDrive5
RAW host disk access VMDK file mydrive.vmdk created successfully.

C:\Program Files\Oracle\VirtualBox>dir my*
 C 드라이브의 볼륨: 로컬 디스크
 볼륨 일련 번호: 3C60-2095

 C:\Program Files\Oracle\VirtualBox 디렉터리

2014-09-22  오전 11:39               544 mydrive.vmdk
               1개 파일                 544 바이트
               0개 디렉터리  220,346,679,296 바이트 남음

C:\Program Files\Oracle\VirtualBox>type mydrive.vmdk
# Disk DescriptorFile
version=1
CID=0b10f5b3
parentCID=ffffffff
createType="fullDevice"

# Extent description
RW 7913472 FLAT "\\.\PhysicalDrive5" 0

# The disk Data Base
#DDB

ddb.virtualHWVersion = "4"
ddb.adapterType="ide"
ddb.geometry.cylinders="7850"
ddb.geometry.heads="16"
ddb.geometry.sectors="63"
ddb.uuid.image="10b868df-e42a-4e6a-a8f9-c600e9920a32"
ddb.uuid.parent="00000000-0000-0000-0000-000000000000"
ddb.uuid.modification="00000000-0000-0000-0000-000000000000"
ddb.uuid.parentmodification="00000000-0000-0000-0000-000000000000" 

오오 1테라 짜리 하드 연결해서 설정하니 된다! 우오오!


[링크 : https://www.virtualbox.org/manual/ch09.html]
    [링크 : http://www.sysprobs.com/access-physical-disk-virtualbox-desktop-virtualization-software]
[링크 : https://www.vmware.com/support/ws5/doc/ws_disk_add_raw.html
Posted by 구차니

크아앙 ㅠㅠ
OpenGL 버전이 부족하니 이게 무슨 소리요!!! ㅠㅠ


크아아아앙 도대체 문서를 찾을수가 없네 ㅠㅠ

system requirements


minimal

•Linux/Unix; Windows XP and above; OS X 10.7.4 and above

•3D graphics card which supports OpenGL 2.1

•256 MiB RAM

•150 MiB on disk


recommended

•Linux/Unix; Windows 7 and above; OS X 10.8.5 and above

•3D graphics card which supports OpenGL 3.1 and above

•1 GiB RAM or more

•1.5 GiB on disk

[링크 : http://www.stellarium.org/] 

Posted by 구차니
예전에 적은줄 알았는데 없네...


make 안에서

all:
    @gcc helloworld.c

이런식으로 구성하면
해당 구문의 명령은 출력되지 않고
에러 메시지만 출력하게 된다.

[링크 : http://stackoverflow.com/questions/3148492/makefile-silent-remove



Command Echoing

Normally make prints each command line before it is executed. We call this echoing because it gives the appearance that you are typing the commands yourself.

When a line starts with `@', the echoing of that line is suppressed. The `@' is discarded before the command is passed to the shell. Typically you would use this for a command whose only effect is to print something, such as an echo command to indicate progress through the makefile:

@echo About to make distribution files

When make is given the flag `-n' or `--just-print', echoing is all that happens, no execution. See section Summary of Options. In this case and only this case, even the commands starting with `@' are printed. This flag is useful for finding out which commands make thinks are necessary without actually doing them.

The `-s' or `--silent' flag to make prevents all echoing, as if all commands started with `@'. A rule in the makefile for the special target .SILENT without dependencies has the same effect (see section Special Built-in Target Names). .SILENT is essentially obsolete since `@' is more flexible.

[링크 : http://web.mit.edu/gnu/doc/html/make_5.html]  

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

makefile 병렬 대비하기  (0) 2015.11.30
make burn 0.0.0 ???  (0) 2014.11.11
cmake 사용  (0) 2011.10.07
cross compile 초기화 하기  (0) 2010.05.18
cmake - cross make  (0) 2010.04.06
Posted by 구차니
프로그램 사용/vi2014. 9. 11. 14:02
ctrl-v를 누르면 사각형
v는 시작부터 끝을 선택하는 타입

set mouse=a를 설정해서 사용할 경우에는
키보드를 통한 박스 선택을 하듯 할 수 없다

2. Starting and stopping Visual mode                    *visual-start*

                                                *v* *characterwise-visual*
v                       start Visual mode per character.

                                                *V* *linewise-visual*
V                       start Visual mode linewise.

                                                *CTRL-V* *blockwise-visual*
CTRL-V                  start Visual mode blockwise.  Note: Under Windows
                        CTRL-V could be mapped to paste text, it doesn't work
                        to start Visual mode then, see |CTRL-V-alternative|.

If you use <Esc>, click the left mouse button or use any command that
does a jump to another buffer while in Visual mode, the highlighting stops
and no text is affected.  Also when you hit "v" in characterwise Visual mode,
"CTRL-V" in blockwise Visual mode or "V" in linewise Visual mode.  If you hit
CTRL-Z the highlighting stops and the editor is suspended or a new shell is
started |CTRL-Z|.

              new mode after typing:            *v_v* *v_CTRL-V* *v_V*
old mode             "v"              "CTRL-V"               "V"        ~

Normal              Visual         blockwise Visual       linewise Visual
Visual              Normal         blockwise Visual       linewise Visual
blockwise Visual    Visual         Normal                 linewise Visual
linewise Visual     Visual         blockwise Visual       Normal 


[링크 : http://mwultong.blogspot.com/2006/11/vim-vi-select-copy-paste.html]

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

vi 버전 차이?  (0) 2016.07.09
vi 문자열 치환  (0) 2015.08.04
vi 유용한 플러그인 - F12 mouse 토글  (0) 2014.09.05
vi를 source insight 처럼 설정하기  (0) 2014.09.04
vi에서 마우스 사용하도록 설정하기  (0) 2014.09.04
Posted by 구차니
Ubuntu 10.04 LTS에서 테스트 완료

function svn {
  command svn "$@" | awk '
  BEGIN {
    cpt_c=0;
  }
  {
    if        ($1=="C") {
      cpt_c=cpt_c+1;
      print "\033[31m" $0 "\033[00m";  # Conflicts are displayed in red
    }
    else if   ($1=="A") {
      print "\033[32m" $0 "\033[00m";  # Add in green
    }
    else if   ($1=="?") {
      print "\033[36m" $0 "\033[00m";  # New in cyan
    }
    else if   ($1=="D") {
      print "\033[35m" $0 "\033[00m";  # Delete in magenta
    }
    else                {
      print $0;                        # No color, just print the line
    }
  }
  END {
    print cpt_c, " conflicts are found.";
  }';
} 

[링크 : http://stackoverflow.com/questions/8786400/svn-add-colors-on-command-line-svn-with-awk-in-bash]



\e[00m"

00에 숫자가 들어가면 된다.
30대는 foreground color
40대는 background color 를 지칭하고

1~7은 아래의 색상값을 가지게 된다.


[링크 : http://en.wikipedia.org/wiki/ANSI_escape_code]
[링크 : http://sunyzero.egloos.com/viewer/4282610]
+
svn ci 할때 뭔가 에러가 발생하는 기분이니 확인필요 
Posted by 구차니
프로그램 사용/vi2014. 9. 5. 10:51
source insight 처럼 vi 설정하다 보니 거의 필수(?) 인 녀석
마우스를 사용가능하도록 해주는 건데
F12를 누르면 toggle 형태로 작동하게 된다.

[링크 : https://github.com/nvie/vim-togglemouse] F12로 마우스 토글
    [링크 : http://nvie.com/posts/how-i-boosted-my-vim/

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

vi 문자열 치환  (0) 2015.08.04
vi 사각형 선택하기  (0) 2014.09.11
vi를 source insight 처럼 설정하기  (0) 2014.09.04
vi에서 마우스 사용하도록 설정하기  (0) 2014.09.04
vi를 IDE 처럼 사용하기  (0) 2014.09.04
Posted by 구차니
프로그램 사용/vi2014. 9. 4. 23:20
이거 대로 설정하면 아쉬운대로 source insight 급으로 쓸수 있다는데..
회사에서도 이렇게 설정해서 쓰는 분이 계시는듯 한데..
직접 해보고 익숙해 지기 전까지는 아무래도.. 힘들듯..

[링크 : http://brucekim.egloos.com/viewer/3389981]
    [링크 : http://swbae98.wordpress.com/2011/08/04/vim-like-source-insight/]
[링크 : http://tactlee.egloos.com/viewer/1454652] 소스 인사이트에서 gvim을 편집기로 연결하기


plugin

Trinity가 메인 (내부에 NERDTree 내장)
아래의 4개를 풀면 된다. 단, Trinity 는 Trinity - plugin - trinity.vim 식으로 존재하니
.vim/plugin/Trinity/plugin/trinity.vim 이 되도록 넣어 주어야 한다.

[링크 : http://www.vim.org/scripts/script.php?script_id=2347] Trinity - Source Explorer / NERD Tree / Taglist 관리
[링크 : http://www.vim.org/scripts/script.php?script_id=2179] Source Explorer (Context Window)
[링크 : http://www.vim.org/scripts/script.php?script_id=273] taglist
[링크 : http://www.vim.org/scripts/script.php?script_id=159] minibufbrowser
[링크 : https://github.com/nvie/vim-togglemouse] F12로 마우스 토글

그리고 .vimrc에서
nmap <F5> :TlistToggle<CR>
nmap <F7> :NERDTreeToggle<CR>
nmap <F8> :SrcExplToggle<CR> 
nmap <F9> :TrinityToggleAll<CR> 

4개를 설정해주면 간단하게 사용!
F5는 태그리스트
F7은 파일 브라우저
F8은 컨텍스트
F9는 전체를 끄고 켜는 기능이다. 


[링크 : http://vim-taglist.sourceforge.net/]
[링크 : http://www.vim.org/scripts/script.php?script_id=3252]  

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

vi 사각형 선택하기  (0) 2014.09.11
vi 유용한 플러그인 - F12 mouse 토글  (0) 2014.09.05
vi에서 마우스 사용하도록 설정하기  (0) 2014.09.04
vi를 IDE 처럼 사용하기  (0) 2014.09.04
vi 에서 탐색기(?)  (0) 2014.08.26
Posted by 구차니
프로그램 사용/vi2014. 9. 4. 15:02
putty + vi 에서도 마우스가 사용이 가능하다!
마우스를 쓸수 있으면 좋은점은...
창 관리가 쉽다는거?

단, putty에서 마우스를 활성화 하면
putty 자체의 기능인 드래그 복사가 안되니 주의!

                        VIM - main help file
                                                                         k
      Move around:  Use the cursor keys, or "h" to go left,            h   l
                    "j" to go down, "k" to go up, "l" to go right.       j
Close this window:  Use ":q<Enter>".
   Get out of Vim:  Use ":qa!<Enter>" (careful, all changes are lost!).

Jump to a subject:  Position the cursor on a tag (e.g. |bars|) and hit CTRL-].
   With the mouse:  ":set mouse=a" to enable the mouse (in xterm or GUI).
                    Double-click the left mouse button on a tag, e.g. |bars|.
        Jump back:  Type CTRL-T or CTRL-O (repeat to go further back).

Get specific help:  It is possible to go directly to whatever you want help
                    on, by giving an argument to the |:help| command.
                    It is possible to further specify the context:
                                                        *help-context*
                          WHAT                  PREPEND    EXAMPLE      ~
                      Normal mode command      (nothing)   :help x
                      Visual mode command         v_       :help v_u
                      Insert mode command         i_       :help i_<Esc>
                      Command-line command        :        :help :quit
                      Command-line editing        c_       :help c_<Del>
                      Vim command argument        -        :help -r
                      Option                      '        :help 'textwidth'
  Search for help:  Type ":help word", then hit CTRL-D to see matching
                    help entries for "word". 

Enable vim automatic visual mode using mouse
:set mouse=a

Disable vim automatic visual mode using mouse
:set mouse-=a
 
[링크 : http://yard.tistory.com/entry/vi에서-Mouse마우스-컨트롤-설정해제

Posted by 구차니
프로그램 사용/vi2014. 9. 4. 14:32
vi 플러그인 모음

[링크 : http://vim.wikia.com/wiki/Use_Vim_like_an_IDE]
Posted by 구차니
ubuntu 에서도 적용됨(10.04 LTS)

$ vi /etc/ssh/sshd_config
 UseDNS no

[링크 : http://server.tistory.com/144]
[링크 : http://kiin.wordpress.com/2012/02/21/how-to-decrease-ssh-connection-time-on-centos/


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

ssh X11 forwarding 속도 향상  (0) 2015.09.24
sshd server key 경로  (0) 2015.01.06
ssh X11 forwarding 옵션  (0) 2012.01.25
ssh X11 터널링  (0) 2012.01.24
scp 사용하기  (0) 2011.04.18
Posted by 구차니