Re: [gentoo-user] Linux design software recommendations

2006-03-26 Thread Christoph Eckert

> Does anyone have any recommendations for something similar to what
> I'm describing, or had success with other software that can do some
> of what I want?

there's no professional CAD for linux, especially for woodworking:
http://www.ribbonsoft.com/de/qcad.html

A commercial solution is VariCAD, but it's mainly for the engineering 
market.

Besides xfig, there's qcad, a simple 2D only CAD system. You can even 
try Inkscape CVS which supports snapping to object borders and edges.

There has been a specialized woodworking CAD called LignumCAD, but the 
author stopped some years ago due to some "real life" circumstances. 
See lingunmcad.sf.net for details. It's 3D, uses openGL for rendering 
and mainly consists of a set of parametric objects.


Best regards


ce
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] In search of two applikations

2006-03-26 Thread Christoph Eckert

>  Is there any backup tool, which simply copies the contents of one
>  partition, which is larger than one DVD, to DVDs "as plain as
>  possible" -- means copies the contents that way, that I simply can
>  mount DVD #n and can easily read and copy the contents?

dar.sf.net.


Best regards


ce

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] DNS Expert Required

2006-03-26 Thread Hiren Dave
Hi,
There are two DNS server in my local network.
server1.guru.com (192.168.0.2)  Primary DNS Serverserver2.guru.com (192.168.0.3
)  Secondary DNS Server
=> Here is my configuration file for server1.guru.com machine.
###/etc/resolve.conf##domain guru.comsearch server1.guru.com 
server2.guru.comnameserver 192.168.0.2nameserver 192.168.0.3##/var/named/chroot/etc/named.conf##
options { directory "/var/named"; dump-file "/var/named/data/cache_dump.db"; statistics-file "/var/named/data/named_stats.txt"; allow-transfer { 
192.168.0.3; 192.168.0.1; }; allow-query { 192.168.0.0/24; localhost; }; allow-recursion { 192.168.0.0/24
; localhost; };};
controls { inet 127.0.0.1 allow { localhost; } keys { rndckey; };};
logging { category dnssec  { security_log; }; category update  { security_log; }; category security { security_log; };
 channel security_log {  file "/var/named/dns-security.log" versions 5 size 20m;  print-time yes;  print-category yes;  print-severity yes;  severity info; };  };
//Root server hintszone "." IN {  type hint; file "named.ca";};
zone "localhost" IN { type master; file "localhost.zone";};
zone "0.0.127.in-addr.arpa" IN { type master; file "127.0.0.zone";};
acl "dhcp-clients" { 192.168.0/24;};
key rndckey { algorithm hmac-md5;    secret "OhoyIvQSE0MULVwlAXJom24RnpFUMhXdwihJHkECEBUQd9MKz0qcHKMphT8o";};
zone "server1.guru.com" IN { type master; file "server1.guru.com.zone";  allow-query { any; }; allow-update { key rndckey; };};
zone "0.168.192.in-addr.arpa" IN { type master; file "0.168.192.zone"; allow-query { any; }; allow-update { key rndckey; };};
#include "/etc/rndc.key";#/var/named/chroot/var/named/server1.guru.com.zone##$TTL 86400@ IN SOA 
server1.guru.com. root.server1.guru.com. (1  ; serial300    ; refresh (5 minutes)10 ; retry (10 seconds)86400  ; expire (1 day)
600    ; minimum (10 minutes))
@ IN NS server1.guru.com.@ IN MX 10 server1.guru.com.
server1.guru.com. IN A 192.168.0.2server2.guru.com. IN A 192.168.0.3
win2k.guru.com.  IN A 192.168.0.1
www1   CNAME server1.guru.com.www2   CNAME server2.guru.com.www3   CNAME win2k.guru.com.
server2 IN MX 0 server1.guru.com.win2k IN MX 0 server1.guru.com.##
###/var/named/chroot/var/named/0.168.192.zone#$TTL 86400@ IN SOA server1.guru.com. root.server1.guru.com
. (0  ; serial300    ; refresh (5 minutes)60 ; retry (1 minute)86400  ; expire (1 day)600    ; minimum (10 minutes))
@ IN  NS server1.guru.com.
2.0.168.192.in-addr.apra. IN PTR server1.guru.com.1.0.168.192.in-addr.arpa. IN PTR win2k.guru.com.3.0.168.192.in-addr.arpa. IN PTR 
server2.guru.com.##

=> Here is my configuration file for server2.guru.com machine.
###/etc/resolve.conf##domain guru.comsearch server1.guru.com 
server2.guru.comnameserver 192.168.0.2nameserver 192.168.0.3##/var/named/chroot/etc/named.conf##
options { directory "/var/named"; dump-file "/var/named/data/cache_dump.db"; statistics-file "/var/named/data/named_stats.txt"; allow-transfer { none; }; allow-query { 
192.168.0.0/24; localhost; }; allow-recursion { 192.168.0.0/24; localhost; };};
controls { inet 127.0.0.1 allow { localhost; } keys { rndckey; };};
//Root server hintszone "." IN {  type hint; file "named.ca";};
zone "localhost" IN { type master; file "localhost.zone";};
zone "0.0.127.in-addr.arpa" IN { type master; file "127.0.0.zone";};
zone "server1.guru.com" IN { type slave; file "server1.guru.com.zone"; masters { 192.168.0.2; }; allow-query { any; };
};
zone "0.168.192.in-addr.arpa" IN { type slave; file "0.168.192.zone"; masters { 192.168.0.2; }; allow-query { any; };};
#include "/etc/rndc.key";#/var/named/chroot/var/named/server1.guru.com.zone##$ORIGIN 
guru.com.$TTL 86400 ; 1 dayserver1   IN SOA server1 root.server1 (1  ; serial300    ; refresh (5 minutes)10 ; retry (10 seconds)86400  ; expire (1 day)
600    ; minimum (10 minutes))   NS server1   A 192.168.0.2   MX 0 server1   MX 10 server1$ORIGIN server1.guru.com
.server1   MX 0 server1.guru.com.server2   MX 0 server1.guru.com.win2k   MX 0 server1.guru.com.
www1   CNAME server1.guru.com.www2   CNAME server2.guru.com.www3   CNAME win2k.guru.com.$ORIGIN 
guru.com.server2   A 192.168.0.3   MX 10 server1win2k 

[gentoo-user] Sendmail null client

2006-03-26 Thread Hiren Dave
Hi,
Can any body tell me how to configure client sendmail to use mail hub.I've tried to do this by nullclient feature and its also working butthe problem is that the client is first trying 
127.0.0.1 which givesmessage "Differed: connection refused by 127.0.0.1" and than after sometimes I receive mail from client.
TnRHiren


Re: [gentoo-user] OT - Weird cdrom issue

2006-03-26 Thread Neil Bothwick
On Sat, 25 Mar 2006 15:45:34 -0800, darren kirby wrote:

> > Hey guys, this is 2006. We don't need fstab entries for CD-ROM or any
> > other removable drives!
> 
> I'm old school. I've mounted everything manually since the beginning.
> New fangled software like udev and dbus frighten and confuse me. Don't
> make me grab some torches and pitchforks...

I'm really old school, from the days when new things were considered
interesting, exciting and fun; not something to be afraid of.

Being afraid of the dark is understandable, being afraid of the light is
tragic :-O


-- 
Neil Bothwick

NOTE: The most fundamental particles in your computer are held together
by a "glueing" force about which little is known and whose adhesive power
cannot therefore be permanently guaranteed.


signature.asc
Description: PGP signature


Re: [gentoo-user] In search of two applikations

2006-03-26 Thread Neil Bothwick
On Sun, 26 Mar 2006 07:32:45 +0200 (CEST), Meino Christian Cramer wrote:

>  Second one:
>  Is there any backup tool, which simply copies the contents of one
>  partition, which is larger than one DVD, to DVDs "as plain as
>  possible" -- means copies the contents that way, that I simply can
>  mount DVD #n and can easily read and copy the contents?

Search the list archives, this came up very recently. i think the program
recommended was scdbackup.

Note that backing up to DVD/CD file by file will destroy file
permissions. I prefer to use squashfs to create a compressed copy of the
filesystem and copy that to DVD. then I can mount it and copy files back
without losing permissions.


-- 
Neil Bothwick

Ultimate memory manager; Windows, it manages to use it all..


signature.asc
Description: PGP signature


Re: [gentoo-user] GUI installer freezes, hard drive problem?

2006-03-26 Thread Norman Rieß

Grant schrieb:


I'm trying to run the Gentoo GUI installer on a desktop of mine from
the 2006.0 LiveCD.  It freezes as soon as I click "Forward" to go to
the "Partitioning" section.  How can I figure out what's going on?  Is
there a test I can run on the hard drive to see if there's a hardware
problem causing this?  Windows 98 is installed on it right now.

- Grant

 

The installer seems "a little" unstable. Some users call it 
not-working-crap, others really have succeeded in installing a system. 
Try the normal installation. There is a really nice installation-manual 
available on gentoo.org.


Norman
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] can't compile audacity

2006-03-26 Thread Zac Slade
On Saturday 25 March 2006 06:31, Tamas Sarga wrote:
> Hi,
>
> I use -gtk2 -unicode wxgtk1 use flags and wxGTK-2.4.2-r4 and wxGTK-2.6.1
> . It works for me on x86 with audacity-1.2.1 .
> The error message
> (/usr/lib/gcc/i686-pc-linux-gnu/3.4.4/../../../libwx_gtk2-2.4.so) hint,
> that it tries to use gtk2 for the compilation.
Is this on x86_64

here is my output from emerge -av audacity (using 2005.1 profile):

ebuild   R   ] media-sound/audacity-1.2.4b-r1  USE="encode mad vorbis" 4,394kB

What gtk use flag are you talking about???  I don't have one.
-- 
Zac Slade
[EMAIL PROTECTED]
ICQ:1415282 YM:krakrjak AIM:ttyp99
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] can't compile audacity

2006-03-26 Thread Martins Steinbergs
On Sunday 26 March 2006 11:50, Zac Slade wrote:
> On Saturday 25 March 2006 06:31, Tamas Sarga wrote:
> > Hi,
> >
> > I use -gtk2 -unicode wxgtk1 use flags and wxGTK-2.4.2-r4 and wxGTK-2.6.1
> > . It works for me on x86 with audacity-1.2.1 .
> > The error message
> > (/usr/lib/gcc/i686-pc-linux-gnu/3.4.4/../../../libwx_gtk2-2.4.so) hint,
> > that it tries to use gtk2 for the compilation.
>
> Is this on x86_64
>
> here is my output from emerge -av audacity (using 2005.1 profile):
>
> ebuild   R   ] media-sound/audacity-1.2.4b-r1  USE="encode mad vorbis"
> 4,394kB
>
> What gtk use flag are you talking about???  I don't have one.

this one version has:

Calculating dependencies ... done!
[ebuild  N] media-sound/audacity-1.2.3-r1  USE="encode gtk2 
vorbis -flac -libsamplerate -mad" 4,078 kB 

m
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Re: In search of two applikations

2006-03-26 Thread Remy Blank
Neil Bothwick wrote:
> On Sun, 26 Mar 2006 07:32:45 +0200 (CEST), Meino Christian Cramer wrote:
>> Is there any backup tool, which simply copies the contents of one
>> partition, which is larger than one DVD, to DVDs "as plain as
>> possible" -- means copies the contents that way, that I simply can
>> mount DVD #n and can easily read and copy the contents?
> 
> Search the list archives, this came up very recently. i think the program
> recommended was scdbackup.
> 
> Note that backing up to DVD/CD file by file will destroy file
> permissions. I prefer to use squashfs to create a compressed copy of the
> filesystem and copy that to DVD. then I can mount it and copy files back
> without losing permissions.

sync2cd

It's in portage, but the latest version 0.9 is in ~ARCH.

And it does store the permission and ownership information along with
the files.

HTH.
-- Remy


Remove underscore and suffix in reply address for a timely response.

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] no video/audio from dv camcorder

2006-03-26 Thread Robert Persson
I am having trouble capturing from a camcorder via firewire. I can control the 
camera transport from each of the capturing applications (kino, cinelerra and 
mainactor), but I get no video or audio. Nor do I get video when I try to use 
the camera as a webcam in Ekiga (formerly known as GnomeMeeting).

I have made sure that I have read/write permissions for all the devices 
in /dev with 1394 in their names. I have tried every variation of dv1394, 
raw1394 etc. that I can think of in these applications' preferences. I also 
made sure to modprobe dv1394, ieee1394, video1394, raw1394 and video1394 
(whatever that is).

cinelerra has other, unresolved bugs to do with dv capture, so I didn't expect 
that to work perfectly, but the other two I +have+ got to work in the past. 

Apart from that, all that has changed since mainactor and kino worked has been 
whatever has got updated through portage, and a 2.6.15 gentoo kernel with 
reiser4 and suspend2 patches. 

Where am I going wrong?

Many thanks in advance
Robert
-- 
Robert Persson

Conspiracy Bears:
Once upon a time there were lots of conspiracy bears...

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] DNS Expert Required

2006-03-26 Thread Heiko Wundram
Am Sonntag 26 März 2006 10:01 schrieb Hiren Dave:
> WHAT IS WRONG IN SETUP? PLEASE HELP ME.

Your zone files are borked. Check them for consistency (for example, don't 
define the zone to be server1.guru.com, but guru.com...

--- Heiko.

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] can't compile audacity

2006-03-26 Thread Zac Slade
On Sunday 26 March 2006 02:13, Martins Steinbergs wrote:
> Calculating dependencies ... done!
> [ebuild  N] media-sound/audacity-1.2.3-r1  USE="encode gtk2
> vorbis -flac -libsamplerate -mad" 4,078 kB
This is a package to definately put in package.keywords with ~arch.

Not only is it under rapid development, each ebuild contains a release (even 
the betas) that is almost of release quality.  I feel completely safe using 
the betas that come out of the audacity project for my every day audio work.
-- 
Zac Slade
[EMAIL PROTECTED]
ICQ:1415282 YM:krakrjak AIM:ttyp99
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] wired wireless routing

2006-03-26 Thread Catalin Trifu
Hi,

I have a Linksys ADSL router with 4 ether ports and wireless.
I have a desktop connected with wire to the router and a laptop
connected via wireless.
  Router IP   : 192.168.254.1
  Desktop IP  : 192.168.254.2
  Wireless IP : 192.168.254.3
   The desktop and laptop have both set up 192.168.254.1 as gateway
   The problem is I can not connect from 192.168.254.3 to 192.168.254.2 and
I don't understand why.


Thanks,
Catalin

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] OT - Weird cdrom issue

2006-03-26 Thread darren kirby
quoth the Neil Bothwick:
> I'm really old school, from the days when new things were considered
> interesting, exciting and fun; not something to be afraid of.
>
> Being afraid of the dark is understandable, being afraid of the light is
> tragic :-O

Well, I thought for sure when mentioning torches and pitchforks people would 
realise I was just being flippant. Should have used a smiley I guess...

No one told me that you don't need fstab anymore, so I was just throwing it 
out there as a suggestion. I didn't know it was so passe.

I'll go back in my cave ;)
-d 
-- 
darren kirby :: Part of the problem since 1976 :: http://badcomputer.org
"...the number of UNIX installations has grown to 10, with more expected..."
- Dennis Ritchie and Ken Thompson, June 1972


pgpx5Uw6S7Ri2.pgp
Description: PGP signature


Re: [gentoo-user] DNS Expert Required

2006-03-26 Thread Uwe Thiem
On 26 March 2006 10:01, Hiren Dave wrote:

Alright, I'll bite. ;-)

Some small errors.

> server1.guru.com (192.168.0.2)  Primary DNS Server
> server2.guru.com (192.168.0.3)  Secondary DNS Server
>
> => Here is my configuration file for server1.guru.com machine.
>
> ###/etc/resolve.conf##
> domain guru.com
> search server1.guru.com server2.guru.com

search guru.com

(the search string gets appended to non-qualified names)

> nameserver 192.168.0.2
> nameserver 192.168.0.3
> ##
> /var/named/chroot/etc/named.conf##
> options {
>  directory "/var/named";
>  dump-file "/var/named/data/cache_dump.db";
>  statistics-file "/var/named/data/named_stats.txt";
>  allow-transfer { 192.168.0.3; 192.168.0.1; };
>  allow-query { 192.168.0.0/24; localhost; };
>  allow-recursion { 192.168.0.0/24; localhost; };
> };

