LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 11-24-2003, 02:12 PM   #1
sfnitro230
LQ Newbie
 
Registered: Nov 2003
Location: PA
Distribution: Slackware 9.1
Posts: 13

Rep: Reputation: 0
A Few Newbie Question


(1) How do I get the wheel on my mouse to work?

(2) How do I get updates for the OS and its software.

(3) How do I "uninstall" programs that do not show up in pkgtools?

(4) Is there a way to scan for "junk" files that I no longer need?

(5) When I boot, the boot screen pauses on a certain entry for a while (USB Device Driver) and was wondering how I stop from loading that driver.

Last edited by sfnitro230; 11-24-2003 at 02:17 PM.
 
Old 11-24-2003, 02:17 PM   #2
phekno
Member
 
Registered: May 2003
Distribution: Gentoo, Slackware
Posts: 75

Rep: Reputation: 15
I'm not sure about questions 2-4 but to get your mouse wheel to work you need this in your /etc/XF86Config file:

Section "InputDevice"
Identifier "Mouse"
Driver "mouse"
Option "Protocol" "imps/2"
Option "Device" "/dev/psaux"
Option "ZAxisMapping" "4 5"
Option "Buttons" "3"
EndSection



Replace that garbage with whatever your current file has for that section and you should be good to go.

Later,
Phekno
 
Old 11-24-2003, 03:27 PM   #3
slakmagik
Senior Member
 
Registered: Feb 2003
Distribution: Slackware
Posts: 4,113

Rep: Reputation: Disabled
Re: A Few Newbie Question

Quote:
Originally posted by sfnitro230
(2) How do I get updates for the OS and its software.
A lot of people seem to like swaret - or you could just check the Slack site and download listed updates.

Quote:
(3) How do I "uninstall" programs that do not show up in pkgtools?
If you compiled from source and still have it you can try 'make uninstall' in the same way you did 'make install' - but many tarballs don't include uninstall scripts - otherwise you'll have to pick the stuff out by hand. Swaret is hearsay but I use checkinstall religiously for source compiles.

Quote:
(4) Is there a way to scan for "junk" files that I no longer need?
Depnds on your definition of junk. If you mean you want to delete 'file.txt~'-type backups, or anything identifiable by name or regex, there's 'locate' and 'find' and various tools like that. If you mean just random stuff you don't want, I don't think so. Most 'junk' automatically ends up in /tmp anyway, though.

Quote:
(5) When I boot, the boot screen pauses on a certain entry for a while (USB Device Driver) and was wondering how I stop from loading that driver.
The startup scripts are in /etc or /etc/rc.d. Look for it there (maybe specifically in /etc/hotplug?) and see about commenting it out if it's in a file or 'chmod'ing it if it's its own file. There's also a hotplug blacklist file. Hard to say without more information and I probably wouldn't know specifically, anyway.
 
Old 11-24-2003, 03:44 PM   #4
sfnitro230
LQ Newbie
 
Registered: Nov 2003
Location: PA
Distribution: Slackware 9.1
Posts: 13

Original Poster
Rep: Reputation: 0
Quote:
Originally posted by phekno
I'm not sure about questions 2-4 but to get your mouse wheel to work you need this in your /etc/XF86Config file:

Section "InputDevice"
Identifier "Mouse"
Driver "mouse"
Option "Protocol" "imps/2"
Option "Device" "/dev/psaux"
Option "ZAxisMapping" "4 5"
Option "Buttons" "3"
EndSection



Replace that garbage with whatever your current file has for that section and you should be good to go.

Later,
Phekno
I tried this but now X won't start. How can I "reset" the XF86Config file from the command?
 
Old 11-24-2003, 04:36 PM   #5
Netizen
Member
 
Registered: Sep 2003
Location: Texas
Distribution: Slackware and Ubuntu
Posts: 355

Rep: Reputation: 30
open the XF86Config file in a text editor. What does the error when you try to start x say?

I bet is says something about not being able to find the indentifier...

if it does then...

SU to root. Then open the XF86Config file with your favorite text editor. Change the line

Identifier "Mouse"

to

Identifier "Mouse1"

Save and then startx.

I think the default identifier for Slack is "mouse1" and if you didnt change the indentifier at the bottom of the file then you will get an error.

Netizen
 
Old 11-24-2003, 04:36 PM   #6
DaHammer
Member
 
Registered: Oct 2003
Location: Planet Earth
Distribution: Slackware, LFS
Posts: 561

Rep: Reputation: 30
Did you just edit your Section "InputDevice" vs adding all the above? Anyway, all you really need to add is Option "ZAxisMapping" "4 5" most likely, but in your current Section "InputDevice". You can edit the from the command prompt with a command line editor like pico or vi, ie "pico /etc/X11/XF86Config".
 
Old 11-24-2003, 04:42 PM   #7
Netizen
Member
 
Registered: Sep 2003
Location: Texas
Distribution: Slackware and Ubuntu
Posts: 355

Rep: Reputation: 30
When I did it I had to actually add the protocol as well. By default mine didn't work with out the protocol listed as it is above.

Netizen

Last edited by Netizen; 11-24-2003 at 08:28 PM.
 
Old 11-24-2003, 05:01 PM   #8
DaHammer
Member
 
Registered: Oct 2003
Location: Planet Earth
Distribution: Slackware, LFS
Posts: 561

Rep: Reputation: 30
Yes the protocol is required, but if he followed the Slackware-HOWTO, ie 6.2 Configuring the X Window System, when he installed it, then that protocol should already be in place.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Very Newbie Question. Please Help imfineru Linux - Newbie 8 08-20-2005 05:09 AM
Apache newbie question.. (very newbie question) tarballed Linux - Newbie 1 02-07-2003 08:41 PM
RE: Suse 8.0 hardware question {newbie question, pls help} Radiouk Linux - Distributions 2 06-04-2002 12:53 PM
RE: Samba question pls help {Newbie question} Radiouk Linux - Networking 4 06-03-2002 06:40 PM
Security question {newbie question} Radio Linux - Security 3 05-17-2002 06:32 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 06:47 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration