LinuxQuestions.org
Review your favorite Linux distribution.
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 10-10-2005, 08:14 PM   #16
VelocityMicro
LQ Newbie
 
Registered: Oct 2005
Distribution: Slackware 11.0
Posts: 16

Original Poster
Rep: Reputation: 0

Quote:
Originally posted by rnicolson This should go in the mouse section. [/B]
Where is the mouse section? Can you post me a screenshot or something?
 
Old 10-10-2005, 08:16 PM   #17
rnicolson
Member
 
Registered: Jul 2004
Location: Winnipeg
Distribution: Slackware 11
Posts: 74

Rep: Reputation: 15
I put it here. I left everything following it out of my post but obviously leave it in your xorg.conf file. This worked for me.


Section "InputDevice"

# Identifier and driver

Identifier "Mouse1"
Driver "mouse"

# On platforms where PnP mouse detection is supported the following
# protocol setting can be used when using a newer PnP mouse:

# Option "Protocol" "Auto"

# The available mouse protocols types that you can set below are:
# Auto BusMouse GlidePoint GlidePointPS/2 IntelliMouse IMPS/2
# Logitech Microsoft MMHitTab MMSeries Mouseman MouseManPlusPS/2
# MouseSystems NetMousePS/2 NetScrollPS/2 OSMouse PS/2 SysMouse
# ThinkingMouse ThinkingMousePS/2 Xqueue
Option "Protocol" "IMPS/2"
Option "ZAxisMapping" "4 5"
 
Old 10-10-2005, 08:58 PM   #18
VelocityMicro
LQ Newbie
 
Registered: Oct 2005
Distribution: Slackware 11.0
Posts: 16

Original Poster
Rep: Reputation: 0
Nope, it didn't work. The wheel button works but the wheel doesn't. What type of mouse do you use ( I noticed that you have "IMPS/2")?

Well, if you have any other suggestions, please tell me. Also now that I'm connected to the internet on DSL. Do I have to be running some type of firewall in Linux?

Also, know that I'm running Linux, I don't need to worry about viruses or spyware? Right? And if I do, than what software should I use?
 
Old 10-10-2005, 09:08 PM   #19
rnicolson
Member
 
Registered: Jul 2004
Location: Winnipeg
Distribution: Slackware 11
Posts: 74

Rep: Reputation: 15
I should have mentioned that the imps2 is for a microsoft intellimouse. I believe it also works with other wheel mice as well. Sorry about that. What type of mouse do you have? If it is an MS explorer mouse there is is even more you need to add in order to get the other buttons working.

I don't use a firewall but I am behind a router. I would recommend it as you are not behind a router. I don't have much info close at hand right now. I am at work so I will need to take more time than I have to get you some usefull info.
 
Old 10-10-2005, 09:28 PM   #20
VelocityMicro
LQ Newbie
 
Registered: Oct 2005
Distribution: Slackware 11.0
Posts: 16

Original Poster
Rep: Reputation: 0
I just have a standard PS/2 mouse. All the buttons work, except for the wheel. But it should work because it did work under Slax Live-CD. I'll proberbly just buy a mouse that's like yours. But in any case it's proberbly not important.

Finally the big questions >

How do I install programs/packages?

How does installing programs in Linux differ than how Windows does it?

Where are the programs installed?

And how do I uninstall them?

...Oh and by the way, I will read the SlackBook - as soon as I find a printed version.
 
Old 10-10-2005, 09:42 PM   #21
rnicolson
Member
 
Registered: Jul 2004
Location: Winnipeg
Distribution: Slackware 11
Posts: 74

Rep: Reputation: 15
If you try it with th IMPS/2 it may work. Give it a try.

Installing programs depends on a few things. If you find a .tgz file you can install it and uninstall it using the package manager. If you are using KDE look under the k menu and then under system.

If you are unable to find a .tgz file you may need to configure the program and compile it yourself. This takes a little bit of getting used to but once you have done it a few times you should be fine. Usually the program will come in a .tar.gz file. This is like a zip file. you would unzip it and then in most cases go to a command prompt and type;

./configure
make
su to root by typing in "su", hit enter then type in the root passwd.
make install

The best thing is to check the INSTALL or README file for each program.

Once you get used to doing a couple from source you can start making your own slackware packages(.tgz files) using the makepkg command.

You can order the slackware essentials book from http://store.slackware.com/cgi-bin/store

Last edited by rnicolson; 10-10-2005 at 09:44 PM.
 
Old 10-10-2005, 10:03 PM   #22
VelocityMicro
LQ Newbie
 
Registered: Oct 2005
Distribution: Slackware 11.0
Posts: 16

Original Poster
Rep: Reputation: 0
Okay rnicolson, tell me when your birthday is...so I can send you a gift.

The IMPS/2 thing worked like a charm. And thanx for explaining the installing procedures.

Also, I love reading those quotes that come up after you login...
 
Old 10-10-2005, 10:08 PM   #23
richarde
LQ Newbie
 
Registered: Jun 2005
Location: Perth, Australia
Distribution: slackware 10.2
Posts: 22