allow-tansfer: take out 192.168.0.1; it's unnecessary.

[ snip ]

> zone "server1.guru.com" IN {

make this: zone "guru.com" IN {

>  type master;
>  file "server1.guru.com.zone";

make this: file "guru.com";   (not strictly necessary)

>  allow-query { any; };

In the general options, you restrict queries to your local network. Why do you 
now allow queries from anywhere?

>  allow-update { key rndckey; };
> };



> #include "/etc/rndc.key";
> ##
> ###/var/named/chroot/var/named/server1.guru.com.zone##

make the file "guru.co"

> $TTL 86400
> @ IN SOA server1.guru.com. root.server1.guru.com. (

BTW, *not* a good idea to make "root" the technical contact for your domain.

Now most stuff below can be much easier.
> 1  ; serial
> 300; refresh (5 minutes)
> 10 ; retry (10 seconds)
> 86400  ; expire (1 day)
> 600; minimum (10 minutes)
> )
>
> @ IN NS server1.guru.com.
> @ IN MX 10 server1.guru.com.
>
> server1.guru.com. IN A 192.168.0.2
> server2.guru.com. IN A 192.168.0.3
> win2k.guru.com.  IN A 192.168.0.1
>
> www1   CNAME server1.guru.com.
> www2   CNAME server2.guru.com.
> www3   CNAME win2k.guru.com.
>
> server2 IN MX 0 server1.guru.com.
> win2k IN MX 0 server1.guru.com.

The lines above can now look this way:

IN  NS  server1.guru.com.
IN  NS  server2.guru.com.

IN  MX  10  server1.guru.co.
*.guru.com  IN  MX  10  server1.guru.com.

server1 IN  A   192.168.0.2
server2 IN  A   192.168.0.3
win2k   IN  A   192.168.0.1

www1CNAME   server1
www2CNAME   server2
www3CNAME   win2k

(Note where I put a fullstop at the end of a name and where not. It's 
important. Your MX statements above are contradictory. So I don't know 
exactly which box your email server is and if you really have more than one. 
If so you have to adjust my two MX entries above.)

Adjust server2 accordingly.

I cannot guarantee that I caught all mistakes. Just try it out.

Uwe

-- 
Why do consumers keep buying products they will live to curse?
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] InkScape trouble

2006-03-26 Thread Meino Christian Cramer

Hi,

 I did:
 emerge -p -v inkscape

 which gaves me a couple of lines of output but nothing flagged as
 source of trouble, nothing, blocked, masked or such...

 "Ok", I thought, "let's go!"

 emerge inkscape

 ...the CPU was glowing hot for a while

 then...it was ready.

 As normal user I did:

 #> inkscape

 "Ok", InkScape thought, "let's crash!"

 BADABOOM!

 That's it.

 Please tell me, what I did so badly wrong here, since anything else I
 emerge exactly in the same way in the last days, either works well out
 of the box or failed to compile right in the beginning.

 (PS: I checked for any config-files of InkScape at home and removed
 them several times -- no chance)

 Slightly astonished,
 mcc
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] InkScape trouble

2006-03-26 Thread b.n.

Meino Christian Cramer wrote:

 As normal user I did:

 #> inkscape

 "Ok", InkScape thought, "let's crash!"

 BADABOOM!

 That's it.


Funny :) , but I think this is not the error message you're displayed 
when inkscape crashes...
Can you post the true error message and not your,ehm,emotional 
interpretation?


m.
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] OT - Weird cdrom issue

2006-03-26 Thread Neil Bothwick
On Sun, 26 Mar 2006 02:35:52 -0800, darren kirby wrote:

> > Being afraid of the dark is understandable, being afraid of the light
> > is tragic :-O
> 
> Well, I thought for sure when mentioning torches and pitchforks people
> would realise I was just being flippant.

So was I :)


-- 
Neil Bothwick

We have a equal opportunity Calculus class -- it's fully integrated.


signature.asc
Description: PGP signature


Re: [gentoo-user] InkScape trouble

2006-03-26 Thread Matthias Langer
On Sun, 2006-03-26 at 12:46 +, b.n. wrote:
> Meino Christian Cramer wrote:
> >  As normal user I did:
> > 
> >  #> inkscape
> > 
> >  "Ok", InkScape thought, "let's crash!"
> > 
> >  BADABOOM!
> > 
> >  That's it.
> 
> Funny :) , but I think this is not the error message you're displayed 
> when inkscape crashes...
> Can you post the true error message and not your,ehm,emotional 
> interpretation?
> 
> m.

Maybe dynamic linking is not consistent on your system:
Try

# emerge gentoolkit
# revdep-rebuild -p
# revdep-rebuild

Matthias


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Re: In search of two applikations

2006-03-26 Thread Neil Bothwick
On Sun, 26 Mar 2006 11:31:52 +0200, Remy Blank wrote:

> sync2cd
> 
> It's in portage, but the latest version 0.9 is in ~ARCH.
> 
> And it does store the permission and ownership information along with
> the files.

That's because it stores files in an archive, which is just what the OP
didn't want. There's a choice to be made, use an archive for 100%
backups, or store files individually for simple copying, you can't have
both. I used squashfs because any live distro with a squashfs enabled
kernel can be used to mount the archive and then copy individual files.
but there are so many backup systems out there, and everyone has
different needs.


-- 
Neil Bothwick

Paranoia: A healthy understanding of the nature of the universe.


signature.asc
Description: PGP signature


Re: [gentoo-user] InkScape trouble

2006-03-26 Thread Christoph Eckert

>  BADABOOM!
>
>  That's it.

not really. PLease start Inkscape from a terminal emulation and post the 
output.


Best regards


ce

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] USRobotics internal modem

2006-03-26 Thread contiemilio
Alle 15:39, sabato 25 marzo 2006, JimD ha scritto:
> On Sat, 25 Mar 2006 11:32:26 +
>
> [EMAIL PROTECTED] wrote:
> > Hi all
> > I have the need to configure my USRobotics internal modem (pci card)
> > for faxing. Running "lspci" the modem is not seen.
> > Should I load any module or enable any kernel entry (during the
> > installation of Gentoo I used genkernel)?
> >
> > Where may I find documentation on this topic?
> >
> > Bye
> > emilio
>
> Can you list the full output of lspci -v?  The output of lspci -v
> should show something about the modem.  Using that information, a
> google search may show what is needed to get the modem to work.

Well, using lspci -v 

02:07.0 Serial controller: 3Com Corp, Modem Division 56K FaxModem Model 5610 
(rev 01) (prog-if 02 [16550])
Subsystem: 3Com Corp, Modem Division Unknown device 00d7
Flags: medium devsel, IRQ 16
I/O ports at dc00 [size=8]
Capabilities: [dc] Power Management version 2

then dmesg | grep tty

serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
:02:07.0: ttyS1 at I/O 0xdc00 (irq = 16) is a 16550A

So I think modem is on /dev/ttyS1.

Question: why cannot I set up KPPP?
 
> Jim

Bye
emilio

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] no video/audio from dv camcorder

2006-03-26 Thread Robert Persson
On Sunday 26 March 2006 01:49 Robert Persson was like:
> I am having trouble capturing from a camcorder via firewire. I can control
> the camera transport from each of the capturing applications (kino,
> cinelerra and mainactor), but I get no video or audio. Nor do I get video
> when I try to use the camera as a webcam in Ekiga (formerly known as
> GnomeMeeting).
>
> I have made sure that I have read/write permissions for all the devices
> in /dev with 1394 in their names. I have tried every variation of dv1394,
> raw1394 etc. that I can think of in these applications' preferences. I also
> made sure to modprobe dv1394, ieee1394, video1394, raw1394 and video1394
> (whatever that is).

I have found a workaround:

1. rmmod [all modules with 1394 in their names]
2. modprobe dv1394
3. rmmod eth1394   (because it doesn't play well with dv)
4. start your dv-capturing application


And just in case anyone wants to know:

1. I still couldn't get cinelerra to capture dv without freezing (but then the 
latest version wouldn't build for me).
2. Ekiga's dv support works, but with some serious limitations.

Robert
-- 
Robert Persson

Conspiracy Bears:
Once upon a time there were lots of conspiracy bears...

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] DNS Expert Required

2006-03-26 Thread Hiren Dave
Hi Uwe,
 
The main problem in my configuration was this:> search server1.guru.com server2.guru.comsearch guru.com
> zone "server1.guru.com" IN {make this: zone "guru.com" IN { 
After changing this, my dns server is working fine. Thanks a lot dude.
 
Hiren
 
On 3/26/06, Uwe Thiem <[EMAIL PROTECTED]> wrote:
On 26 March 2006 10:01, Hiren Dave wrote:Alright, I'll bite. ;-)Some small errors.
> server1.guru.com (192.168.0.2)  Primary DNS Server> server2.guru.com (192.168.0.3
)  Secondary DNS Server>> => Here is my configuration file for server1.guru.com machine.>> ###/etc/resolve.conf##
> domain guru.com> search server1.guru.com server2.guru.comsearch guru.com
(the search string gets appended to non-qualified names)> nameserver 192.168.0.2> nameserver 192.168.0.3> ##
> /var/named/chroot/etc/named.conf##> options {>  directory "/var/named";>  dump-file "/var/named/data/cache_dump.db";>  statistics-file "/var/named/data/named_stats.txt";
>  allow-transfer { 192.168.0.3; 192.168.0.1; };>  allow-query { 192.168.0.0/24; localhost; };>  allow-recursion { 
192.168.0.0/24; localhost; };> };allow-tansfer: take out 192.168.0.1; it's unnecessary.[ snip ]> zone "
server1.guru.com" IN {make this: zone "guru.com" IN {>  type master;>  file "server1.guru.com.zone";make this: file "
guru.com";   (not strictly necessary)>  allow-query { any; };In the general options, you restrict queries to your local network. Why do younow allow queries from anywhere?>  allow-update { key rndckey; };
> };> #include "/etc/rndc.key";> ##> ###/var/named/chroot/var/named/server1.guru.com.zone##
make the file "guru.co"> $TTL 86400> @ IN SOA server1.guru.com. root.server1.guru.com
. (BTW, *not* a good idea to make "root" the technical contact for your domain.Now most stuff below can be much easier.> 1  ; serial> 300; refresh (5 minutes)
> 10 ; retry (10 seconds)> 86400  ; expire (1 day)> 600; minimum (10 minutes)> )>> @ IN NS server1.guru.com
.> @ IN MX 10 server1.guru.com.>> server1.guru.com. IN A 192.168.0.2> 
server2.guru.com. IN A 192.168.0.3> win2k.guru.com.  IN A 192.168.0.1>> www1   CNAME 
server1.guru.com.> www2   CNAME server2.guru.com.> www3   CNAME win2k.guru.com.>> server2 IN MX 0 
server1.guru.com.> win2k IN MX 0 server1.guru.com.The lines above can now look this way:   IN  NS  server1.guru.com
.   IN  NS  server2.guru.com.   IN  MX  10  server1.guru.co.*.guru.com  IN  MX  10  
server1.guru.com.server1 IN  A   192.168.0.2server2 IN  A   192.168.0.3win2k   IN  A   
192.168.0.1www1CNAME   server1www2CNAME   server2www3CNAME   win2k(Note where I put a fullstop at the end of a name and where not. It'simportant. Your MX statements above are contradictory. So I don't know
exactly which box your email server is and if you really have more than one.If so you have to adjust my two MX entries above.)Adjust server2 accordingly.I cannot guarantee that I caught all mistakes. Just try it out.
Uwe--Why do consumers keep buying products they will live to curse?--gentoo-user@gentoo.org mailing list


[gentoo-user] Re: VIA K8M890/K8M880 (VT8251) supported?

2006-03-26 Thread Sven Köhler
> Does anybody have some experiences with s-ata disks attached to
> via k8m880/890 (vt9251) and gentoo/linux? Or where could I find
> some info about the latest status of linux <-> k8m880/890 support?

Googling revealed, that the SATA-ports in the VT8251 _should_ be
AHCI-compliant and therefor supported by Linux.

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Re: VIA K8M890/K8M880 (VT8251) supported?

2006-03-26 Thread Jarry

Sven Köhler wrote:


Googling revealed, that the SATA-ports in the VT8251 _should_ be
AHCI-compliant and therefor supported by Linux.


vt8251 *is* ahci-compliant, and in bios there is option to set
up sata controller as ide, or ahci. But no matter what you set,
vt8251/sata is not recognised with standard 2.6.15 kernel...

But there is unofficial patch/mod for ahci.c, and right now
I'm testing it. BTW, I have read on via forum that kernel-dev's
refused to include this patch in official kernel tree, because
there is something peculiar about it (some fix they do not like).
BTW, it's made by via and modified by some developers...

Jarry
--
gentoo-user@gentoo.org mailing list



[gentoo-user] Re: Newbie question : specific software version no more available

2006-03-26 Thread Simon Kellett
Neil Bothwick <[EMAIL PROTECTED]> writes:

> You can, by adding ">cate-gory/package-version" to
> /etc/portage/package.mask. As long as the package is installed, a copy
> of the ebuild will stay in /var/db/pkg. Portage never forces you to
> upgrade anything.

OK: thanks I did not know this. (I have never tried anything like emerge
world yet, I just update the packages as I need (either bug fixing or
for new functionality): I just noticed the older ebuilds go missing from
/usr/portage).

-- 
Simon Kellett,|   Gentoo Linux, Fvwm, Firefox 
Darmstadt, Germany|  Xemacs, Vm, Gnus

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] SaxParserFactoryImpl

2006-03-26 Thread Justin Hart
What package is SaxParserFactoryImpl defined in?  I can't seem to get
rid of the build errors caused by my foolish move to Java 1.5.  I
can't run Ant.  Build scripts call ant.  Removing xerces is no help.

Surely, somebody must've reversed this horrific error before.
--
Justin W. Hart

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] DNS Expert Required

2006-03-26 Thread Bryan Whitehead

You might want to set your serial to a date format like:

2006032600

When you do an update on the same day you just increment the last 
digit(s).


2006032601

You are more likely to remember when you have done updates with a date.

On Sun, 26 Mar 2006, Hiren Dave wrote:


Hi Uwe,

The main problem in my configuration was this:

search server1.guru.com server2.guru.com

search guru.com

