[gentoo-user] Re: Bandwidth monitor on per service/program basis

2005-11-04 Thread Marc Christiansen
Stuart Howard <[EMAIL PROTECTED]> wrote:
> I am looking to find a tool that will allow me to monitor which
> applications or services are utilising my network and hence bandwidth.
> Now I have found loads of useful tools that can offer me
> representations of the interface but little that breaks it down on a
> time basis and per program basis.
> If anyone has a suggestion of a ready built application it will be
> welcome, prefer it to be console based for ssh [with a nice gui at
> home, if I am being greedy ].

You could try nethogs:

*  net-analyzer/nethogs
  Latest version available: 0.6.0
  Latest version installed: 0.6.0
  Size of downloaded files: 19 kB
  Homepage:http://nethogs.sf.net/
  Description: A small 'net top' tool, grouping bandwidth by process
  License: GPL-1

It's console only, though, so you'll have to reign in your greed ;-)

Marc

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Re: Big problem with module-rebuild

2005-11-07 Thread Marc Christiansen
Holly Bostick <[EMAIL PROTECTED]> wrote:
> .. and that problem is, in short, that the rebuild unmerges the previous
> version, in the currently-running (or previous) kernel modules folder,
> breaking the previous kernel.

Did you check if the files are really gone?

[...]
> |>>> Safely unmerging already-installed instance...
> 
> ==>--- cfgpro obj /lib/modules/2.6.13-gentoo-r4/video/fglrx.ko
> ==>--- cfgpro dir /lib/modules/2.6.13-gentoo-r4/video
> ==>--- cfgpro dir /lib/modules/2.6.13-gentoo-r4
 ^^
The '---' mean that no action was taken and the following word gives the
reason, in this case CONFIG_PROTECT (at least it should be this way and
for me it is).

> This seems to definitely be a bug, but I have not the first clue how to
> submit it, nor what against

If the modules are indeed gone, I'd say it is a bug in emerge or
portage.

> help, help, help and hope 2.6.14 works, because if it doesn't,
> I've got no modules for my previous kernel

For me the switch to 2.6.14 went without much problems and I did use
module-rebuild. My modules are still there for 2.6.13-r5. Most of
the problems were my own fault, I decided to cleanup my kernel config
and deselected too much... Except for a problem with the owner-module
for iptables, it no longer supports cmd-owner, pid-owner or sid-owner
although the help still says it does, you have to look at dmesg to find
out. But this is a minor problem which I'll solve when needed. So,
enough of my ramblings they don't help you.

Marc

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Re: package.keywords/kde

2005-12-12 Thread Marc Christiansen
Ernie Schroder <[EMAIL PROTECTED]> wrote:
> [ebuild UD]   sys-devel/m4-1.4.3 [1.4.4]
> [ebuild UD]   sys-devel/autoconf-wrapper-3-r1 [3.2]
> [nomerge  ] app-admin/perl-cleaner-1.01
> [ebuild UD]   dev-lang/perl-5.8.6-r8 [5.8.7-r2]
> [ebuild UD]sys-devel/libperl-5.8.6-r1 [5.8.7]

The four packages above that portage wants to downgrade are all in ~x86.
Looks like you had ACCEPT_KEYWORDS="~x86" in your /etc/make.conf but
deleted it or you removed the packages from package.keywords. 

Hope that helps,
  Marc

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Re: wget won't concatenate(?)

2006-03-13 Thread Marc Christiansen
maxim wexler <[EMAIL PROTECTED]> wrote:
> Then, because I needed to use the phone, after
> downloading 150Megs or so, I ctrl-C'd outta there
> thinking I could pick up where I left off. Wrong!
> 
> wget wants to start from the beginning. I gave it the
> -nc option and it reports 'already there, not
> retrieving'. 
> 
> What did I do wrong? I've done this before with other
> files and this never happened. Maybe I used a
> different tool, can't remember.

Hi Maxim,

what you did wrong was using '-nc' when you wanted to use '-c' ;). From
wget --help:
|  -nc, --no-clobber  skip downloads that would download to
| existing files.
|  -c,  --continueresume getting a partially-downloaded file.

And why it did work before, maybe you used '-c' and just mis-remembered
the option, or you're right and it was a different tool. Who knows...

AdiaĆ­, Marc

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Re: Why does kdevevelop-3.3.2 depend on the old KDE packages arts-3.4.3, kdelibs-3.4.3-r1 and kdesdk-kioslaves-3.4.3?

2006-04-04 Thread Marc Christiansen
Erik <[EMAIL PROTECTED]> wrote:
> I use KDE 3.5.2 and KDevelop 3.3.2 but it wants me to install some old 
> KDE packages despite that I have "dev-util/kdevelop  ~x86" in 
> /etc/portage/package.keywords. This looks like a bug with the dependencies:
> # emerge -Dpv kdevelop
> 
> These are the packages that would be merged, in order:
> 
> Calculating dependencies... done!
> [ebuild  NS   ] kde-base/arts-3.4.3  USE="alsa arts jack kdeenablefinal 
> mp3 vorbis xinerama -artswrappersuid -debug -esd -hardened -nas" 0 kB
> [ebuild  NS   ] kde-base/kdelibs-3.4.3-r1  USE="alsa arts cups 
> kdeenablefinal kerberos spell ssl xinerama -debug -doc -jpeg2k -openexr 
> -tiff -zeroconf" 0 kB
> [ebuild  N] kde-base/kdesdk-kioslaves-3.4.3  USE="arts 
> kdeenablefinal xinerama -debug -kdexdeltas" 0 kB
> [ebuild   R   ] dev-util/kdevelop-3.3.2  USE="ada arts fortran perl php 
> python ruby sql subversion xinerama -clearcase -cvs -debug -haskell 
> -java -pascal -perforce" 0 kB
> 
> Total size of downloads: 0 kB

It looks like you don't have kde-base/kdesdk-kioslaves in packages.keywords.

HTH
  Marc

PS: Try adding -t (or --tree) to your emerge call. It should show you
that kdesdk-kioslaves is pulling in the other packages.

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Re: Why does kdevevelop-3.3.2 depend on the old KDE packages arts-3.4.3, kdelibs-3.4.3-r1 and kdesdk-kioslaves-3.4.3?

2006-04-06 Thread Marc Christiansen
Erik <[EMAIL PROTECTED]> wrote:
> Marc Christiansen wrote:
>>It looks like you don't have kde-base/kdesdk-kioslaves in packages.keywords.
>>  
>>
> That is right! I had "kde-base/kdebase-kioslaves ~x86" and did not 
> notice that there is another package with a similar name. Now i changed 
> it so I have both kde-base/kde(sdk|base)-kioslaves there.
> 
> 
>>PS: Try adding -t (or --tree) to your emerge call. It should show you
>>that kdesdk-kioslaves is pulling in the other packages.
>>
> Nice feature, thanks.

You're welcome. Glad I could help.

-- 
gentoo-user@gentoo.org mailing list