Re: [gentoo-user] open source monitoring on gentoo

2011-06-27 Thread Stefan G. Weichinger

thanks to all for your suggestion.
Still not sure where to turn ...

Stefan



Re: [gentoo-user] Re: WAS [.. min install isos] gentoo vm guest not booting

2011-06-27 Thread Neil Bothwick
On Sun, 26 Jun 2011 19:58:52 -0500, Harry Putnam wrote:

 Anyway, I'm downloading the latest stage3 I found (06/14) I'll explode
 it in a test directory and see whats there.  I've emerged so much
 stuff now on the one I been working on that I hate to bugger it up if
 there is much chance of salvaging it.  All those kernel builds left
 lots of time for emerging all my pet stuff.

All you have to do is create the null and console nodes using the mknod
commands given earlier in this thread. They have to be in dev on the root
filesystem of the install as the are needed before udev is run to
mount /dev/dynamically.


-- 
Neil Bothwick

If bankers can count, how come they have eight windows and only four
tellers?


signature.asc
Description: PGP signature


[gentoo-user] .gvfs breaks my backup scripts - what to do about it?

2011-06-27 Thread Helmut Jarausch
Hi,

I have an annoying problem which I'd like to fix.
Something (probably some Gnome application) repeatedly creates the 
folder
.gvfs  with permissions dr-x-- 2 jarausch users

When I run tar (as root!) I get
tar: ./jarausch/.gvfs: Cannot stat: Permission denied

which sets an error return code for tar or even terminates tar.

What I can do about this?  (I don't run the Gnome desktop, just some
Gnome applications.)

Many thanks for a hint,
Helmut.



Re: [gentoo-user] .gvfs breaks my backup scripts - what to do about it?

2011-06-27 Thread Matthias Krebs
On Mon, Jun 27, 2011 at 11:21 AM, Helmut Jarausch
jarau...@igpm.rwth-aachen.de wrote:
 Hi,

 I have an annoying problem which I'd like to fix.
 Something (probably some Gnome application) repeatedly creates the
 folder
 .gvfs  with permissions dr-x-- 2 jarausch users

 When I run tar (as root!) I get
 tar: ./jarausch/.gvfs: Cannot stat: Permission denied

 which sets an error return code for tar or even terminates tar.

 What I can do about this?  (I don't run the Gnome desktop, just some
 Gnome applications.)

 Many thanks for a hint,
 Helmut.


AFAIK this dir is created by gvfs-mount, which uses fuse. By default
fuse creates its mountpoints / files only with permissons for the user
running it.

You could :
- use tar --exclude (probably the best, since the files are only
temporary mountpoints)
- change the rights of the dir with chown
- try use_allow_other in /etc/fuse.conf



Re: [gentoo-user] .gvfs breaks my backup scripts - what to do about it?

2011-06-27 Thread Helmut Jarausch
Thanks Thanasis and Matthias.
I didn't recognize that .gvfs is a mount point for an sshfs file 
system.

Helmut.



Re: [gentoo-user] [OT] using ffmpeg for screen cast

2011-06-27 Thread Stroller

On 26 June 2011, at 19:54, Mick wrote:
 ...
 ffmpeg -f x11grab -s xga -r 25 -i :0.0 -aspect 4:3 /tmp/out.mpg
 
 but the result is rather blurred as you can see in the attached
 screenshot, when I play it with mplayer.
 ...
 Try passing -sameq
 
 WOW!  Exceptional improvement in a single stroke!  Thanks!  :)
 
 Why is it that ffmpeg degrades the quality with default settings?  What does 
 it assume that the setting is? (sorry for the newbie Qs, but this area is 
 until now outside my cognitive map! ;-)

I don't know about the default settings, but I would interpret the file 
extension of your original command as telling mplayer that the destination 
file should be encoded as mpeg2. This is a pretty poor codec by today's 
standards.

I could well be wrong, though. Do you know what format the output file is?

IMO you're best encoding to h264 (in an mp4 container) for distribution, but I 
think it's possible the encoding load of that might affect your screencast. So 
you might wish to use sameq or the r210 or rawvideo codecs and then transcode 
to h264 (or WebM or whatever) afterwards.

 Now, I hope I'm not getting greedy, but how do I add voice recording to the 
 above stanza?  Or do I have to record voice and then package it along with 
 the 
 video in a container as a separate step?

EXAMPLES
   Video and Audio grabbing 
   FFmpeg can grab video and audio from devices given that you specify the  
   input format and device. 

   ffmpeg -f oss -i /dev/dsp -f video4linux2 -i /dev/video0 
