Re: [gentoo-user] Atheros kernel driver and my wireless access point setup

2009-06-08 Thread Dale
Jason Carson wrote:
> Hey all,
>
> I think I might know the problem. After doing some reading apparently many
> distrutions, including Gentoo, don't ship hostapd with support for the
> nl80211 driver. I checked the Gentoo tarball and this is the case. I tried
> editing the defconfig file in hostapd.tar.gz (enabling
> CONFIG_DRIVER_NL80211=y)but when I opened the tarball, edited it, and
> created a new tarball then tried to emerge it it gave me this...
>
>
> penguin distfiles # emerge hostapd
> Calculating dependencies... done!
>
>   
 Verifying ebuild manifests
 
>
>   
 Emerging (1 of 1) net-wireless/hostapd-0.6.9
 
> Refetching... File renamed to
> '/usr/portage/distfiles/hostapd-0.6.9.tar.gz._checksum_failure_.70f9W1'
>
>
> ...and then wanted to download hostapd again.
>
> Anyone know how I edit the source of the hostapd tarball so it will work?
>
>   

What it is doing is correct.  The package has been changed and portage
doesn't know if you did it or some random hacker.  That said, man ebuild
and check out the manifest section.  I have never done this but maybe it
will make sense to you.

Also, I think emerge used to have the --digest option.  Basically it
tells emerge to skip checking the digest.  I didn't see it in the man
page so it may not be there anymore.

Dale

:-)  :-) 



Re: [gentoo-user] Atheros kernel driver and my wireless access point setup

2009-06-08 Thread Jason Carson
> On Tuesday 09 June 2009, Jason Carson wrote:
>> Greetings,
>>
>> I am trying to setup a wireless access point using the atheros kernel
>> driver (Built into the kernel, not as a module). I am using
>> Vanilla-Sources 2.6.29.4. I need my wireless network card to start up in
>> "master mode" but for some reason it is starting up in "managed mode".
>>
>>
>> When wlan0 starts up I get this error message...
>>
>>
>> * Bringing up interface wlan0
>> *configuring wireless network for wlan0
>> Error for wireless request "Set Mode" (8B06) :
>>SET failed on device wlan0 ; invalid argument.
>> *wlan0 connected to SSID "MyNetwork"
>> *in managed mode (WEP Disabled)
>> *  null...[ ok ]
>>
>>
>> then when hostapd starts up I get this error message...
>>
>>
>> * Starting hostapd...
>> Configuration file: /etc/hostapd/hostapd.conf
>> Failed to set interface wlan0 to master mode.
>> nl80211 driver initialization failed.
>> ELOOP: remaining socket: sock=5 eloop_data=0x80f5a38 user_data=(nil)
>> handler=0x8094b70
>> * start-stop-daemon: failed to start `/usr/sbin/hostapd'
>>  [ !! ]
>> * ERROR: hostapd failed to start
>>
>>
>> Here is my /etc/conf.d/net
>>
>>
>> config_eth0="69.196.152.151 netmask 255.255.255.0 broadcast
>> 69.196.152.255"
>> config_eth1="null"
>> config_wlan0="null"
>> bridge_br0="eth1 wlan0"
>> config_br0="192.168.0.1 netmask 255.255.255.0 broadcast 192.168.0.255"
>> channel_wlan0="1"
>> mode_wlan0="master"
>> essid_wlan0="MyNetwork"
>>
>>
>> Here is my hostapd.conf
>>
>>
>> interface=wlan0
>> bridge=br0
>> driver=nl80211
>> ssid=MyNetwork
>> hw_mode=g
>> channel=1
>> macaddr_acl=0
>> auth_algs=1
>> ignore_broadcast_ssid=0
>> country_code=CA
>> wpa=1
>> wpa_passphrase=passphrase
>> wpa_key_mgmt=WPA-PSK
>> wpa_pairwise=TKIP
>> rsn_pairwise=CCMP
>>
>>
>> Anyone know how to change my wireless card to "master mode" and make it
>> so
>> I don't get those error messages?
>>
>>
>> Thanks
>>
>>
>> P.S. I have everything working with madwifi and an older kernel so worst
>> case scenario I stay with that configuration until I get this problem
>> figured out.
>
> Should you also define in your /etc/conf.d/net the driver?
>
>modules=( "wpa_supplicant" )
>wpa_supplicant_wlan0="-Dwext"
>
> (but I'm not sure of the options because I have never set up the card as
> master with hostapd).
>
> HTH.
> --
> Regards,
> Mick

Maybe, I don't know. I thought wpa_supplicant was for clients not wireless
access points. I am currently running the madwifi driver and an older
kernel. I am not using wpa_supplicant and it works fine as a access point.




Re: [gentoo-user] Atheros kernel driver and my wireless access point setup

2009-06-08 Thread Mick
On Tuesday 09 June 2009, Jason Carson wrote:
> Greetings,
>
> I am trying to setup a wireless access point using the atheros kernel
> driver (Built into the kernel, not as a module). I am using
> Vanilla-Sources 2.6.29.4. I need my wireless network card to start up in
> "master mode" but for some reason it is starting up in "managed mode".
>
>
> When wlan0 starts up I get this error message...
>
>
> * Bringing up interface wlan0
> *configuring wireless network for wlan0
> Error for wireless request "Set Mode" (8B06) :
>SET failed on device wlan0 ; invalid argument.
> *wlan0 connected to SSID "MyNetwork"
> *in managed mode (WEP Disabled)
> *  null...[ ok ]
>
>
> then when hostapd starts up I get this error message...
>
>
> * Starting hostapd...
> Configuration file: /etc/hostapd/hostapd.conf
> Failed to set interface wlan0 to master mode.
> nl80211 driver initialization failed.
> ELOOP: remaining socket: sock=5 eloop_data=0x80f5a38 user_data=(nil)
> handler=0x8094b70
> * start-stop-daemon: failed to start `/usr/sbin/hostapd'
>  [ !! ]
> * ERROR: hostapd failed to start
>
>
> Here is my /etc/conf.d/net
>
>
> config_eth0="69.196.152.151 netmask 255.255.255.0 broadcast 69.196.152.255"
> config_eth1="null"
> config_wlan0="null"
> bridge_br0="eth1 wlan0"
> config_br0="192.168.0.1 netmask 255.255.255.0 broadcast 192.168.0.255"
> channel_wlan0="1"
> mode_wlan0="master"
> essid_wlan0="MyNetwork"
>
>
> Here is my hostapd.conf
>
>
> interface=wlan0
> bridge=br0
> driver=nl80211
> ssid=MyNetwork
> hw_mode=g
> channel=1
> macaddr_acl=0
> auth_algs=1
> ignore_broadcast_ssid=0
> country_code=CA
> wpa=1
> wpa_passphrase=passphrase
> wpa_key_mgmt=WPA-PSK
> wpa_pairwise=TKIP
> rsn_pairwise=CCMP
>
>
> Anyone know how to change my wireless card to "master mode" and make it so
> I don't get those error messages?
>
>
> Thanks
>
>
> P.S. I have everything working with madwifi and an older kernel so worst
> case scenario I stay with that configuration until I get this problem
> figured out.

Should you also define in your /etc/conf.d/net the driver?  

   modules=( "wpa_supplicant" )
   wpa_supplicant_wlan0="-Dwext"

(but I'm not sure of the options because I have never set up the card as 
master with hostapd).

HTH.
-- 
Regards,
Mick


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


Re: [gentoo-user] Atheros kernel driver and my wireless access point setup

2009-06-08 Thread Jason Carson
Hey all,

I think I might know the problem. After doing some reading apparently many
distrutions, including Gentoo, don't ship hostapd with support for the
nl80211 driver. I checked the Gentoo tarball and this is the case. I tried
editing the defconfig file in hostapd.tar.gz (enabling
CONFIG_DRIVER_NL80211=y)but when I opened the tarball, edited it, and
created a new tarball then tried to emerge it it gave me this...


penguin distfiles # emerge hostapd
Calculating dependencies... done!

>>> Verifying ebuild manifests

>>> Emerging (1 of 1) net-wireless/hostapd-0.6.9
Refetching... File renamed to
'/usr/portage/distfiles/hostapd-0.6.9.tar.gz._checksum_failure_.70f9W1'


...and then wanted to download hostapd again.

Anyone know how I edit the source of the hostapd tarball so it will work?

> Greetings,
>
> I am trying to setup a wireless access point using the atheros kernel
> driver (Built into the kernel, not as a module). I am using
> Vanilla-Sources 2.6.29.4. I need my wireless network card to start up in
> "master mode" but for some reason it is starting up in "managed mode".
>
>
> When wlan0 starts up I get this error message...
>
>
> * Bringing up interface wlan0
> *configuring wireless network for wlan0
> Error for wireless request "Set Mode" (8B06) :
>SET failed on device wlan0 ; invalid argument.
> *wlan0 connected to SSID "MyNetwork"
> *in managed mode (WEP Disabled)
> *  null...[ ok ]
>
>
> then when hostapd starts up I get this error message...
>
>
> * Starting hostapd...
> Configuration file: /etc/hostapd/hostapd.conf
> Failed to set interface wlan0 to master mode.
> nl80211 driver initialization failed.
> ELOOP: remaining socket: sock=5 eloop_data=0x80f5a38 user_data=(nil)
> handler=0x8094b70
> * start-stop-daemon: failed to start `/usr/sbin/hostapd'
>  [ !! ]
> * ERROR: hostapd failed to start
>
>
> Here is my /etc/conf.d/net
>
>
> config_eth0="69.196.152.151 netmask 255.255.255.0 broadcast
> 69.196.152.255"
> config_eth1="null"
> config_wlan0="null"
> bridge_br0="eth1 wlan0"
> config_br0="192.168.0.1 netmask 255.255.255.0 broadcast 192.168.0.255"
> channel_wlan0="1"
> mode_wlan0="master"
> essid_wlan0="MyNetwork"
>
>
> Here is my hostapd.conf
>
>
> interface=wlan0
> bridge=br0
> driver=nl80211
> ssid=MyNetwork
> hw_mode=g
> channel=1
> macaddr_acl=0
> auth_algs=1
> ignore_broadcast_ssid=0
> country_code=CA
> wpa=1
> wpa_passphrase=passphrase
> wpa_key_mgmt=WPA-PSK
> wpa_pairwise=TKIP
> rsn_pairwise=CCMP
>
>
> Anyone know how to change my wireless card to "master mode" and make it so
> I don't get those error messages?
>
>
> Thanks
>
>
> P.S. I have everything working with madwifi and an older kernel so worst
> case scenario I stay with that configuration until I get this problem
> figured out.
>
>
>





[gentoo-user] Atheros kernel driver and my wireless access point setup

2009-06-08 Thread Jason Carson
Greetings,

I am trying to setup a wireless access point using the atheros kernel
driver (Built into the kernel, not as a module). I am using
Vanilla-Sources 2.6.29.4. I need my wireless network card to start up in
"master mode" but for some reason it is starting up in "managed mode".


When wlan0 starts up I get this error message...


* Bringing up interface wlan0
*configuring wireless network for wlan0
Error for wireless request "Set Mode" (8B06) :
   SET failed on device wlan0 ; invalid argument.
*wlan0 connected to SSID "MyNetwork"
*in managed mode (WEP Disabled)
*  null...[ ok ]


then when hostapd starts up I get this error message...


* Starting hostapd...
Configuration file: /etc/hostapd/hostapd.conf
Failed to set interface wlan0 to master mode.
nl80211 driver initialization failed.
ELOOP: remaining socket: sock=5 eloop_data=0x80f5a38 user_data=(nil)
handler=0x8094b70
* start-stop-daemon: failed to start `/usr/sbin/hostapd'  
 [ !! ]
