Re: How Do I Install a Printer
The former penguin.ch, now UnicornRider, solved the issue. Here is the solution...
To cut a long story short: in order to get things going the right way,
you would have to change your system's default shell - which may cause
severe trouble if done wrong (!) - as follows:
# sudo mv /bin/sh /bin/sh.orig
# sudo ln -s /bin/bash /bin/sh
With this done, the installation is supposed to work flawlessly ... if
this is going to fail (which I do not expect to happen), it's "Samsung
support time", finally ... but be that as it may, please do not forget
to "restore default" prior to rebooting the system:
# sudo mv /bin/sh.orig /bin/sh
# ls -l /bin/sh
[blabla] /bin/sh => [/bin/]dash
The former penguin.ch, now UnicornRider, solved the issue. Here is the solution...
To cut a long story short: in order to get things going the right way,
you would have to change your system's default shell - which may cause
severe trouble if done wrong (!) - as follows:
# sudo mv /bin/sh /bin/sh.orig
# sudo ln -s /bin/bash /bin/sh
With this done, the installation is supposed to work flawlessly ... if
this is going to fail (which I do not expect to happen), it's "Samsung
support time", finally ... but be that as it may, please do not forget
to "restore default" prior to rebooting the system:
# sudo mv /bin/sh.orig /bin/sh
# ls -l /bin/sh
[blabla] /bin/sh => [/bin/]dash
Comment