* can't loadkeys anymore? (was Re: Linux-2.6.15.4 login errors)
2006-02-16 14:28 ` Dave Jones
@ 2006-02-16 20:30 ` John M Flinchbaugh
2006-02-16 20:40 ` linux-os (Dick Johnson)
2006-02-17 2:50 ` Andrew Morton
0 siblings, 2 replies; 4+ messages in thread
From: John M Flinchbaugh @ 2006-02-16 20:30 UTC (permalink / raw)
To: Linux kernel
[-- Attachment #1: Type: text/plain, Size: 930 bytes --]
On Thu, Feb 16, 2006 at 09:28:25AM -0500, Dave Jones wrote:
> On Thu, Feb 16, 2006 at 09:13:46AM -0500, linux-os (Dick Johnson) wrote:
> > After installing linux-2.6.15.4, attempts to log in a non-root
> > account gives these errors.
> > Password:
> > Last login: Thu Feb 16 08:53:20 on tty1
> > Keymap 0: Permission denied
> > Keymap 1: Permission denied
> > Keymap 2: Permission denied
> > LDSKBENT: Operation not permitted
> > loadkeys: could not deallocate keymap 3
> It's coming from unicode_start
> > This is a RH Fedora base. Anybody know how to turn this crap off?
> Apply updates.
> This was fixed in kbd 1.12-10.fc4.1
This still leaves the question: Why is loadkeys no longer permitted to
set the keymap for a tty the user currently owns? What if the user
really does want to run loadkeys without having to be root (ie. to load
dvorak keymap)?
--
John M Flinchbaugh
john@hjsoft.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: can't loadkeys anymore? (was Re: Linux-2.6.15.4 login errors)
2006-02-16 20:30 ` can't loadkeys anymore? (was Re: Linux-2.6.15.4 login errors) John M Flinchbaugh
@ 2006-02-16 20:40 ` linux-os (Dick Johnson)
2006-02-17 2:50 ` Andrew Morton
1 sibling, 0 replies; 4+ messages in thread
From: linux-os (Dick Johnson) @ 2006-02-16 20:40 UTC (permalink / raw)
To: John M Flinchbaugh; +Cc: Linux kernel
On Thu, 16 Feb 2006, John M Flinchbaugh wrote:
> On Thu, Feb 16, 2006 at 09:28:25AM -0500, Dave Jones wrote:
>> On Thu, Feb 16, 2006 at 09:13:46AM -0500, linux-os (Dick Johnson) wrote:
>> > After installing linux-2.6.15.4, attempts to log in a non-root
>> > account gives these errors.
>> > Password:
>> > Last login: Thu Feb 16 08:53:20 on tty1
>> > Keymap 0: Permission denied
>> > Keymap 1: Permission denied
>> > Keymap 2: Permission denied
>> > LDSKBENT: Operation not permitted
>> > loadkeys: could not deallocate keymap 3
>> It's coming from unicode_start
>> > This is a RH Fedora base. Anybody know how to turn this crap off?
>> Apply updates.
>> This was fixed in kbd 1.12-10.fc4.1
>
> This still leaves the question: Why is loadkeys no longer permitted to
> set the keymap for a tty the user currently owns? What if the user
> really does want to run loadkeys without having to be root (ie. to load
> dvorak keymap)?
>
> --
> John M Flinchbaugh
> john@hjsoft.com
>
I just substituted this `chmod 4755` and away you go.
#include <stdio.h>
#include <unistd.h>
int main (int args, char *argv[], char *envp[])
{
(void)setuid(0);
(void)setgid(0);
return execve("/bin/loadkeys.orig", argv, envp);
}
Purists will say "No No!.......", wring their hands and
claim that the world is now flat. However, some of us do
need to do some work on our machines....
Cheers,
Dick Johnson
Penguin : Linux version 2.6.15.4 on an i686 machine (5589.55 BogoMips).
Warning : 98.36% of all statistics are fiction.
_
\x1a\x04
****************************************************************
The information transmitted in this message is confidential and may be privileged. Any review, retransmission, dissemination, or other use of this information by persons or entities other than the intended recipient is prohibited. If you are not the intended recipient, please notify Analogic Corporation immediately - by replying to this message or by sending an email to DeliveryErrors@analogic.com - and destroy all copies of this information, including any attachments, without reading or disclosing them.
Thank you.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: can't loadkeys anymore? (was Re: Linux-2.6.15.4 login errors)
[not found] ` <5GY5a-6RF-35@gated-at.bofh.it>
@ 2006-02-17 0:11 ` Robert Hancock
0 siblings, 0 replies; 4+ messages in thread
From: Robert Hancock @ 2006-02-17 0:11 UTC (permalink / raw)
To: linux-kernel
John M Flinchbaugh wrote:
> On Thu, Feb 16, 2006 at 09:28:25AM -0500, Dave Jones wrote:
>> On Thu, Feb 16, 2006 at 09:13:46AM -0500, linux-os (Dick Johnson) wrote:
>> > After installing linux-2.6.15.4, attempts to log in a non-root
>> > account gives these errors.
>> > Password:
>> > Last login: Thu Feb 16 08:53:20 on tty1
>> > Keymap 0: Permission denied
>> > Keymap 1: Permission denied
>> > Keymap 2: Permission denied
>> > LDSKBENT: Operation not permitted
>> > loadkeys: could not deallocate keymap 3
>> It's coming from unicode_start
>> > This is a RH Fedora base. Anybody know how to turn this crap off?
>> Apply updates.
>> This was fixed in kbd 1.12-10.fc4.1
>
> This still leaves the question: Why is loadkeys no longer permitted to
> set the keymap for a tty the user currently owns? What if the user
> really does want to run loadkeys without having to be root (ie. to load
> dvorak keymap)?
>
I believe remapping keys on the console is no longer permitted for
non-root users for security reasons, i.e. to prevent people from
remapping keys so that the next person who logs in will unwittingly run
specific commands with root privileges, etc.
--
Robert Hancock Saskatoon, SK, Canada
To email, remove "nospam" from hancockr@nospamshaw.ca
Home Page: http://www.roberthancock.com/
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: can't loadkeys anymore? (was Re: Linux-2.6.15.4 login errors)
2006-02-16 20:30 ` can't loadkeys anymore? (was Re: Linux-2.6.15.4 login errors) John M Flinchbaugh
2006-02-16 20:40 ` linux-os (Dick Johnson)
@ 2006-02-17 2:50 ` Andrew Morton
1 sibling, 0 replies; 4+ messages in thread
From: Andrew Morton @ 2006-02-17 2:50 UTC (permalink / raw)
To: John M Flinchbaugh; +Cc: linux-kernel
John M Flinchbaugh <john@hjsoft.com> wrote:
>
> This still leaves the question: Why is loadkeys no longer permitted to
> set the keymap for a tty the user currently owns? What if the user
> really does want to run loadkeys without having to be root (ie. to load
> dvorak keymap)?
The problem is that you could possibly change keys to do evil things, then
log out, leaving a trap for the next user.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2006-02-17 2:48 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <5GS9n-6wf-33@gated-at.bofh.it>
[not found] ` <5GSjf-6Ia-29@gated-at.bofh.it>
[not found] ` <5GY5a-6RF-35@gated-at.bofh.it>
2006-02-17 0:11 ` can't loadkeys anymore? (was Re: Linux-2.6.15.4 login errors) Robert Hancock
2006-02-16 14:13 Linux-2.6.15.4 login errors linux-os (Dick Johnson)
2006-02-16 14:28 ` Dave Jones
2006-02-16 20:30 ` can't loadkeys anymore? (was Re: Linux-2.6.15.4 login errors) John M Flinchbaugh
2006-02-16 20:40 ` linux-os (Dick Johnson)
2006-02-17 2:50 ` Andrew Morton
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox