Re: keyboard problem

2005-08-14 Thread Daniel Pittman
ggyao 2005 <[EMAIL PROTECTED]> writes:

> when I installed the debian, I had an option to install a predefined list of 
> softwares.
> Later I can also recall this option by "tasksel". when the selection screen 
> show up, I
> can move my cursor to each item. BUT after I pressed "Enter", there is no any
> installation prcess happening, and I simply come back to the original screen 
> before
> typing "tasksel".
>
> I noticed that if the choice is captured by the system, there should be a "*" 
> sign for
> that item. but I could never made it.
>
> Can anyone tell me how to make the choice via the keyboard? Mine is compaq 
> presario
> 2190US laptop.

Space bar, I believe, toggles the selection state.
Return should commit the action.

Not very intuitive, but there you go.
Daniel



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Keyboard problem

2004-06-17 Thread Emil Carlsson

Ionel Mugurel Ciobica wrote:


On 17-06-2004, at 16h 25'16", Emil Carlsson wrote about "Keyboard problem"
 

I've gotten my keyboard to work just to the brink of one key! I need a 
swedish keyboard but it won't give me the key left of the space key, the 
key that generates < and >. It's fairly hard to program without them ;)


I realized the problem when I started to study C and was going to make 
my first program and I couldn't hit those keys... Greatful for help


/Emil

   



I understand that you have a 105 keys keyboard and you use a definition
for a 104 keys keyboard. What have you in the /etc/X11/XF86Config-4 file
for the keyboard? I have this:


Section "InputDevice"
   Identifier  "Generic Keyboard"
   Driver  "keyboard"
   Option  "CoreKeyboard"
   Option  "XkbRules" "xfree86"
   Option  "XkbModel" "pc104"
   Option  "XkbLayout" "us"
#   Option  "XkbDisable"
EndSection

Replace 104 with 105 and us with thw two letters for Swedish.
This will solve your problems under X. If you have the same problem
under the console, you need to add the definition for that key in
/etc/console/boottime.kmap.gz.

That line is:

keycode  86 = less greater

or

keycode  86 = less greater   bar

You may do that in /usr/share/keymaps/defkeymap.kmap if you have no
/etc/console/boottime.kmap.gz file.


Ionel


 

Thank you also, problem solved thanks to norton... and of some reason no 
matter what p10N I used it would work... but now it's working... =)




Re: Keyboard problem

2004-06-17 Thread Emil Carlsson

Thanks, actually, now I got a full keyboard and then some ;)

norton wrote:


this one: | ?
I have no idea what you're talking about 8-)

guess the name: bar.

if you go to /usr/lib/X11/locale you'll see a lot of locales for your
computer... pick one, say, iso8859-1
cd iso8859-1

and see the Compose file... it will show you a lot of these tricky codes

just in case you need for C:

|  bar
\  backslash
~  asciitilde
{  braceleft
}  braceright

take a look in that file and you'll see what you can do with your
keyboard 8-)

cheers


Em Qui, 2004-06-17 às 16:25, Emil Carlsson escreveu:
 

thank you, it solved half my problem anyway... the other half is the 
single bar ont alt gr and that key... now I got the < and the > (thank 
you again). Do you know the name of the bar? it's like a capital I or a 
common l but larger... do you understand what sign I mean?


/Emil

norton wrote:

   


well, I don't know this keyboard... so, that's what I think you should
do:

1) run xev in a shell
2) press the key (without shift just the key)
3) read the output... find the "keycode X", where X is a number
 (mine is keycode 59 for <)
4) cd $HOME
5) Create a file named .Xmodmap (debian will use it automatically when
you log in)
6) In this file write:
keycode X = V1  V2
where X is the keycode, V1 is the character printed when the key is
pressed and V2 is the character printed when shift+the_key are pressed.

A practical example:
in my keyboard, keycode = 59, and the key prints a "," if pressed and a
"<" if shift+key are pressed, so the entry will look like

keycode 59 = comma  less

(to help, "," is comma, "<" is less, "." is period and ">" is greater
7) then, xmodmap .Xmodmap to test

Next time you log in, debian will load the map .Xmodmap automatically

I hope it helps you

Em Qui, 2004-06-17 às 15:25, Emil Carlsson escreveu:


 

I've gotten my keyboard to work just to the brink of one key! I need a 
swedish keyboard but it won't give me the key left of the space key, the 
key that generates < and >. It's fairly hard to program without them ;)


I realized the problem when I started to study C and was going to make 
my first program and I couldn't hit those keys... Greatful for help


/Emil
  

   





Re: Keyboard problem

2004-06-17 Thread Emil Carlsson
thank you, it solved half my problem anyway... the other half is the 
single bar ont alt gr and that key... now I got the < and the > (thank 
you again). Do you know the name of the bar? it's like a capital I or a 
common l but larger... do you understand what sign I mean?


/Emil

norton wrote:


well, I don't know this keyboard... so, that's what I think you should
do:

1) run xev in a shell
2) press the key (without shift just the key)
3) read the output... find the "keycode X", where X is a number
  (mine is keycode 59 for <)