zone "server1.guru.com" IN {

make this: zone "guru.com" IN {

After changing this, my dns server is working fine. Thanks a lot dude.

Hiren

On 3/26/06, Uwe Thiem <[EMAIL PROTECTED]> wrote:


On 26 March 2006 10:01, Hiren Dave wrote:

Alright, I'll bite. ;-)

Some small errors.


server1.guru.com (192.168.0.2)  Primary DNS Server
server2.guru.com (192.168.0.3)  Secondary DNS Server

=> Here is my configuration file for server1.guru.com machine.

###/etc/resolve.conf##
domain guru.com
search server1.guru.com server2.guru.com


search guru.com

(the search string gets appended to non-qualified names)


nameserver 192.168.0.2
nameserver 192.168.0.3
##
/var/named/chroot/etc/named.conf##
options {
 directory "/var/named";
 dump-file "/var/named/data/cache_dump.db";
 statistics-file "/var/named/data/named_stats.txt";
 allow-transfer { 192.168.0.3; 192.168.0.1; };
 allow-query { 192.168.0.0/24; localhost; };
 allow-recursion { 192.168.0.0/24; localhost; };
};


allow-tansfer: take out 192.168.0.1; it's unnecessary.

[ snip ]


zone "server1.guru.com" IN {


make this: zone "guru.com" IN {


 type master;
 file "server1.guru.com.zone";


make this: file "guru.com";   (not strictly necessary)


 allow-query { any; };


In the general options, you restrict queries to your local network. Why do
you
now allow queries from anywhere?


 allow-update { key rndckey; };
};





#include "/etc/rndc.key";
##
###/var/named/chroot/var/named/server1.guru.com.zone##


make the file "guru.co"


$TTL 86400
@ IN SOA server1.guru.com. root.server1.guru.com. (


BTW, *not* a good idea to make "root" the technical contact for your
domain.

Now most stuff below can be much easier.

1  ; serial
300; refresh (5 minutes)
10 ; retry (10 seconds)
86400  ; expire (1 day)
600; minimum (10 minutes)
)

@ IN NS server1.guru.com.
@ IN MX 10 server1.guru.com.

server1.guru.com. IN A 192.168.0.2
server2.guru.com. IN A 192.168.0.3
win2k.guru.com.  IN A 192.168.0.1

www1   CNAME server1.guru.com.
www2   CNAME server2.guru.com.
www3   CNAME win2k.guru.com.

server2 IN MX 0 server1.guru.com.
win2k IN MX 0 server1.guru.com.


The lines above can now look this way:

   IN  NS  server1.guru.com.
   IN  NS  server2.guru.com.

   IN  MX  10  server1.guru.co.
*.guru.com  IN  MX  10  server1.guru.com.

server1 IN  A   192.168.0.2
server2 IN  A   192.168.0.3
win2k   IN  A   192.168.0.1

www1CNAME   server1
www2CNAME   server2
www3CNAME   win2k

(Note where I put a fullstop at the end of a name and where not. It's
important. Your MX statements above are contradictory. So I don't know
exactly which box your email server is and if you really have more than
one.
If so you have to adjust my two MX entries above.)

Adjust server2 accordingly.

I cannot guarantee that I caught all mistakes. Just try it out.

Uwe

--
Why do consumers keep buying products they will live to curse?
--
gentoo-user@gentoo.org mailing list






--
Bryan Whitehead
Email:[EMAIL PROTECTED]
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Linux design software recommendations

2006-03-26 Thread Álvaro Castro
Hello!!

Well, I'm an architecture student who has wasted tons
of time trying to get gentoo runing all kind of
necessary software for my studies.

Maybe if I tell you what software I use, it will help
you:

For 3d:
Maya for linux (prop.)
Pro/E for linux (prop.)
Blender -> IT'S REALLY GOOD (probably one of the best
pieces of software available) It is just not used for
companies.

For video:
Cinelerra

For vectorial drawing:
Sodipodi
Scribus (I really like it, it has all the necessary
things) -> use it instead of Adobe Indesign or
Illustrator

For raster images:
Well, of course, GIMP

For CAD:
Qcad (It is reeaaally BAD) unuseful for Autocad
people.
BricsCAD (prop.) It works OK for Autocad users. You
can get a Demo.


As you can see, unfortunately, there are still some
points where CAD/CAM and architecture linux users need
some propietary software. I tried many other programs
(like Varicad and so on) but they, simply, make you
waste your time.

Make any other question about this topic, I think I
can help you.

Good luck!!

.alvaro.castro.



__ 
LLama Gratis a cualquier PC del Mundo. 
Llamadas a fijos y móviles desde 1 céntimo por minuto. 
http://es.voice.yahoo.com
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] SATA2 Nvidia Nforce4 Ultra

2006-03-26 Thread Álvaro Castro
Hello!!

I wonder if anyone has this chipset and knows how is
it working with SATA2 under linux.

My kernel tells me that it sees a SATA drive, but I
imagine that if it says "you've got a SATA 2 drive" it
would be better.

I don't find any special option in the kernel
configuration or internet.

THANKS FOR YOUR HELP!!

.alvaro.castro.



__ 
LLama Gratis a cualquier PC del Mundo. 
Llamadas a fijos y móviles desde 1 céntimo por minuto. 
http://es.voice.yahoo.com
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] ftp connection refused

2006-03-26 Thread Bryan Whitehead
I really don't understand the problem... you can't ftp from one server to 
the other? if so, which server from what client? What IP to what IP? Can 
you show me the output of netstat -tlnp on each?


On Fri, 24 Mar 2006, maxim wexler wrote:


Hello everybody,

I keep casting this fly, hoping for a strike ;0

For a crossover lan. Ping OK. route -n confirms net
setup on *both* machines

iftraf indicates activity on remote machine when ftp
command issued.

adding debug switch returns:

servname not supported for ai_socktype.

googling points to bad /etc/hosts.

here's /etc/hosts from present machine(192.168.0.3):

127.0.0.1   sarawak localhost
192.168.0.2 xlan yeti  #remote pc
# IPV6 versions of localhost and co
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts

I think it was after emerging ftp I found the line
starting with 192.168.0.3 on the machine with the
fresh 2.6.15 install followed by 'gravity.twi-31o2.org
gravity'(?!), but that didn't work either.

in /etc/host.conf multi set to on and off. Neither
works.

Is it resolv.conf? But this is 'net stuff. Dynamic
name finding or whatever, isn't it? The NICs are
strictly non-web using static addresses.

[EMAIL PROTECTED] ~ $ cat /etc/resolv.conf
domain sarawak
nameserver 206.47.244.52
nameserver 67.69.184.7

-Maxim


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.com



--
Bryan Whitehead
Email:[EMAIL PROTECTED]
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] GRP?

2006-03-26 Thread Rumen Yotov
On Sun, 2006-03-26 at 11:42 -0500, JimD wrote:
> Did GRP disappear?  I might rebuild 2006.0 to use 32-bit instead of
> 64-bit and if I do I wanted to use GRP Gnome so I don't have to wait
> for Gnome to rebuild.
> 
> I looked at this mirror and found no packages:
> http://gentoo.mirrors.pair.com/grp/
> 
> I did this search on Google http://www.google.com/search?q=gentoo+grp
> and clicked some of the mirrors: 
> 
> http://gentoo.modulix.net/gentoo/grp/
> http://search.belnet.be/packages/gentoo/grp/
> http://ftp.ucsb.edu/pub/mirrors/linux/gentoo/grp/
> ...
> 
> They all are empty.  I never used grp before so I am not sure if it
> went away with 2006.0 or not.  Do grp packages still exist?
> 
> Jim
Hi,
No on "x86" there're no separate GRP packages (resp. CD).
But after some work dealing with all e.g. Gnome or KDE deps you can make
GRP packages yourself. How?
Using LiveCD-x86-2006.0, boot then just run: quickpkg package-name etc.,
store generated packages away and later use them. Or use stage4 tarball
for multiple identical systems.
Not very sure this will work but seems plausible and logical.
All this on minimum i686. Anyone here?
HTH.Rumen


smime.p7s
Description: S/MIME cryptographic signature


[gentoo-user] What's bringing in Mozzilla?

2006-03-26 Thread Ernie Schroder
$ sudo emerge -auvD world

These are the packages that I would merge, in order:

Calculating world dependencies ...done!
[ebuild  N] app-admin/eselect-1.0  -bash-completion -doc 142 kB
[ebuild  N] app-admin/eselect-opengl-1.0.3  3 kB
[ebuild U ] x11-base/opengl-update-3.0.0 [2.2.4] 0 kB
[ebuild U ] www-client/mozilla-launcher-1.49 [1.45] 5 kB
[ebuild  N] www-client/mozilla-1.7.11-r3  +crypt -debug -gnome +ipv6 +java 
+ldap -mozcalendar -mozdevelop -moznocompose -moznoirc -moznomail -moznoxft 
-mozsvg -postgres +ssl +truetype -xinerama -xprint 29,595 kB
[ebuild U ] net-www/mplayerplug-in-3.21 [2.80] -gecko-sdk +gtk 204 kB
[ebuild U ] dev-perl/Archive-Tar-1.28 [1.26] -minimal 35 kB
[ebuild U ] media-video/nvidia-glx-1.0.6629-r7 [1.0.6629-r6] 8,520 kB
[ebuild U ] sys-apps/busybox-1.1.0 [1.00-r4] -debug -floppyboot 
-make-symlinks -netboot -savedconfig -static 1,375 kB
[ebuild U ] app-portage/eix-0.5.1-r2 [0.3.0-r2] 302 kB
[ebuild U ] media-video/realplayer-10.0.7 [10.0.6] -nsplugin 6,494 kB

Total size of downloads: 46,680 kB

the following line is in /etc/portage/package.mask:

">=www-client/mozilla-1.7.12-r1" (without the quotes...)
-- 
Regards, Ernie
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Sendmail virtusertable

2006-03-26 Thread Hiren Dave
Hi,
The sendmail configuration is as below.
#sendmail.mc##divert(-1)dnlinclude(`/usr/share/sendmail-cf/m4/cf.m4')dnlVERSIONID(`setup for Red Hat Linux')dnlOSTYPE(`linux')dnldefine(`confDEF_USER_ID',``8:12'')dnl
define(`confTO_CONNECT', `1m')dnldefine(`confTRY_NULL_MX_LIST',true)dnldefine(`PROCMAIL_MAILER_PATH',`/usr/bin/procmail')dnldefine(`ALIAS_FILE', `/etc/aliases')dnldefine(`STATUS_FILE', `/var/log/mail/statistics')dnl
define(`UUCP_MAILER_MAX', `200')dnldefine(`confUSERDB_SPEC', `/etc/mail/userdb.db')dnldefine(`confPRIVACY_FLAGS', `authwarnings,novrfy,noexpn,restrictqrun')dnldefine(`confAUTH_OPTIONS', `A')dnldefine(`confTO_IDENT', `0')dnl
FEATURE(`no_default_msa',`dnl')dnlFEATURE(`smrsh',`/usr/sbin/smrsh')dnlFEATURE(`mailertable',`hash -o /etc/mail/mailertable.db')dnlFEATURE(`virtusertable',`hash -o /etc/mail/virtusertable.db')dnlFEATURE(redirect)dnl
FEATURE(always_add_domain)dnlFEATURE(use_cw_file)dnlFEATURE(use_ct_file)dnlFEATURE(local_procmail,`',`procmail -t -Y -a $h -d $u')dnlFEATURE(`access_db',`hash -T -o /etc/mail/access.db')dnl
FEATURE(`blacklist_recipients')dnlEXPOSED_USER(`root')dnlDAEMON_OPTIONS(`Port=smtp, Name=MTA')dnlFEATURE(`accept_unresolvable_domains')dnlFEATURE(promiscuous_relay)dnlMAILER(smtp)dnlMAILER(procmail)dnl
#virtusertable##[EMAIL PROTECTED]  
[EMAIL PROTECTED][EMAIL PROTECTED] [EMAIL PROTECTED][EMAIL PROTECTED]  
[EMAIL PROTECTED]@yahoo.com  [EMAIL PROTECTED]@hotmail.com  
[EMAIL PROTECTED]@msn.com  [EMAIL PROTECTED][EMAIL PROTECTED] 
[EMAIL PROTECTED]#local-host-names# local-host-names - include all aliases for your machine here.
guru.comserver1.guru.comserver1domain.com#

=> Here is the command output.---#sendmail -bv [EMAIL PROTECTED]
[EMAIL PROTECTED]... deliverable: mailer esmtp, host yahoo.com.guru.com., user [EMAIL PROTECTED]---

It should return [EMAIL PROTECTED] and not [EMAIL PROTECTED]
 
also removing always_add_domain from sendmail.mc does helping. 
TnRHiren
On 3/26/06, Hiren Dave <[EMAIL PROTECTED]> wrote:


Hi,
 
Thank you for your reply. Now I understant it.
TnR

Hiren 

On 3/26/06, Boyd Stephen Smith Jr. <[EMAIL PROTECTED]
> wrote: 
On Saturday 25 March 2006 06:50, "Hiren Dave" <
[EMAIL PROTECTED] > wroteabout 'Re: [gentoo-user] Sendmail virtusertable':> Here I have used yahoo.com
 domain but it can be any domain lets say> domain.com . My network is not connected to Internet. Still do you think
> that the following will not work if guru.com exists and 
domain.com does> not exists physically. Here's how mail delivery normally works:1. Message is composed, and sending is initiatied.2. (Optional) message is handed off to a MTA, this might be local, remote
via SMTP, or a separate part of the same application. 3. The domain part of each of the destination addresses is queried for anMX record from DNS; if no MX record exists the A record is used instead.4. An SMTP connection is made to the host (MX) or address (A) and the 
message is delivered there.5. The MDA on that server decides what to do with the message.  The mayinvolve forwarding (going back to step 2), local delivery (THIS IS WHERETHE VIRTUAL USER TABLE [or equivalent] IS QUERIED), or other actions. 
6. Once final delivery is made to a mailbox (or the mailboxes), therecipients use POP, IMAP, Web, mbox, maildir, and/or other methods to readthe mail.Does that help?If you are truly isolated from the internet, you can indeed make sure that 
the DNS MX record for yahoo.com points to your MDA and deliver
[EMAIL PROTECTED] to a local mailbox, but it involves more than just yourvirtual user table. --"If there's one thing we've established over the years,it's that the vast majority of our users don't have the slightest
clue what's best for them in terms of package stability."-- Gentoo Developer Ciaran McCreesh --
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] wired wireless routing

2006-03-26 Thread Chad Feller

You should be able to do that...

to help us out, what model router do you have?

Catalin Trifu wrote:

Hi,

I have a Linksys ADSL router with 4 ether ports and wireless.
I have a desktop connected with wire to the router and a laptop
connected via wireless.
  Router IP   : 192.168.254.1
  Desktop IP  : 192.168.254.2
  Wireless IP : 192.168.254.3
   The desktop and laptop have both set up 192.168.254.1 as gateway
   The problem is I can not connect from 192.168.254.3 to 192.168.254.2 and
I don't understand why.


Thanks,
Catalin

  



--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] What's bringing in Mozzilla?

2006-03-26 Thread Chad Feller
Did something set mozilla in your use flags?  i.e. if you did an "emerge 
info" would mozilla be in there?


you might find what package wants it by changing the line in 
/etc/portage/package.mask to:


"www-client/mozilla"

without the quotes of course



Ernie Schroder wrote:

$ sudo emerge -auvD world

These are the packages that I would merge, in order:

Calculating world dependencies ...done!
[ebuild  N] app-admin/eselect-1.0  -bash-completion -doc 142 kB
[ebuild  N] app-admin/eselect-opengl-1.0.3  3 kB
[ebuild U ] x11-base/opengl-update-3.0.0 [2.2.4] 0 kB
[ebuild U ] www-client/mozilla-launcher-1.49 [1.45] 5 kB
[ebuild  N] www-client/mozilla-1.7.11-r3  +crypt -debug -gnome +ipv6 +java 
+ldap -mozcalendar -mozdevelop -moznocompose -moznoirc -moznomail -moznoxft 
-mozsvg -postgres +ssl +truetype -xinerama -xprint 29,595 kB

[ebuild U ] net-www/mplayerplug-in-3.21 [2.80] -gecko-sdk +gtk 204 kB
[ebuild U ] dev-perl/Archive-Tar-1.28 [1.26] -minimal 35 kB
[ebuild U ] media-video/nvidia-glx-1.0.6629-r7 [1.0.6629-r6] 8,520 kB
[ebuild U ] sys-apps/busybox-1.1.0 [1.00-r4] -debug -floppyboot 
-make-symlinks -netboot -savedconfig -static 1,375 kB

[ebuild U ] app-portage/eix-0.5.1-r2 [0.3.0-r2] 302 kB
[ebuild U ] media-video/realplayer-10.0.7 [10.0.6] -nsplugin 6,494 kB

Total size of downloads: 46,680 kB

the following line is in /etc/portage/package.mask:

">=www-client/mozilla-1.7.12-r1" (without the quotes...)
  



--
gentoo-user@gentoo.org mailing list



[gentoo-user] Re: VIA K8M890/K8M880 (VT8251) supported?

2006-03-26 Thread Sven Köhler
>> Googling revealed, that the SATA-ports in the VT8251 _should_ be
>> AHCI-compliant and therefor supported by Linux.
> 
> vt8251 *is* ahci-compliant, and in bios there is option to set
> up sata controller as ide, or ahci. But no matter what you set,
> vt8251/sata is not recognised with standard 2.6.15 kernel...
> 
> But there is unofficial patch/mod for ahci.c, and right now
> I'm testing it. BTW, I have read on via forum that kernel-dev's
> refused to include this patch in official kernel tree, because
> there is something peculiar about it (some fix they do not like).
> BTW, it's made by via and modified by some developers...

IMHO, the patch should only include the PCI-Id or something like that -
well, but the patch doesn't seem to be as simple as that.

Do you have a link to the patch? or even a link to the discussion in the
 LKML?

Thanks
  Sven



signature.asc
Description: OpenPGP digital signature


Re: [gentoo-user] Linux design software recommendations

