![]() |
2007-09-28
, 13:32
|
|
Posts: 3,096 |
Thanked: 1,525 times |
Joined on Jan 2006
@ Michigan, USA
|
#12
|
![]() |
2007-09-28
, 19:05
|
|
Posts: 1,310 |
Thanked: 820 times |
Joined on Mar 2006
@ Irving, TX
|
#13
|
![]() |
2007-09-29
, 05:15
|
|
Posts: 3,096 |
Thanked: 1,525 times |
Joined on Jan 2006
@ Michigan, USA
|
#14
|
![]() |
2007-10-01
, 12:49
|
|
Posts: 13 |
Thanked: 0 times |
Joined on Jan 2006
|
#15
|
If anyone else knows how to exclude the /usr/share/doc dir from docpurge, please let me know.
# Real hackers don't read docs. rm -rf /usr/share/doc/* /usr/share/man/* /usr/share/info/*
# Real hackers don't read docs. But let CUPS survive them: for dir in /usr/share/doc/* /usr/share/man/* /usr/share/info/*; do case "$dir" in /usr/share/doc/*cups*) ;; *) rm -rf "$dir";; esac done
![]() |
2007-10-01
, 18:49
|
|
Posts: 3,096 |
Thanked: 1,525 times |
Joined on Jan 2006
@ Michigan, USA
|
#16
|
Even more selective - stick with docpurge's current behavior except for CUPS directories:
Open /usr/sbin/docpurge with your favorite text editor (vi, nano, ...). Find the part near its end which reads:
and replace it by:Code:# Real hackers don't read docs. rm -rf /usr/share/doc/* /usr/share/man/* /usr/share/info/*
Code:# Real hackers don't read docs. But let CUPS survive them: for dir in /usr/share/doc/* /usr/share/man/* /usr/share/info/*; do case "$dir" in /usr/share/doc/*cups*) ;; *) rm -rf "$dir";; esac done
![]() |
2007-10-01
, 20:47
|
|
Posts: 2,142 |
Thanked: 2,054 times |
Joined on Dec 2006
@ Sicily
|
#17
|
![]() |
2007-10-01
, 20:48
|
|
Posts: 2,669 |
Thanked: 2,555 times |
Joined on Apr 2007
|
#18
|
![]() |
2007-10-02
, 18:33
|
|
Posts: 3,096 |
Thanked: 1,525 times |
Joined on Jan 2006
@ Michigan, USA
|
#19
|
I've done a deb file of the .tar.gz - it's experimental in the sense it's the first deb I've ever done and might screw up your tablet and your mind :-)
However seems to work for me.
http://www.debernardis.it/n800/cups12_armel.deb
After you install it you have to setup ld.so.conf and issue ldconfig and start the cups daemon as described in the first post of this thread... maybe I should code that inside the deb, but I'm mostly lazy
![]() |
2007-10-03
, 00:20
|
Posts: 82 |
Thanked: 1 time |
Joined on Apr 2006
|
#20
|
Copying the relevant info from that page (remember you have to be root):