Re: [gentoo-user] Asking dhcp for a static address

2006-01-06 Thread Steven Susbauer
A static IP address is something you have to configure on the DHCP 
server, on the computer it just asks the server What IP address am I 
supposed to have?. If you're set up with a static IP, it compares your 
mac address to a list and gives you the one you've assigned to it. The 
client side doesn't do anything out of the ordinary.


Sergio Polini wrote:

I can't understand how to ask dhcp for a static address.
I've read /etc/conf.d/net.example, but using

config_eth0=( IPaddress netmask netmask brd broadcast)

in /etc/conf.d/net configures my network interface _instead of_ asking 
dhcp (the files in /var/lib/dhcpc are not updated).


If I use

dhcpcd_eth0=-s IPaddress

dhcpcd hangs.

Any hints?

Thanks
Sergio

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Asking dhcp for a static address

2006-01-06 Thread Peter Volkov (pva)
On Птн, 2006-01-06 at 08:53 +0100, Sergio Polini wrote:
 I can't understand how to ask dhcp for a static address.
 I've read /etc/conf.d/net.example, but using
 
 config_eth0=( IPaddress netmask netmask brd broadcast)
 
 in /etc/conf.d/net configures my network interface _instead of_
 asking 
 dhcp (the files in /var/lib/dhcpc are not updated).

Right. This is static configuration. No dhcp.

 If I use
 
 dhcpcd_eth0=-s IPaddress
 
 dhcpcd hangs.

 Any hints? 

Hm. Information from net.example, expressed in other words:

First select what dhcp client you are going to use by adding one of
# dhclient: emerge net-misc/dhcp
# dhcpcd:   emerge net-misc/dhcpcd
# pump: emerge net-misc/pump
# udhcpc:   emerge net-misc/udhcp
in modules. Fex
1.  modules=( dhcpcd )
Now. Tell that you are going to use dhcp on eth0
2.  config_eth0=( dhcp )
And then add custom configuration options
module_eth0=custom_options
Fex
3.  dhcpcd_eth0=-s 123.123.123.123

BTW. What version of baselayout do you have?

Peter.


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


Re: [gentoo-user] package conflict on update

2006-01-06 Thread Neil Bothwick
On Fri, 6 Jan 2006 12:57:07 +0530, Abhay Kedia wrote:

  version _after_ the new version has been merged into place.  One
  possible solution would be to have a special feature that, when
  enabled, allows portage to automatically unmerge an old version
  _before_ the new one is installed (with protection against unmerging
  system packages of course).
 
 That is no solution AT ALL!!! What if portage unmerges the package and
 while compiling the new package it gets into an error? You are left
 with no installed packages.

Portage could remove the old package after compilation

ebuild package-new.ebuild compile
ebuild package-old.ebuild unmerge
ebuild package-new.ebuild install

This would reduce the chances of something bad happening, but not remove
it altogether. So it would have to package up the old files first and
re-install them if the new install failed, more than a little messy IMO.


-- 
Neil Bothwick

Borg -- James Borg -- licensed to assimilate.


signature.asc
Description: PGP signature


Re: [gentoo-user] package conflict on update

2006-01-06 Thread Neil Bothwick
On Thu, 05 Jan 2006 17:14:36 -0800, Zac Medico wrote:

 | if_blocked_by('openmotif')
 | ewarn You must unmerge openmotif before proceeding
 | 
 
 It would be icky to have to specify blocker logic/messages like that.  

Not in the sort of cases that come up most often, where functionality has
been moved from a package into another. In this case the block is
entirely predictable. If, for example, you are updating xpdf from version
=X to version X, it will both require and block poppler. The dev has
already modified the ebuild to handle the new dependency, so he will know
about the block.


-- 
Neil Bothwick

Windows booting: insert CD-ROM 2.


signature.asc
Description: PGP signature


Re: [gentoo-user] need help with kmail SOLVED

2006-01-06 Thread Ernie Schroder
On Wednesday 04 January 2006 15:01, a tiny voice compelled 
[EMAIL PROTECTED] to write:
 Glad to hear it's fixed!  Something must have been messed up in the
 profiles.


It's possible, though I don't think so. I believe I had deleted and recreated 
the profiles and accounts previously. I would be interesting to find what 
caused the problems in the first place.
-- 
Regards, Ernie
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] emerge sync

2006-01-06 Thread ddup1
hi

why emerge sync is sometime very long, at the step update portage cache,
sometime it takes 1mn and sometime lot longer ?

-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] Re: k3b and now NTFS access rights

2006-01-06 Thread Michael Kintzios

 -Original Message-
 From: Neil Bothwick [mailto:[EMAIL PROTECTED] 
 Sent: 05 January 2006 00:55
 To: gentoo-user@lists.gentoo.org
 Subject: Re: [gentoo-user] Re: k3b and now NTFS access rights
 
 There is, set a suitable umask value. By default, NTFS partitions are
 mounted readable only by the user that mounted them. Setting umask=222
 makes them readable by everyone, but still writable by no-one 
 (although
 NTFS is usually mounted ro so this makes little difference). 
 See the NTFS
 section of man mount.

Thanks! I've read the manual and then tried different umask options.
Umask=222 seems the most reasonable for what I need.  I noticed that the
different subdirectories and files automatically inherit the allocated
NTFS partition access rights.  Is this how umask in fstab works
(recursively)?

On a hypothetical case where you want to give different access rights to
all/some subdorectories  files, do you have to set these individually
the first time after mounting the partition, use ACL's, or what else?

Sorry if my questions appear silly - I've always been confused by this
topic and its different permutations.
-- 
Regards,
Mick

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Re: emerge sync

2006-01-06 Thread Peter
On Fri, 06 Jan 2006 10:35:03 +0100, ddup1 wrote:

 hi
 
 why emerge sync is sometime very long, at the step update portage cache,
 sometime it takes 1mn and sometime lot longer ?

Portage problem. Will be better next release I hear. Search the forums and
search the newsgroup for portage, metadata, cache for more info. Most
often, hangs at 50-51% while redoing KDE. Defrag or moving /usr/portage to
its own partition has been known to help. Read some of the posts.


-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Re: Asking dhcp for a static address

2006-01-06 Thread Peter
On Fri, 06 Jan 2006 08:53:53 +0100, Sergio Polini wrote:

 I can't understand how to ask dhcp for a static address. I've read
 /etc/conf.d/net.example, but using
 
 config_eth0=( IPaddress netmask netmask brd broadcast)
 
 in /etc/conf.d/net configures my network interface _instead of_ asking
 dhcp (the files in /var/lib/dhcpc are not updated).
 
 If I use
 
 dhcpcd_eth0=-s IPaddress
 
 dhcpcd hangs.
 
 Any hints?
 
 Thanks
 Sergio

Your command above is weird. If you want a static IP you have to change
your /etc/conf.d/net file and edit. Then, you could take dhcp out of the
run levels since with a static IP you won't need it.

Then, if you have a router, change it from providing dhcp to NO.

Here's my net file fwiw. Info comment lines stripped. I leave in the old
dhcp commands

iface_eth0=192.168.2.100 broadcast 192.168.0.255 netmask 255.255.255.0

#iface_eth0=dhcp
#dhcpcd_eth0=-N

# For setting the default gateway
#
gateway=eth0/192.168.2.1

This last part is important. Your PC has to find the gateway. My router is
at the above address. You might also have to add the gateway address to
/etc/resolv.conf as the nameserver otherwise you might lose internet and
network connections.

Be sure to copy the resolv.conf file first to make sure you don't lose
other important settings.

Good luck. Works fine for me :)

-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] Re: emerge sync

2006-01-06 Thread Michael Kintzios


 -Original Message-
 From: news [mailto:[EMAIL PROTECTED] On Behalf Of Peter
 Sent: 06 January 2006 10:40
 To: gentoo-user@lists.gentoo.org
 Subject: [gentoo-user] Re: emerge sync
 
 
 On Fri, 06 Jan 2006 10:35:03 +0100, ddup1 wrote:
 
  hi
  
  why emerge sync is sometime very long, at the step update 
 portage cache,
  sometime it takes 1mn and sometime lot longer ?
 
 Portage problem. Will be better next release I hear. Search 
 the forums and
 search the newsgroup for portage, metadata, cache for more info. Most
 often, hangs at 50-51% while redoing KDE. Defrag or moving 
 /usr/portage to
 its own partition has been known to help. Read some of the posts.

My experience has been that defraging /usr/portage brought enormous
speed up, but just once or twice.  Soon after the darn thing slowed down
again.  Looking forward to the next portage version.  :-)
-- 
Regards,
Mick

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] firefox quickstart

2006-01-06 Thread Jose Maria Alvarez Fernandez
There is a kind of what you're looking for here:

http://kde-apps.org/content/show.php?content=31014

It's in early development stages, but it works. It's based on the mozilla one.

Cheers!!

Chema
El Viernes, 6 de Enero de 2006 06:57, Boyd Stephen Smith Jr. escribió:
 On Thursday 05 January 2006 23:49, Richard Fish [EMAIL PROTECTED]

 wrote about 'Re: [gentoo-user] firefox quickstart':
  For openoffice.org 1.x, there is oooqs and variants.  However it
  doesn't work with the current OOo.

 Actually, the latest stable x86 oooqs (2.0.3-r2) *requires* the 2.x line of
 OpenOffice.org.

 --
 Boyd Stephen Smith Jr.
 [EMAIL PROTECTED]
 ICQ: 514984 YM/AIM: DaTwinkDaddy

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] odd portate BINARY_HOST behaviour after sync

2006-01-06 Thread Trenton Adams
These are the packages that I would merge, in order:

Fetching binary packages info...
Loaded metadata pickle.
Traceback (most recent call last):
  File /usr/bin/emerge, line 3123, in ?
mydepgraph=depgraph(myaction,myopts)
  File /usr/bin/emerge, line 915, in __init__
portage.db[/][bintree].populate((--getbinpkg in myopts),
(--getbinpkgonly in myopts))
  File /usr/lib/portage/pym/portage.py, line 5931, in populate
self.remotepkgs =
getbinpkg.dir_get_metadata(settings[PORTAGE_BINHOST],
chunk_size=chunk_size)
  File /usr/lib/portage/pym/getbinpkg.py, line 440, in dir_get_metadata
filelist = dir_get_list(baseurl, conn)
  File /usr/lib/portage/pym/getbinpkg.py, line 297, in dir_get_list
listing = conn.nlst(address)
  File /usr/lib/python2.4/ftplib.py, line 448, in nlst
self.retrlines(cmd, files.append)
  File /usr/lib/python2.4/ftplib.py, line 395, in retrlines
resp = self.sendcmd('TYPE A')
  File /usr/lib/python2.4/ftplib.py, line 241, in sendcmd
return self.getresp()
  File /usr/lib/python2.4/ftplib.py, line 214, in getresp
raise error_temp, resp
ftplib.error_temp: 421 No Transfer Timeout (5 seconds): closing
control connection.


Now here's the great part.  If I remove
/var/cache/edb/remote_metadata.pickle, everything works great.  But,
if I try it again the next time, it fails with the above errors.  Then
I remove the remote_metadata.pickle again, and it works.  Any clues on
this one?  It looks like it's having some sort of active FTP problem
perhaps?  But why would it work when I remove the pickle, but not
afterwards?  This is just very bizarre to me.  Does it not use active
FTP the first round or something?

All I've got to say, is that really weird things are happening, LOL.

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] world file cheating

2006-01-06 Thread Harald Arnesen
Trenton Adams [EMAIL PROTECTED] writes:

 I just boot with a gentoo CD, tar up my entire system, and untar it on
 the new system.  If your new system boots with the gentoo CD as well,
 then you can pipe this over ssh.  Something like the following...


 cd /mnt/gentoo
 tar -cz ./ | ssh [EMAIL PROTECTED] 'cd /mnt/gentoo; tar -xz'

Won't you need tar xpz to preserve file ownership and permissions?
-- 
Hilsen Harald.

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Re: odd portate BINARY_HOST behaviour after sync

2006-01-06 Thread Trenton Adams
Oh, in case you don't believe me, here's the full transcript of what I did. :)
the update alias is emerge --update --getbinpkg --getbinpkgonly --usepkgonly

ephraim ~ # update -p world

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

Fetching binary packages info...
Loaded metadata pickle.
Traceback (most recent call last):
  File /usr/bin/emerge, line 3123, in ?
mydepgraph=depgraph(myaction,myopts)
  File /usr/bin/emerge, line 915, in __init__
portage.db[/][bintree].populate((--getbinpkg in myopts),
(--getbinpkgonly in myopts))
  File /usr/lib/portage/pym/portage.py, line 5931, in populate