2006-03-26 Thread Ernie Schroder
On Sunday 26 March 2006 11:57, a tiny voice compelled Álvaro Castro to write:
> Hello!!
>
> Well, I'm an architecture student who has wasted tons
> of time trying to get gentoo runing all kind of
> necessary software for my studies.
>
> Maybe if I tell you what software I use, it will help
> you:
>
> For 3d:
> Maya for linux (prop.)
> Pro/E for linux (prop.)
> Blender -> IT'S REALLY GOOD (probably one of the best
> pieces of software available) It is just not used for
> companies.
>
> For video:
> Cinelerra
>
> For vectorial drawing:
> Sodipodi
> Scribus (I really like it, it has all the necessary
> things) -> use it instead of Adobe Indesign or
> Illustrator
>
> For raster images:
> Well, of course, GIMP
>
> For CAD:
> Qcad (It is reeaaally BAD) unuseful for Autocad
> people.
> BricsCAD (prop.) It works OK for Autocad users. You
> can get a Demo.
>
>
> As you can see, unfortunately, there are still some
> points where CAD/CAM and architecture linux users need
> some propietary software. I tried many other programs
> (like Varicad and so on) but they, simply, make you
> waste your time.
>
> Make any other question about this topic, I think I
> can help you.
>
> Good luck!!
>
> .alvaro.castro.
>
>
>
> __
> LLama Gratis a cualquier PC del Mundo.
> Llamadas a fijos y móviles desde 1 céntimo por minuto.
> http://es.voice.yahoo.com

There is BRL Cad a bit**h to use but free and open sourced, no ebuild and 
it's maintained by the US Army http://www.brlcad.org/
-- 
Regards, Ernie

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] What's bringing in Mozzilla?

2006-03-26 Thread Ernie Schroder
On Sunday 26 March 2006 12:37, a tiny voice compelled Chad Feller to write:
> Did something set mozilla in your use flags?  i.e. if you did an "emerge
> info" would mozilla be in there?
>
> you might find what package wants it by changing the line in
> /etc/portage/package.mask to:
>
> "www-client/mozilla"
>
> without the quotes of course

Can't see anything in my USE flage that would bring it in, but after changing 
the package.mask line as you suggested, portage wants to bring in 
mozilla-firefox-1.0.7-r4. I have mozilla-firefox-bin-1.0.7 installed.
>
> Ernie Schroder wrote:
> > $ sudo emerge -auvD world
> >
> > These are the packages that I would merge, in order:
> >
> > Calculating world dependencies ...done!
> > [ebuild  N] app-admin/eselect-1.0  -bash-completion -doc 142 kB
> > [ebuild  N] app-admin/eselect-opengl-1.0.3  3 kB
> > [ebuild U ] x11-base/opengl-update-3.0.0 [2.2.4] 0 kB
> > [ebuild U ] www-client/mozilla-launcher-1.49 [1.45] 5 kB
> > [ebuild  N] www-client/mozilla-1.7.11-r3  +crypt -debug -gnome +ipv6
> > +java +ldap -mozcalendar -mozdevelop -moznocompose -moznoirc -moznomail
> > -moznoxft -mozsvg -postgres +ssl +truetype -xinerama -xprint 29,595 kB
> > [ebuild U ] net-www/mplayerplug-in-3.21 [2.80] -gecko-sdk +gtk 204 kB
> > [ebuild U ] dev-perl/Archive-Tar-1.28 [1.26] -minimal 35 kB
> > [ebuild U ] media-video/nvidia-glx-1.0.6629-r7 [1.0.6629-r6] 8,520 kB
> > [ebuild U ] sys-apps/busybox-1.1.0 [1.00-r4] -debug -floppyboot
> > -make-symlinks -netboot -savedconfig -static 1,375 kB
> > [ebuild U ] app-portage/eix-0.5.1-r2 [0.3.0-r2] 302 kB
> > [ebuild U ] media-video/realplayer-10.0.7 [10.0.6] -nsplugin 6,494 kB
> >
> > Total size of downloads: 46,680 kB
> >
> > the following line is in /etc/portage/package.mask:
> >
> > ">=www-client/mozilla-1.7.12-r1" (without the quotes...)

-- 
Regards, Ernie
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] What's bringing in Mozzilla?

2006-03-26 Thread Johám-Luís Miguéns Vila
On 12:14 Sun 26 Mar , Ernie Schroder wrote:
> $ sudo emerge -auvD world
> 
> These are the packages that I would merge, in order:
> 
> Calculating world dependencies ...done!
> [ebuild  N] app-admin/eselect-1.0  -bash-completion -doc 142 kB
> [ebuild  N] app-admin/eselect-opengl-1.0.3  3 kB
> [ebuild U ] x11-base/opengl-update-3.0.0 [2.2.4] 0 kB
> [ebuild U ] www-client/mozilla-launcher-1.49 [1.45] 5 kB
> [ebuild  N] www-client/mozilla-1.7.11-r3  +crypt -debug -gnome +ipv6 
> +java 
> +ldap -mozcalendar -mozdevelop -moznocompose -moznoirc -moznomail -moznoxft 
> -mozsvg -postgres +ssl +truetype -xinerama -xprint 29,595 kB
> [ebuild U ] net-www/mplayerplug-in-3.21 [2.80] -gecko-sdk +gtk 204 kB
> [ebuild U ] dev-perl/Archive-Tar-1.28 [1.26] -minimal 35 kB
> [ebuild U ] media-video/nvidia-glx-1.0.6629-r7 [1.0.6629-r6] 8,520 kB
> [ebuild U ] sys-apps/busybox-1.1.0 [1.00-r4] -debug -floppyboot 
> -make-symlinks -netboot -savedconfig -static 1,375 kB
> [ebuild U ] app-portage/eix-0.5.1-r2 [0.3.0-r2] 302 kB
> [ebuild U ] media-video/realplayer-10.0.7 [10.0.6] -nsplugin 6,494 kB
> 
> Total size of downloads: 46,680 kB
> 
> the following line is in /etc/portage/package.mask:
> 
> ">=www-client/mozilla-1.7.12-r1" (without the quotes...)
> -- 
> Regards, Ernie
> -- 
> gentoo-user@gentoo.org mailing list
> 
Try with --> sudo emerge --ask --update --verbose --deep --tree world
<-- and you'll see which package claims for installing it (--tree/-t
option, see man emerge).

cheers

-- 
A ouvir (mpd): Rammstein - Heirate mich
 - GPG KeyID:0x9D2FD6C8


pgpff1YUm8yqQ.pgp
Description: PGP signature


Re: [gentoo-user] What's bringing in Mozzilla?

2006-03-26 Thread Neil Bothwick
On Sun, 26 Mar 2006 12:14:42 -0500, Ernie Schroder wrote:

> $ sudo emerge -auvD world

Add --tree to the options.


-- 
Neil Bothwick

WinErr 012: Window closed - Do not look inside


signature.asc
Description: PGP signature


[gentoo-user] Re: VIA K8M890/K8M880 (VT8251) supported?

2006-03-26 Thread Jarry

Sven Köhler wrote:


IMHO, the patch should only include the PCI-Id or something like that -
well, but the patch doesn't seem to be as simple as that.
Do you have a link to the patch? or even a link to the discussion in the
LKML?


The patched ahci.c is for example here:
http://grivell.home.comcast.net/ahci.c
Someone with nick "CodeRedLin" modified ahci.c with via patch...

Instead of standard ahci.c which comes with 2.6.15-gentoo-r7 sources
I used this modified one, and it really works! Suddenly both my sata
drives are detected. hdparm -t /dev/sda (sdb) gives me very nice
65 MB/s, and that is while I'm doing raid1-resync!

But he (author) says this patched ahci.c will probably not work
with 2.6.16 :-(

There is another patch for sata_via.c :
http://web.ukonline.co.uk/paulrbarber/sata_via_20060221.c
I did not test it, as that modified ahci.c worked for me.
BTW, I'm not sure what is better to use: ahci.c, or sata_via.c?

I have found a very good discussion about vt8521 & linux here:
http://forums.viaarena.com/messageview.aspx?catid=28&threadid=68455&STARTPAGE=1&FTVAR_FORUMVIEWTMP=Linear
(all in one line)

Jarry

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] What's bringing in Mozzilla?

2006-03-26 Thread Ernie Schroder
On Sunday 26 March 2006 13:13, a tiny voice compelled Neil Bothwick to write:
> On Sun, 26 Mar 2006 12:14:42 -0500, Ernie Schroder wrote:
> > $ sudo emerge -auvD world
>
> Add --tree to the options.
 $ sudo emerge -auvDt world

These are the packages that I would merge, in reverse order:

Calculating world dependencies ...done!
[ebuild U ] media-video/realplayer-10.0.7 [10.0.6] -nsplugin 6,494 kB
[ebuild U ] app-portage/eix-0.5.1-r2 [0.3.0-r2] 302 kB
[ebuild U ] sys-apps/busybox-1.1.0 [1.00-r4] -debug -floppyboot 
-make-symlinks -netboot -savedconfig -static 1,375 kB
[ebuild U ] media-video/nvidia-glx-1.0.6629-r7 [1.0.6629-r6] 8,520 kB
[nomerge  ] perl-core/File-Spec-3.12  -minimal
[nomerge  ]  dev-perl/module-build-0.26.11  -minimal
[ebuild U ]   dev-perl/Archive-Tar-1.28 [1.26] -minimal 35 kB
[ebuild U ] net-www/mplayerplug-in-3.21 [2.80] -gecko-sdk +gtk 204 kB
[ebuild  N]  www-client/mozilla-firefox-1.0.7-r4  -debug -gnome +ipv6 
+java -mozcalendar -mozdevelop -moznoxft -mozsvg +truetype -xinerama -xprint 
32,131 kB
[ebuild U ]   www-client/mozilla-launcher-1.49 [1.45] 5 kB
[nomerge  ] x11-terms/xterm-207  -Xaw3d -doc -toolbar +truetype -unicode
[nomerge  ]  sys-apps/utempter-0.5.5.6
[nomerge  ]   app-arch/rpm2targz-9.0-r3
[nomerge  ]sys-apps/file-4.13  -build +python
[nomerge  ] x11-base/xorg-x11-6.8.2-r6  -3dfx +3dnow +bitmap-fonts 
-cjk -debug -dlloader -dmx -doc -font-server -insecure-drivers +ipv6 -minimal 
+mmx +nls -nocxx +opengl +pam -sdk -sse -static +truetype-fonts +type1-fonts 
(-uclibc) -xprint +xv
[ebuild U ]  x11-base/opengl-update-3.0.0 [2.2.4] 0 kB
[ebuild  N]   app-admin/eselect-opengl-1.0.3  3 kB
[ebuild  N]app-admin/eselect-1.0  -bash-completion -doc 142 kB

Total size of downloads: 49,216 kB

Do you want me to merge these packages? [Yes/No]

Does this say that Mozilla-launcher wants Mozilla? the tree format confuses 
the heck out of me.

-- 
Regards, Ernie
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] What's bringing in Mozzilla?

2006-03-26 Thread Rumen Yotov
On Sun, 2006-03-26 at 13:22 -0500, Ernie Schroder wrote:
> On Sunday 26 March 2006 13:13, a tiny voice compelled Neil Bothwick to write:
> > On Sun, 26 Mar 2006 12:14:42 -0500, Ernie Schroder wrote:
> > > $ sudo emerge -auvD world
> >
> > Add --tree to the options.
>  $ sudo emerge -auvDt world
> 
> These are the packages that I would merge, in reverse order:
> 
> Calculating world dependencies ...done!
> [ebuild U ] media-video/realplayer-10.0.7 [10.0.6] -nsplugin 6,494 kB
> [ebuild U ] app-portage/eix-0.5.1-r2 [0.3.0-r2] 302 kB
> [ebuild U ] sys-apps/busybox-1.1.0 [1.00-r4] -debug -floppyboot 
> -make-symlinks -netboot -savedconfig -static 1,375 kB
> [ebuild U ] media-video/nvidia-glx-1.0.6629-r7 [1.0.6629-r6] 8,520 kB
> [nomerge  ] perl-core/File-Spec-3.12  -minimal
> [nomerge  ]  dev-perl/module-build-0.26.11  -minimal
> [ebuild U ]   dev-perl/Archive-Tar-1.28 [1.26] -minimal 35 kB
> [ebuild U ] net-www/mplayerplug-in-3.21 [2.80] -gecko-sdk +gtk 204 kB
> [ebuild  N]  www-client/mozilla-firefox-1.0.7-r4  -debug -gnome +ipv6 
> +java -mozcalendar -mozdevelop -moznoxft -mozsvg +truetype -xinerama -xprint 
> 32,131 kB
> [ebuild U ]   www-client/mozilla-launcher-1.49 [1.45] 5 kB
> [nomerge  ] x11-terms/xterm-207  -Xaw3d -doc -toolbar +truetype -unicode
> [nomerge  ]  sys-apps/utempter-0.5.5.6
> [nomerge  ]   app-arch/rpm2targz-9.0-r3
> [nomerge  ]sys-apps/file-4.13  -build +python
> [nomerge  ] x11-base/xorg-x11-6.8.2-r6  -3dfx +3dnow +bitmap-fonts 
> -cjk -debug -dlloader -dmx -doc -font-server -insecure-drivers +ipv6 -minimal 
> +mmx +nls -nocxx +opengl +pam -sdk -sse -static +truetype-fonts +type1-fonts 
> (-uclibc) -xprint +xv
> [ebuild U ]  x11-base/opengl-update-3.0.0 [2.2.4] 0 kB
> [ebuild  N]   app-admin/eselect-opengl-1.0.3  3 kB
> [ebuild  N]app-admin/eselect-1.0  -bash-completion -doc 142 kB
> 
> Total size of downloads: 49,216 kB
> 
> Do you want me to merge these packages? [Yes/No]
> 
> Does this say that Mozilla-launcher wants Mozilla? the tree format confuses 
> the heck out of me.
> 
> -- 
> Regards, Ernie
Hi,
No it's "net-www/mplayerplug-in-3.21" which fetches mozilla, --tree view
is read bottom --> top.
HTH.Rumen


smime.p7s
Description: S/MIME cryptographic signature


Re: [gentoo-user] What's bringing in Mozzilla?

2006-03-26 Thread Alexander Skwar
Ernie Schroder wrote:
> $ sudo emerge -auvD world

Add -t (--tree) and you might se.

> [ebuild  N] www-client/mozilla-1.7.11-r3  +crypt -debug -gnome +ipv6 
> +java 
[...]
> the following line is in /etc/portage/package.mask:
> 
> ">=www-client/mozilla-1.7.12-r1" (without the quotes...)

Fine. So portage is working fine.

Alexander Skwar
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Re: In search of two applikations

2006-03-26 Thread Remy Blank
Neil Bothwick wrote:
> On Sun, 26 Mar 2006 11:31:52 +0200, Remy Blank wrote:
>>sync2cd
>>
>>It's in portage, but the latest version 0.9 is in ~ARCH.
>>
>>And it does store the permission and ownership information along with
>>the files.
> 
> That's because it stores files in an archive,

Nope ;-)

It stores the files as-is, in the same hierarchy as the source tree, and
the permission and ownership info in a separate file in the directory
".sync2cd" at the root of the CD/DVD.

This means that if you restore a file "by hand" with cp, you don't
restore the metadata. But if you need it, you can restore it with
sync2cd (which incidentally will tell you on which medium the file is
stored, in the case of multi-CD backups) and the metadata is restored.

> There's a choice to be made, use an archive for 100%
> backups, or store files individually for simple copying, you can't have
> both. 

There's still the solution "individual files with separate metadata".

> but there are so many backup systems out there, and everyone has
> different needs.

True. That's why I have written sync2cd in the first place :-)

-- Remy


Remove underscore and suffix in reply address for a timely response.

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] What's bringing in Mozzilla?

2006-03-26 Thread Alexander Skwar
Ernie Schroder wrote:

> [ebuild U ] net-www/mplayerplug-in-3.21 [2.80] -gecko-sdk +gtk 204 kB
> [ebuild  N]  www-client/mozilla-firefox-1.0.7-r4  -debug -gnome +ipv6 
> +java -mozcalendar -mozdevelop -moznoxft -mozsvg +truetype -xinerama -xprint 
> 32,131 kB
> [ebuild U ]   www-client/mozilla-launcher-1.49 [1.45] 5 kB

> Total size of downloads: 49,216 kB
> 
> Do you want me to merge these packages? [Yes/No]
> 
> Does this say that Mozilla-launcher wants Mozilla? the tree format confuses 
> the heck out of me.

What's so confusing about it?  On the first level, mplayerplug-in wants
to be installed. But that requires mozilla-firefox, whihc in turn
requires mozilla-launcher.

