I want to set up a virtual serial port emulator in Linux. I want the ports to be permanent, so that I can use them every time I restart. I tried using socat for that purpose in this way,
socat -d -d pty,raw,echo=0 pty,raw,echo=0But I often get "port busy" issues during the usage of these VSPs (Virtual Serial Ports) in my test programs. Also, I find it hard to create permanent/persistent VSPs.
I now want to try out tty0tty for my purposes. But I have found little documentation on how to use it. Can anyone enlighten me on this? Please do comment if there are any solutions for socat as well.
1 Answer
Installation
Download the tty0tty package from one of these sources:
clone the repo :
git clone
Extract it:
tar xf tty0tty-1.2.tgzBuild the kernel module from provided source:
cd tty0tty-1.2/module makeCopy the new kernel module into the kernel modules directory:
sudo cp tty0tty.ko /lib/modules/$(uname -r)/kernel/drivers/misc/Load the module:
sudo depmod sudo modprobe tty0ttyYou should see new serial ports in
/dev/(ls /dev/tnt*)Give appropriate permissions to the new serial ports:
sudo chmod 666 /dev/tnt*
You can now access the serial ports as /dev/tnt0 (1,2,3,4 etc)
Note that the consecutive ports are interconnected. For example, /dev/tnt0 and /dev/tnt1 are connected as if using a direct cable.
Persisting across boots
Edit the file /etc/modules (Debian) or /etc/modules.conf
sudo nano /etc/modules.confand add the following line:
tty0ttyWarning
Note that this method will not make the module persist over kernel updates so if you ever update your kernel, make sure you build tty0tty again repeat the process.
If you don't move the module on every kernel update systemctl --failed will return that service systemd-modules-load.service ended "failed". Also on journalctl -xe | grep "Failed to find".