Skip to content

Using Serial Ports In Linux

Published On:
Jan 7, 2014
Last Updated:
Jan 7, 2014

Where Do Serial Ports Show Up In Linux?

Serial ports typically show up as files under the /dev/ folder. They are usually prefixed with tty. Common names include:

ttyUSB0 A common name for a generic USB-to-serial adapter. Most FTDI or Prolific adapters show up with this name.
ttyACM0 Arduinos show up under this name. ACM stands for "Abstract Control Model".
ttyS0 Some UART ports on SoC devices (such as the Xilinx Zynq) show up with this name.

Changing The Permissions On A Serial Port

You can change the permissions for a serial port so you don’t have to keep using sudo by typing:

Terminal window
sudo chmod 666 /dev/ACM0

where /dev/ACM0 is the file corresponding to the serial port you wish to control.

You can permanently change the permissions by adding the user to the group dialout with the following command:

Terminal window
~$ sudo adduser username dialout

which for the current user would just be:

Terminal window
~$ sudo adduser $USER dialout

Note that this depends on the username and dialout group already existing (which is normally the case).

This new permission will not come into effect until the user has logged out and back in again.