* ERROR: hostapd failed to start


Here is my /etc/conf.d/net


config_eth0="69.196.152.151 netmask 255.255.255.0 broadcast 69.196.152.255"
config_eth1="null"
config_wlan0="null"
bridge_br0="eth1 wlan0"
config_br0="192.168.0.1 netmask 255.255.255.0 broadcast 192.168.0.255"
channel_wlan0="1"
mode_wlan0="master"
essid_wlan0="MyNetwork"


Here is my hostapd.conf


interface=wlan0
bridge=br0
driver=nl80211
ssid=MyNetwork
hw_mode=g
channel=1
macaddr_acl=0
auth_algs=1
ignore_broadcast_ssid=0
country_code=CA
wpa=1
wpa_passphrase=passphrase
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
rsn_pairwise=CCMP


Anyone know how to change my wireless card to "master mode" and make it so
I don't get those error messages?


Thanks


P.S. I have everything working with madwifi and an older kernel so worst
case scenario I stay with that configuration until I get this problem
figured out.




[gentoo-user] Trying SRC_URI first during fetching

2009-06-08 Thread Nikos Chantziaras
Normally, portage will try fetching from GENTOO_MIRRORS during an emerge 
and SRC_URI comes last.  I want to reverse this; try SRC_URI first and 
if that fails, only then proceed to fetch from GENTOO_MIRRORS.  Doable?





Re: [gentoo-user] Finding orphaned libs

2009-06-08 Thread Dale
Willie Wong wrote:
> On Mon, Jun 08, 2009 at 06:52:23PM -0500, Penguin Lover Dale squawked:
>   
>> Questions:  You knew I subscribed to this list.  lol  I ran the command:
>>
>> find -H /usr/lib /lib -type f | xargs qfile -o
>>
>> and I got a lot of hits.  I'm just going to post snippets of the
>> directories here.  It is a LONG list otherwise.
>>
>> /usr/lib/gimp/2.0/plug-ins/
>> /usr/lib/perl5/site_perl/5.8.8/i486-linux/sys/
>> /usr/lib/python2.5/site-packages/dbus/
>> /usr/lib/python2.5/site-packages/Numeric/
>> /usr/lib/python2.5/site-packages/PyQt4/uic/
>> /usr/lib/python2.5/site-packages/Pyrex/Plex/
>> /usr/lib/portage/pym/
>>
>> Some of those directories have additional directories in them but I
>> tried to hit the highlights.  Now to my questions.  Can these be
>> deleted?  Should one make certain these doesn't belong to some package
>> somewhere?  Should I update my backups BEFORE deleting these?  o_O
>> 
>
> Depends if you do have those packages installed. Numeric is from
> dev-python/numeric, for example.
>
> Also, be careful when you parse the output of the command. Most of the
> .pyc and .pyo files in the python2.5 directories are byte-compiled
> version that python generated dynamically the first time they are
> used. For example: /Numeric/numeric_version.py was installed by
> the ebuild and thuse qfile tells me it belongs to dev-python/numeric,
> but .../Numeric/numeric_version.pyc is listed as an "orphan". While it
> is safe to delete, it will just be regenerated again later, wasting
> computing cycles. 
>
> Ditto for some of the files in the perl directory. 
>
> W
>   

That's sort of what I was thinking.  It was generated when it was
started up the first time.  I also noticed some things that I installed
in the Seamonkey directory too.  Adblock was one of those.

Tho there was a good many of them, I suspect most all of them belongs to
something here.  I may just leave well enough alone, may poke around a
little but nothing risky.

Thanks.

Dale

:-)  :-) 



Re: [gentoo-user] Finding orphaned libs

2009-06-08 Thread Willie Wong
On Mon, Jun 08, 2009 at 06:52:23PM -0500, Penguin Lover Dale squawked:
> Questions:  You knew I subscribed to this list.  lol  I ran the command:
> 
> find -H /usr/lib /lib -type f | xargs qfile -o
> 
> and I got a lot of hits.  I'm just going to post snippets of the
> directories here.  It is a LONG list otherwise.
> 
> /usr/lib/gimp/2.0/plug-ins/
> /usr/lib/perl5/site_perl/5.8.8/i486-linux/sys/
> /usr/lib/python2.5/site-packages/dbus/
> /usr/lib/python2.5/site-packages/Numeric/
> /usr/lib/python2.5/site-packages/PyQt4/uic/
> /usr/lib/python2.5/site-packages/Pyrex/Plex/
> /usr/lib/portage/pym/
> 
> Some of those directories have additional directories in them but I
> tried to hit the highlights.  Now to my questions.  Can these be
> deleted?  Should one make certain these doesn't belong to some package
> somewhere?  Should I update my backups BEFORE deleting these?  o_O

Depends if you do have those packages installed. Numeric is from
dev-python/numeric, for example.

Also, be careful when you parse the output of the command. Most of the
.pyc and .pyo files in the python2.5 directories are byte-compiled
version that python generated dynamically the first time they are
used. For example: /Numeric/numeric_version.py was installed by
the ebuild and thuse qfile tells me it belongs to dev-python/numeric,
but .../Numeric/numeric_version.pyc is listed as an "orphan". While it
is safe to delete, it will just be regenerated again later, wasting
computing cycles. 

Ditto for some of the files in the perl directory. 

W
-- 
I am not a physics major. I am not a physics major. I will never be a physics 
major. I never will want to be a physics major. I can never be a physics 
major.   ~Daniel Jonathan Peng
Sortir en Pantoufles: up 913 days, 22:59



Re: [gentoo-user] Finding orphaned libs