/tmp/out.mpg

   Note that you must activate the right video source and channel before
   launching FFmpeg with any TV viewer such as xawtv
   (http://linux.bytesex.org/xawtv/) by Gerd Knorr. You also have to set  
   the audio recording levels correctly with a standard mixer. 

Audacity is widely used for simple audio editing.

Stroller.




Re: [gentoo-user] zlib and WOFF

2011-06-27 Thread luis jure
on 2011-06-26 at 22:06 Stroller wrote:

This isn't the best fix, IMO. 

i completely agree. by solution i meant a quick and dirty fix that
allowed me in the short term to build lilypond.

IMO the correct fix for this is:

yes, i tried emerging fontforge with the patch you proposed and after that
lilypond compiled OK. thanks!!!


Finally, report your success at bug 367425.

done.

thank you!



Re: [gentoo-user] [OT] using ffmpeg for screen cast

2011-06-27 Thread Mick
On Monday 27 Jun 2011 12:08:17 Stroller wrote:
 On 26 June 2011, at 19:54, Mick wrote:

  Try passing -sameq
  
  WOW!  Exceptional improvement in a single stroke!  Thanks!  :)
  
  Why is it that ffmpeg degrades the quality with default settings?  What
  does it assume that the setting is? (sorry for the newbie Qs, but this
  area is until now outside my cognitive map! ;-)
 
 I don't know about the default settings, but I would interpret the file
 extension of your original command as telling mplayer that the
 destination file should be encoded as mpeg2. This is a pretty poor codec
 by today's standards.
 
 I could well be wrong, though. Do you know what format the output file is?

No, I have no idea.  I assume it is capturing my desktop in some raw video 
format - whatever that means.  What would X11 feed to x11grab?


 IMO you're best encoding to h264 (in an mp4 container) for distribution,
 but I think it's possible the encoding load of that might affect your
 screencast. So you might wish to use sameq or the r210 or rawvideo codecs
 and then transcode to h264 (or WebM or whatever) afterwards.

I changed the output file to mp4 and it transcodes it accordingly!  :)

 ffmpeg -f x11grab -s xga -r 25 -i :0.0 -sameq -aspect 4:3 /tmp/out.mp4
FFmpeg version SVN-r25767, Copyright (c) 2000-2010 the FFmpeg developers
  built on Jan 30 2011 17:04:59 with gcc 4.4.4
  configuration: --prefix=/usr --libdir=/usr/lib64 --shlibdir=/usr/lib64 --
mandir=/usr/share/man --enable-static --enable-shared --cc=x86_64-pc-linux-
gnu-gcc --enable-gpl --enable-version3 --enable-postproc --enable-avfilter --
disable-stripping --disable-debug --disable-doc --disable-network --disable-
static --disable-vdpau --enable-libmp3lame --enable-libvorbis --enable-libx264 
--enable-libxvid --enable-libfaac --enable-nonfree --disable-indev=v4l --
disable-indev=oss --disable-indev=jack --enable-x11grab --disable-outdev=oss 
--enable-libopencore-amrwb --enable-libopencore-amrnb --enable-librtmp --
disable-altivec --cpu=core2 --enable-hardcoded-tables
  libavutil 50.33. 0 / 50.33. 0
  libavcore  0.13. 0 /  0.13. 0
  libavcodec52.96. 0 / 52.96. 0
  libavformat   52.84. 0 / 52.84. 0
  libavdevice   52. 2. 2 / 52. 2. 2
  libavfilter1.62. 0 /  1.62. 0
  libswscale 0.12. 0 /  0.12. 0
  libpostproc   51. 2. 0 / 51. 2. 0
[x11grab @ 0x1a52510] device: :0.0 - display: :0.0 x: 0 y: 0 width: 1024 
height: 768
[x11grab @ 0x1a52510] shared memory extension  found
[x11grab @ 0x1a52510] Estimating duration from bitrate, this may be inaccurate
Input #0, x11grab, from ':0.0':
  Duration: N/A, start: 1309180986.812527, bitrate: 629145 kb/s
Stream #0.0: Video: rawvideo, bgra, 1024x768, 629145 kb/s, 25 tbr, 1000k 
tbn, 25 tbc
[buffer @ 0x1a7db80] w:1024 h:768 pixfmt:bgra
[ffsink @ 0x1a7ddf0] auto-inserting filter 'auto-inserted scaler 0' between 
the filter 'src' and the filter 'out'
[scale @ 0x1a7e110] w:1024 h:768 fmt:bgra - w:1024 h:768 fmt:yuv420p 
flags:0xa004
Output #0, mp4, to '/tmp/out.mp4':
  Metadata:
encoder : Lavf52.84.0
Stream #0.0: Video: mpeg4, yuv420p, 1024x768 [PAR 1:1 DAR 4:3], q=2-31, 
200 kb/s, 25 tbn, 25 tbc
Stream mapping:
  Stream #0.0 - #0.0
Press [q] to stop encoding
frame=   14 fps=  0 q=0.0 size= 702kB time=0.68 bitrate=8454.1kbits/s 
dup=frame=   27 fps= 25 q=0.0 size=1056kB time=1.20 bitrate=7212.1kbits/s 
dup=frame=   40 fps= 25 q=0.0 size=1411kB time=1.72 bitrate=6720.9kbits/s 
dup=
[snip...]


Then it plays it as such:

mplayer /tmp/out.mp4 
MPlayer SVN-r32624-4.4.4 (C) 2000-2010 MPlayer Team

Playing /tmp/out.mp4.
libavformat file format detected.
[lavf] stream 0: video (mpeg4), -vid 0
VIDEO:  [MP4V]  1024x768  24bpp  25.000 fps  5798.3 kbps (707.8 kbyte/s)
Clip info:
 major_brand: isom
 minor_version: 512
 compatible_brands: isomiso2mp41
 encoder: Lavf52.84.0