It's read from left to right and from top to bottom.

But packages will be merged in ASCENDING order, that is from
bottom to top. So, first mozilla-launcher will be installed,
and then mozilla-firefox. This is of course logical, as firefox
cannot be installed without mozilla-launcher.

Alexander Skwar
-- 
You never know how many friends you have until you rent a house on the beach.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] What's bringing in Mozzilla?

2006-03-26 Thread Ernie Schroder
On Sunday 26 March 2006 13:34, a tiny voice compelled Rumen Yotov to write:
> On Sun, 2006-03-26 at 13:22 -0500, Ernie Schroder wrote:
> > On Sunday 26 March 2006 13:13, a tiny voice compelled Neil Bothwick to 
write:
> > > On Sun, 26 Mar 2006 12:14:42 -0500, Ernie Schroder wrote:
> > > > $ sudo emerge -auvD world
> > >
> > > Add --tree to the options.
> >
> >  $ sudo emerge -auvDt world
> >
> > These are the packages that I would merge, in reverse order:
> >
> > Calculating world dependencies ...done!
> > [ebuild U ] media-video/realplayer-10.0.7 [10.0.6] -nsplugin 6,494 kB
> > [ebuild U ] app-portage/eix-0.5.1-r2 [0.3.0-r2] 302 kB
> > [ebuild U ] sys-apps/busybox-1.1.0 [1.00-r4] -debug -floppyboot
> > -make-symlinks -netboot -savedconfig -static 1,375 kB
> > [ebuild U ] media-video/nvidia-glx-1.0.6629-r7 [1.0.6629-r6] 8,520 kB
> > [nomerge  ] perl-core/File-Spec-3.12  -minimal
> > [nomerge  ]  dev-perl/module-build-0.26.11  -minimal
> > [ebuild U ]   dev-perl/Archive-Tar-1.28 [1.26] -minimal 35 kB
> > [ebuild U ] net-www/mplayerplug-in-3.21 [2.80] -gecko-sdk +gtk 204 kB
> > [ebuild  N]  www-client/mozilla-firefox-1.0.7-r4  -debug -gnome +ipv6
> > +java -mozcalendar -mozdevelop -moznoxft -mozsvg +truetype -xinerama
> > -xprint 32,131 kB
> > [ebuild U ]   www-client/mozilla-launcher-1.49 [1.45] 5 kB
> > [nomerge  ] x11-terms/xterm-207  -Xaw3d -doc -toolbar +truetype
> > -unicode [nomerge  ]  sys-apps/utempter-0.5.5.6
> > [nomerge  ]   app-arch/rpm2targz-9.0-r3
> > [nomerge  ]sys-apps/file-4.13  -build +python
> > [nomerge  ] x11-base/xorg-x11-6.8.2-r6  -3dfx +3dnow
> > +bitmap-fonts -cjk -debug -dlloader -dmx -doc -font-server
> > -insecure-drivers +ipv6 -minimal +mmx +nls -nocxx +opengl +pam -sdk -sse
> > -static +truetype-fonts +type1-fonts (-uclibc) -xprint +xv
> > [ebuild U ]  x11-base/opengl-update-3.0.0 [2.2.4] 0 kB
> > [ebuild  N]   app-admin/eselect-opengl-1.0.3  3 kB
> > [ebuild  N]app-admin/eselect-1.0  -bash-completion -doc 142
> > kB
> >
> > Total size of downloads: 49,216 kB
> >
> > Do you want me to merge these packages? [Yes/No]
> >
> > Does this say that Mozilla-launcher wants Mozilla? the tree format
> > confuses the heck out of me.
> >
> > --
> > Regards, Ernie
>
> Hi,
> No it's "net-www/mplayerplug-in-3.21" which fetches mozilla, --tree view
> is read bottom --> top.
> HTH.Rumen


OK so at this point, mplayerplug-in wants mozilla-firefox, but I have 
mozilla-firefox-bin installed. Any way to fix that?

from mozilla-firefox-bin ebuild:

DEPEND=">=media-video/mplayer-1.0_pre5
gecko-sdk? ( net-libs/gecko-sdk )
!gecko-sdk? ( || ( >=www-client/mozilla-1.6 
www-client/mozilla-firefox ) )
|| ( ( x11-libs/libXpm
x11-proto/xextproto
)
virtual/x11
)
gtk? (
>=x11-libs/gtk+-2.2.0
dev-libs/atk
>=dev-libs/glib-2.2.0
>=x11-libs/pango-1.2.1
)"

Could I edit the ebuild like so?

DEPEND=">=media-video/mplayer-1.0_pre5
gecko-sdk? ( net-libs/gecko-sdk )
!gecko-sdk? ( || ( >=www-client/mozilla-1.6 
www-client/mozilla-firefox 
www-client/mozilla-firefox-bin ) )
|| ( ( x11-libs/libXpm
x11-proto/xextproto
)
virtual/x11
)
gtk? (
>=x11-libs/gtk+-2.2.0
dev-libs/atk
>=dev-libs/glib-2.2.0
>=x11-libs/pango-1.2.1
)"

-- 
Regards, Ernie
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] What's bringing in Mozzilla?

2006-03-26 Thread Ernie Schroder
On Sunday 26 March 2006 13:50, a tiny voice compelled Alexander Skwar to 
write:
> Ernie Schroder wrote:
> > [ebuild U ] net-www/mplayerplug-in-3.21 [2.80] -gecko-sdk +gtk 204 kB
> > [ebuild  N]  www-client/mozilla-firefox-1.0.7-r4  -debug -gnome +ipv6
> > +java -mozcalendar -mozdevelop -moznoxft -mozsvg +truetype -xinerama
> > -xprint 32,131 kB
> > [ebuild U ]   www-client/mozilla-launcher-1.49 [1.45] 5 kB
> >
> > Total size of downloads: 49,216 kB
> >
> > Do you want me to merge these packages? [Yes/No]
> >
> > Does this say that Mozilla-launcher wants Mozilla? the tree format
> > confuses the heck out of me.
>
> What's so confusing about it?  On the first level, mplayerplug-in wants
> to be installed. But that requires mozilla-firefox, whihc in turn
> requires mozilla-launcher.
>
> It's read from left to right and from top to bottom.
>
> But packages will be merged in ASCENDING order, that is from
> bottom to top. So, first mozilla-launcher will be installed,
> and then mozilla-firefox. This is of course logical, as firefox
> cannot be installed without mozilla-launcher.

I follow the logic, but, why won't mozilla-firefox-bin satisfy portage? moz 
launcher has been on the machine for a LONG time as has firefox-bin and has 
never wanted mozilla or mozilla-firefox before
>
> Alexander Skwar
> --
> You never know how many friends you have until you rent a house on the
> beach.

-- 
Regards, Ernie
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] What's bringing in Mozzilla?

2006-03-26 Thread Bo Andresen
On Sunday 26 March 2006 20:50, Ernie Schroder wrote:
> from mozilla-firefox-bin ebuild:
>
Of course you mean from mplayerplug-in ebuild. ;)

> DEPEND=">=media-video/mplayer-1.0_pre5
>   gecko-sdk? ( net-libs/gecko-sdk )
>   !gecko-sdk? ( || ( >=www-client/mozilla-1.6 
> www-client/mozilla-firefox )
[SNIP]

>
> Could I edit the ebuild like so?
>
> DEPEND=">=media-video/mplayer-1.0_pre5
>   gecko-sdk? ( net-libs/gecko-sdk )
>   !gecko-sdk? ( || ( >=www-client/mozilla-1.6 
> www-client/mozilla-firefox
> www-client/mozilla-firefox-bin ) )
[SNIP]

As you have surely realized by now this suggests that mplayerplug-in and 
mozilla-firefox-bin are incompatible. If this is not correct and they are 
compatible then you should file a bug. To test it copy the ebuild to an 
overlay and modify it as you have suggested. If you do not copy it to an 
overlay your changes will be wiped the next you emerge --sync.

-- 
Bo Andresen
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] What's bringing in Mozzilla?

2006-03-26 Thread Bo Andresen
On Sunday 26 March 2006 20:57, Ernie Schroder wrote:
> I follow the logic, but, why won't mozilla-firefox-bin satisfy portage? moz
> launcher has been on the machine for a LONG time as has firefox-bin and has
> never wanted mozilla or mozilla-firefox before

If you compare mplayerplug-in-3.21 with the previous version then you see that 
this is a new dependency of mplayerplug-in when the gecko-sdk use flag is 
disabled.

So probably they added mozilla or mozilla-firefox and forgot about 
mozilla-firefox-bin or mozilla-firefox-bin is in fact incompatible with this 
version of mplayerplug-in.

-- 
Bo Andresen
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] What's bringing in Mozzilla?

2006-03-26 Thread Manuel McLure

Ernie Schroder wrote:


[ebuild U ] net-www/mplayerplug-in-3.21 [2.80] -gecko-sdk +gtk 204 kB
[ebuild  N]  www-client/mozilla-firefox-1.0.7-r4  -debug -gnome +ipv6 
+java -mozcalendar -mozdevelop -moznoxft -mozsvg +truetype -xinerama -xprint 
32,131 kB

[ebuild U ]   www-client/mozilla-launcher-1.49 [1.45] 5 kB


As other have said, mplayer-plugin wants to pull in mozilla-firefox. The 
reason for this is that it needs the Mozilla source libraries to build 
against. One workaround for this is to do


echo "net-www/mplayerplug-in   gecko-sdk" >>/etc/portage/package.use

This will make mplayerplug-in pull in net-libs/gecko-sdk instead 
(gecko-sdk is the minimal portion of the Mozilla libraries required to 
build plugins.)


--
Manuel A. McLure KE6TAW <[EMAIL PROTECTED]> 
...for in Ulthar, according to an ancient and significant law,
no man may kill a cat.   -- H.P. Lovecraft
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] InkScape trouble

2006-03-26 Thread Francesco Riosa



#> strace inkscape &> /temp/ink.trace

Post the file /temp/ink.trace
  
Please, please do _not_ post the file on the mail list unless it's very 
small, use bugzilla for that.


Rationale: 100Kb attacment multiplied 20 Kusers = 2000 Mb = 2 Gb traffic
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Re: In search of two applikations

2006-03-26 Thread Neil Bothwick
On Sun, 26 Mar 2006 20:43:48 +0200, Remy Blank wrote:

> > That's because it stores files in an archive,
> 
> Nope ;-)

Silly me, I took all the references to an archive on the web page to mean
an archive :(

I personally wouldn't store backups this way, I prefer a compressed
archive when storing on DVD, but it does seem a good compromise,
especially when the files you need to restore have easily guessable
permissions, removing the need to use special software to restore them.


-- 
Neil Bothwick

I wonder how much deeper would the ocean be without sponges.


signature.asc
Description: PGP signature


Re: [gentoo-user] What's bringing in Mozzilla?

2006-03-26 Thread Ernie Schroder
On Sunday 26 March 2006 14:16, a tiny voice compelled Manuel McLure to write:
> echo "net-www/mplayerplug-in   gecko-sdk" >>/etc/portage/package.use
>
> This will make mplayerplug-in pull in net-libs/gecko-sdk instead
> (gecko-sdk is the minimal portion of the Mozilla libraries required to
> build plugins.)


Sounds like a viable plan
-- 
Regards, Ernie

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Wine and cedega weird problem

2006-03-26 Thread adrian790


so, this is my problem, very weird. i have both cedega and wine for some win32
executables(games and software). i can't execute none of win32 exe's cause my
system locks up :roll: , so i have to reset my computer :x . if you have any
idea pls tell me. thx!
this is my emerge --info:
Portage 2.0.54 (default-linux/x86/2006.0, gcc-3.4.5, glibc-2.3.5-r2,
2.6.15-gentoo-r1 i686)
=
System uname: 2.6.15-gentoo-r1 i686 AMD Athlon(tm) XP processor 1600+
Gentoo Base System version 1.6.14
ccache version 2.3 [enabled]
dev-lang/python: 2.4.2
sys-apps/sandbox: 1.2.12
sys-devel/autoconf: 2.13, 2.59-r7
sys-devel/automake: 1.4_p6, 1.5, 1.6.3, 1.7.9-r1, 1.8.5-r3, 1.9.6-r1
sys-devel/binutils: 2.16.1
sys-devel/libtool: 1.5.22
virtual/os-headers: 2.6.11-r2
ACCEPT_KEYWORDS="x86"
AUTOCLEAN="yes"
CBUILD="i686-pc-linux-gnu"
CFLAGS="-march=athlon-xp -O2 -pipe -fomit-frame-pointer"
CHOST="i686-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/kde/2/share/config /usr/kde/3.4/env
/usr/kde/3.4/share/config /usr/kde/3.4/shutdown /usr/kde/3/share/config
/usr/lib/X11/xkb /usr/share/config /var/qmail/control"
CONFIG_PROTECT_MASK="/etc/gconf /etc/terminfo /etc/env.d"
CXXFLAGS="-march=athlon-xp -O2 -pipe -fomit-frame-pointer"
DISTDIR="/usr/portage/distfiles"
FEATURES="autoconfig ccache distlocks sandbox sfperms strict"
GENTOO_MIRRORS="ftp://ftp.lug.ro/gentoo ftp://gentoo.romnet.org
http://ftp.roedu.net/pub/mirrors/gentoo http://ftp.lug.ro/gentoo";
LDFLAGS="-Wl,-O1"
MAKEOPTS="-j2"
PKGDIR="/usr/portage/packages"
PORTAGE_TMPDIR="/var/tmp"
PORTDIR="/usr/portage"
PORTDIR_OVERLAY="/usr/local/portage"
SYNC="rsync://rsync.gentoo.org/gentoo-portage"
USE="x86 3dnow 3dnowext X alsa apache2 apm arts audiofile avi berkdb
bitmap-fonts bzip2 cli crypt ctype cups dba dri eds emboss encode esd expat fam
fastbuild foomaticdb force-cgi-redirect fortran ftp gd gdbm gif glut gnome gpm
gstreamer gtk gtk2 idn imlib ipv6 jpeg kde lcms libg++ libwww mad memlimit
mikmod mmx mmxext mng motif mp3 mpeg ncurses nls nptl ogg opengl oss pam pcre
pdflib perl png posix python qt quicktime readline samba sdl session simplexml
soap sockets spell spl sse ssl tcpd tiff tokenizer truetype truetype-fonts
type1-fonts udev usb vorbis win32codecs xine xml xml2 xmms xsl xv zlib
userland_GNU kernel_linux elibc_glibc"
Unset: ASFLAGS, CTARGET, LANG, LC_ALL, LINGUAS

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] What's bringing in Mozzilla?

2006-03-26 Thread Bo Andresen
On Sunday 26 March 2006 21:16, Manuel McLure wrote:
> As other have said, mplayer-plugin wants to pull in mozilla-firefox. The
> reason for this is that it needs the Mozilla source libraries to build
> against. One workaround for this is to do

So there is a good reason for mozilla-firefox-bin not satisfying it's depency 
after all. :)

-- 
Bo Andresen
-- 
gentoo-user@gentoo.org mailing list



Re: SOLVED [gentoo-user] What's bringing in Mozzilla?

2006-03-26 Thread Ernie Schroder
On Sunday 26 March 2006 14:41, a tiny voice compelled Ernie Schroder to write:
> On Sunday 26 March 2006 14:16, a tiny voice compelled Manuel McLure to 
write:
> > echo "net-www/mplayerplug-in   gecko-sdk" >>/etc/portage/package.use
> >
> > This will make mplayerplug-in pull in net-libs/gecko-sdk instead
> > (gecko-sdk is the minimal portion of the Mozilla libraries required to
> > build plugins.)
>
> Sounds like a viable plan

Thanks Manuel. That seems to have fixed it for now.
> --
> Regards, Ernie

-- 
Regards, Ernie

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] What's bringing in Mozzilla?

2006-03-26 Thread Ernie Schroder
On Sunday 26 March 2006 14:48, a tiny voice compelled Bo Andresen to write:
> On Sunday 26 March 2006 21:16, Manuel McLure wrote:
> > As other have said, mplayer-plugin wants to pull in mozilla-firefox. The
> > reason for this is that it needs the Mozilla source libraries to build
> > against. One workaround for this is to do
>
> So there is a good reason for mozilla-firefox-bin not satisfying it's
> depency after all. :)
>
> --
> Bo Andresen