2009-06-08 Thread Dale
Neil Bothwick wrote:
> On Mon, 8 Jun 2009 22:44:18 +0200, Alan McKinnon wrote:
>
>   
>> Is there an easy way to detect the orphaned libs on and old machine
>> who's install dates back to 2004? The only idea I can come up with is 
>>
>> for I in /usr/lib/*.so.* ; do equery belongs $I ; done
>> 
>
> qfile --orphans /usr/lib/*.so.*
>
> or, maybe cleaner
>
> qfile --orphans $(find -H /usr/lib /lib -type f)
>
> which avoids checking all the symlinks.
>
> Then run symlinks remove any dangling links left over.
>
>
>   

Questions:  You knew I subscribed to this list.  lol  I ran the command:

find -H /usr/lib /lib -type f | xargs qfile -o

and I got a lot of hits.  I'm just going to post snippets of the
directories here.  It is a LONG list otherwise.

/usr/lib/gimp/2.0/plug-ins/
/usr/lib/perl5/site_perl/5.8.8/i486-linux/sys/
/usr/lib/python2.5/site-packages/dbus/
/usr/lib/python2.5/site-packages/Numeric/
/usr/lib/python2.5/site-packages/PyQt4/uic/
/usr/lib/python2.5/site-packages/Pyrex/Plex/
/usr/lib/portage/pym/

Some of those directories have additional directories in them but I
tried to hit the highlights.  Now to my questions.  Can these be
deleted?  Should one make certain these doesn't belong to some package
somewhere?  Should I update my backups BEFORE deleting these?  o_O

If you want the whole list, let me know.  Be forewarned tho, it is a
huge list even if I leave out the kernel sources for my old trusty 2.6.23.

Thanks much.

Dale

:-)  :-) 



Re: [gentoo-user] Finding orphaned libs

2009-06-08 Thread Willie Wong
On Mon, Jun 08, 2009 at 09:54:08PM +0100, Penguin Lover Neil Bothwick squawked:
> On Mon, 8 Jun 2009 22:44:18 +0200, Alan McKinnon wrote:
> 
> > Is there an easy way to detect the orphaned libs on and old machine
> > who's install dates back to 2004? The only idea I can come up with is 
> > 
> > for I in /usr/lib/*.so.* ; do equery belongs $I ; done
> 
> qfile --orphans /usr/lib/*.so.*
> 
> or, maybe cleaner
> 
> qfile --orphans $(find -H /usr/lib /lib -type f)
> 
> which avoids checking all the symlinks.
> 
> Then run symlinks remove any dangling links left over.

Whoa, that's useful. Thanks for Neil for giving the solution, and to
Alan for even asking the question. Having a box whose install dates to 

sep~ # head /var/log/emerge.log
Started emerge on: Nov 03, 2002
 *** emerge  >=sys-apps/baselayout-1.7.9-r1 >=sys-apps/texinfo-4.2-r1 
sys-devel/gettext >=sys-devel/binutils-2.13.90.0.4 >=sys-devel/gcc-3.2
>>> emerge (1 of 7) sys-apps/baselayout-1.8.4.1 to /
::: completed emerge (1 of 7) sys-apps/baselayout-1.8.4.1 to /
>>> emerge (2 of 7) sys-apps/texinfo-4.2-r5 to /

This seems to be a worthy enterprise. 

BTW, though, $(find -H ...) will have too big a list. Perhaps better
to do 

find -H /usr/lib /lib -type f | xargs qfile -o

W
-- 
When my cats aren't happy, I'm not happy. Not because I care about their mood 
but because I know they're just sitting there thinking up ways to get even.
~Penny Ward Moser
Sortir en Pantoufles: up 913 days, 22:12



Re: [gentoo-user] Finding orphaned libs

2009-06-08 Thread Dale
Alan McKinnon wrote:
> On Monday 08 June 2009 22:54:08 Neil Bothwick wrote:
>   
>> On Mon, 8 Jun 2009 22:44:18 +0200, Alan McKinnon wrote:
>> 
>>> Is there an easy way to detect the orphaned libs on and old machine
>>> who's install dates back to 2004? The only idea I can come up with is
>>>
>>> for I in /usr/lib/*.so.* ; do equery belongs $I ; done
>>>   
>> qfile --orphans /usr/lib/*.so.*
>>
>> or, maybe cleaner
>>
>> qfile --orphans $(find -H /usr/lib /lib -type f)
>>
>> which avoids checking all the symlinks.
>>
>> Then run symlinks remove any dangling links left over.
>> 
>
> Thanks, that's just the biscuit :-)
>
> I really need to start using those q* commands. After 5 years on gentoo, I 
> reckon it's about time...
>
>   

Careful, it will end up like etcat and the rest.  You learn them and
start to use them, then they go away and you have to start over again.

Dale

:-)  :-) 



Re: [gentoo-user] Finding orphaned libs

2009-06-08 Thread Alan McKinnon
On Monday 08 June 2009 22:54:08 Neil Bothwick wrote:
> On Mon, 8 Jun 2009 22:44:18 +0200, Alan McKinnon wrote:
> > Is there an easy way to detect the orphaned libs on and old machine
> > who's install dates back to 2004? The only idea I can come up with is
> >
> > for I in /usr/lib/*.so.* ; do equery belongs $I ; done
>
> qfile --orphans /usr/lib/*.so.*
>
> or, maybe cleaner
>
> qfile --orphans $(find -H /usr/lib /lib -type f)
>
> which avoids checking all the symlinks.
>
> Then run symlinks remove any dangling links left over.

Thanks, that's just the biscuit :-)

I really need to start using those q* commands. After 5 years on gentoo, I 
reckon it's about time...

-- 
alan dot mckinnon at gmail dot com



Re: [gentoo-user] KDE menu missing

2009-06-08 Thread Mick
On Monday 08 June 2009, Philip Webb wrote:
> 090608 Mick wrote:
> > I seem to have installed kde-base/mimelib, I guess as dependency:
> >  kde-base/mimelib
> >  Installed versions:  3.5.10(3.5)(20:11:53 06/07/09)(-debug
> > -elibc_FreeBSD) I also tried changing fluxbox for kdm (in case this is a
> > fluxbox WM issue) and restarted X with kdm.  Ran kbuildsycoca, but same
> > error again.
>
> I always 'startx' from a raw terminal.
>
> I recompiled  kcminit kfind kpersonalizer kreadconfig  & rebooted,
> but there is no change in Krusader's behaviour.

Just tried kfmclient and this is the response:

$ kfmclient openProfile webbrowsing
kfmclient: ERROR: Couldn't start konqueror from konqueror.desktop: Could not 
find service 'konqueror.desktop'.

So it seems that all the kde applications that were installed have not been 
registered.  I remerged konqueror just in case and noticed this elog message 
amidst others:

* Messages for package kde-base/konqueror-3.5.10:

 * /usr/kde/3.5/share/applications/kde/keditbookmarks.desktop: required 
key "Type" in group "Desktop Entry" is not present -- required key "Name" in 
group "Desktop Entry" is not present

The file in question contains:

[Desktop Entry]
Hidden=true

Should it be Hidden-false?  What is this for?
-- 
Regards,
Mick


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


Re: [gentoo-user] Verification of audio CD copy?

2009-06-08 Thread Mark Knecht
On Mon, Jun 8, 2009 at 12:25 PM, Paul
Hartman wrote:
> On Mon, Jun 8, 2009 at 2:04 PM, Mark Knecht wrote:
>> Is it possible to update LITE-ON firmware?
>
> Yes, but only from within MS Windows as far as I know. Here is the
> latest official firmware for your LDW-411S:
>
> http://www.liteonit.com/DOWNLOADS/ODD/LDW-411S/firmware/DR4FS0K.zip
>
> From your logs, you're using FS0B, so FS0K is 9 revisions newer!
>
> And here for the other drive,
>
> http://www.liteonit.com/DOWNLOADS/ODD/LTR-48246S/firmware/R48SS0E.zip
>
> From your logs, it looks like your LTR-48246S is SS0B so SS0E would be
> 3 revisions newer.
>
> Both new firmware releases above were released in March 2006 according
> to Lite-On's site.
>
>

OK - thanks for that Paul. Since the machine is dual boot and I'm in
Windows most of the working day this wasn't too difficult. Both drive
have had their firmware updated. Still the LDW-411S reads the ISRC's
incorrectly. The LTR-48246 looks good though. (It was good before the
firmware upgrade also, so actually no change, but the firmware is
updated and that's good.

In parallel with the efforts on that machine I made headway on another
machine - my new MythTV backend server of all things. It's a PowerPC
based Mac Mini- 1st generation - with a Matshita drive in it. I
started with cdda2wav -paranoia at max speed and it failed. I lowered
it to 20, then 16, then 8. Paranoia kept failing. Finally at speed=6
it worked.

Armed with that data I used cdrecord to write a new copy and amazingly
it worked. Plays just fine in the car. I haven't had time yet to see
if an iTunes box picks up cddb data or anything like that but at least
it worked on the car. If there are other problems hopefully I can get
those worked out soon.

I started a similar test using the LTR-48246 with another CD-R that I
haven't been able to copy. Using paranoia so far 16x and above failed,
I'm trying 8x now.

Anyway, it seems I'm making some headway. I really appreciate your and
Jeorg's help! Thanks!

Cheers,
Mark



Re: [gentoo-user] Finding orphaned libs

2009-06-08 Thread Neil Bothwick
On Mon, 8 Jun 2009 22:44:18 +0200, Alan McKinnon wrote:

> Is there an easy way to detect the orphaned libs on and old machine
> who's install dates back to 2004? The only idea I can come up with is 
> 
> for I in /usr/lib/*.so.* ; do equery belongs $I ; done

qfile --orphans /usr/lib/*.so.*

or, maybe cleaner

qfile --orphans $(find -H /usr/lib /lib -type f)

which avoids checking all the symlinks.

Then run symlinks remove any dangling links left over.


-- 
Neil Bothwick

It may be that your sole purpose in life is simply to serve as a
warning to others.


signature.asc
Description: PGP signature


[gentoo-user] Finding orphaned libs

2009-06-08 Thread Alan McKinnon
Hi,

Is there an easy way to detect the orphaned libs on and old machine who's 
install dates back to 2004? The only idea I can come up with is 

for I in /usr/lib/*.so.* ; do equery belongs $I ; done

which strikes me as being a tad overkill...


-- 
alan dot mckinnon at gmail dot com



Re: [gentoo-user] slim login manager issues

2009-06-08 Thread Sebastian Günther
* Laurent Lejeune (olo...@gmail.com) [08.06.09 19:19]:
> Hi all,
> 
> I'm having some issues with the slim login manager, which suits my very
> basic needs very well, except from those two things:
> 
> * When starting, the keyboard doesn't respond quite well. The
>   characters don't show on screen imediately, and sometimes, it gets
>   even worse: it freezes for maybe 1-2 seconds, then the first key i
>   hit gets "stuck", which basically means it repeats that caracter a
>   fine dozen of times.

I have that problem, too. But upstream has an even bigger problem: 
Maintainer needed.

> * when i have to restart x, slim doesn't restarts itself up, i'm
>   thrown back to basic console login prompt.
> 

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

> Any help greatly appreciated.
> 
> cya.
> 

I think until there is a new maintainer, nothing of this will get fixed 
anytime soon. :-(

Sebastian

-- 
 " Religion ist das Opium des Volkes. "  |   _   ASCII ribbon campaign 
  Karl Marx  |  ( )   against HTML e-mail  
 s...@sti@N GÜNTHER   |   X   against M$ attachments
  mailto:sam...@guenther-roetgen.de  |  / \   www.asciiribbon.org  


pgpC2xyYkJu9S.pgp
Description: PGP signature


Re: [gentoo-user] KDE menu missing

2009-06-08 Thread Philip Webb
090608 Mick wrote:
> I seem to have installed kde-base/mimelib, I guess as dependency:
>  kde-base/mimelib
>  Installed versions:  3.5.10(3.5)(20:11:53 06/07/09)(-debug -elibc_FreeBSD)
> I also tried changing fluxbox for kdm (in case this is a fluxbox WM issue)
> and restarted X with kdm.  Ran kbuildsycoca, but same error again.

I always 'startx' from a raw terminal.

I recompiled  kcminit kfind kpersonalizer kreadconfig  & rebooted,
but there is no change in Krusader's behaviour.

-- 
,,
SUPPORT ___//___,   Philip Webb
ELECTRIC   /] [] [] [] [] []|   Cities Centre, University of Toronto
TRANSIT`-O--O---'   purslowatchassdotutorontodotca




[gentoo-user] Working tftp ebuild?

2009-06-08 Thread Grant Edwards
Which of the tftp server ebuilds works?  I've tried tftp-hpa,
but its /etc/init.d/in.tftpd script appears to be broken.

Do any of the other tftp servers work?

-- 
Grant Edwards   grante Yow! A dwarf is passing out
  at   somewhere in Detroit!
   visi.com




Re: [gentoo-user] Verification of audio CD copy?

2009-06-08 Thread Paul Hartman
On Mon, Jun 8, 2009 at 2:04 PM, Mark Knecht wrote:
> Is it possible to update LITE-ON firmware?

Yes, but only from within MS Windows as far as I know. Here is the
latest official firmware for your LDW-411S:

http://www.liteonit.com/DOWNLOADS/ODD/LDW-411S/firmware/DR4FS0K.zip

>From your logs, you're using FS0B, so FS0K is 9 revisions newer!

And here for the other drive,

http://www.liteonit.com/DOWNLOADS/ODD/LTR-48246S/firmware/R48SS0E.zip

>From your logs, it looks like your LTR-48246S is SS0B so SS0E would be
3 revisions newer.

Both new firmware releases above were released in March 2006 according
to Lite-On's site.



Re: [gentoo-user] KDE menu missing

2009-06-08 Thread Mick
On Monday 08 June 2009, Philip Webb wrote:
> 090608 Volker Armin Hemmann wrote:
> > are you missing mimelib
>
> Yes, in fact I've never heard of it before.
> Has it suddenly become necessary with the latest KDE 3.5.10 ?
>
> > have you updated from monolithic to split - and missed a couple of
> > packages?
>
> Not here.

I've updated from monolithic to split (actually removed monolithic and then 
installed split) years ago.  It has been working fine until now - 3.5.10

I seem to have installed kde-base/mimelib, I guess as dependency:

kde-base/mimelib
 Installed versions:  3.5.10(3.5)(20:11:53 06/07/09)(-debug -elibc_FreeBSD)

I also tried changing fluxbox for kdm (in case this is a fluxbox WM issue) and 
restarte X with kdm.  Ran kbuildsycoca, but same error again.  :(
-- 
Regards,
Mick


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


Re: [gentoo-user] Verification of audio CD copy?

2009-06-08 Thread Mark Knecht
On Mon, Jun 8, 2009 at 11:32 AM, Joerg
Schilling wrote:

>
> Your problem is that either your CD-ROM drive has buggy formware or that the 
> CD
> is mastered in a way that contains illegal characters...
>
> Given the fact that is is most unlikely to have the same ISRC for all tracks 
> on
> the CD, I would asume that it's a broken drive.
>
> Typical ISRCs look this way:
>
> T:  1 ISRC: DE-A34-96-00554
> T:  2 ISRC: DE-A34-96-00555
> T:  3 ISRC: DE-A34-96-00556
> T:  4 ISRC: DE-A34-96-00607
> T:  5 ISRC: DE-A34-96-00557
> T:  6 ISRC: DE-A34-96-00558
> T:  7 ISRC: DE-A34-96-00559
> T:  8 ISRC: DE-A34-96-00560
> T:  9 ISRC: DE-A34-96-00561
> T: 10 ISRC: DE-A34-96-00562
> T: 11 ISRC: DE-A34-96-00563
> T: 12 ISRC: DE-A34-96-00564
> T: 13 ISRC: DE-A34-96-00565
> T: 14 ISRC: DE-A34-96-00566
>
> The first two characters are the two character code for the country where the
> recording was made. The next three characters are the Studio ID, the next two
> characters are the last two digits of the recording year and the last 5 digits
> are a serial number for all recordings of a year in a specific studio.
>
> If you correct your *.inf files to contain correct values or if you just 
> remove
> the entries, cdrecord will work.
>
> Jörg
>
> --
>  EMail:jo...@schily.isdn.cs.tu-berlin.de (home) Jörg Schilling D-13353 Berlin
>       j...@cs.tu-berlin.de                (uni)
>       joerg.schill...@fokus.fraunhofer.de (work) Blog: 
> http://schily.blogspot.com/
>  URL:  http://cdrecord.berlios.de/private/ ftp://ftp.berlios.de/pub/schily
>
>
BTW - do you have a cdrtools users list? Maybe this is too off topic
for many Gentoo users? If this bothers anyone please let me know and
I'll try to take appropriate action, assuming there is some place else
to have such a conversation.

Indeed, in the files created by the LITE-ON DVDRW LDW-411S (my drive
1) I see bad characters:

CDINDEX_DISCID= 'YasSG0mWGVxInJOH.LN2lnPcBoY-'
CDDB_DISCID=0x870dbf0b
MCN=
ISRC=   0...@-405-72-1

While in the files created by the LITE-ON LTR-48246S (my drive 2) I
see no characters:

CDINDEX_DISCID= 'YasSG0mWGVxInJOH.LN2lnPcBoY-'
CDDB_DISCID=0x870dbf0b
MCN=
ISRC=

OK, so we've made a little headway. Buggy firmware in drive 1. So I
did the cdda2wav step using drive 2 and wrote the new disc using drive
2 also. This disc plays in the car, but only the first track! From
track 2 on I just hear the head seeking around and (apparently) not
finding what it's looking for. But that's an improvement!

Here are the results from the copy/write of the disc on drive 2:

m...@gamer ~/AUDIO/drive2
$ /opt/schily/bin/cdrecord.exe dev=0,1,0 -v -dao -useinfo -text *.wav
Cdrecord-ProDVD-ProBD-Clone 2.01.01a60 (i686-pc-cygwin) Copyright (C) 1995-2009
Jörg Schilling
TOC Type: 0 = CD-DA
scsidev: '0,1,0'
scsibus: 0 target: 1 lun: 0
Using libscg version 'schily-0.9'.
SCSI buffer size: 64512
atapi: -1
Device type: Removable CD-ROM
Version: 0
Response Format: 2
Capabilities   :
Vendor_info: 'LITE-ON '
Identifikation : 'LTR-48246S  '
Revision   : 'SS0B'
Device seems to be: Generic mmc CD-RW.
Current: CD-R
Profile: CD-RW
Profile: CD-R (current)
Profile: CD-ROM
Profile: Removable Disk
Using generic SCSI-3/mmc   CD-R/CD-RW driver (mmc_cdr).
Driver flags   : MMC-3 SWABAUDIO BURNFREE FORCESPEED
Supported modes: TAO PACKET SAO SAO/R96P SAO/R96R RAW/R16 RAW/R96P RAW/R96R
Drive buf size : 1422080 = 1388 KB
/opt/schily/bin/cdrecord: Warning: The DMA speed test has been skipped.
FIFO size  : 4194304 = 4096 KB
pregap1: -1
Track 01: audio   51 MB (05:07.02) no preemp
Track 02: audio   47 MB (04:41.90) no preemp  pregapsize:   0
Track 03: audio   42 MB (04:13.96) no preemp  pregapsize:   0
Track 04: audio   30 MB (02:59.60) no preemp  pregapsize:   0
Track 05: audio   91 MB (09:02.90) no preemp  pregapsize:   0
Track 06: audio   32 MB (03:13.96) no preemp  pregapsize:   0
Track 07: audio   24 MB (02:23.06) no preemp  pregapsize:   0
Track 08: audio   43 MB (04:16.33) no preemp  pregapsize:   0
Track 09: audio   53 MB (05:20.90) no preemp  pregapsize:   0
Track 10: audio   70 MB (07:00.09) no preemp  pregapsize:   0
Track 11: audio  104 MB (10:19.33) no preemp  pregapsize:   0
Total size:  592 MB (58:39.09) = 263932 sectors
Lout start:  592 MB (58:41/07) = 263932 sectors
Current Secsize: 2048
ATIP info from disk:
  Indicated writing power: 4
Disk Is not unrestricted
Disk Is not erasable
  Disk sub type: Medium Type A, low Beta category (A-) (2)
  ATIP start of lead in:  -12508 (97:15/17)
  ATIP start of lead out: 359845 (79:59/70)
Disk type:Short strategy type (Phthalocyanine or similar)
Manuf. index: 22
Manufacturer: Ritek Co.

Capacity  Blklen/Sparesz.  Format-type  Type
  449849 2048 0x00  No Media Present or Unknown Capacity

Blocks total: 359845 Blocks current: 359845 Blocks remaining: 95913
Forcespeed is OFF.
Starting to write CD/DVD/BD at speed 48 in real SAO mode for

Re: [gentoo-user] KDE menu missing

2009-06-08 Thread Philip Webb
090608 Volker Armin Hemmann wrote:
> are you missing mimelib

Yes, in fact I've never heard of it before.
Has it suddenly become necessary with the latest KDE 3.5.10 ?

> have you updated from monolithic to split - and missed a couple of packages?

Not here.

-- 
,,
SUPPORT ___//___,   Philip Webb
ELECTRIC   /] [] [] [] [] []|   Cities Centre, University of Toronto
TRANSIT`-O--O---'   purslowatchassdotutorontodotca




Re: [gentoo-user] Verification of audio CD copy?

2009-06-08 Thread Joerg Schilling
Mark Knecht  wrote:

> On Mon, Jun 8, 2009 at 7:16 AM, Joerg
> Schilling wrote:
> > Mark Knecht  wrote:
> >
> >> Always up for other interpretations as to what might be going on, and
> >> also VERY interested in learning a good set of commands with cdrtools
> >> to copy and write CD's without having to use k3b.
> >
> > The related commands are in the EXAMPLES section for cdda2wav and/or 
> > cdrecord.
> >
> > Jörg
> >
>
> Yeah, but they don't work for me. Are they up to date?

They work ;-)


> No media catalog number present.
> T:  1 ISRC: 0...@-405-72-1
> T:  2 ISRC: 0...@-405-72-1
> T:  3 ISRC: 0...@-405-72-1
> T:  4 ISRC: 0...@-405-72-1
> T:  5 ISRC: 0...@-405-72-1
> T:  6 ISRC: 0...@-405-72-1
> T:  7 ISRC: 0...@-405-72-1
> T:  8 ISRC: 0...@-405-72-1
> T:  9 ISRC: 0...@-405-72-1
> T: 10 ISRC: 0...@-405-72-1
> T: 11 ISRC: 0...@-405-72-1

> Profile: CD-R (current)
> Profile: CD-ROM
> Using generic SCSI-3/mmc   CD-R/CD-RW driver (mmc_cdr).
> Driver flags   : MMC-3 SWABAUDIO BURNFREE FORCESPEED
> Supported modes: TAO PACKET SAO SAO/R96P SAO/R96R RAW/R16 RAW/R96P RAW/R96R
> Drive buf size : 1895168 = 1850 KB
> /opt/schily/bin/cdrecord: Warning: The DMA speed test has been skipped.
> FIFO size  : 4194304 = 4096 KB
> /opt/schily/bin/cdrecord: ISRC '0...@-405-72-1' contains illegal 
> character '0'.
>
> /opt/schily/bin/cdrecord: ISRC '0...@-405-72-1' contains illegal 
> character '@'.

Your problem is that either your CD-ROM drive has buggy formware or that the CD
is mastered in a way that contains illegal characters...

Given the fact that is is most unlikely to have the same ISRC for all tracks on 
the CD, I would asume that it's a broken drive.

Typical ISRCs look this way:

T:  1 ISRC: DE-A34-96-00554
T:  2 ISRC: DE-A34-96-00555
T:  3 ISRC: DE-A34-96-00556
T:  4 ISRC: DE-A34-96-00607
T:  5 ISRC: DE-A34-96-00557
T:  6 ISRC: DE-A34-96-00558
T:  7 ISRC: DE-A34-96-00559
T:  8 ISRC: DE-A34-96-00560
T:  9 ISRC: DE-A34-96-00561
T: 10 ISRC: DE-A34-96-00562
T: 11 ISRC: DE-A34-96-00563
T: 12 ISRC: DE-A34-96-00564
T: 13 ISRC: DE-A34-96-00565
T: 14 ISRC: DE-A34-96-00566

The first two characters are the two character code for the country where the 
recording was made. The next three characters are the Studio ID, the next two 
characters are the last two digits of the recording year and the last 5 digits
are a serial number for all recordings of a year in a specific studio.

If you correct your *.inf files to contain correct values or if you just remove 
the entries, cdrecord will work.

Jörg

-- 
 EMail:jo...@schily.isdn.cs.tu-berlin.de (home) Jörg Schilling D-13353 Berlin
   j...@cs.tu-berlin.de(uni)  
   joerg.schill...@fokus.fraunhofer.de (work) Blog: 
http://schily.blogspot.com/
 URL:  http://cdrecord.berlios.de/private/ ftp://ftp.berlios.de/pub/schily



[gentoo-user] peculiar ppp problem

2009-06-08 Thread Maxim Wexler
Hi group,

I have been switching my dial-up account between my desktop PC and my
netbook eee. Both use identical ppp conf files except the PC uses
/dev/ttyS0 and the netbook uses /dev/ttyUSB0(created by the pl2303
driver and a usb/serial connector). I'm using separate but identical
USR modems.

Both seem to "work" in that the appropriate LEDs light up on either
modem but the log tells a different tale.

In the PC: Script /etc/ppp/ip-up finished (pid ), status = 0x1.
Which means I am connected.

In the netbook, status =0x0. Which means un-connected.

FWIW on the netbook I'm using systemrescuecd-1.2.0, running /root%
pon  on one terminal and attempting to emerge gentoo-sources from
a chrooted environment on another terminal which fails, naturally,
with 'unable to resolve host address' errors.

I've done this often before without problems.

Maxim



[gentoo-user] slim login manager issues

2009-06-08 Thread Laurent Lejeune
Hi all,

I'm having some issues with the slim login manager, which suits my very
basic needs very well, except from those two things:

* When starting, the keyboard doesn't respond quite well. The
  characters don't show on screen imediately, and sometimes, it gets
  even worse: it freezes for maybe 1-2 seconds, then the first key i
  hit gets "stuck", which basically means it repeats that caracter a
  fine dozen of times.
* when i have to restart x, slim doesn't restarts itself up, i'm
  thrown back to basic console login prompt.

Any help greatly appreciated.

cya.



Re: [gentoo-user] Verification of audio CD copy?

2009-06-08 Thread Mark Knecht
On Mon, Jun 8, 2009 at 7:16 AM, Joerg
Schilling wrote:
> Mark Knecht  wrote:
>
>> Always up for other interpretations as to what might be going on, and
>> also VERY interested in learning a good set of commands with cdrtools
>> to copy and write CD's without having to use k3b.
>
> The related commands are in the EXAMPLES section for cdda2wav and/or cdrecord.
>
> Jörg
>

Yeah, but they don't work for me. Are they up to date?

>From http://linuxcommand.org/man_pages/cdrecord1.html as Cygwin didn't
install man pages apparently.


To copy an audio CD in the most accurate way, first run

   cdda2wav dev=2,0 -vall cddb=0 -B -Owav

   and then run

   cdrecord dev=2,0 -v -dao -useinfo -text  *.wav

   This  will  try  to  copy track indices and to read CD-Text information
   from disk.  If there is no CD-Text information, cdda2wav  will  try  to
   get the information from freedb.org instead.


My results fail:

m...@gamer ~/AUDIO
$ /opt/schily/bin/cdda2wav.exe dev=0,0,0 -vall cddb=0 -B -Owav
Type: ROM, Vendor 'LITE-ON ' Model 'DVDRW LDW-411S  ' Revision 'FS0B' MMC+CDDA
load cdrom please and press enter
983040 bytes buffer memory requested, transfer size 64512 bytes, 4 buffers, 27 s
ectors
#Cdda2wav version 2.01.01a60_cygwin32_nt_1.5.25(0.156-4-2)_i686_i686, soundcard,
 libparanoia support
AUDIOtrack pre-emphasis  copy-permitted tracktype channels
  1-11   no  no audio2
Table of Contents: total tracks:11, (total time 58:39.07)
  1.( 5:07.02),  2.( 4:41.68),  3.( 4:13.72),  4.( 2:59.45),  5.( 9:02.68),
  6.( 3:13.72),  7.( 2:23.05),  8.( 4:16.25),  9.( 5:20.68), 10.( 7:00.07),
 11.(10:19.25)

Table of Contents: starting sectors
  1.(   0),  2.(   23027),  3.(   44170),  4.(   63217),  5.(   76687),
  6.(  117405),  7.(  131952),  8.(  142682),  9.(  161907), 10.(  185975),
 11.(  217482), lead-out(  263932)
CDINDEX discid: YasSG0mWGVxInJOH.LN2lnPcBoY-
CDDB discid: 0x870dbf0b
CD-Text: detected
CD-Extra: not detected
Album title: 'Sliver of a Sun'  [from IZZ]
Track  1: 'Endless Calling'
Track  2: 'I Get Lost'
Track  3: 'Lornadoone'
Track  4: 'She Walked Out the Door'
Track  5: 'Assurance'
Track  6: 'Take it Higher'
Track  7: 'Double Bass'
Track  8: 'Just a Girl'
Track  9: 'Meteor'
Track 10: 'Razor'
Track 11: 'Where I Belong'
No media catalog number present.
T:  1 ISRC: 0...@-405-72-1
T:  2 ISRC: 0...@-405-72-1
T:  3 ISRC: 0...@-405-72-1
T:  4 ISRC: 0...@-405-72-1
T:  5 ISRC: 0...@-405-72-1
T:  6 ISRC: 0...@-405-72-1
T:  7 ISRC: 0...@-405-72-1
T:  8 ISRC: 0...@-405-72-1
T:  9 ISRC: 0...@-405-72-1
T: 10 ISRC: 0...@-405-72-1
T: 11 ISRC: 0...@-405-72-1

index scan: 11...
samplefile size will be 620768108 bytes.
recording 3519.0933 seconds stereo with 16 bits @ 44100.0 Hz ->'audio'...
percent_done:
100%  track  1 'Endless Calling' recorded successfully
100%  track  2 'I Get Lost' recorded successfully
100%  track  3 'Lornadoone' recorded successfully
100%  track  4 'She Walked Out the Door' recorded successfully
100%  track  5 'Assurance' recorded successfully
100%  track  6 'Take it Higher' recorded successfully
100%  track  7 'Double Bass' recorded successfully
100%  track  8 'Just a Girl' recorded successfully
100%  track  9 'Meteor' recorded successfully
100%  track 10 'Razor' recorded successfully
100%  track 11 'Where I Belong' recorded successfully

m...@gamer ~/AUDIO
$ /opt/schily/bin/cdrecord.exe dev=0,0,0 -v -dao -useinfo -text *.wav
Cdrecord-ProDVD-ProBD-Clone 2.01.01a60 (i686-pc-cygwin) Copyright (C) 1995-2009
Jörg Schilling
TOC Type: 0 = CD-DA
scsidev: '0,0,0'
scsibus: 0 target: 0 lun: 0
Using libscg version 'schily-0.9'.
SCSI buffer size: 64512
atapi: -1
Device type: Removable CD-ROM
Version: 0
Response Format: 2
Capabilities   :
Vendor_info: 'LITE-ON '
Identifikation : 'DVDRW LDW-411S  '
Revision   : 'FS0B'
Device seems to be: Generic mmc2 DVD-ROM.
Current: CD-R
Profile: DVD+R
Profile: DVD+RW
Profile: DVD-RW sequential recording
Profile: DVD-RW restricted overwrite
Profile: DVD-R sequential recording
Profile: DVD-ROM
Profile: CD-RW
Profile: CD-R (current)
Profile: CD-ROM
Using generic SCSI-3/mmc   CD-R/CD-RW driver (mmc_cdr).
Driver flags   : MMC-3 SWABAUDIO BURNFREE FORCESPEED
Supported modes: TAO PACKET SAO SAO/R96P SAO/R96R RAW/R16 RAW/R96P RAW/R96R
Drive buf size : 1895168 = 1850 KB
/opt/schily/bin/cdrecord: Warning: The DMA speed test has been skipped.
FIFO size  : 4194304 = 4096 KB
/opt/schily/bin/cdrecord: ISRC '0...@-405-72-1' contains illegal character 
'0'.

/opt/schily/bin/cdrecord: ISRC '0...@-405-72-1' contains illegal character 
'@'.


m...@gamer ~/AUDIO

This is under Cygwin.

Also, these examples seem to ignore using -paranoia which you have
stated in this thread would be preferred.

Again, what's the problem here. I seem to be RTFM but it's not happy.

- Mark



Re: [gentoo-user] KDE menu missing

2009-06-08 Thread Volker Armin Hemmann
On Montag 08 Juni 2009, Mick wrote:
> Hi All,
>
> Can't recall if anyone else posted on this.  Just updated my KDE to
> the latest 3.5.10 and discovered that there is no KDE menu!  This
> means no KDE applications menu, as well as no menu on the left hand
> pane when I run kcontrol from a terminal:
>
> kcontrol: WARNING: No K menu group with X-KDE-BaseGroup=settings found
> ! Defaulting to Settings/
>
> Also, I used to have this in my Fluxbox menu to launch Konqueror:
>
>   [exec] (Konqueror) {kfmclient openProfile webbrowsing}
>
> However, this won't launch konqueror anymore.
>
> elog said something about running kbuildsycoca as the user I want to
> launch konqueror from, which I did,  but is there anything else I
> should do to fix any of the above?

are you missing mimelib

have you updated from monolithic to split - and missed a couple of packages?



Re: [gentoo-user] KDE menu missing

2009-06-08 Thread Mick
2009/6/8 Cristian Gary :
>  Run in konsole  kde 4.2  , "  bash$  kbuildsycoca4 --noincremental"   with
> this you force the rebuild of kde menu.

Thank you both.  I am still running kde-3.5.10 so I ran:

$ kbuildsycoca --noincremental
Warning: kbuildsycoca is unable to register with DCOP.
kbuildsycoca running...
kbuildsycoca: ERROR: applications.menu not found in
(/home/michael/.config/menus/)
kio (KService*): WARNING: The desktop entry file
.hidden/dirfilterplugin.desktop has Type=Service but is located under
"apps" instead of "services"
kio (KService*): WARNING: Invalid Service : .hidden/dirfilterplugin.desktop
kbuildsycoca: WARNING: 'ark_part.desktop' specifies undefined
mimetype/servicetype 'application/x-tbz2'
kbuildsycoca: WARNING: 'karm_part.desktop' specifies undefined
mimetype/servicetype 'text/english'
kbuildsycoca: WARNING: 'karm_part.desktop' specifies undefined
mimetype/servicetype 'text/x-c'
kbuildsycoca: WARNING: 'karm_part.desktop' specifies undefined
mimetype/servicetype 'text/x-c++'
kbuildsycoca: WARNING: 'klinkstatus_part.desktop' specifies undefined
mimetype/servicetype 'text/english'
kbuildsycoca: WARNING: 'klinkstatus_part.desktop' specifies undefined
mimetype/servicetype 'text/x-c'
kbuildsycoca: WARNING: 'klinkstatus_part.desktop' specifies undefined
mimetype/servicetype 'text/x-c++'
kbuildsycoca: WARNING: 'kcertpart.desktop' specifies undefined
mimetype/servicetype 'application/binary-certificate'
kbuildsycoca: WARNING: 'kxsldbg_part.desktop' specifies undefined
mimetype/servicetype 'text/english'
kbuildsycoca: WARNING: 'kxsldbg_part.desktop' specifies undefined
mimetype/servicetype 'text/x-c'
kbuildsycoca: WARNING: 'kxsldbg_part.desktop' specifies undefined
mimetype/servicetype 'text/x-c++'
kbuildsycoca: WARNING: 'katepart.desktop' specifies undefined
mimetype/servicetype 'text/x-fortran'
kbuildsycoca: WARNING: 'knotify.desktop' specifies undefined
mimetype/servicetype 'KNotify'
kbuildsycoca: WARNING: 'ksvgplugin.desktop' specifies undefined
mimetype/servicetype 'image/svg'


True enough the error about applications.menu is because this is what
I have under /home/michael/.config/menus:

total 0
drwx-- 3 michael users  88 May 13  2008 .
drwx-- 8 michael users 224 May 30 16:55 ..
drwx-- 2 michael users  48 May 13  2008 applications-merged

$ ls -la /home/michael/.config/menus/applications-merged
total 0
drwx-- 2 michael users 48 May 13  2008 .
drwx-- 3 michael users 88 May 13  2008 ..

What should it be in there?
-- 
Regards,
Mick



Re: [gentoo-user] KDE menu missing

2009-06-08 Thread Philip Webb
090608 Cristian Gary wrote:
> 2009/6/8 Philip Webb 
>> 090608 Mick wrote:
>>> The problem remains with most menus and submenus in KDE applications:
>>> e.g. right-click on a file in Konqueror, then 'Open With'
>>> and there are no applications in the popup to select from .
>> Yes, that reminds me that there was also a problem with Krusader,
>> which no longer knows what to open files with,
>> even after it is told to 'remember' the desired app.
>> I also updated to  kdebase-kioslaves-3.5.10-r1 ,
>> which mb the cause of both problems.
>>> Any KDE gurus out there ?
>> They're all too busy looking at their reflections in Plasma (smile).
> Run in konsole  kde 4.2  , "  bash$  kbuildsycoca4 --noincremental"
> with this you force the rebuild of kde menu.

We're not using KDE 4 ! -- I don't have any of KDE 4 installed !

I've remerged Konqueror & Krusader & the problem with the latter remains.
I also (already) tried 'kbuildsycoca' :

  501: ~> kbuildsycoca --noincremental
  kbuildsycoca running...
  kio (KService*): WARNING: The service/mime type config file
  application/x-staroffice.desktop
  does not contain a ServiceType=...
  or MimeType=... entry
  kbuildsycoca: ERROR: applications.menu not found in 
(/home/purslow/.config/menus/)
  kbuildsycoca: WARNING: 'kcertpart.desktop' specifies undefined 
mimetype/servicetype 'application/binary-certificate'
  kbuildsycoca: WARNING: 'katepart.desktop' specifies undefined 
mimetype/servicetype 'text/x-fortran'
  kbuildsycoca: WARNING: 'knotify.desktop' specifies undefined 
mimetype/servicetype 'KNotify'
  kbuildsycoca: WARNING: 'gvimagepart.desktop' specifies undefined 
mimetype/servicetype 'image/x-krl'

Anyone have further suggestions ?

-- 
,,
SUPPORT ___//___,   Philip Webb
ELECTRIC   /] [] [] [] [] []|   Cities Centre, University of Toronto
TRANSIT`-O--O---'   purslowatchassdotutorontodotca




Re: [gentoo-user] KDE menu missing

2009-06-08 Thread Cristian Gary
 Run in konsole  kde 4.2  , "  bash$  kbuildsycoca4 --noincremental"   with
this you force the rebuild of kde menu.

Saludos.

2009/6/8 Philip Webb 

> 090608 Mick wrote:
> > I noticed 'konqueror' works fine, so I changed the FB menu accordingly.
> > Apwal looks cool, I will give it a spin,
> > though I am conditioned to years of using the FB right-click menu.
>
> I have L-mouse = Apwal & R-mouse = FB menu : in  ~/.fluxbox/init :
>
>  OnDesktop Mouse1 :Exec apwal
>  OnDesktop Mouse2 :HideMenus
>  OnDesktop Mouse3 :RootMenu
>
> > The problem remains with most menus and submenus in KDE applications:
> > e.g. right-click on a file in Konqueror, then 'Open With'
> > and there are no applications in the popup to select from .
>
> Yes, that reminds me that there was also a problem with Krusader,
> which no longer knows what to open files with,
> even after it is told to 'remember' the desired app.
>
> I also updated to  kdebase-kioslaves-3.5.10-r1 ,
> which mb the cause of both problems.
> We should try recompiling Konqueror & Krusader to see if that helps.
>
> > Any KDE gurus out there ?
>
> They're all too busy looking at their reflections in Plasma (smile).
>
> --
> ,,
> SUPPORT ___//___,   Philip Webb
> ELECTRIC   /] [] [] [] [] []|   Cities Centre, University of Toronto
> TRANSIT`-O--O---'   purslowatchassdotutorontodotca
>
>
>


-- 
Cristian Gonzalo Gary Bufadel


Re: [gentoo-user] KDE menu missing

2009-06-08 Thread Philip Webb
090608 Mick wrote:
> I noticed 'konqueror' works fine, so I changed the FB menu accordingly.
> Apwal looks cool, I will give it a spin,
> though I am conditioned to years of using the FB right-click menu.

I have L-mouse = Apwal & R-mouse = FB menu : in  ~/.fluxbox/init :

  OnDesktop Mouse1 :Exec apwal
  OnDesktop Mouse2 :HideMenus
  OnDesktop Mouse3 :RootMenu

> The problem remains with most menus and submenus in KDE applications:
> e.g. right-click on a file in Konqueror, then 'Open With'
> and there are no applications in the popup to select from .

Yes, that reminds me that there was also a problem with Krusader,
which no longer knows what to open files with,
even after it is told to 'remember' the desired app.

I also updated to  kdebase-kioslaves-3.5.10-r1 ,
which mb the cause of both problems.
We should try recompiling Konqueror & Krusader to see if that helps.

> Any KDE gurus out there ?

They're all too busy looking at their reflections in Plasma (smile).

-- 
,,
SUPPORT ___//___,   Philip Webb
ELECTRIC   /] [] [] [] [] []|   Cities Centre, University of Toronto
TRANSIT`-O--O---'   purslowatchassdotutorontodotca




Re: [gentoo-user] Strange world

2009-06-08 Thread Dale
Alan McKinnon wrote:
> On Monday 08 June 2009 13:45:38 KH wrote:
>   
>> econti schrieb:
>> 
>>> Hi all
>>> my to-day "world" is the one attached. I am just a little bit confused.
>>> Can anyone explain to me what's happening? :-(
>>> Thanks
>>> emilio
>>>   
>> Also there is some qt stuff going on:
>>
>>
>> [blocks b ] > is blocking x11-libs/qt-phonon-4.5.1, x11-libs/qt-assistant-4.5.1,
>> x11-libs/qt-opengl-4.5.1, x11-libs/qt-svg-4.5.1-r1, x11-libs/qt-dbus-4.5.1,
>> x11-libs/qt-xmlpatterns-4.5.1, x11-libs/qt-test-4.5.1,
>> x11-libs/qt-gui-4.5.1,
>> x11-libs/qt-qt3support-4.5.1, x11-libs/qt-sql-4.5.1,
>> x11-libs/qt-core-4.5.1, x11-libs/qt-webkit-4.5.1)
>>
>> looks like there have been changes in some way.
>> 
>
> Recent portages should resolve that automagically - my ancient desktop did it 
> successfully over the weekend
>
>   

Mine sorted that out too.  I hated that download tho.  11 hours worth of
it.  Jeez,

Dale

:-)  :-) 



Re: [gentoo-user] Failed to (re)build kaffeine 0.8.6.

2009-06-08 Thread Arttu V.
On 6/7/09, meino.cra...@gmx.de  wrote:
> Arttu V.  [09-06-07 18:01]:
>> On 6/7/09, Arttu V.  wrote:
>> > Could you try copying it over to /usr/kde/3.5/share/services/ and see
>> > if the problem persists?
>> >
>> > image # find . -iname 'xine*.desktop'
>> > ./usr/kde/3.5/share/services/xine_part.desktop
>>
>> Naturally meant if it is *there* and you copy it to the other location. ;)
>>
>> (Typing faster than I'm thinking again :D )
>>
>> --
>> Arttu V.
>
> THAT was helpful! Thanks a lot ... it simply WORKKS!

Great to hear! At least sometimes my blind guessing works. :)

Anyway, you might want to file a bug for it, if it prevents running
kaffeine. Also, there is already one (by some other kind person)
possibly fixing your original problem with kaffeine-0.8.6:

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

But there is also this one:

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

I'm wondering if this latter one is due to similar path problems? It
would seem as if all kaffeine (or kde?) versions could be suffering
from looking for various things like .desktop entries, icons etc from
under similarly wrong paths?

-- 
Arttu V.



Re: [gentoo-user] KDE menu missing

2009-06-08 Thread Mick
2009/6/8 Philip Webb :
> 090608 Mick wrote:
>> Just updated my KDE to the latest 3.5.10 and discovered
>> there is no KDE menu!  This means no KDE applications menu,
>> & no menu on the left hand pane when I run kcontrol from a terminal:
>>   kcontrol: WARNING: No K menu group with X-KDE-BaseGroup=settings found!
>>   Defaulting to Settings/
>> Also, I used to have this in my Fluxbox menu to launch Konqueror:
>>   [exec] (Konqueror) {kfmclient openProfile webbrowsing}
>> However, this won't launch konqueror anymore.
>> elog said something about running kbuildsycoca as the user
>> I want to launch konqueror from, which I did,
>> but is there anything else I should do to fix any of the above?
>
> I gave up on the KDE desktop after investigating KDE 4.2.1 (ugh!)
> & finding that the latest Fluxbox 1.1.1 was a bit better for what I do,
> so I no longer use a KDE menu, but after updating to Kdelibs 3.5.10-r6 ,
> I too encountered the problem with Konqueror above,
> for which the fix is to rewrite with '{konqueror}'.
>
> BTW I recommend Apwal for a quick & pretty desktop menu
> besides the more orthodox list you can put into the Fluxbox menu.

Thanks Philip, I also noticed that 'konqueror' works fine, so I
changed the FB menu accordingly.  Apwal looks cool, I will give it a
spin (although I am conditioned to years of using the FB right-click
menu).

The problem remains though with most menus and submenus in KDE
applications;  e.g. right-click on a file in Konqueror, then 'Open
With' and there are no applications in the popup to select from ... I
have to type the application manually.  This is a rather significant
usability hurdle for me.

Any KDE gurus out there?
-- 
Regards,
Mick



Re: [gentoo-user] KDE menu missing

2009-06-08 Thread Philip Webb
090608 Mick wrote:
> Just updated my KDE to the latest 3.5.10 and discovered
> there is no KDE menu!  This means no KDE applications menu,
> & no menu on the left hand pane when I run kcontrol from a terminal:
>   kcontrol: WARNING: No K menu group with X-KDE-BaseGroup=settings found!
>   Defaulting to Settings/
> Also, I used to have this in my Fluxbox menu to launch Konqueror:
>   [exec] (Konqueror) {kfmclient openProfile webbrowsing}
> However, this won't launch konqueror anymore.
> elog said something about running kbuildsycoca as the user
> I want to launch konqueror from, which I did,
> but is there anything else I should do to fix any of the above?

I gave up on the KDE desktop after investigating KDE 4.2.1 (ugh!)
& finding that the latest Fluxbox 1.1.1 was a bit better for what I do,
so I no longer use a KDE menu, but after updating to Kdelibs 3.5.10-r6 ,
I too encountered the problem with Konqueror above,
for which the fix is to rewrite with '{konqueror}'.

BTW I recommend Apwal for a quick & pretty desktop menu
besides the more orthodox list you can put into the Fluxbox menu.

-- 
,,
SUPPORT ___//___,   Philip Webb
ELECTRIC   /] [] [] [] [] []|   Cities Centre, University of Toronto
TRANSIT`-O--O---'   purslowatchassdotutorontodotca




Re: [gentoo-user] on AMD64 firefox + java (32bit) - howto

2009-06-08 Thread Alan McKinnon
On Monday 08 June 2009 16:20:42 Helmut Jarausch wrote:
> Hi,
>
> I've firefox-bin-3.5beta4 installed on my AMD64 Gentoo system.
> Typing about:buildconfig as URL it's saying it's a 32bits application.
> For java(-applets) to run, I need a 32 bit java.
> GenToo installs 64 bit java jre/jdk on my system by default.
> How can I install a 32bit version in addition (just for firefox and
> might be opera)
>
> Many thanks for a hint,
> Helmut.

emerge emul-linux-x86-java

-- 
alan dot mckinnon at gmail dot com



[gentoo-user] on AMD64 firefox + java (32bit) - howto

2009-06-08 Thread Helmut Jarausch
Hi,

I've firefox-bin-3.5beta4 installed on my AMD64 Gentoo system.
Typing about:buildconfig as URL it's saying it's a 32bits application.
For java(-applets) to run, I need a 32 bit java.
GenToo installs 64 bit java jre/jdk on my system by default.
How can I install a 32bit version in addition (just for firefox and
might be opera)

Many thanks for a hint,
Helmut.

-- 
Helmut Jarausch

Lehrstuhl fuer Numerische Mathematik
RWTH - Aachen University
D 52056 Aachen, Germany



Re: [gentoo-user] Verification of audio CD copy?

2009-06-08 Thread Joerg Schilling
Mark Knecht  wrote:

> Always up for other interpretations as to what might be going on, and
> also VERY interested in learning a good set of commands with cdrtools
> to copy and write CD's without having to use k3b.

The related commands are in the EXAMPLES section for cdda2wav and/or cdrecord.

Jörg

-- 
 EMail:jo...@schily.isdn.cs.tu-berlin.de (home) Jörg Schilling D-13353 Berlin
   j...@cs.tu-berlin.de(uni)  
   joerg.schill...@fokus.fraunhofer.de (work) Blog: 
http://schily.blogspot.com/
 URL:  http://cdrecord.berlios.de/private/ ftp://ftp.berlios.de/pub/schily



[gentoo-user] KDE menu missing

2009-06-08 Thread Mick
Hi All,

Can't recall if anyone else posted on this.  Just updated my KDE to
the latest 3.5.10 and discovered that there is no KDE menu!  This
means no KDE applications menu, as well as no menu on the left hand
pane when I run kcontrol from a terminal:

kcontrol: WARNING: No K menu group with X-KDE-BaseGroup=settings found
! Defaulting to Settings/

Also, I used to have this in my Fluxbox menu to launch Konqueror:

  [exec] (Konqueror) {kfmclient openProfile webbrowsing}

However, this won't launch konqueror anymore.

elog said something about running kbuildsycoca as the user I want to
launch konqueror from, which I did,  but is there anything else I
should do to fix any of the above?
-- 
Regards,
Mick



Re: [gentoo-user] Re: can fix preserved-rebuild ...

2009-06-08 Thread Neil Bothwick
On Mon, 08 Jun 2009 20:25:57 +0800, William Kenworthy wrote:

> On this system, I just left portage at what seemed to be a working
> version to avoid the problems caused by the downgrade.

I think the key word here is "seemed" :(


-- 
Neil Bothwick

There's no place like ~


signature.asc
Description: PGP signature


Re: [gentoo-user] Re: can fix preserved-rebuild ...

2009-06-08 Thread William Kenworthy
2.1.6.13 was the latest when ... - thats as kindly as I can think of the
person and his reasons for putting me through a lot of work as I didnt
notice the downgrade on one system in time.  If it was for security or
other reasons I could understand it, and maybe not agree with it ... but
just because he wanted some extra testing he decided to "play" with
users systems!  I agree with you that portage is usually bug free and
trustworthy ... but the trust aspect has been sorely tried.

On this system, I just left portage at what seemed to be a working
version to avoid the problems caused by the downgrade.  This was a few
weeks ago now, so they have probably been sorted, but I think it might
be better to upgrade and find another stable, working version.

BillK


On Sun, 2009-06-07 at 17:11 +0100, Neil Bothwick wrote:
> On Sun, 07 Jun 2009 09:28:21 +0800, William Kenworthy wrote:
> 
> > *  sys-apps/portage
> >   Latest version available: 2.1.6.13
> >   Latest version installed: 2.2_rc15
> 
> If you're going to run release candidate versions, at least run the
> latest release candidate. rc15 hasn't been in portage for a while, we're
> currently on rc33. Add ~sys-apps/portage-2.2 package.{unmask,keywords} to
> ensure you have a valid version.
> 
> 
-- 
William Kenworthy 
Home in Perth!




Re: [gentoo-user] Re: can fix preserved-rebuild ...

2009-06-08 Thread William Kenworthy
hmmm ... sounds a bit cranky! - had a tooth out today :(

BilLK

On Mon, 2009-06-08 at 20:25 +0800, William Kenworthy wrote:
> 2.1.6.13 was the latest when ... - thats as kindly as I can think of the
> person and his reasons for putting me through a lot of work as I didnt
> notice the downgrade on one system in time.  If it was for security or
> other reasons I could understand it, and maybe not agree with it ... but
> just because he wanted some extra testing he decided to "play" with
> users systems!  I agree with you that portage is usually bug free and
> trustworthy ... but the trust aspect has been sorely tried.
> 
> On this system, I just left portage at what seemed to be a working
> version to avoid the problems caused by the downgrade.  This was a few
> weeks ago now, so they have probably been sorted, but I think it might
> be better to upgrade and find another stable, working version.
> 
> BillK
> 
> 
> On Sun, 2009-06-07 at 17:11 +0100, Neil Bothwick wrote:
> > On Sun, 07 Jun 2009 09:28:21 +0800, William Kenworthy wrote:
> > 
> > > *  sys-apps/portage
> > >   Latest version available: 2.1.6.13
> > >   Latest version installed: 2.2_rc15
> > 
> > If you're going to run release candidate versions, at least run the
> > latest release candidate. rc15 hasn't been in portage for a while, we're
> > currently on rc33. Add ~sys-apps/portage-2.2 package.{unmask,keywords} to
> > ensure you have a valid version.
> > 
> > 
-- 
William Kenworthy 
Home in Perth!




Re: [gentoo-user] Strange world

2009-06-08 Thread Alan McKinnon
On Monday 08 June 2009 13:45:38 KH wrote:
> econti schrieb:
> > Hi all
> > my to-day "world" is the one attached. I am just a little bit confused.
> > Can anyone explain to me what's happening? :-(
> > Thanks
> > emilio
>
> Also there is some qt stuff going on:
>
>
> [blocks b ]  is blocking x11-libs/qt-phonon-4.5.1, x11-libs/qt-assistant-4.5.1,
> x11-libs/qt-opengl-4.5.1, x11-libs/qt-svg-4.5.1-r1, x11-libs/qt-dbus-4.5.1,
> x11-libs/qt-xmlpatterns-4.5.1, x11-libs/qt-test-4.5.1,
> x11-libs/qt-gui-4.5.1,
> x11-libs/qt-qt3support-4.5.1, x11-libs/qt-sql-4.5.1,
> x11-libs/qt-core-4.5.1, x11-libs/qt-webkit-4.5.1)
>
> looks like there have been changes in some way.

Recent portages should resolve that automagically - my ancient desktop did it 
successfully over the weekend

-- 
alan dot mckinnon at gmail dot com



Re: [gentoo-user] Strange world

2009-06-08 Thread Volker Armin Hemmann
On Montag 08 Juni 2009, KH wrote:
> econti schrieb:
> > Hi all
> > my to-day "world" is the one attached. I am just a little bit confused.
> > Can anyone explain to me what's happening? :-(
> > Thanks
> > emilio
>
> Also there is some qt stuff going on:
>
>
> [blocks b ]  is blocking x11-libs/qt-phonon-4.5.1, x11-libs/qt-assistant-4.5.1,
> x11-libs/qt-opengl-4.5.1, x11-libs/qt-svg-4.5.1-r1, x11-libs/qt-dbus-4.5.1,
> x11-libs/qt-xmlpatterns-4.5.1, x11-libs/qt-test-4.5.1,
> x11-libs/qt-gui-4.5.1,
> x11-libs/qt-qt3support-4.5.1, x11-libs/qt-sql-4.5.1,
> x11-libs/qt-core-4.5.1, x11-libs/qt-webkit-4.5.1)
>
> looks like there have been changes in some way.
>
> kh

yes, qt-4.5.1 does not like earlier qts. And as a kde user you should not use 
qt-phonon.

Please read this for more information:
http://ben.liveforge.org/2009/06/03/preventing-the-qt-phonon-vs-phonon-block



Re: [gentoo-user] Strange world

2009-06-08 Thread KH
econti schrieb:
> Hi all
> my to-day "world" is the one attached. I am just a little bit confused.
> Can anyone explain to me what's happening? :-(
> Thanks
> emilio
> 

Also there is some qt stuff going on:


[blocks b ] 

Re: [gentoo-user] Strange world

2009-06-08 Thread Alan McKinnon
On Monday 08 June 2009 11:05:28 econti wrote:
> Hi all
> my to-day "world" is the one attached. I am just a little bit confused.
> Can anyone explain to me what's happening? :-(
> Thanks
> emilio

You appear to have monolithic kde packages installed. These have been removed 
for kde-3.5.10.

So kde apps are trying to upgrade themselves to 3.5.10, which conflicts with 
the monolithic 3.5.9 packages.

Options:

1. Mask all of 3.5.10 and every package
2. Remove monolithic packages and install -meta packages
3. Dump kde-3

-- 
alan dot mckinnon at gmail dot com



[gentoo-user] Strange world

2009-06-08 Thread econti

Hi all
my to-day "world" is the one attached. I am just a little bit confused.
Can anyone explain to me what's happening? :-(
Thanks
emilio

[ebuild U ] media-gfx/imagemagick-6.5.2.9 [6.5.1.0] USE="X bzip2 corefonts
openmp perl truetype zlib -djvu -doc -fontconfig -fpx -graphviz -gs -hdri -jbig
-jpeg -jpeg2k -lcms -nocxx -openexr -png -q32 -q8 -raw -svg -tiff -wmf -xml"
8,613 kB [0]
[ebuild U ] media-libs/libdvdcss-1.2.10 [1.2.9-r1] USE="-doc" 302 kB [?=>0]
[ebuild U ] kde-base/arts-3.5.10 [3.5.9] USE="alsa artswrappersuid mp3
vorbis -debug -esd -jack -nas (-kdeenablefinal%) (-xinerama%)" 951 kB [0]
[ebuild U ] kde-base/kdelibs-3.5.10-r6 [3.5.9-r4] USE="acl alsa arts cups
-avahi -bindist -branding -debug -doc -fam -jpeg2k -kdehiddenvisibility
-kerberos -legacyssl -lua -openexr -spell -tiff -utempter (-kdeenablefinal%)
(-xinerama%)" 15,256 kB [0]
[ebuild U ] kde-base/kde-i18n-3.5.10 [3.5.9] USE="-debug (-arts%*)
(-kdeenablefinal%) (-xinerama%)" LINGUAS="it -af -ar -az -bg -bn -br -bs -ca -cs
-csb -cy -da -de -el -en_GB -eo -es -et -eu -fa -fi -fr -fy -ga -gl -he -hi -hr
-hu -is -ja -kk -km -ko -lt -lv -mk -mn -ms -nb -nds -nl -nn -pa -pl -pt -pt_BR
-ro -ru -rw -se -sk -sl -sr -...@latn -ss -sv -ta -te -tg -th -tr -uk -uz
-...@cyrillic% -vi -wa -zh_CN -zh_TW" 16,244 kB [0]
[ebuild  NS   ] app-cdr/k3b-1.0.5-r5 [1.0.5-r3] USE="alsa arts hal mp3 vorbis
-css -debug -dvd -dvdr -emovix -encode -ffmpeg -flac -musepack -musicbrainz
-sndfile -vcd -xinerama" LINGUAS="it -af -ar -bg -br -bs -ca -cs -cy -da -de -el
-en_GB -es -et -eu -fa -fi -fr -ga -gl -he -hi -hu -is -ja -ka -lt -mk -ms -nb
-nds -nl -nn -pa -pl -pt -pt_BR -ru -rw -se -sk -sr -...@latn -sv -ta -tr -uk 
-uz
-zh_CN -zh_TW" 0 kB [0]
[uninstall] app-cdr/k3b-1.0.5-r3  USE="alsa arts hal mp3 vorbis -css -debug
-dvd -dvdr -emovix -encode -ffmpeg -flac -musepack -musicbrainz -sndfile -vcd
-xinerama" LINGUAS="it -af -ar -bg -br -bs -ca -cs -cy -da -de -el -en_GB -es
-et -eu -fa -fi -fr -ga -gl -he -hi -hu -is -ja -ka -lt -mk -ms -nb -nds -nl -nn
-pa -pl -pt -pt_BR -ru -rw -se -sk -sr -...@latn -sv -ta -tr -uk -uz -zh_CN
-zh_TW"  [0]
[blocks b ] x11-libs/qt-assistant-4.4.2-r
(">x11-libs/qt-assistant-4.4.2-r" is blocking x11-libs/qt-qt3support-4.4.2,
x11-libs/qt-webkit-4.4.2-r1, x11-libs/qt-dbus-4.4.2, x11-libs/qt-gui-4.4.2-r3,
x11-libs/qt-sql-4.4.2-r1, x11-libs/qt-script-4.4.2,
x11-libs/qt-xmlpatterns-4.4.2, x11-libs/qt-svg-4.4.2, x11-libs/qt-test-4.4.2,
x11-libs/qt-opengl-4.4.2, x11-libs/qt-core-4.4.2-r2)
[ebuild U ] x11-libs/qt-assistant-4.5.1 [4.4.2-r1] USE="-custom-cxxflags
-debug -pch (-webkit%*)" 0 kB [0]
[blocks b ] >x11-libs/qt-gui-4.4.2-r (">x11-libs/qt-gui-4.4.2-r" is
blocking x11-libs/qt-qt3support-4.4.2, x11-libs/qt-webkit-4.4.2-r1,
x11-libs/qt-dbus-4.4.2, x11-libs/qt-sql-4.4.2-r1, x11-libs/qt-script-4.4.2,
x11-libs/qt-xmlpatterns-4.4.2, x11-libs/qt-assistant-4.4.2-r1,
x11-libs/qt-svg-4.4.2, x11-libs/qt-test-4.4.2, x11-libs/qt-opengl-4.4.2,
x11-libs/qt-core-4.4.2-r2)
[blocks b ] >x11-libs/qt-sql-4.4.2-r (">x11-libs/qt-sql-4.4.2-r" is
blocking x11-libs/qt-qt3support-4.4.2, x11-libs/qt-webkit-4.4.2-r1,
x11-libs/qt-dbus-4.4.2, x11-libs/qt-gui-4.4.2-r3, x11-libs/qt-script-4.4.2,
x11-libs/qt-xmlpatterns-4.4.2, x11-libs/qt-assistant-4.4.2-r1,
x11-libs/qt-svg-4.4.2, x11-libs/qt-test-4.4.2, x11-libs/qt-opengl-4.4.2,
x11-libs/qt-core-4.4.2-r2)
[blocks b ] >x11-libs/qt-webkit-4.4.2-r
(">x11-libs/qt-webkit-4.4.2-r" is blocking x11-libs/qt-qt3support-4.4.2,
x11-libs/qt-script-4.4.2, x11-libs/qt-dbus-4.4.2, x11-libs/qt-gui-4.4.2-r3,
x11-libs/qt-sql-4.4.2-r1, x11-libs/qt-xmlpatterns-4.4.2,
x11-libs/qt-assistant-4.4.2-r1, x11-libs/qt-svg-4.4.2, x11-libs/qt-test-4.4.2,
x11-libs/qt-opengl-4.4.2, x11-libs/qt-core-4.4.2-r2)
[blocks b ] >x11-libs/qt-core-4.4.2-r (">x11-libs/qt-core-4.4.2-r"
is blocking x11-libs/qt-qt3support-4.4.2, x11-libs/qt-webkit-4.4.2-r1,
x11-libs/qt-dbus-4.4.2, x11-libs/qt-gui-4.4.2-r3, x11-libs/qt-sql-4.4.2-r1,
x11-libs/qt-script-4.4.2, x11-libs/qt-xmlpatterns-4.4.2,
x11-libs/qt-assistant-4.4.2-r1, x11-libs/qt-svg-4.4.2, x11-libs/qt-test-4.4.2,
x11-libs/qt-opengl-4.4.2)
[blocks b ] >x11-libs/qt-phonon-4.4.2-r
(">x11-libs/qt-phonon-4.4.2-r" is blocking x11-libs/qt-qt3support-4.4.2,
x11-libs/qt-webkit-4.4.2-r1, x11-libs/qt-dbus-4.4.2, x11-libs/qt-gui-4.4.2-r3,
x11-libs/qt-sql-4.4.2-r1, x11-libs/qt-script-4.4.2,
x11-libs/qt-xmlpatterns-4.4.2, x11-libs/qt-assistant-4.4.2-r1,
x11-libs/qt-svg-4.4.2, x11-libs/qt-test-4.4.2, x11-libs/qt-opengl-4.4.2,
x11-libs/qt-core-4.4.2-r2)
[blocks b ] x11-libs/qt-qt3support-4.4.2-r
(">x11-libs/qt-qt3support-4.4.2-r" is blocking x11-libs/qt-webkit-4.4.2-r1,
x11-libs/qt-dbus-4.4.2, x11-libs/qt-gui-4.4.2-r3, x11-libs/qt-sql-4.4.2-r1,
x11-libs/qt-script-4.4.2, x11-libs/qt-xmlpatterns-4.4.2,
x11-libs/qt-assistant-4.4.2-r1, x11-libs/qt-svg-4.4.2, x11-libs/qt-test-4.4.2,
x11-libs/qt-opengl-4.4.2, x11-libs/qt-core

Re: [gentoo-user] Portage Patch failed to apply - System will no longer upgrade

2009-06-08 Thread Mike Kazantsev
On Mon, 08 Jun 2009 09:50:09 +0200
Rod  wrote:

> For this package and everything else I wish to apply, this is 
> locking my system in time so I can no longer upgrade any software ;o(

You can use "emerge --keep-going" flag for portage-2.2 or
"emerge --resume --skip-first" for earlier versions to update
everything else.
There's also some simple sh-scripts for emulating "--keep-going"
functionality for earlier portage versions. I can't remember any
specific names, but I'm sure google should be able to help here.

If the problem is specific to this exact version of package (gmp
usually builds, but 4.3.1 fails) and the update itself is not critical
to you (like when you don't even know what it'll bring) then you can
just ignore it altogether - there's a good chance 4.3.2 or 4.4.0 or
whatever-next-version-is will compile cleanly.

-- 
Mike Kazantsev // fraggod.net


signature.asc
Description: PGP signature


Re: [gentoo-user] Portage Patch failed to apply - System will no longer upgrade

2009-06-08 Thread Alan McKinnon
On Sunday 07 June 2009 19:02:54 Rod wrote:
> Hi.
>
> This issue is really pissing me off, I have ried almost all the
> fixes, even to the point of booting and copying a Stage3 tarball over
> the running system and doing a Stage3 Install.
>
> No matter what I do, and for almost ALL packages I get ..
> * Portage patch failed to apply (ltmain.sh version 1.5.24)!
>  * Please bug azarah or vapier to add proper patch.
>  *
>  * ERROR: dev-libs/gmp-4.3.1 failed.
>  * Call stack:
>  *   ebuild.sh, line   49:  Called src_unpack
>  * environment, line 2811:  Called elibtoolize
>  * environment, line 1065:  Called die
>  * The specific snippet of code:
>  *   die "Portage patch failed to apply!";
>  *  The die message:
>  *   Portage patch failed to apply!
>
> For this package and everything else I wish to apply, this is
> locking my system in time so I can no longer upgrade any software ;o(

Assuming that this is a problem on your end (no-one else is reporting portage 
problems), let's look at why patch is failing.

If you manually unpack the distfile and try to patch it, what errors do you 
get?


-- 
alan dot mckinnon at gmail dot com



Re: [gentoo-user] generic command monitor

2009-06-08 Thread Liviu Andronic
On 6/8/09, Mike Kazantsev  wrote:
> watch(1) (part of sys-process/procps)
>
Perfect. Thank you
Liviu




-- 
Do you know how to read?
http://www.alienetworks.com/srtest.cfm
Do you know how to write?
http://garbl.home.comcast.net/~garbl/stylemanual/e.htm#e-mail



[gentoo-user] Portage Patch failed to apply - System will no longer upgrade

2009-06-08 Thread Rod

   Hi.

   This issue is really pissing me off, I have ried almost all the 
fixes, even to the point of booting and copying a Stage3 tarball over 
the running system and doing a Stage3 Install.


   No matter what I do, and for almost ALL packages I get ..
* Portage patch failed to apply (ltmain.sh version 1.5.24)!
* Please bug azarah or vapier to add proper patch.
*
* ERROR: dev-libs/gmp-4.3.1 failed.
* Call stack:
*   ebuild.sh, line   49:  Called src_unpack
* environment, line 2811:  Called elibtoolize
* environment, line 1065:  Called die
* The specific snippet of code:
*   die "Portage patch failed to apply!";
*  The die message:
*   Portage patch failed to apply!

   For this package and everything else I wish to apply, this is 
locking my system in time so I can no longer upgrade any software ;o(