Como encontrar a porta serial

4

Meu dell dimension 8400 tem uma porta serial na parte de trás. Eu quero usar minicom para interface da porta serial neste computador com o Ubuntu instalado.

A saída de dmesg | grep tty não me deu muita informação útil. Não encontrei nada com a palavra-chave "Serial":

[    0.000000] console [tty0] enabled
[    0.778096] 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.867939] 0000:04:01.0: ttyS5 at I/O 0xcc08 (irq = 17, base_baud = 115200) is a 16450
[    0.868098] 0000:04:01.0: ttyS6 at I/O 0xcc10 (irq = 17, base_baud = 115200) is a 8250
[    0.868246] 0000:04:01.0: ttyS7 at I/O 0xcc18 (irq = 17, base_baud = 115200) is a 16450
[    0.868394] 0000:04:01.0: ttyS8 at I/O 0xcc20 (irq = 17, base_baud = 115200) is a 8250
[    0.868542] 0000:04:01.0: ttyS9 at I/O 0xcc28 (irq = 17, base_baud = 115200) is a 8250
[    1.134731] tty tty36: hash matches

Como posso encontrar a porta serial, para que eu possa fazer interface com meu antigo Controlador de Nó de Terminal com o minicom? Lembro-me da porta serial funcionando muito bem no CentOS com o mesmo sistema.

    
por Skyler 440 03.06.2015 / 04:59

1 resposta

7

A saída de dmesg não é o resultado desejado, você ainda precisa executar o comando:

setserial -g /dev/ttyS[0123456789]

A saída seria como:

/dev/ttyS0, UART: 16550A, Port: 0x03f8, IRQ: 4
/dev/ttyS1, UART: 16550A, Port: 0x1020, IRQ: 18
/dev/ttyS2, UART: unknown, Port: 0x03e8, IRQ: 4
/dev/ttyS3, UART: unknown, Port: 0x02e8, IRQ: 3
....
/dev/ttyS7, UART: unknown, Port: 0x1020, IRQ: 18
/dev/ttyS8, UART: unknown, Port: 0x03e8, IRQ: 4
/dev/ttyS9, UART: unknown, Port: 0x02e8, IRQ: 3

Assim, como mostrado acima, o unkwon UART não é usado para que você possa usar ttyS0 ot ttyS1.

Tente isso no seu sistema e verifique.

Mais se você ainda usa uma versão antiga do Ubuntu & lt; 14.04 você pode usar gtkterm , que é um terminal GTK + simples usado para se comunicar com a porta serial.

sudo apt-get install gtkterm

    
por Maythux 03.06.2015 / 09:04