I don't know much about serial ports, but I can tell you about the command-line tool to add a user to a group. (Maybe you know this already!!) As root, type:
Code:
adduser <some-user-name> <some-group>
then the user 'some-user-name' will now belong to 'some-group'. If you want more info on the command, type 'man adduser'. If you want to find out what groups a user belongs to, type 'groups <some-user-name>'. Again, you can find out about the 'groups' command by typing 'man groups'. When you're looking at a man page, you exit by typing 'q'.
