0
votes

I have created two virtual serial ports on my ubuntu-notebook.

-> sudo socat /dev/ttyUSB7 /dev/ttyUSB8

Now I want to remove the serial ports and the connection between them.

I can't find the command to do that.

http://www.dest-unreach.org/socat/

Thanks!

1
just guessing, /bin/rm -f /dev/ttyUSB7, OR /bin/unlink /dev/ttyUSB7 . Else check man socat and see if there are any likely suspects under the See Also section. Good luck.shellter

1 Answers

0
votes

I also searched through the Internet to find out a solution, but if you want you can permanently remove socket with using "sudo apt-get remove socat" command on ubuntu. this will remove all the virtually created ports.