try running the command to start a getty
Code:
su -
(root password)
systemctl start serial-getty@ttyUSB0.service
If that works, you can have it create it for you on every boot
Code:
ln -sf /lib/systemd/system/getty@.service /etc/systemd/system/getty.target.wants getty@ttyUSB0.service
systemctl daemon-reload
systemctl start getty@ttyUSB0.service
Edit:
Forgot to mention that you can also get the status of it after starting it as well:
Code:
systemctl status serial-getty@ttyUSB0.service
Should give you output similar to this:
Code:
serial-getty@ttyUSB0.service - Serial Getty on ttyUSB0
Loaded: loaded (/lib/systemd/system/serial-getty@.service)
Active: active (running) since Tue, 6 March 2012 09:05:55 -0600; 3min 24s ago
Main PID: 1273 (agetty)
CGroup: name=systemd:/system/serial-getty@.service/ttyUSB0
└ 1273 /sbin/agetty -s ttyUSB0 115200 38400 9600