==
Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
Selected video codec: [ffodivx] vfm: ffmpeg (FFmpeg MPEG-4)
==
Audio: no sound
Starting playback...
Movie-Aspect is 1.33:1 - prescaling to correct movie aspect.
VO: [xv] 1024x768 = 1024x768 Planar YV12 
V:  19.1   0/  0  5%  0%  0.0% 0 0 


Exiting... (End of file)


Not sure how to define the vcodec to be h264.  Is ffodivx the same as h264?


  Now, I hope I'm not getting greedy, but how do I add voice recording to
  the above stanza?  Or do I have to record voice and then package it
  along with the video in a container as a separate step?
 
 EXAMPLES
Video and Audio grabbing
FFmpeg can grab video and audio from devices given that you specify
 the input format and device.
 
ffmpeg -f oss -i /dev/dsp -f video4linux2 -i /dev/video0
 /tmp/out.mpg
 
Note that you must activate the right video source and channel
 before launching FFmpeg with any TV viewer such as xawtv

[gentoo-user] rkhunter --propupd not working since last updates installed

2011-06-27 Thread Tanstaafl
Hello,

I have had rkhunter installed for a long time, been working well, system
was reporting clean...

On Saturday I did an emerge -uDN world and installed the available
updates (not a huge amount), then on Sunday morning, got a report about
6 files whose properties had changed, and I realized I forgot to run
--propupd command, so I did - but got the same email again, so it isn't
working (doesn't reset the files database so that it thinks they are
ok). I still get the same email/message about the same 6 files
properties being changed. I've tried running it 3 times now.

System checks summary
=

File properties checks...
Files checked: 144
Suspect files: 6

and from the log:

myhost : Mon Jun 27, 08:17:17 : ~
 # grep Warn /var/log/rkhunter.log
[08:05:04] Info: Emailing warnings to 'root' using command '/bin/mail -s
[rkhunter] Warnings found for ${HOST_NAME}'
[08:05:30]   /usr/bin/logger [ Warning ]
[08:05:30] Warning: The file properties have changed:
[08:05:38]   /usr/bin/whereis[ Warning ]
[08:05:38] Warning: The file properties have changed:
[08:05:40]   /sbin/fsck  [ Warning ]
[08:05:40] Warning: The file properties have changed:
[08:05:47]   /bin/dmesg  [ Warning ]
[08:05:47] Warning: The file properties have changed:
[08:05:51]   /bin/more   [ Warning ]
[08:05:51] Warning: The file properties have changed:
[08:05:51]   /bin/mount  [ Warning ]
[08:05:51] Warning: The file properties have changed:
myhost : Mon Jun 27, 08:17:25 : ~
 #

Anyone got any idea what could be causing this?



Re: [gentoo-user] [OT] using ffmpeg for screen cast

2011-06-27 Thread Leonardo Guilherme
2011/6/27 Mick michaelkintz...@gmail.com

 On Monday 27 Jun 2011 12:08:17 Stroller wrote:
  On 26 June 2011, at 19:54, Mick wrote:

   Try passing -sameq
  
   WOW!  Exceptional improvement in a single stroke!  Thanks!  :)
  
   Why is it that ffmpeg degrades the quality with default settings?  What
   does it assume that the setting is? (sorry for the newbie Qs, but this
   area is until now outside my cognitive map! ;-)
 
  I don't know about the default settings, but I would interpret the file
  extension of your original command as telling mplayer that the
  destination file should be encoded as mpeg2. This is a pretty poor codec
  by today's standards.
 
  I could well be wrong, though. Do you know what format the output file
 is?

 No, I have no idea.  I assume it is capturing my desktop in some raw video
 format - whatever that means.  What would X11 feed to x11grab?


  IMO you're best encoding to h264 (in an mp4 container) for distribution,
  but I think it's possible the encoding load of that might affect your
  screencast. So you might wish to use sameq or the r210 or rawvideo codecs
  and then transcode to h264 (or WebM or whatever) afterwards.

 I changed the output file to mp4 and it transcodes it accordingly!  :)

  ffmpeg -f x11grab -s xga -r 25 -i :0.0 -sameq -aspect 4:3 /tmp/out.mp4
 FFmpeg version SVN-r25767, Copyright (c) 2000-2010 the FFmpeg developers
  built on Jan 30 2011 17:04:59 with gcc 4.4.4
  configuration: --prefix=/usr --libdir=/usr/lib64 --shlibdir=/usr/lib64 --
 mandir=/usr/share/man --enable-static --enable-shared --cc=x86_64-pc-linux-
 gnu-gcc --enable-gpl --enable-version3 --enable-postproc --enable-avfilter
 --
 disable-stripping --disable-debug --disable-doc --disable-network
 --disable-
 static --disable-vdpau --enable-libmp3lame --enable-libvorbis
 --enable-libx264
 --enable-libxvid --enable-libfaac --enable-nonfree --disable-indev=v4l --
 disable-indev=oss --disable-indev=jack --enable-x11grab
 --disable-outdev=oss
 --enable-libopencore-amrwb --enable-libopencore-amrnb --enable-librtmp --
 disable-altivec --cpu=core2 --enable-hardcoded-tables
  libavutil 50.33. 0 / 50.33. 0
  libavcore  0.13. 0 /  0.13. 0
  libavcodec52.96. 0 / 52.96. 0
  libavformat   52.84. 0 / 52.84. 0
  libavdevice   52. 2. 2 / 52. 2. 2
  libavfilter1.62. 0 /  1.62. 0
  libswscale 0.12. 0 /  0.12. 0
  libpostproc   51. 2. 0 / 51. 2. 0
 [x11grab @ 0x1a52510] device: :0.0 - display: :0.0 x: 0 y: 0 width: 1024
 height: 768
 [x11grab @ 0x1a52510] shared memory extension  found
 [x11grab @ 0x1a52510] Estimating duration from bitrate, this may be
 inaccurate
 Input #0, x11grab, from ':0.0':
  Duration: N/A, start: 1309180986.812527, bitrate: 629145 kb/s
