| Red Hat This forum is for the discussion of Red Hat Linux. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
12-17-2003, 05:28 AM
|
#1
|
|
Member
Registered: Nov 2003
Distribution: RH 9.0
Posts: 144
Rep:
|
Locking the Num-Lock
Is there a way to have a default of having the num-lock on the computer?
|
|
|
|
12-17-2003, 06:52 AM
|
#2
|
|
HCL Maintainer
Registered: Jun 2003
Location: Tupelo, MS
Distribution: Gentoo
Posts: 6,926
Rep: 
|
Re: Locking the Num-Lock
Quote:
Originally posted by AceTech747
Is there a way to have a default of having the num-lock on the computer?
|
If you use the KDE desktop, go to Control Center, Peripherals, Keyboard and then NumLock on KDE startup: Turn on.
I don't know about any other desktop environments, but it should be similar.
|
|
|
|
12-17-2003, 11:39 AM
|
#3
|
|
Member
Registered: Nov 2003
Distribution: RH 9.0
Posts: 144
Original Poster
Rep:
|
I am using fluxbox.
|
|
|
|
12-17-2003, 04:05 PM
|
#4
|
|
HCL Maintainer
Registered: Jun 2003
Location: Tupelo, MS
Distribution: Gentoo
Posts: 6,926
Rep: 
|
I don't use Fluxbox at this time. But I searched LQ and found some things.
Read this thread ->
http://www.linuxquestions.org/questi...ox+and+numlock
Last edited by Bruce Hill; 12-17-2003 at 04:09 PM.
|
|
|
|
01-04-2004, 02:27 AM
|
#5
|
|
Member
Registered: Nov 2003
Distribution: RH 9.0
Posts: 144
Original Poster
Rep:
|
What is the command line command to bring up the GUI for the above mentioned KDE configuration. If I run this from fluxbox will it still work? I have also tried the stuff in the above mentioned thread and have had no luck with it. Has anyone got this working on their computer under fluxbox?
|
|
|
|
01-06-2004, 12:33 PM
|
#6
|
|
Member
Registered: Apr 2002
Location: St. Paul, Minnesota
Distribution: UbuntuStudio, Ubuntu
Posts: 357
Rep:
|
KDE Control Center is KDE specific, and will do no good (and may in fact try to load the entire KDE environment when you run it).
It doesn't appear that there is an effective way of setting the NumLock in any of the other Window Managers. But I too would be happy to be proven wrong!
|
|
|
|
07-09-2004, 03:13 AM
|
#7
|
|
HCL Maintainer
Registered: Jun 2003
Location: Tupelo, MS
Distribution: Gentoo
Posts: 6,926
Rep: 
|
Quote:
Originally posted by GAVollink
KDE Control Center is KDE specific, and will do no good (and may in fact try to load the entire KDE environment when you run it).
It doesn't appear that there is an effective way of setting the NumLock in any of the other Window Managers. But I too would be happy to be proven wrong!
|
If you've still not figured out how to enable the NumLock key when the comp
boots with Fluxbox, for instance, post back...
|
|
|
|
07-09-2004, 11:38 PM
|
#8
|
|
Member
Registered: Apr 2002
Location: St. Paul, Minnesota
Distribution: UbuntuStudio, Ubuntu
Posts: 357
Rep:
|
Posting back. I don't know how to do it, and also think it would bring good closure to this thread (remember many Google searches terminate on threads like this one).
|
|
|
|
07-10-2004, 04:01 AM
|
#9
|
|
HCL Maintainer
Registered: Jun 2003
Location: Tupelo, MS
Distribution: Gentoo
Posts: 6,926
Rep: 
|
Download NumLockX from http://ktown.kde.org/~seli/numlockx/
Untar wherever you desire, then cd /numlockx-1.0
Issue "pico README"
and if you need more help after that, post back...
|
|
|
|
07-10-2004, 07:49 AM
|
#10
|
|
HCL Maintainer
Registered: Jun 2003
Location: Tupelo, MS
Distribution: Gentoo
Posts: 6,926
Rep: 
|
HOW-TO turn on Num Lock when you start the X server
Basically all you need to do is:
Download the file from http://ktown.kde.org/~seli/numlockx/numlockx-1.0.tar.gz
$ tar -zxvf numlockx-1.0.tar.gz
$ cd numlockx-1.0
$ ./configure
$ make
# make install
Then if you have a file .xinitrc in your home directory just add
numlock &
to the file, save it, and you'll have NumLock on whenever you start the X server.
If you don't have the file, create it in your home directory. You can put other
programs in it to run when you start X. Here's mine as an example:
Code:
bash-2.05b$ cat .xinitrc
# This is my X server start up file
# Add any programs you want to have running when X starts here
# Make sure they all end with a &
numlockx on &
kmail &
/home/mingdao/firefox-installer/firefox &
xterm &
# Now add your windows manager here.
# I have included some examples, just remove the # in the beginning for yours
# exec gnome-session
# exec startkde
# exec blackbox
exec fluxbox
|
|
|
|
07-15-2004, 05:35 AM
|
#11
|
|
HCL Maintainer
Registered: Jun 2003
Location: Tupelo, MS
Distribution: Gentoo
Posts: 6,926
Rep: 
|
Quote:
Originally posted by GAVollink
Posting back. I don't know how to do it, and also think it would bring good closure to this thread (remember many Google searches terminate on threads like this one).
|
So have you been back and read it?
Were you able to get it working, or do you need some help?
Edit: P.S. I get a 503 on your website link...
Last edited by Bruce Hill; 07-15-2004 at 05:40 AM.
|
|
|
|
09-08-2004, 03:34 PM
|
#12
|
|
Member
Registered: Apr 2002
Location: St. Paul, Minnesota
Distribution: UbuntuStudio, Ubuntu
Posts: 357
Rep:
|
Been away...
Hello,
I've fallen out of the habit of checking the forums here (bad I know)... I've been doing a lot of online work over at ChefMoz.org. Anyway... I never got it working, but I also stopped using Fluxbox (mostly due to having a beefier machine and really liking the usability of Gnome 2.6).
I appreciate the offer, but I think the links above should suffice.
Re: PS...
A web site link? What web site link?
|
|
|
|
09-08-2004, 05:54 PM
|
#13
|
|
HCL Maintainer
Registered: Jun 2003
Location: Tupelo, MS
Distribution: Gentoo
Posts: 6,926
Rep: 
|
Re: Been away...
Quote:
Originally posted by GAVollink
Hello,
I've fallen out of the habit of checking the forums here (bad I know)... I've been doing a lot of online work over at ChefMoz.org. Anyway... I never got it working, but I also stopped using Fluxbox (mostly due to having a beefier machine and really liking the usability of Gnome 2.6).
|
I believe G nome might have numlockx installed and you'll have to figure out
some gui that's hiding it to use it, just like with KDE.
Quote:
Re: PS...
A web site link? What web site link?
|
In your LQ UserCP you have listed your website. At the bottom of a users post are
several buttons - www is the link to a website you provided - it does not work.
If that link is no longer valid, you should change or remove it. You should update
your profiles if you're going to continue to use LQ, so folks can help you better.
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 02:21 PM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|