Perhaps... I didn't edit the ebuild to find out if firefox-bin would satisfy 
mplayerplug-in. Manuel's suggestion seemed to be more expedient.
-- 
Regards, Ernie
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] InkScape trouble

2006-03-26 Thread Meino Christian Cramer
From: Christoph Eckert <[EMAIL PROTECTED]>
Subject: Re: [gentoo-user] InkScape trouble
Date: Sun, 26 Mar 2006 14:06:27 +0200

Hi,

 ok, my last post was in fact based on emotions -- being sure that I
 myself has something done wrong (that's why I onyl post the emerge
 command I did...).

 Now, here is the output of inkscape right before it crashes:

Script started on Sun Mar 26 15:11:00 2006
solfire:/home/mccramer>inkscape

Emergency save activated!
Emergency save completed. Inkscape will close now.
If you can reproduce this crash, please file a bug at www.inkscape.org
with a detailed description of the steps leading to the crash, so we can fix it.
zsh: abort  
solfire:/home/mccramer>

Script done on Sun Mar 26 15:11:14 2006


But I fear this say as much as my emotional post previously


Keep hacking!
mcc


> 
> >  BADABOOM!
> >
> >  That's it.
> 
> not really. PLease start Inkscape from a terminal emulation and post the 
> output.
> 
> 
> Best regards
> 
> 
> ce
> 
> -- 
> gentoo-user@gentoo.org mailing list
> 

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] leafnode and xinetd.conf

2006-03-26 Thread THUFIR HAWAT
I'd crosspost this from news.softwear.readers, but I don't have
leafnode configured yet ;)




Here is a sample /etc/xinetd/leafnode entry. The entry in the "server"
field has to point to your locally installed leafnode executable.
Dependent on the installation, this executable may not reside in
/usr/sbin but elsewhere (e.g. /usr/local/sbin if you installed
leafnode from the source code).

service nntp
{
disable = no
flags   = REUSE
socket_type = stream
wait= no
user= news
server  = /usr/sbin/leafnode
log_on_failure  += USERID
}




How do I know where leafnode is, please?  I can create a file

[EMAIL PROTECTED] ~ $
[EMAIL PROTECTED] ~ $ cat /etc/xinetd/leafnode
cat: /etc/xinetd/leafnode: No such file or directory
[EMAIL PROTECTED] ~ $ date
Sun Mar 26 21:21:07 IST 2006
[EMAIL PROTECTED] ~ $



such that it's appended /etc/xinetd.conf when xinetd runs?


thanks,

Thufir

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] InkScape trouble

2006-03-26 Thread Christoph Eckert

> solfire:/home/mccramer>inkscape
>
> Emergency save activated!
> Emergency save completed. Inkscape will close now.
> If you can reproduce this crash, please file a bug at
> www.inkscape.org with a detailed description of the steps leading to
> the crash, so we can fix it. zsh: abort
> solfire:/home/mccramer>
>
> Script done on Sun Mar 26 15:11:14 2006
>
>
> But I fear this say as much as my emotional post previously

unfortunately you're right :( .


Best regards


ce
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] OT: terminal with horizontal scrollbar

2006-03-26 Thread Franta
Hi,

does anyone of you know about an X-terminal with an horizontal
scrollbar?

I use to set linewidth in ORACLE's SQL*Plus to something like 1000 or
2000. If I run a select in SQL most of the columns will be lost beyond
the right border of the terminal.

Well, I could use a ''text'' widget of Tcl/TK and write something like
wsqlplus but I hope there is something ready to use for Linux too.

Thanks in advance
Frank


-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Further probs/phenomena

2006-03-26 Thread Meino Christian Cramer

Hi,

 another thing I am currently not able to understand:
 In search of a dvb-t tv watching applikation I found kaffeine (as far
 as I know not supoorted by Gentoo).

 Kaffeine needs the xine-libs, which in turn are part of gentoo.

 So I installed the xine-libs and the xine-ui.

 Then I compiled kaffeine and installed it also.

 Right after I started that beast everything works fine (after
 correcting the perms of some related files in /dev/. ...)

 A second start of kaffeine files with this on my terminal:

 Script started on Sun Mar 26 22:38:16 2006
solfire:/home/mccramer>kaffeine
kbuildsycoca running...
/dev/dvb/adapter0/frontend0 : opened ( Zarlink MT352 DVB-T )
/dev/dvb/adapter0/frontend1 : : No such file or directory
/dev/dvb/adapter1/frontend0 : : No such file or directory
QLayout "unnamed" added to QWidget "unnamed", which already has a layout
solfire:/home/mccramer>Tuning to: VOX / autocount: 0
Using DVB device 0:0 "Zarlink MT352 DVB-T"
tuning DVB-T to 49800 Hz
inv:2 bw:0 fecH:2 fecL:9 mod:1 tm:1 gi:3 hier:0
.. LOCKED.
NOUT: 1
dvbEvents 0:0 started
Tuning delay: 210 ms
kaffeine: symbol lookup error: 
/usr/lib/xine/plugins/1.1.1/xineplug_decode_ff.so: undefined symbol: 
pp_get_context
X Error: BadWindow (invalid Window parameter) 3
  Major opcode:  7
  Minor opcode:  0
  Resource id:  0x14001d6

solfire:/home/mccramer>

Script done on Sun Mar 26 22:38:42 2006


I reinstalled xine-libs, started kaffeine...works!

Quit kaffeine, start kaffeine againthe same scenario as described
above.

Any idea, what goes wrong here ? Especially, cause kaffeine is started
under user permissions, I could not understand, how this could change
/any/ file outside my $HOME. On the other hand: reinstalling xine-lib
will not change anything in my $HOME...

So what is the crazy logic behind this problem ?

Thank you very much in advance for any helpful reply ! :O)

Keep hacking!
mcc

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Problems with domainname

2006-03-26 Thread maxim wexler


--- Ryan Tandy <[EMAIL PROTECTED]> wrote:

> maxim wexler wrote:
> > --- Walter Dnes <[EMAIL PROTECTED]> wrote:
> >   
> >> m doing things wrong.
> >>
> >>   - are you sure you're running ftpd on the
> target
> >> machine?
> >> 
> >
> > Well top and ps list ftp without the  'd' on the
> end
> > as running. And ftp starts with the ftp> prompt.
> If
> > that's what you mean.
> >   
> No, the ftp> prompt is for the FTP *client*.  It
> needs a server to 
> connect to - the system doesn't know how to answer
> FTP requests just 
> like that.  ftpd, the FTP server, needs to be
> running on one of the 
> machines

aiieee!! It's not even emerged yet! This must have
seemed so obvious to everybody they couldn't be
bothered to reply. 

Well, thanks for the hand up. Hopefully this will put
an end to the issue.



__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] leafnode and xinetd.conf

2006-03-26 Thread Alexander Skwar
THUFIR HAWAT wrote:

> How do I know where leafnode is, please?

cat /var/db/pkg/*/leafnode*/CONTENTS

>  I can create a file
> 
> [EMAIL PROTECTED] ~ $
> [EMAIL PROTECTED] ~ $ cat /etc/xinetd/leafnode

/etc/xinetd.d/leafnode

> such that it's appended /etc/xinetd.conf when xinetd runs?

Check out your /etc/xinetd.conf.

But /etc/xinetd.d/leafnode will be included, yes.

Alexander Skwar
-- 
Yes, I've now got this nice little apartment in New York, one of those
L-shaped ones.  Unfortunately, it's a lower case l.
-- Rita Rudner
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Problems with domainname

2006-03-26 Thread maxim wexler
 
>   Ouch; you're *NOT* going to connect the two
> machines while logged on
> via dialup, at least not without some fancy "route"
> statements.  If
> anybody can give an example of how to do it, I'd
> appreciate seeing it.
> 
> > K6-2.6.15--
> > 
> > 
> > lumberton ~ # route -n
> > Kernel IP routing table
> > Destination Gateway   Genmask
> Flags Metric Ref  Use Iface
> > 192.168.0.0 0.0.0.0   255.255.255.0   U   
>  0  0  0 eth0
> > 127.0.0.0   127.0.0.1 255.0.0.0   UG  
>  0  0  0 lo
> >
> 
>   Did you miss the last line when cutting+pasting or
> or was that really
> all?  Try "grep gateway /etc/conf.d/net" on your
> machines.  Here's what I
> get...
> 
But, you never asked about ../net in your last post.

> # For setting the default gateway
> #gateway="eth0/192.168.0.1"
> gateway="eth0/192.168.123.254"
> 
>   First, make sure that you are *NOT* connected via
> dialup.
> 
>   On the K6, insert into /etc/conf.d/net the line
> gateway="eth0/192.168.0.2"
> and execute /etc/init.d/net.eth0 restart
> 
>   On the Sempron, insert into /etc/conf.d/net the
> line
> gateway="eth0/192.168.0.3"
> and execute /etc/init.d/net.eth0 restart
> 
>   You should now be able to talk between the two
> machines... but dialup
> won't work.  You may connect, but not get anywhere. 
> Here's what you
> have to do on the Sempron...
> 
>   - *BEFORE* dialing up "ifconfig eth0 down"; you
> can now dial up
> 
>   - *AFTER* logging off dialup,
> "/etc/init.d/net.eth0 restart"; you can
> now talk between the two computers

Well, I did all that and still no joy. The part about
not be able to connect to the net was true, though.

I thought emerging ftpd would be my salvation but that
doesn't work either. How do you start the bleeping
thing. I  even ran /usr/sbin/ftpd; it didn't gag but
it didn't start either. And there's supposed to be a
whole whack of files under /etc/. Nope. I found
xinet.conf but don't have a clue on how to edit it.

Then there's this. That 'disable' looks ominous.
Should that be set to 'no'? What about 'protocol'?
What should go there?

[EMAIL PROTECTED] ~ $ cat   /etc/xinetd.d/ftp
# default: off
# $Header:
/var/cvsroot/gentoo-x86/net-ftp/ftpd/files/ftp.xinetd,v
1.2 2004/08/14 13:41:20 swegener Exp $
# description: The netkit ftp daemon with optional SSL
support.

service ftp
{
socket_type = stream
protocol= tcp
wait= no
user= root
server  = /usr/bin/ftpd
disable = yes
}


> 
>   If someone has a magic configuration that allows
> eth0 and ppp0 to
> co-exist, and function, simultaneously, please post
> it.

Amen.

> 
> -- 
> Walter Dnes <[EMAIL PROTECTED]> In linux
> /sbin/init is Job #1
> My musings on technology and security at
> http://tech_sec.blog.ca
> -- 
> gentoo-user@gentoo.org mailing list
> 
> 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] In search of two applikations

2006-03-26 Thread maxim wexler

>  Second one:
>  Is there any backup tool, which simply copies the
> contents of one
>  partition, which is larger than one DVD, to DVDs
> "as plain as
>  possible" -- means copies the contents that way,
> that I simply can
>  mount DVD #n and can easily read and copy the
> contents?

Backup? Sounds like your asking for Crackopen ;o




__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] leafnode and xinetd.conf

2006-03-26 Thread THUFIR HAWAT
On 3/26/06, Alexander Skwar <[EMAIL PROTECTED]> wrote:
..
> /etc/xinetd.d/leafnode
>
> > such that it's appended /etc/xinetd.conf when xinetd runs?
>
> Check out your /etc/xinetd.conf.
>
> But /etc/xinetd.d/leafnode will be included, yes.
>
> Alexander Skwar
..

[EMAIL PROTECTED] ~ $
[EMAIL PROTECTED] ~ $
[EMAIL PROTECTED] ~ $ cat /etc/xinetd/leafnode
cat: /etc/xinetd/leafnode: No such file or directory
[EMAIL PROTECTED] ~ $ date
Sun Mar 26 21:21:07 IST 2006
[EMAIL PROTECTED] ~ $ ls -lh /etc/xinetd.d/
total 56K
-rw-r--r--  1 root root 643 Mar 22 13:29 README.services
-rw-r--r--  1 root root 246 Mar 22 13:29 chargen-tcp
-rw-r--r--  1 root root 266 Mar 22 13:29 chargen-udp
-rw-r--r--  1 root root 368 Mar 20 19:39 cups-lpd
-rw-r--r--  1 root root 246 Mar 22 13:29 daytime-tcp
-rw-r--r--  1 root root 272 Mar 22 13:29 daytime-udp
-rw-r--r--  1 root root 238 Mar 22 13:29 echo-tcp
-rw-r--r--  1 root root 263 Mar 22 13:29 echo-udp
-rw-r--r--  1 root root 250 Mar 21 11:37 fingerd
-rw-r--r--  1 root root 230 Mar 22 13:34 leafnode-nntp
-rw-r--r--  1 root root 528 Mar 20 19:59 swat
-rw-r--r--  1 root root 205 Mar 26 19:46 telnetd
-rw-r--r--  1 root root 270 Mar 22 13:29 time-tcp
-rw-r--r--  1 root root 272 Mar 22 13:29 time-udp
[EMAIL PROTECTED] ~ $ cat -n /etc/xinetd.d/leafnode-nntp
 1  # default: off
 2  # description: Leafnode - accepts connections on port 119 (NNTP)
 3
 4  service nntp
 5  {
 6  socket_type = stream
 7  protocol= tcp
 8  wait= no
 9  user= news
10  server  = /usr/sbin/leafnode
11  disable = yes
12  }
[EMAIL PROTECTED] ~ $ cat -n /etc/xinetd.conf
 1  # /etc/xinetd.conf: sample configuration file for xinetd
 2
 3  defaults
 4  {
 5  only_from  = localhost
 6  instances  = 60
 7  log_type   = SYSLOG authpriv info
 8  log_on_success = HOST PID
 9  log_on_failure = HOST
10  cps= 25 30
11  }
12
13  includedir /etc/xinetd.d
[EMAIL PROTECTED] ~ $ date
Sun Mar 26 23:18:23 IST 2006
[EMAIL PROTECTED] ~ $


Was it epstein on "welcome back kotter"?  Ooooh, oooh, oooh!


Ok, thank you so much.  I thought it was odd that "emerge leafnode"
didn't automagically create this file, or something similar :)

Thing is, I'm multi-posting :(

Over in news.softwear.readers there's a thread, so I'm not sure how to
proceed with any followup questions.

After I have this done, I might be inclined adding to the gentoo wiki on this :)


-Thufir

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Further probs/phenomena

2006-03-26 Thread Neil Bothwick
On Sun, 26 Mar 2006 22:51:00 +0200 (CEST), Meino Christian Cramer wrote:

>  In search of a dvb-t tv watching applikation I found kaffeine (as far
>  as I know not supoorted by Gentoo).

* media-video/kaffeine
 Available versions:  0.7.1 0.7.1-r1 0.8
 Installed:   0.8
 Homepage:http://kaffeine.sourceforge.net/
 Description: Media player for KDE using xine and gstreamer 
backends.


-- 
Neil Bothwick

WinErr 010: Reserved for future mistakes by our developers


signature.asc
Description: PGP signature


Re: [gentoo-user] New To Gentoo and Emerge, No ACPI in Kernel

2006-03-26 Thread Gabriel Dain
"home directory" is ~. Get used to writing ~ for the home directory,
so that your scripts/apps/whatever are "plug n play" for all users.

Gabio

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] New To Gentoo and Emerge, No ACPI in Kernel

2006-03-26 Thread Lord Sauron
On 3/26/06, Gabriel Dain <[EMAIL PROTECTED]> wrote:
> "home directory" is ~. Get used to writing ~ for the home directory,
> so that your scripts/apps/whatever are "plug n play" for all users.

Yeah, it's just that I normally use my non-root account lsauron,
however, I sometimes will open a Xnest window and come in as root for
this or that, so I want to ensure that the same things work for both
user accounts.

I think that by now I'm down to just how to compile and update my
kernel with the ACPI stuff enabled.  I don't think that the last time
I tried that it worked, because it still tells me (KDE's Control
Centre) that ACPI support is not compiled into the kernel and that I
need to recompile with that stuff in the kernel.

--
== GCv3.12 ==
GCS d-(++) s+: a? C++ UL+> P+
L++ E--- W+(+++) N++ o? K? w--- O? M+
V? PS- PE+ Y-(--) PGP- t+++ 5? X R tv-- b+
DI+++ D+ G e* h- !r !y
= END GCv3.12 

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Re: two usb memory devices

2006-03-26 Thread James
Richard Fish  asmallpond.org> writes:


