On Sat, Jan 25, 2003 at 11:41:38PM -0800, Paul Johnson wrote:
> On Sat, Jan 25, 2003 at 11:45:21AM -0600, Jeffrey L. Taylor wrote:
> > man update-rc.d
> 
> No, wrong.  Just rename the file.  update-rc.d is used for script
> automation.

it's not "wrong". in fact it's more likely to result in a stable
situation down the line.

it's more convoluted, something additional to learn, another
syntax to remember... and more consistent. but it's definitely
not "wrong".

-- 
I use Debian/GNU Linux version 3.0;
Linux server 2.4.20-k6 #1 Mon Jan 13 23:49:14 EST 2003 i586 unknown
 
DEBIAN NEWBIE TIP #116 from Karsten M. Self <[EMAIL PROTECTED]>
:
Wondering WHICH PACKAGE IS USING UP ALL YOUR DISK SPACE?
You can verify a package's installed size with the dpkg -s command:
        dpkg -s <package>
And the following script will grab all your installed packages and show
their installed size, sorted and ranked by size:
        #!/bin/sh
        PATH=/bin:/usr/bin
        time dpkg --get-selections |
        grep '  install' |
        awk '{print $1}' |
        xargs -n 1 dpkg -s |
        egrep '^(Package|Installed-Size):' |
        awk '{printf( "%s:  ", $2 ); getline; printf( "%s\n", $2 )}' |
        sort -k2nr |
        cat -n=20

Also see http://newbieDoc.sourceForge.net/ ...


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to