Stream #0.0: Video: rawvideo, bgra, 1024x768, 629145 kb/s, 25 tbr, 1000k
 tbn, 25 tbc
 [buffer @ 0x1a7db80] w:1024 h:768 pixfmt:bgra
 [ffsink @ 0x1a7ddf0] auto-inserting filter 'auto-inserted scaler 0' between
 the filter 'src' and the filter 'out'
 [scale @ 0x1a7e110] w:1024 h:768 fmt:bgra - w:1024 h:768 fmt:yuv420p
 flags:0xa004
 Output #0, mp4, to '/tmp/out.mp4':
  Metadata:
encoder : Lavf52.84.0
Stream #0.0: Video: mpeg4, yuv420p, 1024x768 [PAR 1:1 DAR 4:3], q=2-31,
 200 kb/s, 25 tbn, 25 tbc
 Stream mapping:
  Stream #0.0 - #0.0
 Press [q] to stop encoding
 frame=   14 fps=  0 q=0.0 size= 702kB time=0.68 bitrate=8454.1kbits/s
 dup=frame=   27 fps= 25 q=0.0 size=1056kB time=1.20
 bitrate=7212.1kbits/s
 dup=frame=   40 fps= 25 q=0.0 size=1411kB time=1.72
 bitrate=6720.9kbits/s
 dup=
 [snip...]


 Then it plays it as such:

 mplayer /tmp/out.mp4
 MPlayer SVN-r32624-4.4.4 (C) 2000-2010 MPlayer Team

 Playing /tmp/out.mp4.
 libavformat file format detected.
 [lavf] stream 0: video (mpeg4), -vid 0
 VIDEO:  [MP4V]  1024x768  24bpp  25.000 fps  5798.3 kbps (707.8 kbyte/s)
 Clip info:
  major_brand: isom
  minor_version: 512
  compatible_brands: isomiso2mp41
  encoder: Lavf52.84.0
 ==
 Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
 Selected video codec: [ffodivx] vfm: ffmpeg (FFmpeg MPEG-4)
 ==
 Audio: no sound
 Starting playback...
 Movie-Aspect is 1.33:1 - prescaling to correct movie aspect.
 VO: [xv] 1024x768 = 1024x768 Planar YV12
 V:  19.1   0/  0  5%  0%  0.0% 0 0


 Exiting... (End of file)


 Not sure how to define the vcodec to be h264.  Is ffodivx the same as h264?


   Now, I hope I'm not getting greedy, but how do I add voice recording to
   the above stanza?  Or do I have to record voice and then package it
   along with the video in a container as a separate step?
 
  EXAMPLES
 Video and Audio grabbing
 FFmpeg can grab video and audio from devices given that you
 specify
  the input format and device.
 
 ffmpeg -f oss -i /dev/dsp -f video4linux2 -i /dev/video0
  /tmp/out.mpg
 
 Note that you 

[gentoo-user] Re: WAS [.. min install isos] gentoo vm guest not booting

2011-06-27 Thread Harry Putnam
Mark Knecht markkne...@gmail.com writes:

 I'm very curious - did you happen to try appending something like

 init=/sbin/init 1

 to the boot kernel command and seeing what happens? That might be
 instructive about where it's really getting to or what is stopping it
 from proceeding.

Mark, I rm'ed all of it and created a new vm again.   did all the
steps with /dev and the rest of  normal install.

This time around the vm cannot find any media to boot from although I
created boot and all that with grub etc.

I even added the `init 1' line you suggested... but since the media is
not found when I try to boot into the vm... of course it does nothing.

So, enough time wasted.. I'm sorry to cave on you when you asked for a
result of the init 1 parameter

I don't have any idea where to look for the problem of not finding the
media but probably some kind of pilot error.

I need to get some work done with a vm so going with debian.

Its working now... tarsnap server is ready to be setup for tarsnap.
Done it about 1/2 hour.

I really appreciate your kind patience.. and have kept the thread for
next time I get the urge to create a gentoo vm.  Very good input and
it does not go to waste since I seem to end up trying a gentoo vm
guest every few mnths.

Thanks to Neil as well.  Always appreciate the sharp eyed comments.




Re: [gentoo-user] [OT] using ffmpeg for screen cast

2011-06-27 Thread Mick
On Monday 27 Jun 2011 15:14:28 Leonardo Guilherme wrote:

 This link was very helpful to me, maybe it can be to you:
 
 http://verb3k.wordpress.com/2010/01/26/how-to-do-proper-screencasts-on-linu
 x/

This is excellent info.  Just what I was looking for, with a lot of detailed 
explanation and examples too.  Thanks for sharing!
-- 
Regards,
Mick


signature.asc
Description: This is a digitally signed message part.


Re: [gentoo-user] Re: WAS [.. min install isos] gentoo vm guest not booting

2011-06-27 Thread Mark Knecht
On Mon, Jun 27, 2011 at 7:16 AM, Harry Putnam rea...@newsguy.com wrote:
 Mark Knecht markkne...@gmail.com writes:

 I'm very curious - did you happen to try appending something like

 init=/sbin/init 1

 to the boot kernel command and seeing what happens? That might be
 instructive about where it's really getting to or what is stopping it
 from proceeding.

 Mark, I rm'ed all of it and created a new vm again.   did all the
 steps with /dev and the rest of  normal install.

 This time around the vm cannot find any media to boot from although I
 created boot and all that with grub etc.

 I even added the `init 1' line you suggested... but since the media is
 not found when I try to boot into the vm... of course it does nothing.

 So, enough time wasted.. I'm sorry to cave on you when you asked for a
 result of the init 1 parameter


