plustek@linuxhacker.org
plustek@linuxhacker.org
Hi Roger
On Dienstag, 23. September 2003 18:10, Roger Skildum wrote:
[SNIPSNAP]
> OK, since I have it working should I just leave it alone or should I try
> to clean it all up to prevent problems in the future.
Guess this is a good idea - "never change a running system" ;-)
> If I do need to
> get rid of my currently installed sane stuff do I need to just delete
> the sane.d directory's or is there more I need to do?
sane.d only contains the configuration files. The more important files
are the backend libs.
locate sane
should show all stuff installed by sane. I guess that
/usr/local/lib/sane and
/usr/lib/sane
will currently exist on your box...
a small script to cleanup at least all libsane stuff might be this (using
bash as root user):
LIST=$(locate libsane) ; for FILE in $LIST ; do rm -f $FILE ; done
Gerhard
plustek@linuxhacker.org