Tags: hardware* + linux*

0 bookmark(s) - Sort by: Date ↓ / Title /

  1. sudo nano /bin/connect-bluetooth.sh

    In that file add
    #!/bin/bash
    sudo bluetoothctl << EOF
    power on
    connect MAC Address »
    exit
    EOF

    Save that file.
    Make it executable

    sudo chmod +x /bin/connect-bluetooth.sh

    Then create a new file
    sudo nano /etc/systemd/system/connect-bluetooth.service

    Add this text:
    Unit »
    Description=Connect Bluetooth

    Service »
    Type=oneshot
    ExecStart=/bin/connect-bluetooth.sh

    Install »
    WantedBy=multi-user.target
    Save that file.

    Then run this command to enable that process
    sudo systemctl enable /etc/systemd/system/connect-bluetooth.service
  2. 2021-03-23 Tags: , , , , by klotz
  3. camera must be off
    2020-08-02 Tags: , , , , , by klotz
  4. 2020-06-11 Tags: , , , , , , by klotz
  5. Yes there is, read-edid hardware information-gathering tool for VESA PnP monitors. This tool have two commands: get-edid and parse-edid: tools to retrieve and interpret monitor specifications using the VESA VBE DDC protocol. EDID (Extended Display Identification Data) is a metadata format for display devices to describe their capabilities to a video source.

    First:

    sudo apt-get install read-edid
    Then try:

    sudo get-edid | parse-edid
    2020-03-06 Tags: , , , by klotz

Top of the page

First / Previous / Next / Last / Page 2 of 0 SemanticScuttle - klotz.me: tagged with "hardware+linux"

About - Propulsed by SemanticScuttle