> On 3/25/06, Neil Bothwick  digimed.co.uk> wrote:
> > I don't use ivman, but KDE uses pmount, which mounts devices according
> > to their device name, like /media/bigusbstick. Can you persuade ivman to
> > use pmount? Unless you use KDE, in which case you can get rid of ivman
> > altogether.

> According to the ivman documentation, ivman will try in order:

> pmount-hal
> pmount
> mount


> So James, this should be as easy as "emerge pmount".

pmount has been installed all along:
sys-apps/pmount
 Available versions:  0.9.6
 Installed:   0.9.6

my entire fstab is this:
/dev/cdroms/cdrom0  /mnt/cdrom  iso9660 user,noauto,rw  0 0
/dev/fd0/mnt/floppy autonoauto  0 0
none   /dev/shm tmpfs   defaults0 0
/dev/hda2   /   reiserfsnoatime,notail  1 2
/dev/hda3   noneswapsw  0 0
/dev/hda5   /varreiserfsnoatime 0 0
/dev/hda6   /usrreiserfsnoatime 0 0
/dev/hda7   /home   reiserfsnoatime 0 0
/dev/hda8  /usr/local   reiserfsnoatime 0 0
/dev/hda9   /tmpreiserfsnoatime 0 0
none/proc   procdefaults0 0
none /proc/bus/usb  usbfs   defaults0 0


Both usb memory sticks work find individually, automagially 
(udev + hal/dbus/ivman) without anthing special. Still when 
I plug in the second usb memory stick it just does not show up mounted.

I'm stumped

James







-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] GRP?

2006-03-26 Thread Nick Rout
Yes it does exist!

http://torrents.gentoo.org/

or 

http://www.gentoo.org/main/en/where.xml

you are after the "packages" cd for your architecture.


On Sun, 26 Mar 2006 11:42:20 -0500
JimD wrote:

> Did GRP disappear?  I might rebuild 2006.0 to use 32-bit instead of
> 64-bit and if I do I wanted to use GRP Gnome so I don't have to wait
> for Gnome to rebuild.
> 
> I looked at this mirror and found no packages:
> http://gentoo.mirrors.pair.com/grp/
> 
> I did this search on Google http://www.google.com/search?q=gentoo+grp
> and clicked some of the mirrors: 
> 
> http://gentoo.modulix.net/gentoo/grp/
> http://search.belnet.be/packages/gentoo/grp/
> http://ftp.ucsb.edu/pub/mirrors/linux/gentoo/grp/
> ...
> 
> They all are empty.  I never used grp before so I am not sure if it
> went away with 2006.0 or not.  Do grp packages still exist?
> 
> Jim
> -- 
> gentoo-user@gentoo.org mailing list

-- 
Nick Rout <[EMAIL PROTECTED]>

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] In search of two applikations

2006-03-26 Thread Nick Rout

On Sun, 26 Mar 2006 07:32:45 +0200 (CEST)
Meino Christian Cramer wrote:

>  First one:
>  What dvb-t TV-watching applikation is a good one ? My dvb-t card is
>  recognized by lspci like that:
>   00:0b.0 Multimedia video controller: Brooktree Corporation Bt878 Video 
> Capture (rev 11)
>   00:0b.1 Multimedia controller: Brooktree Corporation Bt878 Audio Capture 
> (rev 11)

Right well that doesn't look like a DVB-T card to me, it looks like a
framegrabber for ordinary analogue TV.

modprobe bttv

should load the module, and assuming it is the only v4l device you have
it will create a device called /dev/video0

now try watching with xawtv, and if that works graduate to tvtime. Both
in portage.

> 
>  I tried xmltv just to scan the channels with a vanilla Linux kernel
>  2.6.16, but xmltv seems not to understand my card (or vice
>  versa)...or the version of the portage tree is outdated ? Dont know...

xmltv has no connection with your tv card. xmltv downloads programme
listings, but it doesn't tune your card. It tells you what is on TV, but
doesn't play it for you.


-- 
Nick Rout <[EMAIL PROTECTED]>

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] xorg 7.0 and missing mouse in kde...

2006-03-26 Thread Jerry McBride

Well... I have all my twm problems behind me and now I'm left with one problem 
I can't resolve.

Kde starts up just fine, but I'm unable to move the mouse pointer. I've tried 
all the various mouse protocols in xorg.conf and read the xorg 7.0 migration 
howto

Has anyone run across this problem and fixed it?

As mentioned, when running the tab window manager the mouse works fine... it's 
only in kde that it's broke.

Thank you in advance, Jerry.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] New To Gentoo and Emerge, No ACPI in Kernel

2006-03-26 Thread Gabriel Dain
Are you sure you compiled it as embbeded, and not module? (* or M in
menuconfig). If it is M, you'll have to load the module, and add it to
the list of modules that are loaded at startup.
--
Gabriel Dain

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] wget -c strange behaviour

2006-03-26 Thread Iain Buchanan
Hi all,

when using wget recently to get some "free" mp3's from Mike Baas'
website, I had to kill it halfway through to do some other downloading.

When I continued, I used `wget -c ...` but I got "strange" behaviour:

$ wget -c
"http://68.106.74.139/mp3/Mike_Baas/4/mp3/Mike_Baas_-_4_-_01_-_Why_Can't_I_Slow_The_World_Down.mp3"
 --10:38:16--  
http://68.106.74.139/mp3/Mike_Baas/4/mp3/Mike_Baas_-_4_-_01_-_Why_Can't_I_Slow_The_World_Down.mp3
=> `Mike_Baas_-_4_-_01_-_Why_Can't_I_Slow_The_World_Down.mp3' 
Connecting to 68.106.74.139:80... connected. HTTP request sent, awaiting 
response... 200 OK Length: 13,870,871 (13M) [audio/mpeg]

50% [=>   ] 13,870,871 3.67M/s
ETA 00:04

10:38:19 (3.69 MB/s) -
`Mike_Baas_-_4_-_01_-_Why_Can't_I_Slow_The_World_Down.mp3' saved
[13870871/13870871]

As you can see, wget didn't continue, instead it tried to download the
complete file again.  It must also be cached by squid, because I
certainly don't get 3.67 M/s on our shared 512k line :)

So the question is: why does wget try to download it from the beginning?
wget shouldn't do this even if the server can't resume, wget should just
die.

And why also does it not appear to finish, even though the mp3 sounds
complete?

many thanks,
-- 
Iain Buchanan 

Loneliness is a terrible price to pay for independence.

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] [OT] Left/Right Channel as Mono in Mplayer

2006-03-26 Thread Ow Mun Heng
Hi All,

Got a few disks (Karaoke) which has this feature of left (with vocal)
right(Music Only). Commercial set-top DVD players can switch between
left and right channels with a click of a button and cycle through all
the options.

My question here is how can that be done in Mplayer/Linux?

I found that there is an option to play Left  / Right / Stereo using
mplayer, but the syntax is weird and cannot be switched on the fly.

the 2 ways are using PAN and channels.

eg:
mplayer filename -af channels=2:2:1:0:1:1
mplayer filename -af pan=2:1:1:0:0

Anyone knows how to do it on the fly? Keyboard shortcut keys?

-- 
Ow Mun Heng
Gentoo/Linux on DELL D600 1.4Ghz 1.5GB RAM
98% Microsoft(tm) Free!! 
Neuromancer 11:00:12 up 16:55, 6 users, load average: 2.22, 1.81, 1.61 


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] [OT] Left/Right Channel as Mono in Mplayer

2006-03-26 Thread Nick Rout
you can assign any key to any action in mplayer. 


On Mon, 27 Mar 2006 11:03:43 +0800
Ow Mun Heng wrote:

> Hi All,
> 
>   Got a few disks (Karaoke) which has this feature of left (with vocal)
> right(Music Only). Commercial set-top DVD players can switch between
> left and right channels with a click of a button and cycle through all
> the options.
> 
> My question here is how can that be done in Mplayer/Linux?
> 
> I found that there is an option to play Left  / Right / Stereo using
> mplayer, but the syntax is weird and cannot be switched on the fly.
> 
> the 2 ways are using PAN and channels.
> 
> eg:
> mplayer filename -af channels=2:2:1:0:1:1
> mplayer filename -af pan=2:1:1:0:0
> 
> Anyone knows how to do it on the fly? Keyboard shortcut keys?
> 
> -- 
> Ow Mun Heng
> Gentoo/Linux on DELL D600 1.4Ghz 1.5GB RAM
> 98% Microsoft(tm) Free!! 
> Neuromancer 11:00:12 up 16:55, 6 users, load average: 2.22, 1.81, 1.61 
> 
> 
> -- 
> gentoo-user@gentoo.org mailing list

-- 
Nick Rout <[EMAIL PROTECTED]>

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] order of module loading (udev)

2006-03-26 Thread Nick Rout
udev system, kernel 2.6.24-something.

serial is a module, as is lirc_serial.

How do I change the order of module loading, so that lirc_serial is
loaded first, and grabs the ttyS0 serial port? 

I suspect that coldplug or something is loading the serial module quite
early in the boot procedure.

Thanks.


-- 
Nick Rout <[EMAIL PROTECTED]>

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Is there a DEP (Data Execution Protection) option for Gentoo?

2006-03-26 Thread Walter Dnes
  The subject says it all.  I've done some spelunking through
/usr/src/linux/.config, and I don't see anything relavant.

-- 
Walter Dnes <[EMAIL PROTECTED]> In linux /sbin/init is Job #1
My musings on technology and security at http://tech_sec.blog.ca
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Further probs/phenomena

2006-03-26 Thread Meino Christian Cramer
From: Neil Bothwick <[EMAIL PROTECTED]>
Subject: Re: [gentoo-user] Further probs/phenomena
Date: Sun, 26 Mar 2006 23:23:07 +0100

Hi Neil,

 yes, but dvb (which I need for dvb-t tv watching) is switched off vie
 USE.

 I installed it via emerge and 'export USE="dvb"' with the described
 effect.

 The problem remains unchanged

 Keep hacking!
 mcc

> On Sun, 26 Mar 2006 22:51:00 +0200 (CEST), Meino Christian Cramer wrote:
> 
> >  In search of a dvb-t tv watching applikation I found kaffeine (as far
> >  as I know not supoorted by Gentoo).
> 
> * media-video/kaffeine
>  Available versions:  0.7.1 0.7.1-r1 0.8
>  Installed:   0.8
>  Homepage:http://kaffeine.sourceforge.net/
>  Description: Media player for KDE using xine and gstreamer 
> backends.
> 
> 
> -- 
> Neil Bothwick
> 
> WinErr 010: Reserved for future mistakes by our developers
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] New To Gentoo and Emerge, No ACPI in Kernel

2006-03-26 Thread Teresa and Dale
Gabriel Dain wrote:

>Are you sure you compiled it as embbeded, and not module? (* or M in
>menuconfig). If it is M, you'll have to load the module, and add it to
>the list of modules that are loaded at startup.
>--
>Gabriel Dain
>
>  
>

I'll take some time to clarify this more. This is a copy and paste of my
kernel config for the ACPI stuff.

> Linux Kernel v2.6.14-gentoo-r5 Configuration
> 
> ┌── ACPI (Advanced Configuration and Power Interface) Support
> ──┐
> │ Arrow keys navigate the menu.  selects submenus --->.
> Highlighted │
> │ letters are hotkeys. Pressing  includes,  excludes, 
> modularizes │
> │ features. Press  to exit,  for Help,  for Search.
> Legend: │
> │ [*] built-in [ ] excluded  module < > module capable │
> │
> ┌───┐
> │
> │ │[*] ACPI Support │ │
> │ │[ ] Sleep States │ │
> │ │< > AC Adapter │ │
> │ │ Battery │ │
> │ │<*> Button │ │
> │ │< > Video │ │
> │ │< > Generic Hotkey (EXPERIMENTAL) │ │
> │ │< > Fan │ │
> │ │< > Processor │ │
> │ │< > ASUS/Medion Laptop Extras │ │
> │ │< > IBM ThinkPad Laptop Extras │ │
> │ │< > Toshiba Laptop Extras │ │
> │ │(0) Disable ACPI for systems before Jan 1st this year (NEW) │ │
> │ │[ ] Debug Statements (NEW) │ │
> │ │[ ] Power Management Timer Support │ │
> │
> └┴(+)───┘
> │
> ├───┤
> │  < Exit > < Help > │
> └───┘
>
>

It's not the best, but it should help anyway. Do you see the * to the
left of ACPI Support? That means that that is compiled into the kernel.
The same for Button. See the M to the left of Battery? That means it is
compiled as a module and has to be loaded when you boot up or whenever
you need to use. The ones that have nothing in there, they are not in
the kernel at all. Oh, do you see the little + sign at the bottom right
under Power Management Timer Support? That means there is more below.
You can use the down arrow to scroll down and it will come up.

As it says up at the top, you can press "y" to compile it in, press "m"
to have it as a module or press "n" to leave it out. You can also swith
through them with the space bar. There are a lot of gurus here that may
disagree with this, but I have no modules for my kernel unless I have to
have it for some reason. I did have modules for my temp sensors but that
was so I could reset it without rebooting. I'm sure someone will come in
with 100 reasons to have modules and some others will have reasons not
too. I say do it like you need to and whatever makes you and the system
happy.

When you make a new kernel, don't remove the old one. Since it does boot
up, you can use it to fall back on in case your new one fails for some
reason. Just give it a different name from the old one when you copy it
over. I do mine names like this:

> [EMAIL PROTECTED] / # ls -al /boot/bzI*
> -rw-r--r-- 1 root root 2196613 Sep 18 2005 /boot/bzImage-gen-2.6.12-1
> -rw-r--r-- 1 root root 2224482 Dec 20 20:31 /boot/bzImage-gen-2.6.14-4
> -rw-r--r-- 1 root root 2225130 Dec 27 04:50 /boot/bzImage-gen-2.6.14-5
> [EMAIL PROTECTED] / #


I currently have three kernels that I can boot if one of them gets
corrupted or something. The last digit is like a version number for me.
If you can't boot the old one, you can hit "e" twice when grub comes up
and then use the arrow keys to edit which kernel you want to boot. It
can save you a lot of headaches too. After you edit that, you just hit
return and then hit the "b" key to boot it up. If it gives you a grub
error, just hit the escape (Esc) key to go back and try again.

Another thing you may not know, you can hit the tab key to complete a
lot of commands too. That includes on the grub screen. If you know it is
bzImage something but can't remember the rest, just delete back to the
bzImage then hit the tab key, may have to hit it twice though. It will
either fill it in or give you a list of the ones that match so far. That
works for a lot of things in Linux. Oh, the arrow keys work in there
too. You can left arrow over until you get to the kernel name to change
that. It will keep you from having to put the root= stuff back in that way.

Hope this helps. I'm about to take some meds and may not be around for a
while. Plenty of others here to help though.

Dale
:-)
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Problems with domainname

2006-03-26 Thread Walter Dnes
On Sun, Mar 26, 2006 at 02:05:13PM -0800, maxim wexler wrote

> I thought emerging ftpd would be my salvation but that
> doesn't work either. How do you start the bleeping
> thing. I  even ran /usr/sbin/ftpd; it didn't gag but
> it didn't start either.

  "man ftpd" (or whatever the package is called) for instructions on how
to start it in daemon mode.  A WAG from me is "/etc/init.d ftpd start",
and remember to use etc-update to put it in your default runlevel.

  That's about all I remember about ftpd, because  I've been using ssh
for a long time.  I strongly recommend switching to ssh.  ftp has
security issues for all but anonymous ftp.  This is due to sending
passwords in clear text.  ssh has both "scp" and "sftp", either of which
will push/pull files.  *AND* ssh allows encrypted tunneling *AND* a
secure "telnet" shell equivalant.  It's better all around.

-- 
Walter Dnes <[EMAIL PROTECTED]> In linux /sbin/init is Job #1
My musings on technology and security at http://tech_sec.blog.ca
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] telnet localhost

2006-03-26 Thread THUFIR HAWAT
I want to test that leafnode is up and running, so am using telnet:


