Would it be possible to have a "standard" package to install a printer as it is done in ACER Aspire One? With my Wife's Acer it was very easy to install our Network printer. Acer OS is debian based. To add a printer in this system is similar to the way we do in windows.
I couldn't find any previous discussion about use cases. It would be good to know why people want to get printing support and what do they actually print from their devices.
May also want to throw in some compression in there...
cat $1 | ssh -C $2 '( lpr )'
Using -C will compress the stream in transit over SSH, it adds some more CPU use on the ITT during the time it sends, but it's likely to shorten the span of time dramatically for printing, since most printing jobs are ASCII heavy and aren't already compressed.
The above uses sshpass which runs ssh (scp is supported too etc) to send the password p!mp to the ssh session which is connecting to the user qwerty12 at the thahustlerz site.
But I need to fix the depends line to change it from ssh to openssh-client | ssh ...
I understand your motivation for writing this, and it's well-meaning of you to make it available to the community.
However, this sets a really example, in that it uses a clear-text password. This is a terrible security practice, even on something like the tablet.
There's an excellent solution to the "problem" of supplying a password to ssh connections, the ssh-agent program. This has several advantages:
1. it's already on the tablet (no additional software required)
2. it's thoroughly tested
3. it's a standard method, available on virtually any platform that has an ssh client
4. it doesn't store a clear-text password and no password is available in the environment strings or system memory (a more serious consideration on a multi-user machine)