How To Enable Mouse Wheel Scrolling in Ubuntu 8.04 on VMware Как включить колесо прокрутки мыши в Ubuntu 8,04 на VMware
I was trying to make the vmware virtual appliance ubuntu 8.04 mouse scroll wheel to work, and I found the solution here. Я пытался сделать VMware виртуальных устройств Ubuntu 8,04 мыши колесо прокрутки на работу, и я нашел решение здесь. It worked great. Он работал здорово.
Original site Оригинал сайта http://peterc.org/2008/64-how-to-enable-vertical-mouse-wheel-scrolling-in-ubuntu-hardy-on-vmware-fusion.html
I was having problems Я был возникли проблемы installing VMware Tools on Ubuntu Hardy (8.04) under VMware Fusion Установка VMware средства на Ubuntu Харди (8,04) под VMware Fusion but got to the bottom of it. но попал на нижнюю часть его.
The next problem was trying to get the mouse scroll wheel to work. Следующая проблема заключается в попытке получить прокрутки колеса мыши для работы. I did some Googling and most of the guides suggested I change a single line in xorg.conf (namely, set the “Protocol” of the mouse device to “ImPS/2″). Я сделал некоторые поиск в Google, и большинство из гидов предлагает изменить одну строку в xorg.conf (а именно, установить "Протокол" из устройства мыши на "IMPS / 2"). It didn’t work. Она не работает. On a limb I thought I’d try changing the driver from “vmmouse” to “mouse” and this solved the problem, but the mouse tracking and acceleration was TOTALLY different between OS X and Linux.. О конечности я думал, я бы попытаться изменить драйвер от "vmmouse" на "мышь" и решить эту проблему, но и мышь и отслеживание ускорение было совершенно иным между OS X и Linux .. eugh!
With some perseverance, I’ve found a solution. С некоторыми настойчивость, я нашел решение. You can use the vmmouse driver, keep the synchronized mouse tracking and acceleration, and use your mouse wheel as it was intended. Вы можете использовать vmmouse водителя, держать синхронизированы мышь слежения и ускорение, а также использовать мышь колесо, как оно было.
I have been told this technique works on VMware Workstation and VMware Player on the PC too, but I haven’t tried it on there myself. Мне сказали, этот метод работает на VMware Workstation и VMware Player на компьютере, но я не пытался его там сам.
Steps to Enable Mouse Wheel Scrolling in Ubuntu Hardy under VMware Fusion Шаги, чтобы колесо прокрутки мыши в Ubuntu Харди под VMware Fusion
Launch a Terminal (Applications menu -> Accessories -> Terminal). Запуск терминала (меню Приложения -> Аксессуары -> Терминал).
Type: Тип:
sudo gedit /etc/X11/xorg.conf
Scroll down (it’s not far, perhaps 20 - 30 lines) till you see a block that looks like this: Выделите вниз (это не далеко, возможно, 20 - 30 строк) до появления блока, которое выглядит следующим образом:
Section "InputDevice"
Identifier "Configured Mouse"
Driver "vmmouse"
[.. blah blah blah ..]
EndSection
Replace that whole section with this: Заменить, что всего в этом разделе:
Section "InputDevice"
Identifier "Configured Mouse"
Driver "vmmouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "Buttons" "5"
Option "ZAxisMapping" "4 5"
EndSection
Save the file, then close all your apps and hit Ctrl+Alt+Backspace. Сохраните файл, закройте все приложения и нажмите Ctrl + Alt + Backspace. X restarts within a few seconds, and you’re back up and running. X перезагружается в течение нескольких секунд, и вы вновь запущен. Scrolling should now be possible! Прокрутка должна теперь можно!
I haven’t gotten to the bottom of horizontal scrolling yet. Я еще не получили в нижней горизонтальной прокрутки еще. I thought a ZAxisMapping of “4 5 11 12″ would do it, but I suspect either VMware Fusion’s mouse driver does things a different way, or maybe it’s mouse specific (not likely). Я думал, ZAxisMapping "4 5 11 12" будет делать это, но я подозреваю, либо VMware Fusion в драйвер мыши вовсе вещей иным способом, или, может быть, это мышь конкретных (вряд ли). I’ll update this post if I work it out. Я буду обновлять этот пост, если я работаю ее.
Popularity: 1% Популярность: 1%
Written by computerboom. Автор computerboom. Read more great feeds at is source Подробнее большое каналы на исходный WEBSITE ИНТЕРНЕТ-САЙТ
11 comments 11 комментарии . .
Read more articles on Читайте больше статей о otherSoftware otherSoftware . .
- [+] Digg [+] Digg : Feature this article : Жанр этой статье
- [+] Del.icio.us [+] Del.icio.us : Bookmark this article : Закладка этой статье
- [+] Furl [+] Свертывать : Bookmark this article : Закладка этой статье
















#1 . May 5th, 2008, at 12:32 AM.
Sweet, man. I was trying the old 7.10 way myself, too… but it didn’t go. This makes everything scrollable again!