4) cd $HOME
5) Create a file named .Xmodmap (debian will use it automatically when
you log in)
6) In this file write:
keycode X = V1  V2
where X is the keycode, V1 is the character printed when the key is
pressed and V2 is the character printed when shift+the_key are pressed.

A practical example:
in my keyboard, keycode = 59, and the key prints a "," if pressed and a
"<" if shift+key are pressed, so the entry will look like

keycode 59 = comma  less

(to help, "," is comma, "<" is less, "." is period and ">" is greater
7) then, xmodmap .Xmodmap to test

Next time you log in, debian will load the map .Xmodmap automatically

I hope it helps you

Em Qui, 2004-06-17 às 15:25, Emil Carlsson escreveu:
 

I've gotten my keyboard to work just to the brink of one key! I need a 
swedish keyboard but it won't give me the key left of the space key, the 
key that generates < and >. It's fairly hard to program without them ;)


I realized the problem when I started to study C and was going to make 
my first program and I couldn't hit those keys... Greatful for help


/Emil
   





Re: Keyboard problem

2004-06-17 Thread Emil Carlsson
Ionel Mugurel Ciobica wrote:
On 17-06-2004, at 16h 25'16", Emil Carlsson wrote about "Keyboard problem"
 

I've gotten my keyboard to work just to the brink of one key! I need a 
swedish keyboard but it won't give me the key left of the space key, the 
key that generates < and >. It's fairly hard to program without them ;)

I realized the problem when I started to study C and was going to make 
my first program and I couldn't hit those keys... Greatful for help

/Emil
   

I understand that you have a 105 keys keyboard and you use a definition
for a 104 keys keyboard. What have you in the /etc/X11/XF86Config-4 file
for the keyboard? I have this:
Section "InputDevice"
   Identifier  "Generic Keyboard"
   Driver  "keyboard"
   Option  "CoreKeyboard"
   Option  "XkbRules" "xfree86"
   Option  "XkbModel" "pc104"
   Option  "XkbLayout" "us"
#   Option  "XkbDisable"
EndSection
Replace 104 with 105 and us with thw two letters for Swedish.
This will solve your problems under X. If you have the same problem
under the console, you need to add the definition for that key in
/etc/console/boottime.kmap.gz.
That line is:
keycode  86 = less greater
or
keycode  86 = less greater   bar
You may do that in /usr/share/keymaps/defkeymap.kmap if you have no
/etc/console/boottime.kmap.gz file.
Ionel
 

Thank you also, problem solved thanks to norton... and of some reason no 
matter what p10N I used it would work... but now it's working... =)

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


Re: Keyboard problem

2004-06-17 Thread Ionel Mugurel Ciobica
On 17-06-2004, at 16h 25'16", Emil Carlsson wrote about "Keyboard problem"
> I've gotten my keyboard to work just to the brink of one key! I need a 
> swedish keyboard but it won't give me the key left of the space key, the 
> key that generates < and >. It's fairly hard to program without them ;)
> 
> I realized the problem when I started to study C and was going to make 
> my first program and I couldn't hit those keys... Greatful for help
> 
> /Emil
> 

I understand that you have a 105 keys keyboard and you use a definition
for a 104 keys keyboard. What have you in the /etc/X11/XF86Config-4 file
for the keyboard? I have this:


Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "keyboard"
Option  "CoreKeyboard"
Option  "XkbRules" "xfree86"
Option  "XkbModel" "pc104"
Option  "XkbLayout" "us"
#   Option  "XkbDisable"
EndSection

Replace 104 with 105 and us with thw two letters for Swedish.
This will solve your problems under X. If you have the same problem
under the console, you need to add the definition for that key in
/etc/console/boottime.kmap.gz.

That line is:

keycode  86 = less greater

or

keycode  86 = less greater   bar

You may do that in /usr/share/keymaps/defkeymap.kmap if you have no
/etc/console/boottime.kmap.gz file.


Ionel



Re: Keyboard problem

2004-06-17 Thread Emil Carlsson
Thanks, actually, now I got a full keyboard and then some ;)
norton wrote:
this one: | ?
I have no idea what you're talking about 8-)
guess the name: bar.
if you go to /usr/lib/X11/locale you'll see a lot of locales for your
computer... pick one, say, iso8859-1
cd iso8859-1
and see the Compose file... it will show you a lot of these tricky codes
just in case you need for C:
|  bar
\  backslash
~  asciitilde
{  braceleft
}  braceright
take a look in that file and you'll see what you can do with your
keyboard 8-)
cheers
Em Qui, 2004-06-17 às 16:25, Emil Carlsson escreveu:
 

thank you, it solved half my problem anyway... the other half is the 
single bar ont alt gr and that key... now I got the < and the > (thank 
you again). Do you know the name of the bar? it's like a capital I or a 
common l but larger... do you understand what sign I mean?

/Emil
norton wrote:
   

well, I don't know this keyboard... so, that's what I think you should
do:
1) run xev in a shell
2) press the key (without shift just the key)
3) read the output... find the "keycode X", where X is a number
 (mine is keycode 59 for <)