No apologies necessary.

 I don't have any idea where to look for the problem of not finding the
 media but probably some kind of pilot error.

 I need to get some work done with a vm so going with debian.

 Its working now... tarsnap server is ready to be setup for tarsnap.
 Done it about 1/2 hour.

 I really appreciate your kind patience.. and have kept the thread for
 next time I get the urge to create a gentoo vm.  Very good input and
 it does not go to waste since I seem to end up trying a gentoo vm
 guest every few mnths.

 Thanks to Neil as well.  Always appreciate the sharp eyed comments.


As a follow-up to your problems, and because I'm just plain interested
in this /dev/null,console question, I decided to create a completely
new Gentoo VM myself from scratch this morning. I'm going FAR more
slowly than usual as, like you, I need to get other things done. Also
that I'd like to understand what the tarball does actually provide,
and also when everything in /dev really comes together correctly. (If
indeed it does come together correctly.)

I'll post back how it's going. My first observation is that the stage3
tarball only provides /dev/null as a normal file and nothing else. I
would guess that this is incorrect as I would think that if the normal
file is there then the special file won't get created later.  I've
never studied how the /dev directory gets created so this will be a
learning experience for me.

As for having to get some work done, I completely understand. Just
don't give up on us here in Gentoo land, be we real OR virtual...

Cheers,
Mark



[gentoo-user] Re: no cdrom (IDE)

2011-06-27 Thread Alexey Mishustin
6/26/2011, walt w41...@gmail.com вы писали:

I assume it's connected to a PATA disk controller like my dvd player is?

#lspci -k   [output edited]
00:11.1 IDE interface: VIA Technologies, Inc. 
VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE (rev 06)
Subsystem: VIA Technologies, Inc. 
 VT82C586/B/VT82C686/A/B/VT8233/A/C/VT8235 PIPC Bus Master IDE
Kernel driver in use: pata_via

Here is the output of my lspci -k:

00:00.0 Host bridge: Intel Corporation 4 Series Chipset DRAM Controller
(rev 03)
Subsystem: ASUSTeK Computer Inc. Device 82d3
00:01.0 PCI bridge: Intel Corporation 4 Series Chipset PCI Express Root
Port (rev 03)
Kernel driver in use: pcieport
00:1a.0 USB Controller: Intel Corporation 82801JI (ICH10 Family) USB UHCI
Controller #4
Subsystem: ASUSTeK Computer Inc. Device 82d4
Kernel driver in use: uhci_hcd
Kernel modules: uhci-hcd
00:1a.1 USB Controller: Intel Corporation 82801JI (ICH10 Family) USB UHCI
Controller #5
Subsystem: ASUSTeK Computer Inc. Device 82d4
Kernel driver in use: uhci_hcd
Kernel modules: uhci-hcd
00:1a.2 USB Controller: Intel Corporation 82801JI (ICH10 Family) USB UHCI
Controller #6
Subsystem: ASUSTeK Computer Inc. Device 82d4
Kernel driver in use: uhci_hcd
Kernel modules: uhci-hcd
00:1a.7 USB Controller: Intel Corporation 82801JI (ICH10 Family) USB2
EHCI Controller #2
Subsystem: ASUSTeK Computer Inc. Device 82d4
Kernel driver in use: ehci_hcd
Kernel modules: ehci-hcd
00:1b.0 Audio device: Intel Corporation 82801JI (ICH10 Family) HD Audio
Controller
Subsystem: ASUSTeK Computer Inc. Device 837a
Kernel driver in use: HDA Intel
Kernel modules: snd-hda-intel
00:1c.0 PCI bridge: Intel Corporation 82801JI (ICH10 Family) PCI Express
Root Port 1
Kernel driver in use: pcieport
00:1c.5 PCI bridge: Intel Corporation 82801JI (ICH10 Family) PCI Express
Root Port 6
Kernel driver in use: pcieport
00:1d.0 USB Controller: Intel Corporation 82801JI (ICH10 Family) USB UHCI
Controller #1
Subsystem: ASUSTeK Computer Inc. Device 82d4
Kernel driver in use: uhci_hcd
Kernel modules: uhci-hcd
00:1d.1 USB Controller: Intel Corporation 82801JI (ICH10 Family) USB UHCI
Controller #2
Subsystem: ASUSTeK Computer Inc. Device 82d4
Kernel driver in use: uhci_hcd
Kernel modules: uhci-hcd
00:1d.2 USB Controller: Intel Corporation 82801JI (ICH10 Family) USB UHCI
Controller #3
Subsystem: ASUSTeK Computer Inc. Device 82d4
Kernel driver in use: uhci_hcd
Kernel modules: uhci-hcd
00:1d.7 USB Controller: Intel Corporation 82801JI (ICH10 Family) USB2
EHCI Controller #1
Subsystem: ASUSTeK Computer Inc. Device 82d4
Kernel driver in use: ehci_hcd
Kernel modules: ehci-hcd
00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev 90)
00:1f.0 ISA bridge: Intel Corporation 82801JIB (ICH10) LPC Interface
Controller
Subsystem: ASUSTeK Computer Inc. Device 82d4
00:1f.2 IDE interface: Intel Corporation 82801JI (ICH10 Family) 4 port
SATA IDE Controller #1
Subsystem: ASUSTeK Computer Inc. Device 82d4
Kernel driver in use: ata_piix
Kernel modules: ata_piix
00:1f.3 SMBus: Intel Corporation 82801JI (ICH10 Family) SMBus Controller
Subsystem: ASUSTeK Computer Inc. Device 82d4
Kernel modules: i2c-i801
00:1f.5 IDE interface: Intel Corporation 82801JI (ICH10 Family) 2 port
SATA IDE Controller #2
Subsystem: ASUSTeK Computer Inc. Device 82d4
Kernel driver in use: ata_piix
Kernel modules: ata_piix
01:00.0 VGA compatible controller: nVidia Corporation G92 [GeForce 9800
GT] (rev a2)
Subsystem: ASUSTeK Computer Inc. Device 8319
Kernel driver in use: nouveau
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd.
RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 02)
Subsystem: ASUSTeK Computer Inc. Device 8367
Kernel driver in use: r8169
Kernel modules: r8169

