2021-10-11

Enable USB-to-serial-to-USB direct able connection to you Fedora and many other Linux flavors

/usr /bin/systemctl restart getty\@ttyUSB0

The backslash makes sure the command line uses the @ sign literally.

No comments:

Post a Comment

Script to see network interface connection speed

cat network-speed #!/usr/bin/bash # ethtool enp2s0 | grep Speed ethtool $1 | grep Speed # mii-tool -v enp2s0 mii-tool -v $1   network-speed ...