self.remotepkgs =
getbinpkg.dir_get_metadata(settings[PORTAGE_BINHOST],
chunk_size=chunk_size)
  File /usr/lib/portage/pym/getbinpkg.py, line 440, in dir_get_metadata
filelist = dir_get_list(baseurl, conn)
  File /usr/lib/portage/pym/getbinpkg.py, line 297, in dir_get_list
listing = conn.nlst(address)
  File /usr/lib/python2.4/ftplib.py, line 448, in nlst
self.retrlines(cmd, files.append)
  File /usr/lib/python2.4/ftplib.py, line 395, in retrlines
resp = self.sendcmd('TYPE A')
  File /usr/lib/python2.4/ftplib.py, line 241, in sendcmd
return self.getresp()
  File /usr/lib/python2.4/ftplib.py, line 214, in getresp
raise error_temp, resp
ftplib.error_temp: 421 No Transfer Timeout (5 seconds): closing
control connection.
[1]+  Killed  nice -n 20 emerge --update --getbinpkg
--getbinpkgonly --usepkgonly -p world
ephraim ~ # rm -f /var/cache/edb/
counter   metadata.idx.most_recent  remote_metadata.pickle
dep/  mtimedb
ephraim ~ # rm -f /var/cache/edb/remote_metadata.pickle
ephraim ~ # update -p world

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

Fetching binary packages info...
cache miss: 'x' --- cache hit: 'o'
x!
 
xxx
  -- DONE!

Calculating world dependencies ...done!
[binary U ] sys-apps/man-pages-2.18 [2.16]
[binary  N] x11-libs/cairo-1.0.2
[binary U ] dev-libs/glib-2.8.4 [2.6.5]
[binary U ] x11-libs/pango-1.10.2 [1.8.1-r1]
[binary U ] dev-libs/atk-1.10.3 [1.10.1]
[binary U ] x11-libs/gtk+-2.8.8 [2.6.10-r1]
[binary U ] net-analyzer/ethereal-0.10.14 [0.10.13-r2]
[binary U ] sys-apps/module-init-tools-3.2.1 [3.0-r2]
[binary U ] sys-devel/gcc-config-1.3.12-r5 [1.3.12-r4]
[binary U ] sys-apps/findutils-4.1.20-r2 [4.1.20-r1]
[binary  N] dev-util/dialog-1.0.20050206
[binary U ] app-portage/gentoolkit-0.2.2_pre1 [0.2.0-r3]
ephraim ~ # update -p world

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

Fetching binary packages info...
Loaded metadata pickle.
Traceback (most recent call last):
  File /usr/bin/emerge, line 3123, in ?
mydepgraph=depgraph(myaction,myopts)
  File /usr/bin/emerge, line 915, in __init__
portage.db[/][bintree].populate((--getbinpkg in myopts),
(--getbinpkgonly in myopts))
  File /usr/lib/portage/pym/portage.py, line 5931, in populate
self.remotepkgs =
getbinpkg.dir_get_metadata(settings[PORTAGE_BINHOST],
chunk_size=chunk_size)
  File /usr/lib/portage/pym/getbinpkg.py, line 440, in dir_get_metadata
filelist = dir_get_list(baseurl, conn)
  File /usr/lib/portage/pym/getbinpkg.py, line 297, in dir_get_list
listing = conn.nlst(address)
  File /usr/lib/python2.4/ftplib.py, line 448, in nlst
self.retrlines(cmd, files.append)
  File /usr/lib/python2.4/ftplib.py, line 395, in retrlines
resp = self.sendcmd('TYPE A')
  File /usr/lib/python2.4/ftplib.py, line 241, in sendcmd
return self.getresp()
  File /usr/lib/python2.4/ftplib.py, line 214, in getresp
raise error_temp, resp
ftplib.error_temp: 421 No Transfer Timeout (5 

[gentoo-user] Samba !

2006-01-06 Thread brunogola
Good morning ( in brazil ) guys :-)

I know that here is not the best place to ask this, but i dont know where to 
find information about my dout.

I have a machine running linux, and i'm authenticating  in a windows 2000 
domain (Active directory) using
samba, winbind and kerberos. What i need to know is if there is a way of making 
some other machines
authenticate in this machine, and this machine will ask the password for the 
windows 2000 domain (only for some
users, and the user need to be in the /etc/passwd). Let me explain: i have a 
user 'bob' that is not a user in
the domain, but it has your username and password on my linux machine, so he 
can authenticate. I have a user
bgola who has the username on the AD and on the linux machine, but the password 
isnt on the linux machine, only
on  the AD. He can authenticate too.
Resuming: my linux machine will use the username database from its own but the 
password database from its own
AND from the AD.

Does anyone know if its possible? I saw something about password server @ the 
smb.conf but i dont have ideia of
how it works.

Thanks any awnser and sorry my bad english, i'm trying to learn :-)!

Bruno Gola


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] world file cheating

2006-01-06 Thread Trenton Adams
I've never specified -p, so I think it must be default, because I
always have permissions preserved when I use tar.  Perhaps this is a
GNU tar default setting?

On 1/6/06, Harald Arnesen [EMAIL PROTECTED] wrote:
 Trenton Adams [EMAIL PROTECTED] writes:

  I just boot with a gentoo CD, tar up my entire system, and untar it on
  the new system.  If your new system boots with the gentoo CD as well,
  then you can pipe this over ssh.  Something like the following...
 
 
  cd /mnt/gentoo
  tar -cz ./ | ssh [EMAIL PROTECTED] 'cd /mnt/gentoo; tar -xz'

 Won't you need tar xpz to preserve file ownership and permissions?
 --
 Hilsen Harald.

 --
 gentoo-user@gentoo.org mailing list



-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] 2.6.15 gentoo-sources emerge

2006-01-06 Thread Paweł Madej
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Mark Knecht wrote:
 Hi,
I noticed this line as I was emerging gentoo-sources this morning.
 (Yuk...4:30AM this morning...) Is it a problem?
 
 * Applying 4905_alpha-sysctl-uac.patch (-p0+) ... 
  [ ok ]
 awk: cmd. line:1: fatal: cannot open file
 `/home/portage_temp/portage/gentoo-sources-2.6.15/work/linux-2.6.15-gentoo/include/linux/version.h'
 for reading (No such file or directory)
 
 Thanks,
 Mark
 

I think you should file a bug on bugzilla.gentoo.org so the problem
could be seen by kernel developers

- --
Paweł Madej aka Nysander
http://quanteam.info  | http://forum-farmaceutyczne.org
http://nysander.quanteam.info | http://wiki.quanteam.info
GPG key: 5861680B | keyserver: http://pgp.mit.edu
key fingerprint: 34A9 B8BB DFA2 4F0B EFB5  CE50 82F4 8C82 5861 680B
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFDvmbGgvSMglhhaAsRAg0BAKC0tz6kljoEBoLoCrFolGV9tMmOhwCfUz0z
hcZ2X+mtHrc9CfYfO2AZx58=
=IvZI
-END PGP SIGNATURE-

-- 
gentoo-user@gentoo.org mailing list



Re: Re: [gentoo-user] need help with kmail SOLVED

2006-01-06 Thread brettholcomb
It would be nice.  Let us know if you find it.

 
 From: Ernie Schroder [EMAIL PROTECTED]
 Date: 2006/01/04 Wed PM 04:14:09 EST
 To: gentoo-user@lists.gentoo.org
 Subject: Re: [gentoo-user] need help with kmail SOLVED
 
 On Wednesday 04 January 2006 15:01, a tiny voice compelled 
 [EMAIL PROTECTED] to write:
  Glad to hear it's fixed!  Something must have been messed up in the
  profiles.
 
 
 It's possible, though I don't think so. I believe I had deleted and recreated 
 the profiles and accounts previously. I would be interesting to find what 
 caused the problems in the first place.
 -- 
 Regards, Ernie
 -- 
 gentoo-user@gentoo.org mailing list
 
 

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Re: Asking dhcp for a static address

2006-01-06 Thread Sergio Polini
Peter:
 iface_eth0=192.168.2.100 broadcast 192.168.0.255 netmask 
255.255.255.0
 #iface_eth0=dhcp
 #dhcpcd_eth0=-N
 gateway=eth0/192.168.2.1

 This last part is important. Your PC has to find the gateway.

Done. But it doesn't work :-(

 You might also have to add the
 gateway address to /etc/resolv.conf as the nameserver otherwise you
 might lose internet and network connections.

Yes, I can't get names resolved.
Do you mean that I should  add

nameserver 192.168.2.1

(i.e., my gateway address, which is different ;-) to /etc/resolv.conf?
My resolv.conf after a dhcp connession is:

domain fastwebnet.it
nameserver 213.156.54.80
nameserver 213.156.54.81

(Fastweb is my provider).

What should my resolv.conf look like?
Thanks.
Sergio
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] 2.6.15 gentoo-sources emerge

2006-01-06 Thread Petteri Räty
Mark Knecht wrote:
 Hi,
I noticed this line as I was emerging gentoo-sources this morning.
 (Yuk...4:30AM this morning...) Is it a problem?
 
 * Applying 4905_alpha-sysctl-uac.patch (-p0+) ... 
  [ ok ]
 awk: cmd. line:1: fatal: cannot open file
 `/home/portage_temp/portage/gentoo-sources-2.6.15/work/linux-2.6.15-gentoo/include/linux/version.h'
 for reading (No such file or directory)
 

http://bugs.gentoo.org/show_bug.cgi?id=113261

Regards,
Petteri


signature.asc
Description: OpenPGP digital signature


Re: [gentoo-user] Kate doesn't reuse existing process anymore with kde 3.5.0?

2006-01-06 Thread Petteri Räty
Abhay Kedia wrote:
 On Wednesday 04 January 2006 16:02, Neil Bothwick wrote:
 
I've just tried it on another box, and I do get that error when opening
a second file, but checking kate shows that it does have both files
loaded.

 
 Ah...you are right. The files did get opened but that error pop (and that too 
 twice) is quite annoying. I even tried to rename kate to kate.bin and created 
 a script with name kate which calls kate.bin with --use option but that also 
 gives the same error.
 
 I don't quite understand what made KDE developers withdraw such an excellent 
 feature. God knows what goes in developers mind *sigh*
 
 Regards,
 Abhay

You can always file a bug in bugs.kde.org to request this to be
configurable. As usual first check that the bug does not already exist.

Regards,
Petteri


signature.asc
Description: OpenPGP digital signature


Re: [gentoo-user] Samba !

2006-01-06 Thread Stroller


On 6 Jan 2006, at 12:32, brunogola wrote:


I have a machine running linux, and i'm authenticating  in a  
windows 2000 domain (Active directory) using

samba, winbind and kerberos.


Hi there,

I've done some of this recently, and I don't think you need active  
directory, winbind AND kerberos. My understanding is that all three  
are separate mechanisms for authenticating *nix users against a  
Windows domain.


Active directory is MS's name for LDAP, so if you use that then your  
applications would be compiled using the LDAP USE flag  would treat  
the MS server as an LDAP server. I don't believe its schema's are  
terribly good for *nix users - I use Winbind, which uses PAM to  
appear part of the local authentication process and pass these on to  
the Windows DC.



What i need to know is if there is a way of making some other machines
authenticate in this machine, and this machine will ask the  
password for the windows 2000 domain (only for some

users, and the user need to be in the /etc/passwd).


It would be helpful if you gave an example of which programs /  
services on which machines (A, B and C??) you need to be able  
authenticate in this way.



Let me explain: i have a user 'bob' that is not a user in
the domain, but it has your username and password on my linux  
machine, so he can authenticate. I have a user
bgola who has the username on the AD and on the linux machine, but  
the password isnt on the linux machine, only

on  the AD. He can authenticate too.
Resuming: my linux machine will use the username database from its  
own but the password database from its own

AND from the AD.


I believe that in this situation it would be unusual to give the  
bgola a username on the Linux machine - he has one on the AD, so if  
you use Winbind then he doesn't need one on the Linux box. He can  
have a homedir, since he may need to store files on the Linux box,  
but that's not the same, I think, as having an account.


For instance on my Linux/Winbind machine on an AD:

$ getent passwd | grep -e stroller -e ned
stroller:x:1000:100::/home/stroller:/bin/bash
ned:x:10012:1:Some Geezer:/home/DOMAIN/ned:/bin/false
$ grep -e stroller -e ned /etc/passwd
stroller:x:1000:100::/home/stroller:/bin/bash
$ ls -ld ~stroller ~ned
drwxr-xr-x  3 ned domain users 160 Jan  6 06:32 /home/DOMAIN/ned
drwxr-xr-x  5 stroller   users272 Jan  6 03:58 /home/stroller