If I understand well, dvd-player should be connected to one of the two
ata_piix IDE interfaces? My motherboard is ASUS P5Q SE2.

--
Regards,
Alex



Re: [gentoo-user] open source monitoring on gentoo

2011-06-27 Thread Mick
On Monday 27 Jun 2011 08:45:06 Stefan G. Weichinger wrote:
 thanks to all for your suggestion.
 Still not sure where to turn ...
 
 Stefan

We can't know which one may best match your needs/expectations/preferences.  
You can spend some time looking at their documentation to get an understanding 
of how difficult it may be to configure them and then play with their online 
demos to experience the touch  feel of each.

Then install the one that best matches your requirements and if your don't 
like it enough install the second best and so on.  If you are prepared to get 
your hands dirty you can somewhat customise the look and feel (e.g. using 
CSS), but the monitoring engine is what will provide you with the necessary 
functionality.

Personally, I ended up using Nagios because at the time it had a load of 
plugins that others did not.  Once I spent a lot of time installing graphing 
engines and configuring it, I had invested too much time to ditch it and try 
something different.

Thankfully, you can start afresh your quest and evaluate how each of these 
tools meets your requirements.

HTH.
-- 
Regards,
Mick


signature.asc
Description: This is a digitally signed message part.


[gentoo-user] OT: kernel parameters

2011-06-27 Thread Peter Humphrey
Hello list,

Some time ago I saw a comment in a kernel config help page saying to enable 
this option if unexplained, random lockups occurred. I didn't need to do 
that for Gentoo, but every other distro I've tried locks up after a random 
interval - even the latest Fedora 15. I suspect I have a chipset problem, 
but Gentoo runs happily with it so there must be a config option of some 
kind.

Can anyone point me to the parameter concerned? I can't find it with grep.

-- 
Rgds
Peter



Re: [gentoo-user] open source monitoring on gentoo

2011-06-27 Thread 4k3nd0

On 06/27/2011 06:33 PM, Mick wrote:

On Monday 27 Jun 2011 08:45:06 Stefan G. Weichinger wrote:

thanks to all for your suggestion.
Still not sure where to turn ...

Stefan


We can't know which one may best match your needs/expectations/preferences.
You can spend some time looking at their documentation to get an understanding
of how difficult it may be to configure them and then play with their online
demos to experience the touch  feel of each.

Then install the one that best matches your requirements and if your don't
like it enough install the second best and so on.  If you are prepared to get
your hands dirty you can somewhat customise the look and feel (e.g. using
CSS), but the monitoring engine is what will provide you with the necessary
functionality.

Personally, I ended up using Nagios because at the time it had a load of
plugins that others did not.  Once I spent a lot of time installing graphing
engines and configuring it, I had invested too much time to ditch it and try
something different.

Thankfully, you can start afresh your quest and evaluate how each of these
tools meets your requirements.

HTH.

I agree with you, Nagios is just amazing.

Greeting's 4k3nd0



Re: [gentoo-user] OT: kernel parameters

2011-06-27 Thread Alan McKinnon
On Monday 27 June 2011 17:57:00 Peter Humphrey did opine thusly:
 Hello list,
 
 Some time ago I saw a comment in a kernel config help page saying to
 enable this option if unexplained, random lockups occurred. I
 didn't need to do that for Gentoo, but every other distro I've
 tried locks up after a random interval - even the latest Fedora 15.
 I suspect I have a chipset problem, but Gentoo runs happily with it
 so there must be a config option of some kind.
 
 Can anyone point me to the parameter concerned? I can't find it with
 grep.

