Como posso trocar a tecla Fn por um teclado do Microsoft All-in-One?

6

Eu tenho um modelo Microsoft Keyboard N9Z . Eu estou usando no Ubuntu 14.04.

O problema é que as teclas F1 , F2 , F ... são, por padrão, agem como teclas de reprodução de mídia. É necessário pressionar a tecla Fn para obter o comportamento normal das teclas de função. Por exemplo, para obter ajuda, você precisa pressionar Fn + F1 juntos.

Existe uma maneira de reverter o comportamento das chaves Fn para Apple devices explicado aqui a>, basicamente sugere para emitir o seguinte comando:

$ echo 2 | sudo tee /sys/module/hid_apple/parameters/fnmode

No entanto, não há uma pasta hid_apple (é claro) no meu sistema e não consigo criar um arquivo fnmode na pasta /sys/module/hid_apple/parameters/ .

Atualização:

Saída de lsusb

$ sudo lsusb -v -d 045e:
[sudo] password for destan: 

Bus 001 Device 003: ID 045e:0800 Microsoft Corp. 
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            0 (Defined at Interface level)
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0        64
  idVendor           0x045e Microsoft Corp.
  idProduct          0x0800 
  bcdDevice            9.34
  iManufacturer           1 Microsoft
  iProduct                2 Microsoft® Nano Transceiver v2.0
  iSerial                 0 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           84
    bNumInterfaces          3
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xa0
      (Bus Powered)
      Remote Wakeup
    MaxPower              100mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         3 Human Interface Device
      bInterfaceSubClass      1 Boot Interface Subclass
      bInterfaceProtocol      1 Keyboard
      iInterface              0 
        HID Device Descriptor:
          bLength                 9
          bDescriptorType        33
          bcdHID               1.11
          bCountryCode            0 Not supported
          bNumDescriptors         1
          bDescriptorType        34 Report
          wDescriptorLength      57
         Report Descriptors: 
           ** UNAVAILABLE **
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0008  1x 8 bytes
        bInterval               4
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         3 Human Interface Device
      bInterfaceSubClass      1 Boot Interface Subclass
      bInterfaceProtocol      2 Mouse
      iInterface              0 
        HID Device Descriptor:
          bLength                 9
          bDescriptorType        33
          bcdHID               1.11
          bCountryCode            0 Not supported
          bNumDescriptors         1
          bDescriptorType        34 Report
          wDescriptorLength     223
         Report Descriptors: 
           ** UNAVAILABLE **
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x82  EP 2 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x000a  1x 10 bytes
        bInterval               1
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        2
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         3 Human Interface Device
      bInterfaceSubClass      0 No Subclass
      bInterfaceProtocol      0 None
      iInterface              0 
        HID Device Descriptor:
          bLength                 9
          bDescriptorType        33
          bcdHID               1.11
          bCountryCode            0 Not supported
          bNumDescriptors         1
          bDescriptorType        34 Report
          wDescriptorLength     319
         Report Descriptors: 
           ** UNAVAILABLE **
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x83  EP 3 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0020  1x 32 bytes
        bInterval               1
Device Status:     0x0000
  (Bus Powered)

Existe uma maneira de fazer isso para qualquer outro teclado?

    
por destan 25.03.2015 / 11:51

2 respostas

4

Basta pressionar Fn - Capslock . E tudo ficará bem.

    
por Alinaki 02.11.2015 / 12:32
2

A tecla fn é definida por padrão. Quero dizer, se você quiser que a chave fn não seja necessária para funcionalidades comuns das teclas "F1, F2, F3, ......." , siga estas etapas:

  1. Vá para configurações da BIOS

  2. Navegue até a opção Configuração do sistema

  3. Em seguida, navegue até a opção Modo de teclas de ação e pressione a tecla "enter" para exibir o menu Ativar / Desativar

  4. Desativar essa opção

por Prateek Agrawal 19.10.2017 / 21:29