Both users can authenticate, depending on how the /etc/pam.d/ 
the_authenticating_service is set up. I use pam_mkhomedir.so to  
create a home directory for any users authenticating via Winbind, but  
beware this only works for services which call PAM session directives.


I used this guide to set it all up: http://www.samba.org/samba/docs/ 
man/Samba-HOWTO-Collection/winbind.html#id2621482


Please CC me should you reply to the list with further questions,

Stroller.


--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] need help with kmail SOLVED

2006-01-06 Thread Benno Schulenberg
Ernie Schroder wrote:
 would be
 interesting to find what caused the problems in the first place.

Well, you do keep backups, don't you?  :)

Then diff an old .kde dir with your current one.

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



Re: [gentoo-user] 2.6.15 gentoo-sources emerge

2006-01-06 Thread Mark Knecht
On 1/6/06, Petteri Räty [EMAIL PROTECTED] wrote:
 Mark Knecht wrote:
  Hi,
 I noticed this line as I was emerging gentoo-sources this morning.
  (Yuk...4:30AM this morning...) Is it a problem?
 
  * Applying 4905_alpha-sysctl-uac.patch (-p0+) ...
   [ ok ]
  awk: cmd. line:1: fatal: cannot open file
  `/home/portage_temp/portage/gentoo-sources-2.6.15/work/linux-2.6.15-gentoo/include/linux/version.h'
  for reading (No such file or directory)
 

 http://bugs.gentoo.org/show_bug.cgi?id=113261

 Regards,
 Petteri

Thanks for the pointer. I went ahead and built the kernel only to find
that portage doesn't have any support at all for ivtv under 2.6.15,
and USB-based audio didn't work under 2.6.14, so back to 2.6.13 for
now.

Cheers,
Mark

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] gnome file access

2006-01-06 Thread Daniel Pielmeier
Hello,

i have created the folder /video with the following rights:

drwxrwxrwx   11 vdr  video  4096  5. Jan 23:09 video

I am member of the video group but not the user vdr.

In nautilus i can create subfolders and files, rename, cut, copy and
paste them, but i can not delete any files or folders there.

Within gnome-terminal using the rm command i have the right to delete
files and folders.

What is the problem in nautilus?

Thanks in advance.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] gnome file access

2006-01-06 Thread Alexander Skwar
Daniel Pielmeier wrote:

 In nautilus i can create subfolders and files, rename, cut, copy and
 paste them, but i can not delete any files or folders there.

What do you mean with can not delete? Can you not delete
or can you not put into trash?

Alexander Skwar
-- 
Men of quality are not afraid of women for equality.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] gnome file access

2006-01-06 Thread Daniel Pielmeier
hello,

i mean i can not put the files into the trash, a window pops up and says
i have not the right access-rights.

Alexander Skwar schrieb:
 Daniel Pielmeier wrote:
 
 
In nautilus i can create subfolders and files, rename, cut, copy and
paste them, but i can not delete any files or folders there.
 
 
 What do you mean with can not delete? Can you not delete
 or can you not put into trash?
 
 Alexander Skwar
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] xcompmgr?

2006-01-06 Thread Michael W. Holdeman
On Thursday 05 January 2006 17:14, Kenton Groombridge wrote:
 Michael W. Holdeman wrote:
 For real transparency, yes, you need it. If you have enabled GLX and
 Composite at once, and run a GLX program, then X will crash. This is
 likely the cause of your problems. The difficulty is, for the moment,
 you have to sacrifice either GLX if you want to use Composite reliably.
 
 Thanks, Will try today.
 I am not really sure if I am running any progs that require glx? And for
 another thing I read somewhare that OO-org  2 has a problem with
 transparency..
 
 Also do I need xcompmgr or will kompmgr work?
 
 Mike

 kompmgr works OK here, but I do find there are some quirks, but I can
 run GLX programs with kompmgr and nothing crashes.

 Ken
is this with nvidia?  Loading glx. is it REALLY SLOW?

send me your xorg.conf offlist?

Mike
-- 
 
Michael W. Holdeman



Powered by Gentoo Linux www.gentoo.org  |
Kernel 2.6.11-ck8   |
Win4Lin 5-1-20 netraverse.com   |
Win4LinPro 6.1.1-03 win4lin.com |
|
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Samba !

2006-01-06 Thread brunogola
Thanks for your help, i'll try to explain a little better what i've already 
have and what i wanna do :-)

 
 On 6 Jan 2006, at 12:32, brunogola wrote:
 
  I have a machine running linux, and i'm authenticating  in a  
  windows 2000 domain (Active directory) using
  samba, winbind and kerberos.
 
 Hi there,
 
 I've done some of this recently, and I don't think you need active  
 directory, winbind AND kerberos. My understanding is that all three  
 are separate mechanisms for authenticating *nix users against a  
 Windows domain.
 
 Active directory is MS's name for LDAP, so if you use that then your  
 applications would be compiled using the LDAP USE flag  would treat  
 the MS server as an LDAP server. I don't believe its schema's are  
 terribly good for *nix users - I use Winbind, which uses PAM to  
 appear part of the local authentication process and pass these on to  
 the Windows DC.
 

My notebook running linux is already authenticating against the win. domain 
(AD). I've done this using samba,
kerberos5 and winbind (pam modules etc), thats woring perfectly :-)

Now, what i need : my desktop (that is another linux machine) authenticanting 
against my notebook, using samba,
but the problem is that samba is already configured @ the notebook as a AD 
Domain member :S. 

  What i need to know is if there is a way of making some other machines
  authenticate in this machine, and this machine will ask the  
  password for the windows 2000 domain (only for some
  users, and the user need to be in the /etc/passwd).
 
 It would be helpful if you gave an example of which programs /  
 services on which machines (A, B and C??) you need to be able  
 authenticate in this way.
 

Well, the principal service is a VMWare GSX Server running on my notebook, i 
need to be able to authenticate
(using the vmware-console) from any machine in my network (windows or linux). I 
think the vmware thing is the
less important part, cause it should be easy editing pam.d/vmware-authd after 
everthing is configured.

  Let me explain: i have a user 'bob' that is not a user in
  the domain, but it has your username and password on my linux  
  machine, so he can authenticate. I have a user
  bgola who has the username on the AD and on the linux machine, but  
  the password isnt on the linux machine, only
  on  the AD. He can authenticate too.
  Resuming: my linux machine will use the username database from its  
  own but the password database from its own
  AND from the AD.
 
 I believe that in this situation it would be unusual to give the  
 bgola a username on the Linux machine - he has one on the AD, so if  
 you use Winbind then he doesn't need one on the Linux box. He can  
 have a homedir, since he may need to store files on the Linux box,  
 but that's not the same, I think, as having an account.
 

I want to have bgola on the linux machine for a control propose, or, only 
authenticate if the user exists on
the machine. This is already working for console/ssh/etc on the Notebook. 

 For instance on my Linux/Winbind machine on an AD:
 
   $ getent passwd | grep -e stroller -e ned
   stroller:x:1000:100::/home/stroller:/bin/bash
   ned:x:10012:1:Some Geezer:/home/DOMAIN/ned:/bin/false
   $ grep -e stroller -e ned /etc/passwd
   stroller:x:1000:100::/home/stroller:/bin/bash
   $ ls -ld ~stroller ~ned
   drwxr-xr-x  3 ned domain users 160 Jan  6 06:32 /home/DOMAIN/ned
   drwxr-xr-x  5 stroller   users272 Jan  6 03:58 /home/stroller
 
 Both users can authenticate, depending on how the /etc/pam.d/ 
 the_authenticating_service is set up. I use pam_mkhomedir.so to  
 create a home directory for any users authenticating via Winbind, but  
 beware this only works for services which call PAM session directives.
 
 I used this guide to set it all up: http://www.samba.org/samba/docs/ 
 man/Samba-HOWTO-Collection/winbind.html#id2621482
 
 Please CC me should you reply to the list with further questions,
 
 Stroller.
 
 
 -- 
 gentoo-user@gentoo.org mailing list
 
 

Resume: I need to transform my notebook (that is a AD Domain Member) in a Auth 
server, but with out leaving the
AD Domain Member status, because it will need to get the passwd for some 
accounts from the AD Server.


Thanks for your help,
Bruno Gola 


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Re: Fonts fell apart

2006-01-06 Thread Grant
   I was experimenting with kde and now my xfce4 fonts look terrible.
   Does that ring a bell for anyone?  What could be causing this?
  
   - Grant
 
 Did you try deleting directories related to .kde.
 Also try deleting .fonts.conf and .Xresources. I hope that you have not
 customised them and got messed up while using KDE.

 Regards,
 Abhay

Thank you so much Abhay.  Deleting .font.conf fixed it.

- Grant

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] gnome file access

2006-01-06 Thread Alexander Skwar
Daniel Pielmeier schrieb:
 hello,
 
 i mean i can not put the files into the trash, a window pops up and says
 i have not the right access-rights.

That's what I thought.

Reason: You don't have write permission on the root folder
of the filesystem holding that folder you're trying to delete
from. You need this, so that Nautilus can create its trash
folder. Alternatively, you can create it by hand.

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



Re: [gentoo-user] gnome file access

2006-01-06 Thread Daniel Pielmeier
hello,

i mean i can not put the files into the trash, a window pops up and says
i have not the right access-rights.

Alexander Skwar schrieb:
 Daniel Pielmeier wrote:
 
 
In nautilus i can create subfolders and files, rename, cut, copy and
paste them, but i can not delete any files or folders there.
 
 
 What do you mean with can not delete? Can you not delete
 or can you not put into trash?
 
 Alexander Skwar
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] eix, can I trust it at all?

2006-01-06 Thread Petr Kocmid
Hi all,

Please somebody explain to me the following event:

# echo net-p2p/ktorrent ~x86  /etc/portage/package.keywords
# eix ktorrent
* net-p2p/ktorrent
 Available versions:  1.0 1.1_rc1 1.1 (all green==available for install)
 Installed:   none
 Homepage:http://ktorrent.pwsp.net/
 Description: A BitTorrent program for KDE.


Found 1 matches
# emerge -pv ktorrent

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

Calculating dependencies ...done!
[ebuild  N] net-p2p/ktorrent-1.2_rc1  +arts -debug +xinerama 1,411 kB

The question is, why eix knows nothing about version the emerge would actually 
build? Is this bug for eix or I missed something? My portage was synced just 
before that.

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



Re: [gentoo-user] gnome file access [Solved]

2006-01-06 Thread Daniel Pielmeier
Thank you,
i have changed the attributes for the video folder but not for the trash
folder on this partition. I changed them and can now delete the files.

Alexander Skwar schrieb:
 Daniel Pielmeier schrieb:
 
hello,

i mean i can not put the files into the trash, a window pops up and says
i have not the right access-rights.
 
 
 That's what I thought.
 
 Reason: You don't have write permission on the root folder
 of the filesystem holding that folder you're trying to delete
 from. You need this, so that Nautilus can create its trash
 folder. Alternatively, you can create it by hand.
 
 Alexander Skwar
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] eix, can I trust it at all?

2006-01-06 Thread Tom Martin
On Fri, 6 Jan 2006 18:18:40 +0100
Petr Kocmid [EMAIL PROTECTED] wrote:

 Hi all,
 
 Please somebody explain to me the following event:

 (snip) 

You didn't update the eix database.

-- 
Tom Martin, http://dev.gentoo.org/~slarti
AMD64, net-mail, shell-tools, vim, recruiters
Gentoo Linux


signature.asc
Description: PGP signature


Re: [gentoo-user] eix, can I trust it at all?

2006-01-06 Thread Lares Moreau
On Fri, 2006-01-06 at 18:18 +0100, Petr Kocmid wrote:
 # echo net-p2p/ktorrent ~x86  /etc/portage/package.keywords
 # eix ktorrent
 * net-p2p/ktorrent
  Available versions:  1.0 1.1_rc1 1.1 (all green==available for install)
  Installed:   none
  Homepage:http://ktorrent.pwsp.net/
  Description: A BitTorrent program for KDE.
 
 
 Found 1 matches
 # emerge -pv ktorrent
 
 These are the packages that I would merge, in order:
 
 Calculating dependencies ...done!
 [ebuild  N] net-p2p/ktorrent-1.2_rc1  +arts -debug +xinerama 1,411 kB
 
 The question is, why eix knows nothing about version the emerge would 
 actually 
 build? Is this bug for eix or I missed something? My portage was synced just 
 before that.

eix has it's own Database, and doesn't run of live data.

eix-sync -- emerge --sync's then updates the eix DB. DO that or emerge
--sync  update-eix

-- 
Lares Moreau [EMAIL PROTECTED]  | LRU: 400755 http://counter.li.org
lares/irc.freenode.net |
Gentoo x86 Arch Tester |   ::0 Alberta, Canada
Public Key: 0D46BB6E @ subkeys.pgp.net |  Encrypted Mail Preferred
Key fingerprint = 0CA3 E40D F897 7709 3628  C5D4 7D94 483E 0D46 BB6E


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


Re: [gentoo-user] eix, can I trust it at all?

2006-01-06 Thread Andrew Gaydenko
You must use 'eix-sync' instead of 'emerge sync'. Another way is to 
start 'update-eix' after 'emerge sync'.

=== On Friday 06 January 2006 20:18, Petr Kocmid wrote: ===
Hi all,

Please somebody explain to me the following event:

# echo net-p2p/ktorrent ~x86  /etc/portage/package.keywords
# eix ktorrent
* net-p2p/ktorrent
 Available versions:  1.0 1.1_rc1 1.1 (all green==available for install)
 Installed:   none
 Homepage:http://ktorrent.pwsp.net/
 Description: A BitTorrent program for KDE.


Found 1 matches
# emerge -pv ktorrent

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

Calculating dependencies ...done!
[ebuild  N] net-p2p/ktorrent-1.2_rc1  +arts -debug +xinerama 1,411 kB

The question is, why eix knows nothing about version the emerge would actually 
build? Is this bug for eix or I missed something? My portage was synced just 
before that.

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

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Re: Re: Asking dhcp for a static address

2006-01-06 Thread Peter
On Fri, 06 Jan 2006 14:34:07 +0100, Sergio Polini wrote:

 
 (i.e., my gateway address, which is different ;-) to /etc/resolv.conf? My
 resolv.conf after a dhcp connession is:
 
 domain fastwebnet.it
 nameserver 213.156.54.80
 nameserver 213.156.54.81
 
 (Fastweb is my provider).
 
 What should my resolv.conf look like? Thanks.
 Sergio

So, you do NOT have a router? Then keep dhcp. If your ISP has assigned you
a static IP, then you should ask them for specifics. Most do not assign
static IP though. Sorry I could not help more. I use a router and each PC
is assigned a specific IP within the local net. However, the ROUTER gets
the Dynamic IP from our ISP.

Sorry I could not help more. dhcp is really great!


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] eix, can I trust it at all?

2006-01-06 Thread ellotheth rimmwen
On 1/6/06, Petr Kocmid [EMAIL PROTECTED] wrote:

 The question is, why eix knows nothing about version the emerge would actually
 build? Is this bug for eix or I missed something? My portage was synced just
 before that.

The eix database doesn't automatically get updated with the portage
update, if I recall. Here's my solution:

alias esync='emerge --sync  update-eix'

--
ellotheth rimmwen
* monjoy *

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] eix, can I trust it at all?

2006-01-06 Thread Rumen Yotov
On (06/01/06 18:18), Petr Kocmid wrote:
 Hi all,
 
 Please somebody explain to me the following event:
 
 # echo net-p2p/ktorrent ~x86  /etc/portage/package.keywords
 # eix ktorrent
 * net-p2p/ktorrent
  Available versions:  1.0 1.1_rc1 1.1 (all green==available for install)
  Installed:   none
  Homepage:http://ktorrent.pwsp.net/
  Description: A BitTorrent program for KDE.
 
 
 Found 1 matches
 # emerge -pv ktorrent
 
 These are the packages that I would merge, in order:
 
 Calculating dependencies ...done!
 [ebuild  N] net-p2p/ktorrent-1.2_rc1  +arts -debug +xinerama 1,411 kB
 
 The question is, why eix knows nothing about version the emerge would 
 actually 
 build? Is this bug for eix or I missed something? My portage was synced just 
 before that.
 
 -- 
 Petr
 -- 
 gentoo-user@gentoo.org mailing list
 
Hi,
Just run update-eix before that.
HTH.Rumen


pgpA3NxBsZzf1.pgp
Description: PGP signature


Re: [gentoo-user] eix, can I trust it at all?

2006-01-06 Thread Petr Kocmid
Thanks all for that update-eix hint!

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



[gentoo-user] xorg-x11 and gnome

2006-01-06 Thread David Meyer

Has anyone been able to emerge both of these? If I emerge
xorg-x11 then gnome, the gnome emerge dies with an error
compiling pango:

/usr/include/pango-1.0/pango/pangoxft-render.h:95: error: parse error before 
XftGlyphSpec
keyboard-drawing.c: In function `xkb_state_notify_event_filter':
keyboard-drawing.c:1481: warning: implicit declaration of function `memset'
make[2]: *** [keyboard-drawing.o] Error 1
make[2]: Leaving directory 
`/var/tmp/portage/control-center-2.10.2/work/control-center-2.10.2/libkbdraw'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory 
`/var/tmp/portage/control-center-2.10.2/work/control-center-2.10.2'
make: *** [all] Error 2

!!! ERROR: gnome-base/control-center-2.10.2 failed.
!!! Function gnome2_src_compile, Line 48, Exitcode 2
!!! compile failure


Thanks,

Dave


pgppVXWmyClC4.pgp
Description: PGP signature


Re: [gentoo-user] Re: Re: Asking dhcp for a static address

2006-01-06 Thread Martins Steinbergs
On Friday 06 January 2006 19:33, Peter wrote:
 On Fri, 06 Jan 2006 14:34:07 +0100, Sergio Polini wrote:
  (i.e., my gateway address, which is different ;-) to /etc/resolv.conf? My
  resolv.conf after a dhcp connession is:
 
  domain fastwebnet.it
  nameserver 213.156.54.80
  nameserver 213.156.54.81
 
  (Fastweb is my provider).
 
  What should my resolv.conf look like? Thanks.
  Sergio

 So, you do NOT have a router? Then keep dhcp. If your ISP has assigned you
 a static IP, then you should ask them for specifics. Most do not assign
 static IP though. Sorry I could not help more. I use a router and each PC
 is assigned a specific IP within the local net. However, the ROUTER gets
 the Dynamic IP from our ISP.

 Sorry I could not help more. dhcp is really great!

for static generaly there is needed only 2 sections in /etc/conf.d/net
config_eth0 with static ip, netmask and brodcast
routes_eth0 with gateway ip

no need for dhcp, see net.example


m
-- 
Linux 2.6.14-gentoo-r6 AMD Athlon(tm) 64 Processor 3200+
 20:49:23 up 1 day, 0 min,  4 users,  load average: 0.00, 0.10, 0.79


pgpA6JKQX7wRN.pgp
Description: PGP signature


Re: [gentoo-user] xorg-x11 and gnome

2006-01-06 Thread Jamie
I'm getting a very similar error:

../../libkbdraw/libkbdraw.a(keyboard-drawing.o): In function `draw_layout':
keyboard-drawing.c:(.text+0x778): undefined reference to `pango_xft_set_default_substitute'
keyboard-drawing.c:(.text+0x78f): undefined reference to `pango_xft_substitute_changed'
../../libkbdraw/libkbdraw.a(keyboard-drawing.o): In function `keyboard_drawing_init':
keyboard-drawing.c:(.text+0x255d): undefined reference to `pango_xft_get_context'
collect2: ld returned 1 exit status
make[3]: *** [gnome-keyboard-properties] Error 1
make[3]: Leaving directory `/var/tmp/portage/control-center-2.10.2/work/control-center-2.10.2/capplets/keyboard'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/var/tmp/portage/control-center-2.10.2/work/control-center-2.10.2/capplets'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/var/tmp/portage/control-center-2.10.2/work/control-center-2.10.2'
make: *** [all] Error 2

!!! ERROR: gnome-base/control-center-2.10.2 failed.
!!! Function gnome2_src_compile, Line 48, Exitcode 2
!!! compile failure
!!! If you need support, post the topmost build error, NOT this status message.

on AMD64, it's starting to annoy me all of the problems I am having in
trying to get my system up to date... but I really want to work through
it!On 1/7/06, David Meyer [EMAIL PROTECTED] wrote:
Has anyone been able to emerge both of these? If I emergexorg-x11 then gnome, the gnome emerge dies with an errorcompiling pango:/usr/include/pango-1.0/pango/pangoxft-render.h:95: error: parse error before XftGlyphSpec
keyboard-drawing.c: In function `xkb_state_notify_event_filter':keyboard-drawing.c:1481: warning: implicit declaration of function `memset'make[2]: *** [keyboard-drawing.o] Error 1make[2]: Leaving directory `/var/tmp/portage/control-
center-2.10.2/work/control-center-2.10.2/libkbdraw'make[1]: *** [all-recursive] Error 1make[1]: Leaving directory `/var/tmp/portage/control-center-2.10.2/work/control-center-2.10.2'make: *** [all] Error 2
!!! ERROR: gnome-base/control-center-2.10.2 failed.!!! Function gnome2_src_compile, Line 48, Exitcode 2!!! compile failureThanks,Dave