Could be several things, the latest one to hit /. is

pcie_aspm=force

http://linux.slashdot.org/story/11/06/27/0459252/Nailing-the-Cause-of-
Recent-Linux-Power-
Issues?utm_source=feedburnerutm_medium=feedutm_campaign=Feed%3A+Slashdot%2Fslashdot+%28Slashdot%29

Or, you could grep the Makefile[1] for lockups.

[1] Not sure if it's really in the Makefile or somewhere else


-- 
alan dot mckinnon at gmail dot com



Re: [gentoo-user] open source monitoring on gentoo

2011-06-27 Thread Alan McKinnon
On Monday 27 June 2011 17:33:45 Mick did opine thusly:
 On Monday 27 Jun 2011 08:45:06 Stefan G. Weichinger wrote:
  thanks to all for your suggestion.
  Still not sure where to turn ...
  
  Stefan
 
 We can't know which one may best match your
 needs/expectations/preferences. You can spend some time looking at
 their documentation to get an understanding of how difficult it may
 be to configure them and then play with their online demos to
 experience the touch  feel of each.
 
 Then install the one that best matches your requirements and if your
 don't like it enough install the second best and so on.  If you are
 prepared to get your hands dirty you can somewhat customise the
 look and feel (e.g. using CSS), but the monitoring engine is what
 will provide you with the necessary functionality.
 
 Personally, I ended up using Nagios because at the time it had a
 load of plugins that others did not.  Once I spent a lot of time
 installing graphing engines and configuring it, I had invested too
 much time to ditch it and try something different.
 
 Thankfully, you can start afresh your quest and evaluate how each of
 these tools meets your requirements.

We're going through the same research nightmare. Our conclusions:

1. Nothing out there just does everything a large network would really 
want.
2. Some projects have very stable code but not much plugins, others 
have lots of plugins but the dev model leads to unstable code
3. Monitoring is NOT off the shelf, it is highly bespoke
4. Regardless of what you choose you will go through X effort to get 
it going and Y effort to get it to do what you want. The value is Y is 
amazingly similar regardless of the project (given that the starting 
code is at least somewhat mature).

iow, your comments are right on the money, that is indeed how to do 
it.


-- 
alan dot mckinnon at gmail dot com



[gentoo-user] Re: OT: kernel parameters

2011-06-27 Thread Remy Blank
Peter Humphrey wrote:
 Can anyone point me to the parameter concerned? I can't find it with grep.

Could it be CONFIG_DETECT_SOFTLOCKUP?

-- Remy



signature.asc
Description: OpenPGP digital signature


Re: [gentoo-user] zlib and WOFF

2011-06-27 Thread Stroller

On 27 June 2011, at 13:21, luis jure wrote:
 ...
 yes, i tried emerging fontforge with the patch you proposed and after that
 lilypond compiled OK. thanks!!!
 
 Finally, report your success at bug 367425.
 
 done.

Thanks!

Did you try Lilypond 2.14.1?

If so it'd be great if you could report success at bug 370273.
https://bugs.gentoo.org/show_bug.cgi?id=370273

Stroller.





[gentoo-user] Re: gcc ebuild is hogging CPU?

2011-06-27 Thread walt
On 06/26/2011 12:56 PM, walt wrote:
 Anyone emerged gcc lately?  I've been doing it all day (it seems)
 so I finally used top to see if something besides gcc is using cpu.
 
 Sure enough, emerge is constantly using 50% cpu while the compiler
 is using the other half.

Well, so far I've tracked the problem down to enabling the graphite
useflag while emerging =gcc-4.4.x.  Disabling the graphite useflag
returns the cpu usage to normal while emerging gcc.

Could I ask some kind geek to try enabling the graphite useflag and
then to begin emerging gcc, please?  You don't need to sit through
the whole emerge -- five minute is more than enough to confirm this
bug if you see it too.

Just run top while emerging gcc and see who uses most cpu (after the
sources are bunzipped and the configure scripts have started running.)

Many thanks.




[gentoo-user] Re: no cdrom (IDE)

2011-06-27 Thread walt
On 06/27/2011 09:28 AM, Alexey Mishustin wrote:
 
 Here is the output of my lspci -k:
 
 SATA IDE Controller #1
   Subsystem: ASUSTeK Computer Inc. Device 82d4
   Kernel driver in use: ata_piix
   Kernel modules: ata_piix
 SATA IDE Controller #2
   Subsystem: ASUSTeK Computer Inc. Device 82d4
   Kernel driver in use: ata_piix
   Kernel modules: ata_piix
 
 If I understand well, dvd-player should be connected to one of the two
 ata_piix IDE interfaces? My motherboard is ASUS P5Q SE2.

