web-dev-qa-db-fra.com

Le statut de Minicom reste hors ligne

J'ai installé minicom à l'aide de la commande suivante:

Sudo apt-get minicom

Je suis connecté au commutateur HP 5130 via un câble de console USB/série. Le nom de mon port série est/dev/ttyUSB0 selon la commande suivante:

dmesg | grep tty
[    0.000000] console [tty0] enabled
[49689.082419] usb 3-2: pl2303 converter now attached to ttyUSB0

Chèque supplémentaire:

ls -l /dev/ttyUSB0 

Si je débranche le câble USB, le message d'erreur suivant s'affiche:

ls: cannot access /dev/ttyUSB0: No such file or directory

Je suppose donc que ttyUSB0 est le bon port

J'ai édité les paramètres de minicom comme suit:

+-----------------------------------------------------------------------+   
| A -    Serial Device      : /dev/ttyUSB0                              |   
| B - Lockfile Location     : /var/lock                                 |   
| C -   Callin Program      :                                           |   
| D -  Callout Program      :                                           |   
| E -    Bps/Par/Bits       : 9600 8N1                                  |   
| F - Hardware Flow Control : Yes                                       |   
| G - Software Flow Control : No                                        |   
|                                                                       |   
|    Change which setting?                                              |   
+-----------------------------------------------------------------------+   

et a commencé minicom

Cependant, je ne reçois aucune sortie sauf celle-ci:

Welcome to minicom 2.7

OPTIONS: I18n 
Compiled on Jan  1 2014, 17:13:22.
Port /dev/ttyUSB0, 15:02:26

Press CTRL-A Z for help on special keys

CTRL-A Z for help | 9600 8N1 | NOR | Minicom 2.7 | VT102 | Offline | ttyUSB0            

Je pense que le problème réside dans le statut hors ligne?

6
Noosrep

Voir cette partie ...

F - Contrôle de flux matériel: Oui

Changez-le en "Non" (ou éteignez ... peu importe) et redémarrez minicom.

3
Skyspy247

Lorsque vous débranchez et rebranchez le périphérique USB, le périphérique devient /dev/ttyUSB1 ou /dev/ttyUSB2 selon le nombre de fois où vous rebranchez le périphérique USB. Essayez de vous connecter avec un autre appareil.

De l'erreur ls: cannot access /dev/ttyUSB0: No such file or directory Je crois que le contrôleur de terminal est remplacé par /dev/ttyUSBX lorsque vous rebranchez le périphérique USB.

0
eetsurt

Juste ls /dev/ttyUSB* puis Sudo minicom -D /dev/ttyUSBx

Vous pouvez également utiliser mon script shell pour ouvrir tous vos minicom dans de nouveaux terminaux:

#!/bin/bash  

open_minicom(){
PORT_IP=2
PORT_IP=$((PORT_IP+$1))
gnome-terminal -t "Minicom port $1 - 192.168.1.$PORT_IP" -x ./tmp_script"$1".sh
#./minicom_PORT.sh "$PORT_NUM"
}

generate_script(){
echo "$1"
PORT_NUM="$1"
PORT_IP=2
PORT_IP=$((PORT_IP+$1))
#gconftool-2 --set /apps/gnome-terminal/profiles/Default/title --type=string "Minicom port $PORT_NUM"
#############################generat script
touch tmp_script"$1".sh
chmod 777 tmp_script"$1".sh
cat <<EOT >> tmp_script"$1".sh
#!/usr/bin/expect -f
spawn Sudo minicom -D /dev/ttyUSB$PORT_NUM -S set_ip"$PORT_IP".sh
expect {
-re ".*sword.*" {
    exp_send "$pass\r"
}
}
interact
EOT
###############################
#open terminal
}

generate_eth(){
PORT_IP=2
PORT_IP=$((PORT_IP+$1))
touch set_ip"$PORT_IP".sh
chmod 777 set_ip"$PORT_IP".sh
cat <<EOT >> set_ip"$PORT_IP".sh
#!/bin/bash
ifconfig eth0 192.168.1.$PORT_IP down up
EOT
}

MY_distractor(){
rm tmp_script*.sh set_ip*.sh
}


#printf "\n$NUM_OF_PORTS\n"
##############################
#             MAIN           #
##############################
NUM_OF_PORTS="$(ls /dev/ttyUSB* | grep -v ^l | wc -l)"
if [ $# -eq 0 ]
  then
    printf "No password arguments supplied\n Plase run ./your_script password \n Exiting......\n" && exit 1;
else
    pass="$1"
fi
if [ "$NUM_OF_PORTS" == "0" ]; then
    printf "Not found any minicom ports\n Exiting......\n" && exit 1;
fi
for (( i=0; i < $NUM_OF_PORTS ; i++ ))
do
    generate_script "$i"
done
echo "$(ls tmp_script*.sh)"
for (( i=0; i < $NUM_OF_PORTS ; i++ ))
do
    generate_eth "$i"
done

for (( i=0; i < $NUM_OF_PORTS ; i++ ))
do
    open_minicom "$i"
done
sleep 1

MY_distractor
0
Amitay Ben Atar