Re: [gentoo-user] sys-apps/dbus-0.23.4-r1 fails to compile

2006-01-06 Thread Lord Imbrius the Despondent
Nope.  No distcc.  I have ccache enabled, but it also borked when I had it 
disabled.

On Friday 06 January 2006 00:00, Trenton Adams wrote:
 Are you running distcc?  If so, try it without distcc.

 On 1/5/06, Lord Imbrius the Despondent [EMAIL PROTECTED] wrote:
  Hey guys - I was just doing an emerge -uD world and it comes to a
  screeching halt with i686-pc-linux-gnu-gcc: dbus_bindings.c: No such
  file or directory when compiling sys-apps/dbus-0.23.4-r1.  Any clues? 
  Thanks.
  --
  gentoo-user@gentoo.org mailing list
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Re: Re: Asking dhcp for a static address

2006-01-06 Thread Stroller


On 6 Jan 2006, at 17:33, Peter wrote:

On Fri, 06 Jan 2006 14:34:07 +0100, Sergio Polini wrote:


(i.e., my gateway address, which is different ;-) to /etc/ 
resolv.conf? My

resolv.conf after a dhcp connession is:

domain fastwebnet.it
nameserver 213.156.54.80
nameserver 213.156.54.81

(Fastweb is my provider).

What should my resolv.conf look like? Thanks.
Sergio


So, you do NOT have a router? Then keep dhcp. If your ISP has  
assigned you
a static IP, then you should ask them for specifics. Most do not  
assign

static IP though.


If it's the ISP issuing a static IP then he won't need to (use the -s  
flag) to ask for it. They'll issue it to him if he uses a standard  
DHCP request to ask for just any old IP. DHCP servers can be  
configured to always issue the same IP to a given MAC address and  
ADSL ISPs in the UK issue static IPs via DHCP according to PPP  
authentication info. There's surely no need for him to specify it.


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



[gentoo-user] kdesu belongs to nogroup?

2006-01-06 Thread Mick
Hi All,

Quick question:  which group is this meant to belong to?  Is it safe to be
like this:

 $ ls -la /usr/kde/3.4/bin/kdesud
-rwxr-s--x  1 root nogroup 48016 Dec 21 10:41 /usr/kde/3.4/bin/kdesud


I'm probably not doing this right, but the following command does not find
kdesud - why is this?

# find / -nouser -o -nogroup -print
find: /proc/12591/task/12591/fd/4: No such file or directory
find: /proc/12591/task/12591/fd/4: No such file or directory
find: /proc/12591/fd/4: No such file or directory
find: /proc/12591/fd/4: No such file or directory

-- 
Regards,
Mick

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Samba !

2006-01-06 Thread Stroller


On 6 Jan 2006, at 16:24, brunogola wrote:


My notebook running linux is already authenticating against the  
win. domain (AD). I've done this using samba,

kerberos5 and winbind (pam modules etc), thats woring perfectly :-)

Now, what i need : my desktop (that is another linux machine)  
authenticanting against my notebook, using samba,
but the problem is that samba is already configured @ the notebook  
as a AD Domain member :S.

...
Well, the principal service is a VMWare GSX Server running on my  
notebook, i need to be able to authenticate
(using the vmware-console) from any machine in my network (windows  
or linux). I think the vmware thing is the
less important part, cause it should be easy editing pam.d/vmware- 
authd after everthing is configured.

...
I want to have bgola on the linux machine for a control propose,  
or, only authenticate if the user exists on
the machine. This is already working for console/ssh/etc on the  
Notebook.


I'm afraid I'm not sure how much I can help here - it's not something  
I'd do because philosophically I disagree with your approach. That's  
not to say it's not right _for you_ but I wouldn't have a user in two  
places (on the Linux box  the AD). You even have the possibility  
with this approach, I think to separate separate users  passwords  
(for a single auth) between the two boxes. Will VMWare GSX use the ~  
for the user on the Linux box or for the user on the AD to store its  
files?


Personally, I'd have the user exist on the domain or possibly on the  
Linux box, but not on both.


