로지텍 mx510 버튼 사용하기(2)
리눅스 2006. 6. 24. 14:12
이번엔 로지텍 에플릿 설치하기다..
Just hit enter when checkinstall prompts you. Now it should be installed![Smile](http://ubuntuforums.org/images/smilies/icon_smile.gif)
2. Working logitech_applet
I use the command "logitech_applet -s 800 -e" which you can run now:
This sets the mouse resolution to it's maximum 800cpi and makes
sure the "cruise control" is enabled, you'll probably have to adjust
the mouse settings in gnome as it should be much more accurate now.
Type "logitech_applet --help" for more information.
3. Load on boot
We need to add this to a start up script so it's done automatically
when the machine boots up, to do this I make a file in
/etc/init.d/local where I keep local settings, so lets make that now:
Now paste the logitech_applet command, mine like the example above is:
I have the echo line so I can check if it works in the boot messages, it's nice but you don't need it.
To make it executable run the following command:
Now run the following command to make the "local" script run when the system boots:
Now the applet loads automatically on boot, huzzah! ![Smile](http://ubuntuforums.org/images/smilies/icon_smile.gif)
sudo apt-get install checkinstall build-essential libusb-dev
wget http://freshmeat.net/redir/logitech_applet/53319/url_tgz/logitech_applet-0.4test1.tar.gz
tar xvfz logitech_applet-0.4test1.tar.gz
mv ./logitech_applet-0.4test1 ./logitech-applet-0.4test1
cd ./logitech-applet-0.4test1
./configure --prefix=/usr
make
sudo checkinstall
Just hit enter when checkinstall prompts you. Now it should be installed
![Smile](http://ubuntuforums.org/images/smilies/icon_smile.gif)
2. Working logitech_applet
I use the command "logitech_applet -s 800 -e" which you can run now:
Code:
sudo logitech_applet -s 800 -e
sure the "cruise control" is enabled, you'll probably have to adjust
the mouse settings in gnome as it should be much more accurate now.
Type "logitech_applet --help" for more information.
3. Load on boot
We need to add this to a start up script so it's done automatically
when the machine boots up, to do this I make a file in
/etc/init.d/local where I keep local settings, so lets make that now:
Code:
sudo gedit /etc/init.d/local
Code:
echo "Setting up Logitech mouse..."
logitech_applet -s 800 -e
To make it executable run the following command:
Code:
sudo chmod 755 /etc/init.d/local
Now run the following command to make the "local" script run when the system boots:
Code:
sudo update-rc.d local defaults
![Smile](http://ubuntuforums.org/images/smilies/icon_smile.gif)
'리눅스' 카테고리의 다른 글
rsync를 이용한 소스 백업 (0) | 2006.07.14 |
---|---|
ubuntu에 xgl설치하기 (0) | 2006.06.26 |
로지텍 mx510 버튼 사용하기 (0) | 2006.06.24 |
ubuntu에 automatix 설치하기 (0) | 2006.06.24 |
불여시 관련 다운로드 프로그램 - d4x (0) | 2006.06.24 |