[quoted lines by Anders Holmberg on 2013/04/09 at 20:41 +0200] >How do i stop and restart brltty. >Is it the server stop brltty and the server start brltty command?
i'm not sure which system you're using. If you have the service (not server) command, then, yes, it'd be: service stop brltty service start brltty If your system uses systemd, then it'd be: systemctl stop brltty systemctl start brltty If neither of those works, then you may need to use the good old brute force method. To stop brltty, you'd use: pkill -x brltty To restart it, just invoke the brltty command plus any options it needs. To figure out which options you should specify, you need to first (before you kill it) have a look at which options it's currently running with. To do this, use a command like: ps -efw | grep brltty -- Dave Mielke | 2213 Fox Crescent | The Bible is the very Word of God. Phone: 1-613-726-0014 | Ottawa, Ontario | http://Mielke.cc/bible/ EMail: [email protected] | Canada K2A 1H7 | http://FamilyRadio.com/ _______________________________________________ This message was sent via the BRLTTY mailing list. To post a message, send an e-mail to: [email protected] For general information, go to: http://mielke.cc/mailman/listinfo/brltty