Since you say that VMWare GSX Server (which I'm not familiar with)  
uses PAM it should be possible to get this to authenticate users on  
either the AD or /etc/passwd OR BOTH. It should be possible to use  
some other mechanism - possibly group memberships - to restrict   
VMWare GSX Server log-in rights to or from certain users. Dovecot  
IMAP, for instance, has a deny passdb and also a valid userID  
range. I would personally consider this kind of approach more elegant.


I'm not trying to be snobby saying I wouldn't do it this way, just  
sorry I can't help. Good luck with it.


Stroller.

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] kdesu belongs to nogroup?

2006-01-06 Thread Richard Fish
On 1/6/06, Mick [EMAIL PROTECTED] wrote:
 Hi All,

 Quick question:  which group is this meant to belong to?  Is it safe to be
 like this:
 
  $ ls -la /usr/kde/3.4/bin/kdesud
 -rwxr-s--x  1 root nogroup 48016 Dec 21 10:41 /usr/kde/3.4/bin/kdesud
 

 I'm probably not doing this right, but the following command does not find
 kdesud - why is this?

Because nogroup is actually a group name.  If kdesud had a gid that
was not in /etc/group, ls would show you the numeric id.

Basically, kdesud should have a gid that no user will ever be a part of.

-Richard

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Re: Re: Fonts fell apart

2006-01-06 Thread Mick
Grant wrote:

 Did you try deleting directories related to .kde.
 Also try deleting .fonts.conf and .Xresources. I hope that you have not
 customised them and got messed up while using KDE.

 Regards,
 Abhay
 
 Thank you so much Abhay.  Deleting .font.conf fixed it.

Just renaming the file would usually be safer!  I know from (bad)
experience . . .  ;-)
-- 
Regards,
Mick

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] eix - What's eix, then?

2006-01-06 Thread Stroller


On 6 Jan 2006, at 17:18, Petr Kocmid wrote:


# eix ktorrent
* net-p2p/ktorrent
 Available versions:  1.0 1.1_rc1 1.1 (all green==available for  
install)

 Installed:   none
 Homepage:http://ktorrent.pwsp.net/
 Description: A BitTorrent program for KDE.


and:

On 6 Jan 2006, at 17:31, Lares Moreau wrote:

eix has it's own Database, and doesn't run of live data.

eix-sync -- emerge --sync's then updates the eix DB. DO that or emerge
--sync  update-eix



What's eix, then? Apart from a small utility for searching ebuilds  
with indexing for fast results.


I'm using esearch at the moment - should I change?

The results of `eix ktorrent` above seem more comprehensive than  
those that'd be give by esearch, is that the only advantage? `esync`  
takes bleedin' ages on one system here, so if eix was faster I'd use  
it in a flash.


Stroller.

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] kdesu belongs to nogroup?

2006-01-06 Thread Dale

Mick wrote:


Hi All,

Quick question:  which group is this meant to belong to?  Is it safe to be
like this:

$ ls -la /usr/kde/3.4/bin/kdesud
-rwxr-s--x  1 root nogroup 48016 Dec 21 10:41 /usr/kde/3.4/bin/kdesud


 




This should help:


[EMAIL PROTECTED] /usr/kde/3.4/bin # ls -al kdesu
-rwxr-xr-x  1 root root 45068 Nov 11 14:29 kdesu
[EMAIL PROTECTED] /usr/kde/3.4/bin #



It should belong to the group root.

Dale
:-)


--
To err is human, I'm most certainly human.

I have four rigs:

1:  Home built; Abit NF7 ver 2.0 w/ AMD 2500+ CPU, 1GB of ram and right now two 
80GB hard drives.  Named Smoker
2:  Home built; Iwill KK266-R w/ AMD 1GHz CPU, 256MBs of ram and a 4GB drive.  
Named Swifty
3:  Home built; Gigabyte GA-71XE4 w/ 800MHz CPU, 224MBs of ram and a 2.5GB 
drive.  Named Pokey
4:  Compaq Proliant 6000 Server w/ Quad 200MHz CPUs, 128MBs of ram and a 4.3GB 
SCSI drive.  Named Putput

All run Gentoo Linux, all run folding. #1 is my desktop, 2, 3, and 4 are set up as servers.  


--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] kdesu belongs to nogroup?

2006-01-06 Thread Richard Fish
On 1/6/06, Dale [EMAIL PROTECTED] wrote:
 This should help:

  [EMAIL PROTECTED] /usr/kde/3.4/bin # ls -al kdesu
  -rwxr-xr-x  1 root root 45068 Nov 11 14:29 kdesu
  [EMAIL PROTECTED] /usr/kde/3.4/bin #


 It should belong to the group root.


No, you did kdesu, not kdesud.

-Richard

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] eix - What's eix, then?

2006-01-06 Thread Neil Bothwick
On Fri, 6 Jan 2006 20:33:51 +, Stroller wrote:

 What's eix, then? Apart from a small utility for searching ebuilds  
 with indexing for fast results.

Just that.

 I'm using esearch at the moment - should I change?

I did. eix is basically esearch without the wait.


-- 
Neil Bothwick

CPU: (n.) acronym for Central Purging Unit. A device which discards or
distorts data sent to it, sometimes returning more data and sometimes
merely over-heating.


signature.asc
Description: PGP signature


Re: [gentoo-user] eix - What's eix, then?

2006-01-06 Thread Christian Heim
On Friday 06 January 2006 21:33, St wrote:
 What's eix, then? Apart from a small utility for searching ebuilds
 with indexing for fast results.

 I'm using esearch at the moment - should I change?

 The results of `eix ktorrent` above seem more comprehensive than
 those that'd be give by esearch, is that the only advantage? `esync`
 takes bleedin' ages on one system here, so if eix was faster I'd use
 it in a flash.

The only thing that is slow, is update-eix due to reading the cache (well slow 
by my definition means 20s).

eix -s / -S (or what ever you want to search for) is _really_ fast ..


 Stroller.

-- 
Christian Heim [EMAIL PROTECTED]
Gentoo Linux Developer - vserver


pgpD6pzWjV004.pgp
Description: PGP signature


Re: [gentoo-user] kdesu belongs to nogroup?

2006-01-06 Thread Dale

Richard Fish wrote:


On 1/6/06, Dale [EMAIL PROTECTED] wrote:
 


This should help:

   


[EMAIL PROTECTED] /usr/kde/3.4/bin # ls -al kdesu
-rwxr-xr-x  1 root root 45068 Nov 11 14:29 kdesu
[EMAIL PROTECTED] /usr/kde/3.4/bin #
 


It should belong to the group root.
   




No, you did kdesu, not kdesud.

-Richard

 



You're right.  I missed the d.  It is nogroup for that one.

Dale
:-)

--
To err is human, I'm most certainly human.

I have four rigs:

1:  Home built; Abit NF7 ver 2.0 w/ AMD 2500+ CPU, 1GB of ram and right now two 
80GB hard drives.  Named Smoker
2:  Home built; Iwill KK266-R w/ AMD 1GHz CPU, 256MBs of ram and a 4GB drive.  
Named Swifty
3:  Home built; Gigabyte GA-71XE4 w/ 800MHz CPU, 224MBs of ram and a 2.5GB 
drive.  Named Pokey
4:  Compaq Proliant 6000 Server w/ Quad 200MHz CPUs, 128MBs of ram and a 4.3GB 
SCSI drive.  Named Putput

All run Gentoo Linux, all run folding. #1 is my desktop, 2, 3, and 4 are set up as servers.  


--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] eix - What's eix, then?

2006-01-06 Thread Neil Bothwick
On Fri, 6 Jan 2006 22:01:00 +0100, Christian Heim wrote:

 The only thing that is slow, is update-eix due to reading the cache
 (well slow by my definition means 20s).

You obviously haven't tried esearch...


-- 
Neil Bothwick

I am in total control, but don't tell my wife.


signature.asc
Description: PGP signature


Re: [gentoo-user] xcompmgr?

2006-01-06 Thread Kenton Groombridge

Michael W. Holdeman wrote:


kompmgr works OK here, but I do find there are some quirks, but I can

run GLX programs with kompmgr and nothing crashes.

Ken
   


is this with nvidia?  Loading glx. is it REALLY SLOW?

send me your xorg.conf offlist?

Mike
 

I have a BFG Geforce 6800 Ultra OC.  Pretty beefy card, so I don't know 
if that has anything to do with it, but it runs quite fast and is very 
usable.  I put my xorg.conf in my webstorage.  Here is a link:


http://webpages.charter.net/kgroombr/xorg.conf

Good luck,
Ken
--
gentoo-user@gentoo.org mailing list



[gentoo-user] OT - Help setting up eix!

2006-01-06 Thread Michael Sullivan
I've been reading about eix, and as using emerge Ss takes forever, I
decided to try eix.  I emerged it and ran update-eix and tried to search
for kde.  Here's my output:

camille ~ # update-eix
Reading Portage settings ..
Building database (/var/cache/eix) from scratch ..
[0] /usr/portage/ (cache: cdb)
 Reading 100%
[1] /usr/local/portage (cache: none)
 Reading 100%
Applying masks ..
Database contains 0 packages in 145 categories.
camille ~ # eix -s kde

Found 0 matches
camille ~ #


What am I doing wrong?

-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] Problem with cracking keys with libdvdcss

2006-01-06 Thread Richard Watson
I think it was a Use flag issue. I'm not really sure which one as I took
them all from another machine I run Gentoo on and everything is fine now.
--
Thanks, Richard

--
Hi – I’m just wondering under what circumstances libdvdcss will not work
correctly when trying to back up a movie DVD. I’m running 1.2.8 on my
desktop unit at home fine but 1.2.9 on my laptop keeps returning the error. 

libdvdread: Get key for /VIDEO_TS/VTS_02_0.VOB at 0x00293bd4
libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_02_0.VOB (0x00293bd4)



-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.371 / Virus Database: 267.14.15/223 - Release Date: 6/01/2006
 


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] sys-apps/dbus-0.23.4-r1 fails to compile

2006-01-06 Thread Richard Fish
On 1/5/06, Lord Imbrius the Despondent [EMAIL PROTECTED] wrote:
 Hey guys - I was just doing an emerge -uD world and it comes to a screeching
 halt with i686-pc-linux-gnu-gcc: dbus_bindings.c: No such file or directory
 when compiling sys-apps/dbus-0.23.4-r1.  Any clues?  Thanks.

dbus_bindings.c is built from dbus_bindings.pyx using the program
pyrex, provided by dev-python/pyrex.  Do you have this package
installed?  Did you updated python recently, but forget to run
python-updater?

If the above doesn't help, maybe posting some more of the actual
output at the tail of the merge might give us some more clues.

-Richard

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] OT - Help setting up eix!

2006-01-06 Thread Julien Cabillot
eix kde ?On 1/6/06, Michael Sullivan [EMAIL PROTECTED] wrote:
I've been reading about eix, and as using emerge Ss takes forever, Idecided to try eix.I emerged it and ran update-eix and tried to searchfor kde.Here's my output:camille ~ # update-eixReading Portage settings ..
Building database (/var/cache/eix) from scratch ..[0] /usr/portage/ (cache: cdb) Reading 100%[1] /usr/local/portage (cache: none) Reading 100%Applying masks ..Database contains 0 packages in 145 categories.
camille ~ # eix -s kdeFound 0 matchescamille ~ #What am I doing wrong?--gentoo-user@gentoo.org mailing list


Re: [gentoo-user] OT - Help setting up eix!

2006-01-06 Thread Mark Knecht
On 1/6/06, Michael Sullivan [EMAIL PROTECTED] wrote:



 What am I doing wrong?


eix kde

eix gnome

eix wine

But of course man eix would help too... ;-)

Cheers,
Mark

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] OT - Help setting up eix!

2006-01-06 Thread Michael Sullivan
On Fri, 2006-01-06 at 23:57 +0100, Julien Cabillot wrote:
 eix kde ?

camille ~ # eix kde

Found 0 matches
camille ~ #


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] OT - Help setting up eix!

2006-01-06 Thread Mark Knecht
On 1/6/06, Michael Sullivan [EMAIL PROTECTED] wrote:
 On Fri, 2006-01-06 at 23:57 +0100, Julien Cabillot wrote:
  eix kde ?

 camille ~ # eix kde

 Found 0 matches
 camille ~ #

Did you run update-eix first?

man eix has a good description.

- Mark

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] vnc.so

2006-01-06 Thread Tom Smith

Hi all,

I installed vnc with the server USE flag enabled. I've been working 
on getting the vnc.so module loaded for X.org and now have it working. 
My question is, is this module a part of RealVNC or some other program? 
(I tried to locate a description of the use flags for VNC but was unable 
to.)


Thanks in advance for the help.