My hardware is several years older than yours, so my knowledge is obsolete :(

My dvd player uses the old flat-ribbon cable (5 cm wide) attached to an old
PATA controller plug, so naturally I need a PATA kernel driver to use the dvd
drive.

Does your dvd drive use a new (small) SATA cable to connect to the motherboard?

If the answer is yes, then your understanding is correct, and your kernel 
*should*
be announcing your dvd hardware in dmesg.

Are you sure the cables are connected properly to the dvd drive?  Are the lights
on the dvd drive blinking normally during boot?

I'm still trying to separate hardware/driver problems from udev problems.




Re: [gentoo-user] [OT virtual stuff] gentoo vm appliance

2011-06-27 Thread James Wall
Albert,
Thanks for sharing the guest image. I have gotten it installed on my
virtualbox to allow me to experiment with it. Thanks again for sharing
your work.

James Wall
--
No trees were harmed in the sending of this message. However, a large
number of electrons were terribly inconvenienced.



[gentoo-user] Firefox

2011-06-27 Thread Daniel D Jones
Can anyone explain why it takes so long for Firefox-bin to be unmasked?  
That's not intended to be a rant or finger-pointing, but a serious question.  I 
can certainly understand the issues involved with ensuring that a complex 
package compiles on various systems with all sorts of different drivers and 
set-ups.  But the -bin package is a precompiled binary that's merely 
installed.  It seems like it should be pretty simple and straightforward to 
ensure that it works and unmask it.

Firefox just released 5.0 and announced that all development, including bug 
fixes and security updates, had halted on 4.0.  They plan to hold to similar 
short-release cycles in the future.  It's been four months since 4.0 was 
released and it's still masked.  If future releases see similar delays in 
unmasking, Gentoo users will soon be two or three versions behind.  We'll be 
forced to either manually install, unmask the masked package, or run a 
potentially buggy, insecure version.  Any insight into the delay of unmasking 
the binary verion that would help me understand the issue greatly appreciated.

-- 
It seems to me that it is madder never to abandon one's self than often to be 
infatuated; better to be wounded, a captive and a slave, than always to walk 
in armor. - Margaret Fuller



Re: [gentoo-user] cups 1.3 - 1.4 no more avahi?

2011-06-27 Thread Michael George
On Sun, Jun 26, 2011 at 11:31:36AM +0100, Stroller wrote:
 
 On 26 June 2011, at 04:42, Michael George wrote:
 
  I upgraded cups to 1.4.6 today and my Macs could no longer print to it.
  ?
  
  I'm not sure what I'm missing for the Macs to be happy like they were
  with 1.3 and avahi.
 
 Version of CUPS on your Mac?
 
 http://localhost:631/

1.4.7.  I have Show printers shared by other systems enabled.  I
notice that there is no more avahi USE flag for 1.4.  I had that enabled
for 1.3 and the Macs found the printer automagically.

Thank you!

-- 
-M

There are 10 kinds of people in this world:
Those who can count in binary and those who cannot.




Re: [gentoo-user] Firefox

2011-06-27 Thread Albert Hopkins


On Monday, June 27 at 19:52 (-0400), Daniel D Jones said:

 Can anyone explain why it takes so long for Firefox-bin to be unmasked?  
[etc.]

Have you gone to bugs.gentoo.org and submitted a stabilization request?




Re: [gentoo-user] [OT virtual stuff] gentoo vm appliance

2011-06-27 Thread Albert Hopkins


On Monday, June 27 at 18:47 (-0500), James Wall said:

 Albert,
 Thanks for sharing the guest image. I have gotten it installed on my
 virtualbox to allow me to experiment with it. Thanks again for sharing
 your work.

Cool, now I at least know it works with vmware and virtualbox.

I will probably be uploading updated images every few days or so.

-a





[gentoo-user] VLC: Blackouts...

2011-06-27 Thread meino . cramer
Hi,

wgen watching television (DVB-T) with vlc it ofen happens, that vlc
forgets that there is something to display. For example: When screen
aspect changes if the commercials ends and the program is proceeded.
Or between scene changes or sometimes when there seems no reason
at all...
Soetime the period of the blackout is that long, that vlc displays
its inital scene.
It is very annoying and I have no clue, what the reason is for that... 
Kaffeine does not show this problem ... 

Is there any trick to avoi dthat problem?

Thank you very much in advance for any help !
Best regards,
mcc




Re: [gentoo-user] [OT virtual stuff] gentoo vm appliance

2011-06-27 Thread James Wall
On Mon, Jun 27, 2011 at 7:46 PM, Albert Hopkins mar...@letterboxes.org wrote:


 On Monday, June 27 at 18:47 (-0500), James Wall said:

 Albert,
 Thanks for sharing the guest image. I have gotten it installed on my
 virtualbox to allow me to experiment with it. Thanks again for sharing
 your work.

 Cool, now I at least know it works with vmware and virtualbox.
Just for clarification and in case anyone else needs help with this,
the steps I followed in Virtualbox were as follows:
1. Create a new VM and select to add an existing disk image. I
navigated to the uncompressed file and selected it.
2. I then went into the properties of the VM and changed the
controller type to SCSI and readded the disk image.
Since I quickly realized I wanted more space to use as my
distfiles/portage server for my network, I then ran
3. VBoxManage clonehd /path/to/base-dist.vmdk /path/to/base-dist.vdi
--format VDI ; VBoxManage modifyhd /path/to/base-dist.vdi --resize
102400
4. I then went into the settings and selected the new image to have
the disk space available and partitioned the drive with the new space
set aside for /usr/portage/
 I will probably be uploading updated images every few days or so.

 -a




Hope this is useful.
James
--
No trees were harmed in the sending of this message. However, a large
number of electrons were terribly inconvenienced.