CRC(Cyclic Redundancy Check)는 시리얼 전송에서 데이타의 신뢰성을 검증하기 위한 에러 검출 방법의 일종이다. 간단한 에러 검출방법으로는 parity 비트에 의한 방법과 check-sum에 의한 에러 검출 방법이 있지만 parity 비트에 의한 방법은 데이타 중에 한꺼번에 2비트나 4비트가 변하게 되면 검출을 할 수 없고, check-sum에 의한 방법은 한 바이트에서 +1, 다른 바이트에서는 -1로 에러가 생기는 경우만 해도 에러는 검출 되지 않는다. 즉, 이들 방법으로는 에러를 검출해 낼 수 있는 확률이 대단히 낮다. CRC에 의한 방법은 높은 신뢰도를 확보하며 에러 검출을 위한 오버헤드가 적고, 랜덤 에러나 버스트 에러를 포함한 에러 검출에 매우 좋은 성능을 갖는 것을 특징으로 ..
1. Open a terminal (look above if you don't know how) 2. Type 'sudo gedit /etc/X11/xorg.conf' 3. Type your password (needs root-rights again and afterwards a text editor should appear ) 4. Find: Section "Device" Identifier "Configured Video Device" EndSection 5. Change to: Section "Device" Identifier "Configured Video Device" Driver "vboxvideo" EndSection 6. Save (press ctrl+s) 7. log out and lo..
1.) Verify that your /usr/lib/xorg/modules/input/ on the guest contains in fact a vboxmouse_drv.so file. Code: oot@oraub32:~# ls -la /usr/lib/xorg/modules/input/vbox* -rw-r--r-- 1 root root 186664 2008-10-25 19:30 /usr/lib/xorg/modules/input/vboxmouse_drv.so 2.) sudo gedit /etc/X11/xorg.conf 3.) paste those lines into your xorg.conf Code: Section "InputDevice" Identifier "Configured Mouse" Drive..