Karl Heinz: Wie COM-Port in Linux System herausfinden?

Beitrag lesen

Hallo TS,

Um den USB-Anschluss herauszufinden, an dem die Box hängt, hilft lsusb. Einfach einmal ohne angschlossene Box aufrufen, Anzeige merken. Dann mit angeschlossener Box aufrufen, dann siehst Du schon, welcher Anschluss es ist.

Ausgabe ohne Box:


> Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
> Bus 009 Device 002: ID 046d:c52b Logitech, Inc. Unifying Receiver
> Bus 009 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
> Bus 008 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
> Bus 004 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
> Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
> Bus 003 Device 003: ID 04e8:6860 Samsung Electronics Co., Ltd Galaxy (MTP)
> Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
> Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
> Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
> Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

Ausgabe mit Box:

Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 009 Device 002: ID 046d:c52b Logitech, Inc. Unifying Receiver
Bus 009 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 008 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 007 Device 012: ID 10c4:ea60 Cygnal Integrated Products, Inc. CP210x UART Bridge / myAVR mySmartUSB light
Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 003: ID 04e8:6860 Samsung Electronics Co., Ltd Galaxy (MTP)
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

Demnach beziehen sich folgende Zeilen auf die Box bzw. deren USB Anschluss:

Bus 007 Device 012: ID 10c4:ea60 Cygnal Integrated Products, Inc. CP210x UART Bridge / myAVR mySmartUSB light
Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub

Ist dann mit "Bus 007" der USB Anschluss 7 gemeint?

Nachdem ich also weiß, dass die Box an /dev/tty7 hängt habe ich "sudo minicom -s" ausgeführt und den seriellen Anschluss, der von Minicom angesprochen wird, auf "/dev/tty7" umgestellt.

Anschließend habe ich minicom mit "sudo minicom" gestartet. Folgende Ausgabe erscheint:

Willkommen zu minicom 2.7
 
Optionen: I18n 
Übersetzt am Jan  1 2014, 17:13:19.
Port /dev/tty7, 11:46:04
 
Drücken Sie CTRL-A  Z für Hilfe zu speziellen Tasten

Anschließend habe ich die Box wieder an Netz angeschlossen. Ergebnis: In minicom pasiert nichts :-(.

Eine Ahnung wo der Fehler liegt?