~ Tom
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] 2.6.15 gentoo-sources emerge

2006-01-06 Thread Max Lorenz
On 1/6/06, Paweł Madej [EMAIL PROTECTED] wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 Mark Knecht wrote:
  Hi,
 I noticed this line as I was emerging gentoo-sources this morning.
  (Yuk...4:30AM this morning...) Is it a problem?
 
  * Applying 4905_alpha-sysctl-uac.patch (-p0+) ...
   [ ok ]
  awk: cmd. line:1: fatal: cannot open file
  `/home/portage_temp/portage/gentoo-sources-2.6.15/work/linux-2.6.15-gentoo/include/linux/version.h'
  for reading (No such file or directory)
 
  Thanks,
  Mark
 

 I think you should file a bug on bugzilla.gentoo.org so the problem
 could be seen by kernel developers

https://bugs.gentoo.org/show_bug.cgi?id=113261

Max :)

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] sys-apps/dbus-0.23.4-r1 fails to compile

2006-01-06 Thread Jeff


On 07/01/2006, at 9:53 AM, Richard Fish wrote:


On 1/5/06, Lord Imbrius the Despondent [EMAIL PROTECTED] wrote:
Hey guys - I was just doing an emerge -uD world and it comes to a  
screeching
halt with i686-pc-linux-gnu-gcc: dbus_bindings.c: No such file or  
directory

when compiling sys-apps/dbus-0.23.4-r1.  Any clues?  Thanks.


dbus_bindings.c is built from dbus_bindings.pyx using the program
pyrex, provided by dev-python/pyrex.  Do you have this package
installed?  Did you updated python recently, but forget to run
python-updater?



I had a problem yesterday that sounds similar to this after updating  
world. I forgot to include -a in the emerge and so wasn't aware that  
python was upgraded in the update. I don't remember seeing anything  
about dbus_bindings.c in the merge output although there was a  
mention of pyrex (I can't remember the actual message). Running  
python-updater was the answer.


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



[gentoo-user] Re: kdesu belongs to nogroup?

2006-01-06 Thread Mick
Richard Fish wrote:

 On 1/6/06, Mick [EMAIL PROTECTED] wrote:
 Hi All,

 Quick question:  which group is this meant to belong to?  Is it safe to
 be like this:
 
  $ ls -la /usr/kde/3.4/bin/kdesud
 -rwxr-s--x  1 root nogroup 48016 Dec 21 10:41 /usr/kde/3.4/bin/kdesud
 

 I'm probably not doing this right, but the following command does not
 find kdesud - why is this?
 
 Because nogroup is actually a group name.  If kdesud had a gid that
 was not in /etc/group, ls would show you the numeric id.
 
 Basically, kdesud should have a gid that no user will ever be a part of.

Thanks.
-- 
Regards,
Mick

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] The Grand Remerge

2006-01-06 Thread Matthias Bethke
It started on Wednesday: after syncing, I had about 150 ebuilds marked
as remerge. I thought, WTH, let portage have its way and remerge
everything while I sleep. So I did---and today it's the same! 151
ebuilds and all of them for remerging the same version. Here's some of
them:

[ebuild   R   ] x11-terms/gnome-terminal-2.10.0
[ebuild   R   ] xfce-extra/xfce4-wavelan-0.4.1-r1
[ebuild   R   ] media-gfx/gtkam-0.1.12-r1
[ebuild   R   ] app-emulation/wine-20050725-r1
[ebuild   R   ] xfce-extra/xfce4-xmms-controller-1.4.3-r1
[ebuild   R   ] xfce-extra/xfce4-panelmenu-0.3.1
[ebuild   R   ] app-text/gpdf-2.10.0-r2
[ebuild   R   ] xfce-extra/xfce4-datetime-0.3.1-r1
[ebuild   R   ] gnome-base/gdm-2.8.0.3
[nomerge  ] net-analyzer/nessus-2.2.6
[nomerge  ]  net-analyzer/nessus-plugins-2.2.6
[ebuild   R   ]   net-analyzer/nessus-core-2.2.6
[ebuild   R   ] media-gfx/eog-2.10.2
[ebuild   R   ] app-arch/file-roller-2.10.4
[ebuild   R   ] xfce-base/xfce4-extras-4.2.2
[ebuild   R   ]  xfce-extra/xfce4-windowlist-0.1.0-r1
[ebuild   R   ]  xfce-extra/xfce4-taskbar-0.2.2-r1
[ebuild   R   ]  xfce-extra/xfce4-battery-0.2.0-r1
[ebuild   R   ]  xfce-extra/xfce4-netload-0.3.2
[ebuild   R   ]  xfce-extra/xfce4-showdesktop-0.4.0-r1
[ebuild   R   ]  xfce-extra/xfce4-minicmd-0.3.0-r1
[ebuild   R   ]  xfce-extra/xfce4-systemload-0.3.6
[ebuild   R   ]  xfce-extra/xfce4-notes-0.10.0-r1
[ebuild   R   ]  xfce-extra/xfce4-artwork-0.0.4-r1
[ebuild   R   ] media-video/mplayer-1.0_pre7-r1

That's my private laptop doing these funny things. The one desktop and
eone server I run with Gentoo at work don't do anything like this.
My date is set correctly and it doesn't look like I had anything in
/usr/portage with wrong dates either, that's the only reason I could
think of so far.

-- 
I prefer encrypted and signed messages. KeyID: FAC37665
Fingerprint: 8C16 3F0A A6FC DF0D 19B0  8DEF 48D9 1700 FAC3 7665


pgpDnLQtEclg4.pgp
Description: PGP signature


Re: [gentoo-user] OT - Help setting up eix!

2006-01-06 Thread Holly Bostick
Michael Sullivan schreef:
 I've been reading about eix, and as using emerge Ss takes forever, I
 decided to try eix.  I emerged it and ran update-eix and tried to search
 for kde.  Here's my output:
 
 camille ~ # update-eix
 Reading Portage settings ..
 Building database (/var/cache/eix) from scratch ..
 [0] /usr/portage/ (cache: cdb)
  Reading 100%
 [1] /usr/local/portage (cache: none)
  Reading 100%
 Applying masks ..
 Database contains 0 packages in 145 categories.
 camille ~ # eix -s kde
 
 Found 0 matches
 camille ~ #
 
 
 What am I doing wrong?
 

I don't know, except for the fact that there's no packages in the eix
database. But I don't see why that should be happening. This is the
output you *should* be getting:

 eix kde
* app-i18n/uim-kdehelper
 Available versions:  ~0.1.0-r1
 Installed:   none
 Homepage:http://uim.freedesktop.org/Software/uim-kdehelper
 Description: Qt replacement of toolbar, system tray, applet
and candidate window for UIM library.

* app-pda/synce-kde
 Available versions:  ~0.6.1 ~0.7.2 ~0.8.0
 Installed:   none
 Homepage:http://synce.sourceforge.net
 Description: Synchronize Windows CE devices with computers
running GNU/Linux, like MS ActiveSync. - KDE System Tray utility
(formerly app-pda/rapip)

* dev-embedded/pikdev
 Available versions:  0.6.6a 0.7.1 0.7.1-r1 ~0.7.1-r2
 Installed:   none
 Homepage:http://pikdev.free.fr/
 Description: Graphical IDE for PIC-based application
development

* dev-python/pykde
 Available versions:  ~3.11.1 3.11.3 ~3.12_pre20051013
 Installed:   none
 Homepage:http://www.riverbankcomputing.co.uk/pykde/
 Description: set of Python bindings for the KDE libs

* dev-util/kdevelop
 Available versions:  3.1.2 3.2.1-r1 ~3.2.2 ~3.2.3 ~3.2.3-r1 ~3.3.0
 Installed:   none
 Homepage:http://www.kdevelop.org
 Description: Integrated Development Enviroment for Unix,
supporting KDE/Qt, C/C++ and a many other languages.

* dev-util/kdesvn
 Available versions:  ~0.6.2 ~0.7.1
 Installed:   none
 Homepage:http://www.alwins-world.de/programs/kdesvn/
 Description: KDESvn is a frontend to the subversion vcs.

* games-board/ggz-kde-client
 Available versions:  ~0.0.9
 Installed:   none
 Homepage:http://ggz.sourceforge.net/
 Description: The kde client for GGZ Gaming Zone

* games-board/ggz-kde-games
 Available versions:  ~0.0.9
 Installed:   none
 Homepage:http://ggz.sourceforge.net/
 Description: These are the kde versions of the games made
by GGZ Gaming Zone

* kde-base/kdeprint
 Available versions:  3.4.1 3.4.2 3.4.3 3.5.0
 Installed:   none
 Homepage:http://www.kde.org/
 Description: KDE printer queue/device manager

* kde-base/kdegraphics
 Available versions:  3.3.2-r3 3.4.1-r1 ~3.4.1-r3 ~3.4.2-r2 ~3.4.3
3.4.3-r2 3.4.3-r3 ~3.5.0 ~3.5.0-r2 ~3.5.0-r3 ~3.5.0-r4
 Installed:   none
 Homepage:http://www.kde.org/
 Description: KDE graphics-related apps

* kde-base/kdepim-meta
 Available versions:  3.4.1 ~3.4.2 3.4.3 ~3.5.0
 Installed:   none
 Homepage:http://www.kde.org/
 Description: kdepim - merge this to pull in all
kdepim-derived packages

* kde-base/kdesu
 Available versions:  3.4.1 3.5.0
 Installed:   3.4.1 3.5.0
 Homepage:http://www.kde.org/
 Description: KDE: gui for su(1)

snip

[1] /usr/local/portage

Found 96 matches

The  only thing I see is maybe you want to disable that cdb module,
depending on which version of Portage you're using (the latest stable
doesn't like it so much). But I don't think that would explain this, and
honestly I can't think of any configuration or anything that you need to
do with eix to get any ouput.

Sorry.
Holly
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] vnc.so

2006-01-06 Thread Jim Burwell

Tom Smith wrote:


Hi all,

I installed vnc with the server USE flag enabled. I've been 
working on getting the vnc.so module loaded for X.org and now have it 
working. My question is, is this module a part of RealVNC or some 
other program? (I tried to locate a description of the use flags for 
VNC but was unable to.)


Thanks in advance for the help.



Yes the vnc.so X module is part of the VNC package.  AFAIK its purpose 
is to implement the shared display # 0 functionality, where you can 
start a VNC session and interact with the system's local :0 X 
display.  That is, say that you're logged into the target machine itself 
and have an X session running on it attached to the system's monitor/vid 
card/KB/mouse.  The vnc.so provides the functionality to attach to THAT 
session.  Note that not all VNC packages support this (notably TightVNC 
doesn't, but RealVNC seems to, although I havn't tried it.  There's also 
'xf4vnc' and 'x11vnc' which appear to provide the functionality).  
Perhaps the module is also used in the normal Xvnc session also, but 
TightVNC doesn't even include the module and it implements Xvnc.


Normally, vncserver starts up its own X server (Xvnc) which uses a new X 
display number which is completely independant of any X server which may 
be running on the target system.  Perhaps this is what you're really 
looking for ?  If so, it's very easy.  Just run something like 
'vncserver -depth 24 -geometry 1024x768' and you'll be able to attach a 
VNC viewer to the virtual X display by connecting the viewer to 
hostname or IP:1.


- Jim

--
gentoo-user@gentoo.org mailing list



[gentoo-user] How do I enlarge graphics with mouse hover?

2006-01-06 Thread Kenton Groombridge
Since I upgraded my system with KDE 3.5, I have lost this feature and 
can't seem to find a way to enable it.


With prior versions of KDE, when I open folders with graphics, I could 
see the thumbs of the graphic, but they are quite small.  When I would 
hover the mouse over the grahics for a second a pop-up would display 
showing a larger image with some file information.  Now I can't find a 
way to bring this back.


I have googled this a couple days now and can't find a solution.  It may 
also be a bug.  For some reason, I can't set my login manager desktop to 
any background other than the default installed ones.   I even use the 
Get New Wallpapers button, download the background, it shows up in the 
preview window, logout, and my desktop just shows the background color.  
Any guess on this would be helpful as well.


Thanks,
Ken
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] The Grand Remerge

2006-01-06 Thread Tom Martin
On Sat, 7 Jan 2006 01:21:04 +0100
Matthias Bethke [EMAIL PROTECTED] wrote:

 It started on Wednesday: after syncing, I had about 150 ebuilds marked
 as remerge. I thought, WTH, let portage have its way and remerge
 everything while I sleep. So I did---and today it's the same! 151
 ebuilds and all of them for remerging the same version. Here's some of
 them:
 
 [ebuild   R   ] x11-terms/gnome-terminal-2.10.0
 ...
 [ebuild   R   ] media-video/mplayer-1.0_pre7-r1
 
 That's my private laptop doing these funny things. The one desktop and
 eone server I run with Gentoo at work don't do anything like this.
 My date is set correctly and it doesn't look like I had anything in
 /usr/portage with wrong dates either, that's the only reason I could
 think of so far.
 

Could you please paste the command line you used to generate this list?

-- 
Tom Martin, http://dev.gentoo.org/~slarti
AMD64, net-mail, shell-tools, vim, recruiters
Gentoo Linux


signature.asc
Description: PGP signature


Re: [gentoo-user] package conflict on update

2006-01-06 Thread Trenton Adams
On 1/5/06, Neil Bothwick [EMAIL PROTECTED] wrote:
 On Thu, 5 Jan 2006 16:32:20 -0700, Trenton Adams wrote:

   something like
  
   if_blocked_by('openmotif')
   ewarn You must unmerge openmotif before proceeding
 
  Yes, or as follows...
 
  if_blocked_by('openmotif')
auto_unmerge('openmotif')
# continue with merge which should automatically be merging openmotif
  anyhow.

 Absolutely not! I don't want portage removing something I may be using at
 the time without my saying so.

Good point.  Perhaps it should ask then?



 --
 Neil Bothwick

 I am in total control, but don't tell my wife.




-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] OT - Help setting up eix!

2006-01-06 Thread Michael Sullivan
On Fri, 2006-01-06 at 15:10 -0800, Mark Knecht wrote:
 On 1/6/06, Michael Sullivan [EMAIL PROTECTED] wrote:
 
 
 
  What am I doing wrong?
 
 
 eix kde
 
 eix gnome
 
 eix wine
 
 But of course man eix would help too... ;-)
 
 Cheers,
 Mark
 

I looked at it.  I didn't find much.  I saw eix-sync, so I tried it,
but I think all it did was emerge sync...

camille ~ # eix -s kde

Found 0 matches
camille ~ # eix kde

Found 0 matches
camille ~ # eix kde

Found 0 matches
camille ~ # eix gnome

Found 0 matches
camille ~ # eix wine

Found 0 matches
camille ~ #


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] OT - Help setting up eix!

2006-01-06 Thread Michael Sullivan
On Fri, 2006-01-06 at 15:32 -0800, Mark Knecht wrote:
 On 1/6/06, Michael Sullivan [EMAIL PROTECTED] wrote:
  On Fri, 2006-01-06 at 23:57 +0100, Julien Cabillot wrote:
   eix kde ?
 
  camille ~ # eix kde
 
  Found 0 matches
  camille ~ #
 
 Did you run update-eix first?
 
 man eix has a good description.
 
 - Mark
 

Yes.  Here was the output:

camille ~ # update-eix
Reading Portage settings ..
Building database (/var/cache/eix) from scratch ..
[0] /usr/portage/ (cache: cdb)
 Reading 100%
[1] /usr/local/portage (cache: none)
 Reading 100%
Applying masks ..
Database contains 0 packages in 145 categories.
camille ~ #


Shouldn't there be more output than that?

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] OT - Help setting up eix!

2006-01-06 Thread Michael Sullivan
On Sat, 2006-01-07 at 01:31 +0100, Holly Bostick wrote:
 Michael Sullivan schreef:
  I've been reading about eix, and as using emerge Ss takes forever, I
  decided to try eix.  I emerged it and ran update-eix and tried to search
  for kde.  Here's my output:
  
  camille ~ # update-eix
  Reading Portage settings ..
  Building database (/var/cache/eix) from scratch ..
  [0] /usr/portage/ (cache: cdb)
   Reading 100%
  [1] /usr/local/portage (cache: none)
   Reading 100%
  Applying masks ..
  Database contains 0 packages in 145 categories.
  camille ~ # eix -s kde
  
  Found 0 matches
  camille ~ #
  
  
  What am I doing wrong?
  
 
 I don't know, except for the fact that there's no packages in the eix
 database. But I don't see why that should be happening. This is the
 output you *should* be getting:
 
  eix kde
 * app-i18n/uim-kdehelper
  Available versions:  ~0.1.0-r1
  Installed:   none
  Homepage:http://uim.freedesktop.org/Software/uim-kdehelper
  Description: Qt replacement of toolbar, system tray, applet
 and candidate window for UIM library.
 
 * app-pda/synce-kde
  Available versions:  ~0.6.1 ~0.7.2 ~0.8.0
  Installed:   none
  Homepage:http://synce.sourceforge.net
  Description: Synchronize Windows CE devices with computers
 running GNU/Linux, like MS ActiveSync. - KDE System Tray utility
 (formerly app-pda/rapip)
 
 * dev-embedded/pikdev
  Available versions:  0.6.6a 0.7.1 0.7.1-r1 ~0.7.1-r2
  Installed:   none
  Homepage:http://pikdev.free.fr/
  Description: Graphical IDE for PIC-based application
 development
 
 * dev-python/pykde
  Available versions:  ~3.11.1 3.11.3 ~3.12_pre20051013
  Installed:   none
  Homepage:http://www.riverbankcomputing.co.uk/pykde/
  Description: set of Python bindings for the KDE libs
 
 * dev-util/kdevelop
  Available versions:  3.1.2 3.2.1-r1 ~3.2.2 ~3.2.3 ~3.2.3-r1 ~3.3.0
  Installed:   none
  Homepage:http://www.kdevelop.org
  Description: Integrated Development Enviroment for Unix,
 supporting KDE/Qt, C/C++ and a many other languages.
 
 * dev-util/kdesvn
  Available versions:  ~0.6.2 ~0.7.1
  Installed:   none
  Homepage:http://www.alwins-world.de/programs/kdesvn/
  Description: KDESvn is a frontend to the subversion vcs.
 
 * games-board/ggz-kde-client
  Available versions:  ~0.0.9
  Installed:   none
  Homepage:http://ggz.sourceforge.net/
  Description: The kde client for GGZ Gaming Zone
 
 * games-board/ggz-kde-games
  Available versions:  ~0.0.9
  Installed:   none
  Homepage:http://ggz.sourceforge.net/
  Description: These are the kde versions of the games made
 by GGZ Gaming Zone
 
 * kde-base/kdeprint
  Available versions:  3.4.1 3.4.2 3.4.3 3.5.0
  Installed:   none
  Homepage:http://www.kde.org/
  Description: KDE printer queue/device manager
 
 * kde-base/kdegraphics
  Available versions:  3.3.2-r3 3.4.1-r1 ~3.4.1-r3 ~3.4.2-r2 ~3.4.3
 3.4.3-r2 3.4.3-r3 ~3.5.0 ~3.5.0-r2 ~3.5.0-r3 ~3.5.0-r4
  Installed:   none
  Homepage:http://www.kde.org/
  Description: KDE graphics-related apps
 
 * kde-base/kdepim-meta
  Available versions:  3.4.1 ~3.4.2 3.4.3 ~3.5.0
  Installed:   none
  Homepage:http://www.kde.org/
  Description: kdepim - merge this to pull in all
 kdepim-derived packages
 
 * kde-base/kdesu
  Available versions:  3.4.1 3.5.0
  Installed:   3.4.1 3.5.0
  Homepage:http://www.kde.org/
  Description: KDE: gui for su(1)
 
 snip
 
 [1] /usr/local/portage
 
 Found 96 matches
 
 The  only thing I see is maybe you want to disable that cdb module,
 depending on which version of Portage you're using (the latest stable
 doesn't like it so much). But I don't think that would explain this, and
 honestly I can't think of any configuration or anything that you need to
 do with eix to get any ouput.
 
 Sorry.
 Holly

I deleted /etc/eixrc (which I created earlier today) and ran update-eix
and now I'm seeing output more like I was expecting.  Thanks.

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] vnc.so

2006-01-06 Thread Statux
After you get X to start with the vnc module as you have, you just use a
vnc viewing program (RealVNC is common). I typically connect to this
system from another Windows box on the LAN but I have done Linux to
Linux (vncviewer) with a system several states away. There's also a way
to set a password but I forget how I did that. I remember setting it as
root since the X server starts as root. There a command that comes with
the client portion of vnc, I think. Poke around.

To others reading this thread, only the newer branch of the vnc project
(version 4, I think) has the vnc server module support. Looking at
things, I see that version 4 is now marked stable (it wasn't when I
installed it on two systems).

Just a word of caution, if you connect to your own box you'll probably
end up with some wacky stuff when you move your mouse, etc. It took me a
while to understand that this is actually the mirror in a mirror issue.
Once I connected from another system, things looked better :)

On Fri, 2006-01-06 at 16:39 -0700, Tom Smith wrote:
 Hi all,
 
 I installed vnc with the server USE flag enabled. I've been working 
 on getting the vnc.so module loaded for X.org and now have it working. 
 My question is, is this module a part of RealVNC or some other program? 
 (I tried to locate a description of the use flags for VNC but was unable 
 to.)
 
 Thanks in advance for the help.
 
 ~ Tom

-- 
Statux [EMAIL PROTECTED]


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


Re: [gentoo-user] vnc.so

2006-01-06 Thread Tom Smith
I understand how vnc.so works. I was trying to determine where to find 
documentation for it, so I asked the more general question of which 
package it came with. After more research (and a response received on 
this list) I learned it is part of RealVNC.


What I was looking to do is provide additional configuration option for 
X.org but couldn't do this until I knew where to find the docs--now I 
do. So I just need to play with it to try and improve performance--I've 
noticed (just recently) that performance over a VPN tunnel is quite slow 
when compared to a LAN (I know, this is pretty obvious). What's odd, 
though, is that performance is MUCH worse VNC-ing to my Gentoo server on 
port :0 then it is on port :1, for example. Puzzling... Anyone have 
ideas as to how I can improve this aspect of vnc.so?


~ Tom

BTW... To enable the VNC password, add the following line to 'Section 
Screen ' of xorg.conf: Option PasswordFile /path/to/.vnc/passwd. 
Usually, you have to add a noauth option in order to disable password 
authentication--this is the option I chose since one would have to 
authenticate via XDM and I use xlock/xautolock to secure the logged in 
session.


Statux wrote:


After you get X to start with the vnc module as you have, you just use a
vnc viewing program (RealVNC is common). I typically connect to this
system from another Windows box on the LAN but I have done Linux to
Linux (vncviewer) with a system several states away. There's also a way
to set a password but I forget how I did that. I remember setting it as
root since the X server starts as root. There a command that comes with
the client portion of vnc, I think. Poke around.

To others reading this thread, only the newer branch of the vnc project
(version 4, I think) has the vnc server module support. Looking at
things, I see that version 4 is now marked stable (it wasn't when I
installed it on two systems).

Just a word of caution, if you connect to your own box you'll probably
end up with some wacky stuff when you move your mouse, etc. It took me a
while to understand that this is actually the mirror in a mirror issue.
Once I connected from another system, things looked better :)

On Fri, 2006-01-06 at 16:39 -0700, Tom Smith wrote:
 


Hi all,

I installed vnc with the server USE flag enabled. I've been working 
on getting the vnc.so module loaded for X.org and now have it working. 
My question is, is this module a part of RealVNC or some other program? 
(I tried to locate a description of the use flags for VNC but was unable 
to.)


Thanks in advance for the help.

~ Tom
   



 


--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] eix - What's eix, then?

2006-01-06 Thread Stroller


On 6 Jan 2006, at 21:54, Neil Bothwick wrote:


On Fri, 6 Jan 2006 22:01:00 +0100, Christian Heim wrote:


The only thing that is slow, is update-eix due to reading the cache
(well slow by my definition means 20s).


You obviously haven't tried esearch...


Yes, I installed eix after the several propt responses - many thanks,  
all! - and was much impressed by the speed improvement.


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



Re: [gentoo-user] eix - What's eix, then?

2006-01-06 Thread Beau E. Cox
On Friday 06 January 2006 04:51 pm, Stroller wrote:
 On 6 Jan 2006, at 21:54, Neil Bothwick wrote:
  On Fri, 6 Jan 2006 22:01:00 +0100, Christian Heim wrote:
  The only thing that is slow, is update-eix due to reading the cache
  (well slow by my definition means 20s).
 
  You obviously haven't tried esearch...

 Yes, I installed eix after the several propt responses - many thanks,
 all! - and was much impressed by the speed improvement.

 Stroller.

Me too! I was just lurking around and saw the eix discussion
on this list, installed it, and WOW! Thanks everyone.
-- 
Aloha = Beau;

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] How do I enlarge graphics with mouse hover?

2006-01-06 Thread Richard Fish
On 1/6/06, Kenton Groombridge [EMAIL PROTECTED] wrote:
 Since I upgraded my system with KDE 3.5, I have lost this feature and
 can't seem to find a way to enable it.

Still works for me.  You should check that Show previews in file
tips under Behavior is turned on.  You should also make sure you are
using the File Management profile (Settings-Load View Profile).

You can also try to backup and delete your ~/.kde3.5 directory, and
start over.  Maybe you have some kind of issue there...

-Richard

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] [OT] URLS for linux based handhelds

2006-01-06 Thread reader
Anyone here using or know about linux based handheld tools?  Especialy
like a smartphone running a linux os?

I have googled up a few and even a supplier that was selling surplus
from some other project to the public but the pages were a bit old.
I'm hoping some progress has been made and something is available.

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] The Grand Remerge

2006-01-06 Thread Matthias Bethke
Hi Tom,
on Saturday, 2006-01-07 at 01:07:18, you wrote:
 Could you please paste the command line you used to generate this list?

emerge -DNuta world
right after emerge --sync

regards
Matthias

-- 
I prefer encrypted and signed messages. KeyID: FAC37665
Fingerprint: 8C16 3F0A A6FC DF0D 19B0  8DEF 48D9 1700 FAC3 7665


pgpASdTo50eiF.pgp
Description: PGP signature


Re: [gentoo-user] [OT] URLS for linux based handhelds

2006-01-06 Thread Shawn Singh
This site mentions some devices, although I'm sure you've probably run across it already:http://www.linuxdevices.com/articles/AT9423084269.htmlI'm trying find a wireless provider that sells devices that run Linux and am having the darnest time. I've spoken with Verizon, T-mobile and Nextel and so far the best answer I've gotten is that the phone needs to speak CDMA (I think) and they need to have the ESN in their DB. I'm just not sure how to verify that info w/o wasting time / money experimenting.
Do u have any suggestions?Thank you,ShawnOn 1/6/06, [EMAIL PROTECTED] 
[EMAIL PROTECTED] wrote:Anyone here using or know about linux based handheld tools?Especialy
like a smartphone running a linux os?I have googled up a few and even a supplier that was selling surplusfrom some other project to the public but the pages were a bit old.I'm hoping some progress has been made and something is available.
--gentoo-user@gentoo.org mailing list-- Shawn Singh


Re: [gentoo-user] The Grand Remerge

2006-01-06 Thread Rumen Yotov
On (07/01/06 05:12), Matthias Bethke wrote:
 Hi Tom,
 on Saturday, 2006-01-07 at 01:07:18, you wrote:
  Could you please paste the command line you used to generate this list?
 
 emerge -DNuta world
 right after emerge --sync
 
 regards
   Matthias
 
 -- 
 I prefer encrypted and signed messages. KeyID: FAC37665
 Fingerprint: 8C16 3F0A A6FC DF0D 19B0  8DEF 48D9 1700 FAC3 7665
Hi,
Have you changed any USE-flags in /etc/make.conf?
Add the 'v' option to see USE-flags too.
Sometimes this could happen with slotted packages when there's an upgrade
for some minor slot-number version (requires =...), but only for package or two.
HTH.Rumen


pgpkggC0xqQUs.pgp
Description: PGP signature


Re: [gentoo-user] package conflict on update

2006-01-06 Thread Trenton Adams
On 1/6/06, Holly Bostick [EMAIL PROTECTED] wrote:
 Trenton Adams schreef:
  On 1/5/06, Neil Bothwick [EMAIL PROTECTED] wrote:
 
 On Thu, 5 Jan 2006 16:32:20 -0700, Trenton Adams wrote:
 
 
 something like
 
 if_blocked_by('openmotif')
 ewarn You must unmerge openmotif before proceeding
 
 Yes, or as follows...
 
 if_blocked_by('openmotif')
   auto_unmerge('openmotif')
   # continue with merge which should automatically be merging openmotif
 anyhow.
 
 Absolutely not! I don't want portage removing something I may be using at
 the time without my saying so.
 
 
  Good point.  Perhaps it should ask then?
 
 

 Well, it does, by stopping and waiting for you to perform an action and
 either restart the stopped process (if the action you took was to
 unmerge the blocking package), or to forego the stopped process
 entirely,  if you choose not to remove the blocked package because you
 want to keep it for whatever reason (it could happen).

 You're assuming that unmerging the blocking package is *always* the
 right solution for everyone at all times (in this case, it's not really
 relevant, since motif-config will itself re-install openmotif), but the
 point of Gentoo is that you are in control. If I am in control, then I
 have to decide what I want done in each particular situation that
 occurs, which is exactly what I have to do with the current setup-- very
 obviously, since Portage will stop until I make a decision and act on
 it. So fine, your new updated Portage informs me there's a block, and
 says, I could do this to solve it, shall I? I myself am going to say
 no, because I want to know the nature of the block, and how Portage's
 proposed action is going to affect the system that I have carefully
 customized to my individual needs.

 So I'm right in the same position as I was anyway; the emerge is stopped
 (because I said, no don't go on with whatever you plan), and I'm off
 reading ChangeLogs and the like to see what's going on in the
 environment I'm suddenly dealing with. I suppose that it's all very nice
 to have some extra dialog as if Portage was communicating with me more
 humanely, but it's just cosmetic, in actual fact.

 Of course, that may be because I take time to read some of the
 comprehensive documentation that so many have taken the time to write,
 so I know what a Blocked Package is, so it doesn't freak me out when I
 come across one. So sue me and call me names... oh wait, you had your
 rant already. We'll mark that item Done, then.

I don't think anyone wants to call you names.  At least not anyone
sensible.  But, I see I struck a nerve on one of my previous posts. 
That's good though, as we *all* need to be provoked to think a little.
 That way we become *wise* rather than *smart*.  And wise is better
than smart. :D


 Ultimately, I'm sure such an extra dialog would be a nice thing, but I
 don't so much see it as something to get all riled up about. Maybe it's
 just me.

 Holly


 --
 gentoo-user@gentoo.org mailing list



-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] package conflict on update

2006-01-06 Thread Trenton Adams
On 1/6/06, Neil Bothwick [EMAIL PROTECTED] wrote:
 On Thu, 05 Jan 2006 17:14:36 -0800, Zac Medico wrote:

  | if_blocked_by('openmotif')
  | ewarn You must unmerge openmotif before proceeding
  |
 
  It would be icky to have to specify blocker logic/messages like that.

 Not in the sort of cases that come up most often, where functionality has
 been moved from a package into another. In this case the block is
 entirely predictable. If, for example, you are updating xpdf from version
 =X to version X, it will both require and block poppler. The dev has
 already modified the ebuild to handle the new dependency, so he will know
 about the block.


EXACTLY Neil! :)


 --
 Neil Bothwick

 Windows booting: insert CD-ROM 2.




-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] package conflict on update

2006-01-06 Thread Trenton Adams
Oops, forgot to reply to everything.

On 1/6/06, Holly Bostick [EMAIL PROTECTED] wrote:
 Trenton Adams schreef:
  On 1/5/06, Neil Bothwick [EMAIL PROTECTED] wrote:
 
 On Thu, 5 Jan 2006 16:32:20 -0700, Trenton Adams wrote:
 
 
 something like
 
 if_blocked_by('openmotif')
 ewarn You must unmerge openmotif before proceeding
 
 Yes, or as follows...
 
 if_blocked_by('openmotif')
   auto_unmerge('openmotif')
   # continue with merge which should automatically be merging openmotif
 anyhow.
 
 Absolutely not! I don't want portage removing something I may be using at
 the time without my saying so.
 
 
  Good point.  Perhaps it should ask then?
 
 

 Well, it does, by stopping and waiting for you to perform an action and
 either restart the stopped process (if the action you took was to
 unmerge the blocking package), or to forego the stopped process
 entirely,  if you choose not to remove the blocked package because you
 want to keep it for whatever reason (it could happen).

 You're assuming that unmerging the blocking package is *always* the
 right solution for everyone at all times (in this case, it's not really
 relevant, since motif-config will itself re-install openmotif), but the
 point of Gentoo is that you are in control. If I am in control, then I
 have to decide what I want done in each particular situation that
 occurs, which is exactly what I have to do with the current setup-- very
 obviously, since Portage will stop until I make a decision and act on
 it. So fine, your new updated Portage informs me there's a block, and
 says, I could do this to solve it, shall I? I myself am going to say
 no, because I want to know the nature of the block, and how Portage's
 proposed action is going to affect the system that I have carefully
 customized to my individual needs.

Yes, flexibility is GREAT.  That's one reason I really like gentoo,
and linux in general.  However, I also like simplicity, or should I
say, I like to have the choice.  So, one could easily make gentoo have
auto-detect and handle features, while allowing configuration changes
that disable automatic behaviour.  You could have individual
enable/disable options for each feature, as well as one global feature
than enables/disables all auto-detect features.  Then you could have
include/excludes for each feature so that the global would not
override them.

So, the bottom line is this, one person says that things are difficult
because they need to be, in order to be flexible.  But I say that if
things are truly flexible, then it should also be possible to make
them automatic, or simple.  That's what I call ULTIMATE flexiblity,
which is what I mentioned in another post that I made.  When I
originally started with gentoo linux, I read the part about why gentoo
linux came about.  Basically it was all about doing things the way you
want.  Well, I like the flexiblity, but I also want the simplicity. :)
 Let us have the simplicity of RedHat, and RPMs (waiting for flames),
but with flexibility as well.

I understand that gentoo is a work in progress, and will probably
remain that way forever (I HOPE).  So, any ideas should at least be
analyzed, and thought out, and not just discarded.


 So I'm right in the same position as I was anyway; the emerge is stopped
 (because I said, no don't go on with whatever you plan), and I'm off
 reading ChangeLogs and the like to see what's going on in the
 environment I'm suddenly dealing with. I suppose that it's all very nice
 to have some extra dialog as if Portage was communicating with me more
 humanely, but it's just cosmetic, in actual fact.

 Of course, that may be because I take time to read some of the
 comprehensive documentation that so many have taken the time to write,
 so I know what a Blocked Package is, so it doesn't freak me out when I
 come across one. So sue me and call me names... oh wait, you had your
 rant already. We'll mark that item Done, then.

 Ultimately, I'm sure such an extra dialog would be a nice thing, but I
 don't so much see it as something to get all riled up about. Maybe it's
 just me.

 Holly


 --
 gentoo-user@gentoo.org mailing list



-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] OT - Help setting up eix!

2006-01-06 Thread Lares Moreau
On Fri, 2006-01-06 at 20:01 -0600, Michael Sullivan wrote:
 
 Yes.  Here was the output:
 
 camille ~ # update-eix
 Reading Portage settings ..
 Building database (/var/cache/eix) from scratch ..
 [0] /usr/portage/ (cache: cdb)
  Reading 100%
 [1] /usr/local/portage (cache: none)
  Reading 100%
 Applying masks ..
 Database contains 0 packages in 145 categories.
NOTE 0 packages..
Permissions issue?

-- 
Lares Moreau [EMAIL PROTECTED]  | LRU: 400755 http://counter.li.org
lares/irc.freenode.net |
Gentoo x86 Arch Tester |   ::0 Alberta, Canada
Public Key: 0D46BB6E @ subkeys.pgp.net |  Encrypted Mail Preferred
Key fingerprint = 0CA3 E40D F897 7709 3628  C5D4 7D94 483E 0D46 BB6E


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


Re: [gentoo-user] OT - Help setting up eix!

2006-01-06 Thread Rumen Yotov
On (06/01/06 23:51), Lares Moreau wrote:
 On Fri, 2006-01-06 at 20:01 -0600, Michael Sullivan wrote:
  
  Yes.  Here was the output:
  
  camille ~ # update-eix
  Reading Portage settings ..
  Building database (/var/cache/eix) from scratch ..
  [0] /usr/portage/ (cache: cdb)
   Reading 100%
  [1] /usr/local/portage (cache: none)
   Reading 100%
  Applying masks ..
  Database contains 0 packages in 145 categories.
 NOTE 0 packages..
 Permissions issue?
 
 -- 
 Lares Moreau [EMAIL PROTECTED]  | LRU: 400755 http://counter.li.org
 lares/irc.freenode.net |
 Gentoo x86 Arch Tester |   ::0 Alberta, Canada
 Public Key: 0D46BB6E @ subkeys.pgp.net |  Encrypted Mail Preferred
 Key fingerprint = 0CA3 E40D F897 7709 3628  C5D4 7D94 483E 0D46 BB6E
Hi,
Think the issue was solver, after a mail from Holly, no?
Must remove/backup /etc/eixrc or comment the line enabling 'cdb' module.
Currently it's using a 'cdb' as cache storage. But portage is *not* using 'cdb'.
HTH.Rumen


pgpaPJ9pnLTDi.pgp
Description: PGP signature