4) cd $HOME
5) Create a file named .Xmodmap (debian will use it automatically when
you log in)
6) In this file write:
keycode X = V1  V2
where X is the keycode, V1 is the character printed when the key is
pressed and V2 is the character printed when shift+the_key are pressed.
A practical example:
in my keyboard, keycode = 59, and the key prints a "," if pressed and a
"<" if shift+key are pressed, so the entry will look like
keycode 59 = comma  less
(to help, "," is comma, "<" is less, "." is period and ">" is greater
7) then, xmodmap .Xmodmap to test
Next time you log in, debian will load the map .Xmodmap automatically
I hope it helps you
Em Qui, 2004-06-17 às 15:25, Emil Carlsson escreveu:
 

I've gotten my keyboard to work just to the brink of one key! I need a 
swedish keyboard but it won't give me the key left of the space key, the 
key that generates < and >. It's fairly hard to program without them ;)

I realized the problem when I started to study C and was going to make 
my first program and I couldn't hit those keys... Greatful for help

/Emil
  

   


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


Re: Keyboard problem

2004-06-17 Thread Emil Carlsson
thank you, it solved half my problem anyway... the other half is the 
single bar ont alt gr and that key... now I got the < and the > (thank 
you again). Do you know the name of the bar? it's like a capital I or a 
common l but larger... do you understand what sign I mean?

/Emil
norton wrote:
well, I don't know this keyboard... so, that's what I think you should
do:
1) run xev in a shell
2) press the key (without shift just the key)
3) read the output... find the "keycode X", where X is a number
  (mine is keycode 59 for <)
4) cd $HOME
5) Create a file named .Xmodmap (debian will use it automatically when
you log in)
6) In this file write:
keycode X = V1  V2
where X is the keycode, V1 is the character printed when the key is
pressed and V2 is the character printed when shift+the_key are pressed.
A practical example:
in my keyboard, keycode = 59, and the key prints a "," if pressed and a
"<" if shift+key are pressed, so the entry will look like
keycode 59 = comma  less
(to help, "," is comma, "<" is less, "." is period and ">" is greater
7) then, xmodmap .Xmodmap to test
Next time you log in, debian will load the map .Xmodmap automatically
I hope it helps you
Em Qui, 2004-06-17 às 15:25, Emil Carlsson escreveu:
 

I've gotten my keyboard to work just to the brink of one key! I need a 
swedish keyboard but it won't give me the key left of the space key, the 
key that generates < and >. It's fairly hard to program without them ;)

I realized the problem when I started to study C and was going to make 
my first program and I couldn't hit those keys... Greatful for help

/Emil
   


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


Re: Keyboard problem

2004-06-17 Thread Ionel Mugurel Ciobica
On 17-06-2004, at 16h 25'16", Emil Carlsson wrote about "Keyboard problem"
> I've gotten my keyboard to work just to the brink of one key! I need a 
> swedish keyboard but it won't give me the key left of the space key, the 
> key that generates < and >. It's fairly hard to program without them ;)
> 
> I realized the problem when I started to study C and was going to make 
> my first program and I couldn't hit those keys... Greatful for help
> 
> /Emil
> 

I understand that you have a 105 keys keyboard and you use a definition
for a 104 keys keyboard. What have you in the /etc/X11/XF86Config-4 file
for the keyboard? I have this:


Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "keyboard"
Option  "CoreKeyboard"
Option  "XkbRules" "xfree86"
Option  "XkbModel" "pc104"
Option  "XkbLayout" "us"
#   Option  "XkbDisable"
EndSection

Replace 104 with 105 and us with thw two letters for Swedish.
This will solve your problems under X. If you have the same problem
under the console, you need to add the definition for that key in
/etc/console/boottime.kmap.gz.

That line is:

keycode  86 = less greater

or

keycode  86 = less greater   bar

You may do that in /usr/share/keymaps/defkeymap.kmap if you have no
/etc/console/boottime.kmap.gz file.


Ionel


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Keyboard problem

2003-05-15 Thread Sebastian Henschel
Received at 2003-05-14 / 21:37 by Konjet kurabachew:
> my keyboard doesn't work when i type Y is Z, Z is Y
> how can I fix this? 

looks like you have a wrong keymap, try

dpkg-reconfigure console-data

hth,
 sebastian
-- 
::: sebastian henschel
::: kodeaffe
::: lynx -source http://www.kodeaffe.de/shensche.pub | gpg --import


pgp735hHl34nP.pgp
Description: PGP signature


Re: Keyboard problem

2003-05-15 Thread Rodrigo Agerri
That remarkable Wed, May 14, 2003 at 09:57, Konjet kurabachew wrote:

> my keyboard doesn't work when i type Y is Z, Z is Y
> how can I fix this? 

maybe  you do not have the correct layout for your keyboard

you can use xkeycaps to choose it. 

I hope it helps

cheers

-- 
Rodrigo Agerri
Dept. of Computing
City University, London
Tel: 0044 (0) 20 7040 0292
http://www.soi.city.ac.uk/~au700