[EMAIL PROTECTED] ~ $
[EMAIL PROTECTED] ~ $ whoami
thufir
[EMAIL PROTECTED] ~ $ telnet localhost 119
Trying 127.0.0.1...
telnet: Unable to connect to remote host: Connection refused
[EMAIL PROTECTED] ~ $ telnet localhost
Trying 127.0.0.1...
telnet: Unable to connect to remote host: Connection refused
[EMAIL PROTECTED] ~ $ ping localhost
PING hawat.thufir.gmail.com (127.0.0.1) 56(84) bytes of data.
64 bytes from hawat.thufir.gmail.com (127.0.0.1): icmp_seq=1 ttl=64
time=0.090 ms
64 bytes from hawat.thufir.gmail.com (127.0.0.1): icmp_seq=2 ttl=64
time=0.073 ms
64 bytes from hawat.thufir.gmail.com (127.0.0.1): icmp_seq=3 ttl=64
time=0.073 ms
64 bytes from hawat.thufir.gmail.com (127.0.0.1): icmp_seq=4 ttl=64
time=0.071 ms

--- hawat.thufir.gmail.com ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 2997ms
rtt min/avg/max/mdev = 0.071/0.076/0.090/0.013 ms
[EMAIL PROTECTED] ~ $ date
Mon Mar 27 05:56:59 IST 2006
[EMAIL PROTECTED] ~ $ telnet vcn.bc.ca
Trying 207.102.64.2...
Connected to vcn.bc.ca.
Escape character is '^]'.


SunOS 5.8

login:

[...]



Why can I not telnet to my own localhost?



thanks,


Thufir

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] order of module loading (udev)

2006-03-26 Thread Chad Feller

2.6.24 ? you might double check that...

anyway, whatever you put in /etc/modules.autoload.d/kernel-2.6 will be 
loaded before coldplug loads anything.


Nick Rout wrote:

udev system, kernel 2.6.24-something.

serial is a module, as is lirc_serial.

How do I change the order of module loading, so that lirc_serial is
loaded first, and grabs the ttyS0 serial port? 


I suspect that coldplug or something is loading the serial module quite
early in the boot procedure.

Thanks.


  



--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] telnet localhost

2006-03-26 Thread Jerry McBride
On Sunday 26 March 2006 23:58, THUFIR HAWAT wrote:
> I want to test that leafnode is up and running, so am using telnet:
>
>
> [EMAIL PROTECTED] ~ $
> [EMAIL PROTECTED] ~ $ whoami
> thufir
> [EMAIL PROTECTED] ~ $ telnet localhost 119
> Trying 127.0.0.1...
> telnet: Unable to connect to remote host: Connection refused
> [EMAIL PROTECTED] ~ $ telnet localhost
> Trying 127.0.0.1...
> telnet: Unable to connect to remote host: Connection refused
> [EMAIL PROTECTED] ~ $ ping localhost
> PING hawat.thufir.gmail.com (127.0.0.1) 56(84) bytes of data.
> 64 bytes from hawat.thufir.gmail.com (127.0.0.1): icmp_seq=1 ttl=64
> time=0.090 ms
> 64 bytes from hawat.thufir.gmail.com (127.0.0.1): icmp_seq=2 ttl=64
> time=0.073 ms
> 64 bytes from hawat.thufir.gmail.com (127.0.0.1): icmp_seq=3 ttl=64
> time=0.073 ms
> 64 bytes from hawat.thufir.gmail.com (127.0.0.1): icmp_seq=4 ttl=64
> time=0.071 ms
>
> --- hawat.thufir.gmail.com ping statistics ---
> 4 packets transmitted, 4 received, 0% packet loss, time 2997ms
> rtt min/avg/max/mdev = 0.071/0.076/0.090/0.013 ms
> [EMAIL PROTECTED] ~ $ date
> Mon Mar 27 05:56:59 IST 2006
> [EMAIL PROTECTED] ~ $ telnet vcn.bc.ca
> Trying 207.102.64.2...
> Connected to vcn.bc.ca.
> Escape character is '^]'.
>
>
> SunOS 5.8
>
> login:
>
> [...]
>
>
>
> Why can I not telnet to my own localhost?
>
>
>
> thanks,
>
>
> Thufir

The localhost is not a service it's an ip.

Jerry

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] ffmpeg emerging

2006-03-26 Thread Luigi Pinna
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hello!
I broke a disc and I had to reinstall my gentoo box in these days; in 
the ffmpeg emerging, I found a lot of problem: no ebuild will complete 
with success the process.
All the ebuild failed with with error:
from 
/var/tmp/portage/ffmpeg-0.4.9_p20051216/work/ffmpeg-0.4.9-p20051216-static/libavcodec/avcodec.h:14,
 from avformat.h:16,
 from dc1394.c:20:
/var/tmp/portage/ffmpeg-0.4.9_p20051216/work/ffmpeg-0.4.9-p20051216-static/libavutil/common.h:579:
 
warning: static declaration of 'lrintf' follows non-static declaration
dc1394.c:23:38: libdc1394/dc1394_control.h: No such file or directory
dc1394.c:29: error: syntax error before "dc1394_cameracapture"
dc1394.c:29: warning: no semicolon at end of struct or union
dc1394.c:34: error: syntax error before '}' token
dc1394.c:34: warning: type defaults to `int' in declaration of 
`dc1394_data'
dc1394.c:34: warning: data definition has no type or storage class
dc1394.c:42: error: `MODE_320x240_YUV422' undeclared here (not in a 
function)
dc1394.c:42: error: initializer element is not constant
[...]
with a lot of functions who have the same problem, after that it exits 
from ebuild.
The USE flags that I use are:
media-video/ffmpeg-0.4.9_p20051216  +a52 +aac 
(-altivec) -debug -doc -dts +encode +ieee1394 +imlib (-mmx) -network 
+ogg -oss +sdl +test +theora +threads +truetype +v4l +vorbis +xvid 
+zlib
All the dependencies are installed (if I use emerge -D ffmpeg is the 
once package)

I ask your help because that package is a critish package for me: (kino 
and xine cannot work for me...)
What did I forget? Or is it a bug?
Thanks, Luigi
- -- 
Public key GPG(0x633F86B7) on http://keyserver.linux.it/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.2 (GNU/Linux)

iD8DBQFEJ3llHmkkjmM/hrcRAo7PAKCeN1SETL2YHXUw8UsFnwDDAnyOWQCgjLRV
47OacE6gRzqCarl86QNxgJ8=
=nlO0
-END PGP SIGNATURE-
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] telnet localhost

2006-03-26 Thread Gabriel Dain
If you really wanted to telnet to yourself (i dont see any
circumstance in which this would be useful), you'd have to set up a
telnet/ssh server:
http://freessh.org/unix.html
--
Gabriel Dain

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Is there a DEP (Data Execution Protection) option for Gentoo?

2006-03-26 Thread Heiko Wundram
Am Montag 27 März 2006 06:29 schrieb Walter Dnes:
>   The subject says it all.  I've done some spelunking through
> /usr/src/linux/.config, and I don't see anything relavant.

It's a kernel patch called PAX, and Gentoo offers hardened-sources which 
incorporate this kernel patch. Google for Gentoo PAX, and you'll find a Howto 
which explains how to set it up.

--- Heiko.

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] telnet localhost

2006-03-26 Thread Dirk Heinrichs
Am Montag, 27. März 2006 07:37 schrieb ext Gabriel Dain:

> If you really wanted to telnet to yourself (i dont see any
> circumstance in which this would be useful), you'd have to set up a
> telnet/ssh server:
> http://freessh.org/unix.html

Did you actually read the original mail? You don't need a telnet server to 
make a telnet connection to the NNTP server.

Bye...

Dirk
-- 
Dirk Heinrichs  | Tel:  +49 (0)162 234 3408
Configuration Manager   | Fax:  +49 (0)211 47068 111
Capgemini Deutschland   | Mail: [EMAIL PROTECTED]
Hambornerstraße 55  | Web:  http://www.capgemini.com
D-40472 Düsseldorf  | ICQ#: 110037733
GPG Public Key C2E467BB | Keyserver: www.keyserver.net


pgpKjeBafVPba.pgp
Description: PGP signature


Re: [gentoo-user] telnet localhost

2006-03-26 Thread Dirk Heinrichs
Am Montag, 27. März 2006 06:58 schrieb ext THUFIR HAWAT:

> I want to test that leafnode is up and running, so am using telnet:
>
> [EMAIL PROTECTED] ~ $ telnet localhost 119
> Trying 127.0.0.1...
> telnet: Unable to connect to remote host: Connection refused

Well, it seems leafnote is either _not_ up and running or not listening for 
connections on network interface lo.

> [EMAIL PROTECTED] ~ $ telnet localhost
> Trying 127.0.0.1...
> telnet: Unable to connect to remote host: Connection refused

dito for telnetd.

> [EMAIL PROTECTED] ~ $ telnet vcn.bc.ca
> Trying 207.102.64.2...
> Connected to vcn.bc.ca.

vcn.bc.ca == localhost??

> Why can I not telnet to my own localhost?

Because the services you want to connect to are not available.

HTH...

Dirk
-- 
Dirk Heinrichs  | Tel:  +49 (0)162 234 3408
Configuration Manager   | Fax:  +49 (0)211 47068 111
Capgemini Deutschland   | Mail: [EMAIL PROTECTED]
Hambornerstraße 55  | Web:  http://www.capgemini.com
D-40472 Düsseldorf  | ICQ#: 110037733
GPG Public Key C2E467BB | Keyserver: www.keyserver.net


pgpDbknNbdhyz.pgp
Description: PGP signature


Re: [gentoo-user] Is there a DEP (Data Execution Protection) option for Gentoo?

2006-03-26 Thread Richard Fish
On 3/26/06, Walter Dnes <[EMAIL PROTECTED]> wrote:
>   The subject says it all.  I've done some spelunking through
> /usr/src/linux/.config, and I don't see anything relavant.

It's enabled by default.  If you don't want it, you need to boot with
the "noexec=off" kernel option.

-Richard

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Is there a DEP (Data Execution Protection) option for Gentoo?

2006-03-26 Thread Rumen Yotov
On Mon, 2006-03-27 at 07:50 +0200, Heiko Wundram wrote:
> Am Montag 27 März 2006 06:29 schrieb Walter Dnes:
> >   The subject says it all.  I've done some spelunking through
> > /usr/src/linux/.config, and I don't see anything relavant.
> 
> It's a kernel patch called PAX, and Gentoo offers hardened-sources which 
> incorporate this kernel patch. Google for Gentoo PAX, and you'll find a Howto 
> which explains how to set it up.
> 
> --- Heiko.
> 
Hi,
Confirm all of the above, just to add a comment.
My current kernel (gentoo-sources-2.6.16) works with a PaX patch w/o any
issues. Had to apply it manually though (resolving a reject by some of
the gentoo's additional patches). Apply cleanly on vanilla-2.6.16.
PS:note however that is just a part of all hardening so if in need
choose one of hardened-sources projects.
HTH.Rumen


smime.p7s
Description: S/MIME cryptographic signature


Re: [gentoo-user] New To Gentoo and Emerge, No ACPI in Kernel

2006-03-26 Thread Lord Sauron
On 3/26/06, Teresa and Dale <[EMAIL PROTECTED]> wrote:
> Gabriel Dain wrote:
>
> >Are you sure you compiled it as embbeded, and not module? (* or M in
> >menuconfig). If it is M, you'll have to load the module, and add it to
> >the list of modules that are loaded at startup.
> >--
> >Gabriel Dain
> >
> >
> >
>
> I'll take some time to clarify this more. This is a copy and paste of my
> kernel config for the ACPI stuff.
>
> > Linux Kernel v2.6.14-gentoo-r5 Configuration
> > 
> > ┌── ACPI (Advanced Configuration and Power Interface) Support
> > ──┐
> > │ Arrow keys navigate the menu.  selects submenus --->.
> > Highlighted │
> > │ letters are hotkeys. Pressing  includes,  excludes, 
> > modularizes │
> > │ features. Press  to exit,  for Help,  for Search.
> > Legend: │
> > │ [*] built-in [ ] excluded  module < > module capable │
> > │
> > ┌───┐
> > │
> > │ │[*] ACPI Support │ │

Yes, that is the same as my config.

> > │ │[ ] Sleep States │ │
> > │ │< > AC Adapter │ │
> > │ │ Battery │ │

I had this set to be compiled into the kernel.  Should that present
any problems?

> > │ │<*> Button │ │
> > │ │< > Video │ │
> > │ │< > Generic Hotkey (EXPERIMENTAL) │ │
> > │ │< > Fan │ │
> > │ │< > Processor │ │
> > │ │< > ASUS/Medion Laptop Extras │ │
> > │ │< > IBM ThinkPad Laptop Extras │ │

I had this enabled (compiled into kernel) since I do own a IBM X40.

> > │ │< > Toshiba Laptop Extras │ │
> > │ │(0) Disable ACPI for systems before Jan 1st this year (NEW) │ │

What on earth is this?  I read the descriptor, but it didn't help me much...

> > │ │[ ] Debug Statements (NEW) │ │
> > │ │[ ] Power Management Timer Support │ │
> > │
> > └┴(+)───┘
> > │
> > ├───┤
> > │  < Exit > < Help > │
> > └───┘
> >
> >
>
> It's not the best, but it should help anyway. Do you see the * to the
> left of ACPI Support? That means that that is compiled into the kernel.
> The same for Button. See the M to the left of Battery? That means it is
> compiled as a module and has to be loaded when you boot up or whenever
> you need to use. The ones that have nothing in there, they are not in
> the kernel at all. Oh, do you see the little + sign at the bottom right
> under Power Management Timer Support? That means there is more below.
> You can use the down arrow to scroll down and it will come up.
>
> As it says up at the top, you can press "y" to compile it in, press "m"
> to have it as a module or press "n" to leave it out. You can also swith
> through them with the space bar. There are a lot of gurus here that may
> disagree with this, but I have no modules for my kernel unless I have to
> have it for some reason. I did have modules for my temp sensors but that
> was so I could reset it without rebooting. I'm sure someone will come in
> with 100 reasons to have modules and some others will have reasons not
> too. I say do it like you need to and whatever makes you and the system
> happy.

I'm just going to try compiling stuff into the kernel first, before I
try and tinker.

> When you make a new kernel, don't remove the old one. Since it does boot
> up, you can use it to fall back on in case your new one fails for some
> reason. Just give it a different name from the old one when you copy it
> over. I do mine names like this:

So, I should rename one of my kernels and try and see which one is
which?  Or am I still off the mark?  It didn't look like it compiled
the kernel...  I think it should have taken longer, but it didn't.  I
may be missing a step.  : /

> > [EMAIL PROTECTED] / # ls -al /boot/bzI*
> > -rw-r--r-- 1 root root 2196613 Sep 18 2005 /boot/bzImage-gen-2.6.12-1
> > -rw-r--r-- 1 root root 2224482 Dec 20 20:31 /boot/bzImage-gen-2.6.14-4
> > -rw-r--r-- 1 root root 2225130 Dec 27 04:50 /boot/bzImage-gen-2.6.14-5
> > [EMAIL PROTECTED] / #
>
>
> I currently have three kernels that I can boot if one of them gets
> corrupted or something. The last digit is like a version number for me.
> If you can't boot the old one, you can hit "e" twice when grub comes up
> and then use the arrow keys to edit which kernel you want to boot. It
> can save you a lot of headaches too. After you edit that, you just hit
> return and then hit the "b" key to boot it up. If it gives you a grub
> error, just hit the escape (Esc) key to go back and try again.

Just a question: if the support is made to be as a module (M, instead
of *) does that mean that you have to add something like "doacpi" to
the boot parameters?

> Another thing you may not know, you can hit the tab key to complete a
> lot of commands too. That includes on the grub screen. If you know it is
> bzImage somet

Re: [gentoo-user] telnet localhost

2006-03-26 Thread Iain Buchanan
On Mon, 2006-03-27 at 05:58 +0100, THUFIR HAWAT wrote:
> I want to test that leafnode is up and running, so am using telnet:
[snip]
> Why can I not telnet to my own localhost?

maybe your services are not listening on lo, and only on eth0?
-- 
Iain Buchanan 

Arrakis teaches the attitude of the knife - chopping off what's
incomplete and saying: "Now it's complete because it's ended here."
-- Muad'dib, "Dune"

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] telnet localhost

2006-03-26 Thread Gabriel Dain
> Did you actually read the original mail? You don't need a telnet server to
> make a telnet connection to the NNTP server.
No, sorry, I thought the original mail was the one starting with
> I want to test that leafnode is up and running, so am using telnet:

my bad
--
Gabriel Dain

-- 
gentoo-user@gentoo.org mailing list



  1   2   >