Rep: Reputation: 15
Add it to the section under "input devices" or "mouse" (can't check what section exactly because I am not at my Slackware comp at the moment)

EDIT: sorry, didn't notice there was a second page

Last edited by richarde; 10-10-2005 at 10:10 PM.
 
Old 10-10-2005, 10:49 PM   #24
onelung02
Member
 
Registered: Oct 2003
Location: utah
Distribution: Slackware 10.0, Gentoo 2006.0
Posts: 289

Rep: Reputation: 30
Some fun things to remember. You could get an updater to bring your system up to current, such as Swaret or Slapt-Get. Also, check out linuxpackages.net for some nice .tgz files, yea slack!!!! Anyway, enjoy the time spent in Slack, I still can't get enough of it.

PS - Building from source is always the best IMO, but a nice .tgz file can save some headaches.

-onelung
 
Old 10-10-2005, 10:53 PM   #25
rnicolson
Member
 
Registered: Jul 2004
Location: Winnipeg
Distribution: Slackware 11
Posts: 74

Rep: Reputation: 15
Glad I could help. I love the quotes too.

With regards to installing programs. If you have to install from source I recommend figuring out makepkg fairly early on. It really makes for an easier install and uninstall if something goes wrong.

This website has a really good look at how to do it.

http://www.start-linux.com/articles/article_63.php

The big thing I found is create a directory for your package creation like /packages and then a folder in that for each program. /packages/program once that is created when configuring the program instead of typing ./configure you use ./configure --prefix=/packages/program Once you type make install go to the directory /packages/program and type "makepkg program.tgz"

Once that is done you have a package to install/uninstall via the package manager.

Last edited by rnicolson; 10-10-2005 at 10:59 PM.
 
Old 10-11-2005, 10:11 AM   #26
VelocityMicro
LQ Newbie
 
Registered: Oct 2005
Distribution: Slackware 11.0
Posts: 16

Original Poster
Rep: Reputation: 0
I'm currently running as root and I here that that's not a good idea...How do I create a new user? Do I use KUser? And how exatly should I do this?

And what should I do when I come to the login prompt, do login as root or a user? And what if I need to go to root when running linux, how would I do that?

Thanx alot!!!
 
Old 10-11-2005, 11:59 AM   #27
egag
Senior Member
 
Registered: Jul 2004
Location: Netherlands
Distribution: Slackware
Posts: 2,721

Rep: Reputation: 53
to make your own user , type : adduser
fill in a username, set a password, and if you don't want to fill in the rest,
just hit enter untill done.

after that, logout as root, and login as your user.

and to get root privileges, just type " su " at a command prompt
in a console.
fill in the password and you can do " root-things ".

furthermore , in kde, there's a " filemanager in superusermode "
( menu-->system-->more--> )

but i don't use it anymore.
you can do horrible thing with just just a few mouseclicks.
it's better to use the commandline as root.
after a while you'll see its much faster and more direct.

and to edit system files, you can use "pico" in a root console.
( like " pico </path-to/file> " )

egag
 
Old 10-11-2005, 02:14 PM   #28
lestoil
Member
 
Registered: Apr 2004
Location: new york
Distribution: win2k,ubuntu,sw13,arch,centos5.3
Posts: 815

Rep: Reputation: 31
mouse scroll wheel

At cli, as root, write 'pico'( or vi ) /etc/X11/xorg.conf. Scroll to mouse device sexn. You will see Protocol Auto or IMPS/2 then /dev/mouse then add Option "ZAxisMapping" "4 5" and Option "Buttons" "5". This is for usb or ps2 mouse with 2 buttons and one wheel. Check "This how I do Everything" at top of this forum for great guide.
To connect to web at boot try adding 'pppoe-start' to /etc/rc/d/rc.local file. Good luck.
 
Old 10-11-2005, 11:08 PM   #29
Penguin of Wonder
Senior Member
 
Registered: Sep 2005
Location: West Virginia
Distribution: Gentoo
Posts: 1,249

Rep: Reputation: 45
Wow, its amazing how much you learn just by reading random posts, i was going to ask how to edit files without logging in as root, but as dumb luck would have it, here it is!
 
Old 10-11-2005, 11:10 PM   #30
Penguin of Wonder
Senior Member
 
Registered: Sep 2005
Location: West Virginia
Distribution: Gentoo
Posts: 1,249

Rep: Reputation: 45
I have another question to add to the list of newbie questions.

I haven't been using linux long, but i've read several times in one place or another you should use "su -" instead of just "su" to gain root privilage.
Why is that, and what is the difference between the two? Or does it not really matter which one you use?
 
  


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
Dual boot windows/slackware, but slackware installed first? Cryptic_K Slackware 3 11-20-2006 12:49 PM
INSTALLED SUSE 9.3 CANNOT LOGIN from console nybler7 Linux - Newbie 2 09-30-2005 11:13 AM
How do login managers determine installed GUIs? bitpicker Linux - General 18 08-08-2004 09:00 AM
I have re-installed MK 9.2 but cannot login as user, login as root works. bobinglis Mandriva 2 02-22-2004 11:39 AM
SMB and LDAP Installed Can't Login sm4ck Linux - Networking 2 06-23-2003 10:04 PM

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

All times are GMT -5. The time now is 09:34 AM.

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