This tool is similar to Hyper Terminal, which is by default available on a Microsoft Windows system.
Let's install Minicom:
| #apt-get install minicom |
| #dmesg | grep tty |
[17179573.660000] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
The read and write permissions are required on the /dev/ttyS0 file. The dialout group, which is the default group owner of the file, has already these rights.
You can see it with the following command:
| #ls -la /dev | grep ttyS0 |
If the permissions are not set as above, you can configure them as follow:
| #chown root /dev/ttyS0 #chgrp dialout /dev/ttyS0 #chmod 660 /dev/ttyS0 |
| #adduser your_user dialout |
| #cat /etc/group | grep dialout |
We can now start Minicom:
| #minicom -s |
![]() | ![]() | ![]() | ![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
|
To leave Minicom: Ctlr A -> Z -> X
The default config will be saved as /etc/minicom/minirc.dfl
The next time you want to use Minicom you just have to enter the following command:
| #minicom |
| #minicom -s |
![]() | ![]() | ![]() |
To start Minicom with settings configured on a specific file:
#minicom -s config1









0 comments:
Post a Comment