Re: [gentoo-user] Use brctl from bridge-utils or bridge from iproute2?

2016-10-15 Thread Erik Mackdanz
Erik Mackdanz <stasib...@gentoo.org> writes:

>> How is this done with the bridge utility from iproute2 package is not very
>> clear to a non-expert. It sure is all completely different than with brctl.
> ip link set master br0 dev eth0

Sorry, that's half the story.  To create the bridge:

ip link add dev br0 type bridge

You'll see the link type and all the bridge settings if you use the
'details' flag:

ip -d link

Erik




Re: [gentoo-user] Use brctl from bridge-utils or bridge from iproute2?

2016-10-15 Thread Erik Mackdanz
Miroslav Rovis <miro.ro...@croatiafidelis.hr> writes:

> How is this done with the bridge utility from iproute2 package is not very
> clear to a non-expert. It sure is all completely different than with brctl.
ip link set master br0 dev eth0

in the output of 'ip link' and 'ip addr' you'll see that eth0 shows
'master br0'

> https://wiki.gentoo.org/wiki/Iproute2#iproute2_for_net-tools_swappers
>
> -- also notice that bridge in not in the swappers there --
I just added 'ip link set master'

I agree it would be good if netifrc and other wiki documents converted
to iproute2 to replace brctl commands.

Erik



Re: [gentoo-user] "X11 forwarding" so to say ... but for audio

2016-07-18 Thread Erik Marsk
Jack is another option:
https://github.com/jackaudio/jackaudio.github.com/wiki/WalkThrough_User_NetJack
https://github.com/jackaudio/jackaudio.github.com/wiki/WalkThrough_User_NetJack2

-- Emanuele Rusconi


[gentoo-user] iproute2, unknown tunnel mode gretap

2015-08-20 Thread Erik Mackdanz
Is gretap deprecated, renamed, or replaced?

  # ip tunnel add foo mode gretap remote 10.54.0.6 local 10.54.0.4 ttl 255
  Unknown tunnel mode gretap

A quick web search turns up many articles and blog posts from recent
years with exactly this command.  However, neither `man ip-tunnel` nor
`ip tunnel help` show gretap as an option.

Other facts:
- iproute2-3.19.0 with USE=berkdb iptables ipv6 -atm -minimal (-selinux)
- gentoo-sources 4.0.5
- every GRE kernel option enabled (except IPV6)

Thanks in advance.
-- 
Erik Mackdanz



[gentoo-user] Re: iproute2, unknown tunnel mode gretap

2015-08-20 Thread Erik Mackdanz
Erik Mackdanz erikm...@gmail.com writes:

   # ip tunnel add foo mode gretap remote 10.54.0.6 local 10.54.0.4 ttl 255
   Unknown tunnel mode gretap

Never mind, ip tunnel is for gre but ip link is for gretap.  I
should paste more and re-use previous commands less :-)

-- 
Erik Mackdanz



Re: [gentoo-user] NSA SELinux kernel support

2015-01-04 Thread Erik Mackdanz
Sid S r03...@gmail.com writes:

 your distribution probably comes
 with policies for everything you want to install, anyway...

...until it doesn't, and then what?

I attempted a full conversion a few months back, and was ready to make
some commitment to getting SELinux to work on my personal laptop.  I got
as far as Permissive mode, with a firehose of access violations in the
auditd log.  I had written a couple of scrappy policies to authorize a
few small one-off violations, with the help of audit2allow, but the
firehose was still gushing.

I use offlineimap for fetching mail, which doesn't have a policy.  Now,
if I ever wanted to switch from Permissive to Enforcing, I was required,
as an absolute SELinux n00b, to write a full policy for a non-trivial
mail application.  This is when I turned around.

I could have half-assed it with audit2allow, but security-wise that's a
cop-out.

Inevitably, there will always be some program I want to use with no
existing policy, and I'll constantly have this problem.

I realized that my personal workstation is a place I like to try lots of
software (don't we all like that about Linux?), and SELinux can be a big
wet blanket on the fun at any time.

I'd like to find a middle ground, and it might be Targeted mode (I was
attempting Strict).  Or, it might be a different system like AppArmor.
-- 
Erik Mackdanz



Re: [gentoo-user] Nvidia and optimus

2014-12-17 Thread Erik Mackdanz
J. Roeleveld jo...@antarean.org writes:

 On Tuesday, December 16, 2014 05:46:30 PM Erik Mackdanz wrote:
 Heiko Baums li...@baums-on-web.de writes:
  I don't know if, but I don't think that, it will work with
  x11-drivers/xf86-video-nouveau.
 
 I used bumblebee for quite a while.  It worked okay, but every upgrade I
 would have to fiddle with it again.
 
 I switched to the Nouveau driver and I'm very glad I did.  Conventional
 wisdom says Nouveau quality is lower than Nvidia, but I found it worked
 better on some things (Second Life).
 
 As someone else pointed out, with Nouveau the GPU remains on all the
 time consuming power.  This is the downside.
 
 If ease-of-use and/or open licensing are more important to you than top
 rendering quality and power consumption, consider using Nouveau.

 I've been using bumblebee for over a year now. (First laptop with Optimus) 
 and 
 not had any issues. It always works as advertised.

 What issues did you experience?

I remember more than once changing bumblebee.conf during an upgrade,
when the service failed to start.  This is over two years ago now, so I
don't remember any more than that.

You could tell me that bumblebee is now stable and rock-solid, but I
still wouldn't switch from Nouveau.  I've had a good experience, and
open source matters to me.

On top of that, this laptop has only a year or so left before I replace
it, and I know now to avoid Optimus entirely in the future.

 --
 Joost


-- 
Erik Mackdanz



Re: [gentoo-user] Nvidia and optimus

2014-12-16 Thread Erik Mackdanz
Heiko Baums li...@baums-on-web.de writes:

 I don't know if, but I don't think that, it will work with
 x11-drivers/xf86-video-nouveau.

I used bumblebee for quite a while.  It worked okay, but every upgrade I
would have to fiddle with it again.

I switched to the Nouveau driver and I'm very glad I did.  Conventional
wisdom says Nouveau quality is lower than Nvidia, but I found it worked
better on some things (Second Life).

As someone else pointed out, with Nouveau the GPU remains on all the
time consuming power.  This is the downside.

If ease-of-use and/or open licensing are more important to you than top
rendering quality and power consumption, consider using Nouveau.

-- 
Erik Mackdanz



Re: [gentoo-user] locating large disk files

2014-07-13 Thread Erik Mackdanz
Instead of '-exec ls' I recommend the -ls or -printf switches.  If you
really require the human-formatted size, you can also just quote {} properly.

Joseph syscon...@gmail.com writes:

 I'm trying to clean up my home directory by locating large disk files. I used:
 find / -type f -size +2k -exec ls -lh {} \; | awk '{ print $8 :  $5 }'

 but I'm getting strange output:
 13:57: 194M
 2011: 57M
 17:05: 31M
 2011: 27M
 06:02: 41M
 11:31: 21M
 11:39: 28M
 22:02: 62M
 2012: 26M
 12:53: 104M
 2012: 26M
 16:33: 127M
 21:28: 104M
 20:21: 61M
 06:20: 96M
 2011: 21M
 08:07: 26M
 2011: 37M
 2011: 28M
 19:34: 93M
 2013: 42M
 20:54: 33M
 2013: 40M
 06:04: 26M
 19:42: 190M
 10:00: 47M
 13:43: 1.3G
 10:38: 41M
 14:31: 41M
 16:24: 711M
 2012: 27M
 08:21: 251M
 2011: 44M
 13:53: 651M
 07:40: 46M
 13:23: 49M
 13:41: 355M
 10:41: 20M
 2013: 32M
 ...

 -- 
 Joseph


-- 
Erik Mackdanz



Re: [gentoo-user] flickering thunderbird and firefox

2014-02-20 Thread Per-Erik Westerberg
ons 2014-02-19 klockan 21:14 +0100 skrev Stefan G. Weichinger:
 Am 19.02.2014 20:02, schrieb Alan McKinnon:
 
  Yes, it can. But not in the obvious way.
  
  Video cards and GPUs are complex devices implementing numerous
  features. It is possible that your GPU/video card hardware is broken
  wrt one or a few of these features and Mozilla apps are the only ones
  you use that make use of these features.
  
  It's a bit of a perfect storm situation and frankly, software
  drivers are more likely to provoke it than broken hardware. I would
  keep the possibility in the back of my head to be checked way down
  the line of possibilities though.
  
  Meanwhile, if your hardware vendor provides a hardware diagnostics
  tool you could run it for fun and see what it says. Those tests are
  fairly rapid so you don't lose much by giving it a spin.
  
  
  
  I could boot from a live cd to cross check ... will try that.
  
  or you could do that ^^^ instead :-)
 
 I might do that, thanks. An ubuntu-live-cd showed no problems. Although
 for sure it was a different set of software ... other kernel,
 nvidia-drivers, gnome 
 
 We'll see ...
 

I have seen this flickering in gnome-terminal, in nxclient and also in
the window title of chromium. I am using gentoo-sources-3.13.3,
nvidia-drivers-334.16-r7 and chromium-33.0.1750.70. Both in
gnome-terminal and in nxclient it looked like some kind of
blink-attribute was used. ;)

  BR / P-E




Re: [gentoo-user] Providing virtual dependency net

2012-11-27 Thread Erik Mackdanz
I wish I could offer something helpful here, but the issue of network
dependencies has been a thorn in my side for a long time (e.g. if I have
PostgreSQL listening on localhost, why is it stopped with eth0?)  Funtoo
fixed the design by letting services depend on specific interfaces, but as
far as I know Gentoo (and the other major distros) will leave it broken for
the forseeable future.


On Tue, Nov 27, 2012 at 2:02 AM, Adam Carter adamcart...@gmail.com wrote:

 I have added rc_net_wlan0_provide=net to /etc/rc.conf, but scripts like
 sshd still wont start, and when executed report WARNING: sshd is scheduled
 to start when net.eth0 has started.

 Why does sshd appear to be specifically requiring net.eth0? (or is the
 message misleading?)

 How do i get net.wlan0 to also provide net?





Re: [gentoo-user] Nouveau driver turns off video when I start X

2012-04-19 Thread Per-Erik Westerberg
tor 2012-04-19 klockan 08:23 -0400 skrev Walter Dnes:
 On Wed, Apr 18, 2012 at 10:47:01PM -0400, Alecks Gates wrote
  Wait a second, was just scimming this and saw you mention blue faces.  I
  have a 210 using the latest binary drivers from nvidia and it seems like
  all red color shows up as blue in the flash player (and only flash
  player).  It had never happened any time previously, and this was a new
  install.
  
  Frankly I have no idea how to fix it, but I mostly ignored it until now
  because of html5 videos (where the problem doesn't occur).
 
   Once I realized that this was a general problem, not a Walter Dnes
 problem, I did some Google research.  A few of the hits were
 
 http://www.nvnews.net/vbulletin/showthread.php?t=176210
 
   Patching source code... bleagh.
 
 
 https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/974620
 
 https://bugs.launchpad.net/ubuntu/+source/adobe-flashplugin/+bug/967091/comments/9
 
   The last one almost worked for me.  Adding 2 lines to /etc/adobe/mms.cfg
 was suggested, namely...
 
 EnableLinuxHWVideoDecode=1
 OverrideGPUValidation=true
 
   This works, and colours are correct, but the Flash plugin crashes a
 lot.  The best setup for me is to only add the line...
 
 EnableLinuxHWVideoDecode=1
 
   Youtube 1080P HD videos play fullscreen in proper colour.  The best
 setting may vary from machine to machine.
 

Hi,

Downgrading to 11.1.102.63 of www-plugins/adobe-flash took care of the
problem for me.

  BR / Per-Erik




[gentoo-user] kernel 3.2.x has problems with NetGear WNDA3100 wireless USB dongle

2012-03-06 Thread Per-Erik Westerberg
Hi,

I have come across a strange problem ...

I use a NetGear WNDA3100 USB wireless dongle which is using the kernel
module carl9170 as driver.

It is working fine for a little while, some minutes, then it stops
receiving/transmitting anything at all. If I unplug and insert it again
it works fine a couple of minutes before it stops receiving/transmitting
anything again. The LED is stuck on pink but not flashing blue/pink as
it usually do when receiving/transmitting data.

This is when using a 3.2.x version of gentoo-sources, if I use 3.1.10 of
gentoo-sources it is working fine for hours but sometimes shuts down
totally and the LED is off and only comes alive again if I unplug and
insert it.

Any ideas?

  BR / P-E




Re: [gentoo-user] wireless newbee needs help

2012-02-09 Thread Per-Erik Westerberg
tor 2012-02-09 klockan 18:00 +0100 skrev Helmut Jarausch:
 Hi,
 
 it's the first time I have to set up a wireless network on a notebook.
 
 How can I find out whether the connection is encrypted or not.
 
 wpa_gui tells me
   Authentication  WPA2-PSK
   Encryption  TKIP
 
 but
 
 iwconfig wlan0
 says
 
 Encryption key:off
 
 and on the server (hot spot) I have configure WPA2 personal, encryption 
 TKIP and an (ascii) password.
 
 Many thanks for your help,
 Helmut.
 

Hi,

I have installed wpa_supplicant and changed the country entry
in /etc/wpa_supplicant/wpa_supplicant.conf and also added a few lines at
the end of the file:

network={
ssid=my_essid
psk=my_ascii_password
priority=5
}

Then I created a symbolic link to /etc/init.d/net.lo called
/etc/init.d/net.wlan0 and that was it I think ... also set
rc_hotplug to net.wlan0 !net.* in /etc/rc.conf.

That should be all to get wireless networking going if the kernel module
for your network card is loaded and you have the firmware for it in
/lib/firmware.

Using kernel 3.1.5 at the moment and the carl9170 driver.

  BR / Per-Erik




Re: [gentoo-user] Re: /usr/portage index?

2011-08-29 Thread Per-Erik Westerberg
sön 2011-08-28 klockan 19:03 -0500 skrev Dale:
 James wrote:
  Bill Longmanbill.longmanat  gmail.com  writes:
 
 
 
  eix -c -C sci-chemistry
   
 
  Ok, thanks everyone! I was very tired Friday
  and I appreciate
  the suggestions of sites and syntax
 
  Lots of chemistry based software for my son to play with
 
  It's just a darn shame kids today do not get the
  cool chemistry sets of yore.
 
 
  James
 
 
 
 Nowadays, if you mix vinegar and baking soda, you are accused of making 
 a bomb.  They called it fun 20 or 30 years ago.  lol
 
 I still want to know what Spencer puts in the camera film thingys and 
 makes it pop off.  It was liquid and what looked like a pill or 
 something.  Erin said he was getting some distance on them tho.  o_O
 

Any headache or fever reducing medicine that dissolves in water would do
I guess. A friend of mine had a cold and brought some anti-fever, non
recipe, medicine in a plastic tube which was flat pills that you put in
water to dissolve. We were at a hotel in a hot and humid country,
Dominican Republic, and we woke up in the middle of the night when a
loud pop sounded. The same was repeated the next night. In the
mornings we couldn't understand why the lid of the tube was thrown on
the floor and it was put on again and it took a couple of days for us to
realize what had happened. Some moisture had gotten inside the tube and
the pills where starting to dissolve which raised the pressure in the
tube which then made the lid to pop off. ;)

 Dale
 
 :-)  :-)
 

  / P-E




Re: [gentoo-user] rc runlevel act strangely

2011-06-20 Thread Per-Erik Westerberg
sön 2011-06-19 klockan 20:33 -0500 skrev Dale:
 William Hubbs wrote:
  On Sun, Jun 19, 2011 at 10:36:47PM +0100, Peter Humphrey wrote:
 
  On Sunday 19 June 2011 16:38:35 Dale wrote:
 
   
  I don't know when it got added but it is on mine.  This is in the help
  page:
 
  rcManage /etc/init.d scripts in runlevels
 
  It works something like this:
 
  root@fireball / # eselect rc add xdm default
  Adding xdm to following runlevels
  default   [skipped]
  root@fireball / #
 
  It was skipped because it was already there but that's how it works.
 
  Neat huh?
 
  The official way to add or delete services is to use rc-update. I do not
  know anything about using eselect rc to do this.
 
  Thanks,
 
  William
 
 
 Is this documented somewhere?  Using eselect for this I mean.  Surely 
 the OP saw it in a doc somewhere.  Sort of doubtful that he/she pulled 
 this out of their hat on their own.
 
 Dale
 
 :-)  :-)
 

Well, issuing eselect lists rc as a module and man rc.eselect
gives you a list of actions to use and their description :

NAME
   rc.eselect - Runlevel configuration module

SYNOPSIS
   eselect rc [help|usage|version]
   eselect rc add script [runlevel...]
   eselect rc delete script [runlevel...]
   eselect rc list [runlevel]
   eselect rc pause script [script...]
   eselect rc restart script [script...]
   eselect rc show [runlevel...]
   eselect rc start script [script...]
   eselect rc stop script [script...]

  ;) / Per-Erik




[gentoo-user] Qt builtin widget styles not applied

2010-12-05 Thread Erik
I only get Qt default style, and when I install kde-base/kstyles-4.5.3 i 
only get Oxygen. But none of the other styles, (CDE, Cleanlooks, MS 
Windows 9x,Motif, Plastique) that are supposed to be built into Qt-GUI 
4.6.3-r2 (and 4.7.1-r1), can be applied. (The selected style's name is 
saved to ~/.kde4/share/config/kdeglobals though.) What is wrong?





[gentoo-user] [SOLVED] (II) NV(0): Setting screen physical size to 508 x 317

2010-11-29 Thread Erik

2010-07-17 01:54, walt skrev:

On 07/15/2010 11:03 PM, Erik wrote:
You may know enough to help if you are familiar with Xorg, in 
particular the driver called NV


I know a little about it.  It is no longer maintained by xorg or 
nvidia, so

that may be part of the problem if you are using recent nvidia hardware.

A commonly asked question is does it work as expected with the vesa 
driver?
(Vesa does not include 2D/3D acceleration, obviously, but it should at 
least

give you correct results for an ordinary console.)

The open-source 'nv' driver has been replaced by the open-source 
'nouveau'
driver, which is still very much a work in progress.  I'm using it 
just to
experiment -- I don't need 2D/3D acceleration, but maybe you do.  If 
so, you
need to use nvidia's proprietary 'nvidia' driver because it's the only 
choice

you have at present.


Now I finally have 'nouveau' sort of working. The hardest part so far 
was probably learning the spelling of it.


Unfortunately some icons are corrupted in the taskbar of the panel (see 
attached screenshot) and Alt+Tab window. I tried all versions of 
xf86-video-nouveau in portage.


attachment: xf86-video-nouveau-0.0.16_pre20101010.png

Re: [gentoo-user] Problem with new install

2010-10-15 Thread Per-Erik Westerberg
fre 2010-10-15 klockan 11:29 -0600 skrev Mike Diehl:
 Hi all.
 
 I've never had this much trouble with a server before, but I've been pulling 
 my hair out.
 
 The install seemed to go well, but when I rebooted it from it's own hard 
 drive, it fails.  fsck claims that it can't open /dev/sda3 or that the 
 superblock doesn't describe a valid ext2 filesystem.
 
 However, when I reboot from the live CD, it mounts just fine and fsck says 
 it's clean.
 
 Here is the /etc/fstab:
 /dev/sda1   /boot   ext2noauto,noatime  1 2
 /dev/sda3   /   ext2noatime 0 1
 /dev/sda2   noneswapsw  0 0
 /dev/cdrom  /mnt/cdrom  autonoauto,ro   0 0
 shm /dev/shmtmpfs   nodev,nosuid,noexec 0 0
 
 Here is the /boot/grub/grub.conf file:
 default 0
 timeout 30
 splashimage=(hd0,0)/boot/grub/splash.xpm.gz
 
 title Gentoo Linux 
 root (hd0,0)
 kernel /bzImage root=/dev/sda3
 
 I've verified that ext2 and ext3 are in the kernel statically.  I've also 
 compiled in ALL of the SATA drivers, statically.
 
 What am I missing?
 

Hi,

I had exactly the same problem when I did a reinstall, I used the kernel
.config I got from the live CD (zcat /proc/config.gz  .config) as a
base when configuring the kernel. I solved it by not using that and
instead start from scratch without an initial .config. I guess that
there were some options that was conflicting.

  BR / P-E





Re: [gentoo-user] Re: OT: advice sought on new laptop for Gentoo

2010-09-08 Thread Per-Erik Westerberg
On ons, 2010-09-08 at 17:40 +0200, Alan McKinnon wrote:
 Apparently, though unproven, at 17:24 on Wednesday 08 September 2010, Grant 
 Edwards did opine thusly:
 
   Since 16:9 panels are the same shape as the ones TVs use, I assume
   that's why they are cheaper and why the industry prefers them.
  
  I thought about that, but the sizes and pixel densities don't overlap
  at all between laptop panels and TV panels, so I don't see how they
  can be leveraging production processes or equipment.
 
 The intent is probably more that the picture will visually appear the same 
 whether you view it on a laptop, HD TV or widescreen monitor.
 
 Which raises another layer of confusion: when a spec says 16:9 does it mean 
 physical dimensions, or pixel density? I've yet to find a device that clearly 
 states *how* it arrived at the numbers it quotes in it's spec.
 
 

I guess it is the relation between horizontal versus vertical dimension,
it shouldn't matter what the pixel density is ... or does it?

  / P-E





Re: [gentoo-user] Re: (II) NV(0): Setting screen physical size to 508 x 317

2010-07-16 Thread Erik
2010-07-16 01:51, walt skrev:
 On 07/15/2010 02:15 AM, Erik wrote:

 ...This is the
 new Dell vostro|1720 from November, that replaced the old INSPIRON|8600
 aquired 5 years earlier...

 I feel as if I'm reading a post that I selected at random from the
 middle of a long thread with lots of previous questions and answers
 that I can't see.

 I've never heard of either of those products.  Maybe someone else
 knows what
 they are?


Do not worry about not knowing about the products that I mentioned in
the parenthesis in the last paragraph (they are just some laptops with
differend graphic cards built in). You may know enough to help if you
are familiar with Xorg, in particular the driver called NV (as the first
2 lines of my post shows). Do you for example know from where the driver
gets the bogus physical display size 508 x 317 from, and why it insists
on using it instead of the configured size?



Re: [gentoo-user] Re: (II) NV(0): Setting screen physical size to 508 x 317

2010-07-16 Thread Erik
2010-07-16 08:13, Dale skrev:
 Erik wrote:
 2010-07-16 01:51, walt skrev:
   
 On 07/15/2010 02:15 AM, Erik wrote:

 
 ...This is the
 new Dell vostro|1720 from November, that replaced the old
 INSPIRON|8600
 aquired 5 years earlier...

 I feel as if I'm reading a post that I selected at random from the
 middle of a long thread with lots of previous questions and answers
 that I can't see.

 I've never heard of either of those products.  Maybe someone else
 knows what
 they are?
  

 Do not worry about not knowing about the products that I mentioned in
 the parenthesis in the last paragraph (they are just some laptops with
 differend graphic cards built in). You may know enough to help if you
 are familiar with Xorg, in particular the driver called NV (as the first
 2 lines of my post shows). Do you for example know from where the driver
 gets the bogus physical display size 508 x 317 from, and why it insists
 on using it instead of the configured size?


 Are you using hal?  If so, you may need to get or change the config
 files so that it will run at the settings you want instead of what it
 detects.

 By the way, I have no idea how to edit them.  It's in xml.  You may
 can google and borrow their config file tho.

 If you are not using hal, it should be set in xorg.conf.  I don't use
 hal and that is where mine is set.

Yes I am using hal. Maybe that is the problem. But it is clear from the
log file that xorg.conf is read anyway.



[gentoo-user] get-edid?

2010-07-16 Thread Erik
I installed app-misc/read-edid-1.4.2. It is supposed to install 2 tools;
get-edid and parse-edid. But I only got parse-edid. So I can not use it.
Any help?



Re: [gentoo-user] get-edid?

2010-07-16 Thread Erik
2010-07-16 09:22, Neil Bothwick skrev:
 On Fri, 16 Jul 2010 08:59:52 +0200, Erik wrote:

 I installed app-misc/read-edid-1.4.2. It is supposed to install 2 tools;
 get-edid and parse-edid. But I only got parse-edid. So I can not use it.

 % qlist read-edid
 /usr/sbin/get-edid
 /usr/share/man/man1/get-edid.1.bz2
 /usr/share/man/man1/parse-edid.1.bz2
 /usr/share/doc/read-edid-2.0.0-r1/NEWS.bz2
 /usr/share/doc/read-edid-2.0.0-r1/README.bz2
 /usr/share/doc/read-edid-2.0.0-r1/AUTHORS.bz2
 /usr/share/doc/read-edid-2.0.0-r1/ChangeLog.bz2
 /usr/bin/parse-edid

 Both are there but note that get-edid is in /usr/sbin so only in root's
 path.

Thanks for the help. So version 2.0 has both binaries, but in different
places.

This is what it looks like for the stable version (1.4.2):
% qlist read-edid
/usr/share/man/man1/get-edid.1.lzma
/usr/share/man/man1/parse-edid.1.lzma
/usr/share/doc/read-edid-1.4.2/AUTHORS.lzma
/usr/share/doc/read-edid-1.4.2/README.lzma
/usr/share/doc/read-edid-1.4.2/ChangeLog.lzma
/usr/share/doc/read-edid-1.4.2/NEWS.lzma
/usr/sbin/parse-edid
/usr/lib/debug/usr/sbin/parse-edid.debug


So actually the stable version fails to install get-edid.

(I also had a problem with bash not finding the parse-edid binary after
upgrading to 2.0, since then /usr/sbin/parse-edid was removed and
/usr/bin/parse-edid was added without bash knowing about it. Ctrl+D and
starting the shell again fixed it though.)

Now to the actual result:

/usr/sbin/get-edid: get-edid version 2.0.0

Performing real mode VBE call
Interrupt 0x10 ax=0x4f00 bx=0x0 cx=0x0
Function supported
Call successful

VBE version 300
VBE string at 0x11100 NVIDIA

VBE/DDC service about to be called
Report DDC capabilities

Performing real mode VBE call
Interrupt 0x10 ax=0x4f15 bx=0x0 cx=0x0
Function supported
Call successful

Monitor and video card combination does not support DDC1 transfers
Monitor and video card combination does not support DDC2 transfers
0 seconds per 128 byte EDID block transfer
Screen is not blanked during DDC transfer

Reading next EDID block

VBE/DDC service about to be called
Read EDID

Performing real mode VBE call
Interrupt 0x10 ax=0x4f15 bx=0x1 cx=0x0
Function supported
Call failed

The EDID data should not be trusted as the VBE call failed
Error: output block unchanged


Any idea why it fails? Is that why xorg can not read the display size either? 
If so, why does it just pick a random display size without reporting the error?




Re: [gentoo-user] (II) NV(0): Setting screen physical size to 508 x 317

2010-07-16 Thread Erik
2010-07-16 09:49, Robert Bridge skrev:
 On Thu, Jul 15, 2010 at 10:15 AM, Erik esi...@gmail.com wrote:
   
 (There are other issues with this video device; it shows only 25 × 80
 characters in the virtual terminals (should be 75 × 240). This is the
 new Dell vostro|1720 from November, that replaced the old INSPIRON|8600
 aquired 5 years earlier, with radeon driver. That old device worked fine
 without any configuration files. The physical screen size was detected
 and the virtual kernel output switched to 75 × 240 characters as soon as
 the device was detected.)
 
 Hi Erik,

 It would help if you actually told us which driver you are using, and
 what the actual hardware is. I'm guessing it's an nVidia card in the
 new laptop, and some form of ATI card in the old one. It sounds like
 the driver is over-riding the xorg.conf with (incorrect) readings it's
 getting from the EDID for the display.
   

My /etc/make.conf has VIDEO_CARDS=nv but I thought it was obvious from
the NV in the log message. The actual hardware is reported by lspci as
01:00.0 VGA compatible controller: nVidia Corporation G96 [GeForce
9600M GS] (rev a1). I tried to use read-edid see what EDID shows, but
the call failed (see other message). How would I know if xorg tried to
read EDID and whether it worked?



Re: [gentoo-user] Fails to compile dev-lang/python-3.1.2-r4

2010-07-15 Thread Erik
2010-07-13 07:32, Blackdream W skrev:
 cat /etc/locale.gen

 en_US ISO-8859-1
 en_US.UTF-8 UTF-8

 2010/7/13 Zhu Sha Zang zhushaz...@yahoo.com.br

 I see this error when i'm trying to compile my python source codes in
 eric4/eric5 and my system are with uncorrect locales.

 Your locale are corect?

 att

 Em Tue, 13 Jul 2010 02:03:35 -0300, Blackdream W blackdream1...@gmail.com
 escreveu:


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

 I'm using ~amd64,and I sync my portage tree just now,but I couldn't
 upgrade
 to dev-lang/python-3.1.2-r4.

 UnicodeDecodeError: 'ascii' codec can't decode byte 0xe4 in position 1:
 ordinal not in range(128)


 any help?thx

I get a similar error:
running build_ext
Traceback (most recent call last):
  File ./setup.py, line 1823, in module
main()
  File ./setup.py, line 1817, in main
Tools/scripts/2to3]
  File
/var/tmp/portage/dev-lang/python-3.1.2-r4/work/Python-3.1.2/Lib/distutils/core.py,
line 149, in setup
dist.run_commands()
  File
/var/tmp/portage/dev-lang/python-3.1.2-r4/work/Python-3.1.2/Lib/distutils/dist.py,
line 919, in run_commands
self.run_command(cmd)
  File
/var/tmp/portage/dev-lang/python-3.1.2-r4/work/Python-3.1.2/Lib/distutils/dist.py,
line 938, in run_command
cmd_obj.run()
  File
/var/tmp/portage/dev-lang/python-3.1.2-r4/work/Python-3.1.2/Lib/distutils/command/build.py,
line 128, in run
self.run_command(cmd_name)
  File
/var/tmp/portage/dev-lang/python-3.1.2-r4/work/Python-3.1.2/Lib/distutils/cmd.py,
line 315, in run_command
self.distribution.run_command(command)
  File
/var/tmp/portage/dev-lang/python-3.1.2-r4/work/Python-3.1.2/Lib/distutils/dist.py,
line 938, in run_command
cmd_obj.run()
  File
/var/tmp/portage/dev-lang/python-3.1.2-r4/work/Python-3.1.2/Lib/distutils/command/build_ext.py,
line 347, in run
self.build_extensions()
  File ./setup.py, line 160, in build_extensions
missing = self.detect_modules()
  File ./setup.py, line 567, in detect_modules
for ln in fp:
  File
/var/tmp/portage/dev-lang/python-3.1.2-r4/work/Python-3.1.2/Lib/encodings/ascii.py,
line 26, in decode
return codecs.ascii_decode(input, self.errors)[0]
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 19:
ordinal not in range(128)




[gentoo-user] (II) NV(0): Setting screen physical size to 508 x 317

2010-07-15 Thread Erik
The problem is this line in /var/log/Xorg.0.log:
(II) NV(0): Setting screen physical size to 508 x 317

I have measured the screen and it is actually (approximately) 368 × 230.
This error causes fonts to be shown in the wrong size (too small). I
think that the fonts became smaller after some upgrade during the last
few months. I do not know if it was correct before that or if it was
just wrong in a different way. I tried to tell it the correct values in
/etc/X11/xorg.conf:
Section Monitor
  Identifier Monitor
  DisplaySize 368 230
EndSection

Section Screen
  Identifier Screen
  Monitor Monitor
EndSection

It is read without problems:
(==) Using config file: /etc/X11/xorg.conf
(==) No Layout section.  Using the first Screen section.
(**) |--Screen Screen (0)
(**) |   |--Monitor Monitor

But then it sets the wrong physical size anyway! Is there anything to do
besides reporting a bug and waiting?

(There are other issues with this video device; it shows only 25 × 80
characters in the virtual terminals (should be 75 × 240). This is the
new Dell vostro|1720 from November, that replaced the old INSPIRON|8600
aquired 5 years earlier, with radeon driver. That old device worked fine
without any configuration files. The physical screen size was detected
and the virtual kernel output switched to 75 × 240 characters as soon as
the device was detected.)



Re: [gentoo-user] Re: Legacy GRUB vs GRUB2

2010-06-22 Thread Per-Erik Westerberg
tis 2010-06-22 klockan 12:15 -0700 skrev walt:
 On 06/22/2010 11:44 AM, Dale wrote:
  Tanstaafl wrote:
  On 2010-06-18 12:17 PM, Bill Longman wrote:
  And finally, don't even mention how braindead the new improved
  grub is. I wonder how anyone can feel that having to write six
  paragraphs in some one-off bash-like language, which needs to be
  debugged, is better than four lines in a config file.
  This brings up a question I've been meaning to ask...
 
  Since I have no desire to experience this new 'improved' GRUB, but don't
  like LILO - how long will it be before I'll be forced to make a choice?
  Meaning, how long will legacy GRUB still be supported?
 
 
  If I read the home page correctly, they are not really doing much more than 
  bug fixes on the old grub. That was my reading at least. I'm dreading that 
  day too. I sort of like my old grub. I started on lilo and grub has 
  seriously grown on me. I'll switch
  to the new grub tho. I have NO plans to go back to lilo. None whatsoever ! !
 
 IIUC the change will be forced by mobo manufacturers when they adopt the
 newer partition tables and boot/BIOS methods .  They have catchy acronyms
 that I can't remember, naturally, but we've all seen them discussed in this
 group from time to time.  Don't buy new mobos and you can stick to old grub.
 
 

Is there a GRUB to GRUB2 migration guide somewhere in the Gentoo
Documentation?

  BR / P-E





Re: [gentoo-user] Clean shutdown of laptop possible after migration to KDE4?

2009-12-26 Thread Erik
Alan McKinnon skrev:
 On Saturday 26 December 2009 00:52:31 Erik wrote:
   
 Alan McKinnon skrev:
 
 On Friday 25 December 2009 16:23:23 Erik wrote:
   
 After migrating to KDE4 it seems like the laptop just dies when the
 battery becomes empty. In KDE3 I could set klaptopdaemon to warn when
 the estimated remaining battery time is 15 minutes and begin a clean
 shutdown when it is 10 minutes. It worked very well. Is it somehow
 possible to get a clean shutdown in KDE4? I do not want to loose a
 filesystem because of it.

 
 System Settings - Advanced - Power Management
   
 Unfortunately I do not seem to have it. All that I have under System
 Settings - Advanced is:
 Adapt the desktop theme
 Automatic start
 Device actions
 Filebindings
 Fetch from CDDB
 Hardware
 KDE-wallet
 KDE-resources
 Session manager
 Desktop search
 Service manager
 -
 Login manager

 Which package should I install?
 

 What version of KDE did you install?

4.3.3


  Do you use -meta packages, or sets?
   

No, but now I tried emerge -pv kdebase-meta and it gave me a list of
23 packages that I did not have installed, among them powerdevil, which
seems to be the one.



[gentoo-user] Clean shutdown of laptop possible after migration to KDE4?

2009-12-25 Thread Erik
After migrating to KDE4 it seems like the laptop just dies when the
battery becomes empty. In KDE3 I could set klaptopdaemon to warn when
the estimated remaining battery time is 15 minutes and begin a clean
shutdown when it is 10 minutes. It worked very well. Is it somehow
possible to get a clean shutdown in KDE4? I do not want to loose a
filesystem because of it.



Re: [gentoo-user] Clean shutdown of laptop possible after migration to KDE4?

2009-12-25 Thread Erik
Alan McKinnon skrev:
 On Friday 25 December 2009 16:23:23 Erik wrote:
 After migrating to KDE4 it seems like the laptop just dies when the
 battery becomes empty. In KDE3 I could set klaptopdaemon to warn when
 the estimated remaining battery time is 15 minutes and begin a clean
 shutdown when it is 10 minutes. It worked very well. Is it somehow
 possible to get a clean shutdown in KDE4? I do not want to loose a
 filesystem because of it.

 System Settings - Advanced - Power Management

Unfortunately I do not seem to have it. All that I have under System
Settings - Advanced is:
Adapt the desktop theme
Automatic start
Device actions
Filebindings
Fetch from CDDB
Hardware
KDE-wallet
KDE-resources
Session manager
Desktop search
Service manager
-
Login manager

Which package should I install?



Re: [gentoo-user] While installing Gentoo: emerge gentoo-sources hangs at Applying 4400_alpha-sysctl-uac.patch

2009-12-12 Thread Erik
Kyle Adams skrev:
 On 12/11/09 16:43, Dale wrote:
 Erik wrote:
 Now I am trying to install Gentoo on a new system but when try to emerge
 gentoo-sources (as I am supposed to), it hangs at Applying
 4400_alpha-sysctl-uac.patch. This problem is also known as bug #291389.
 I see with top in another virtual terminal that rm uses 100% CPU. Is
 there any way to continue the installation?

   
 Maybe try a different version of gentoo-sources?
 Dale

 :-)  :-)
 Vanilla-sources will solve the problem until boot time, unless you have
 ext4 partitions.

I am configuring vanilla-sources right now. But I got a scary security
warning. So the plan is:
 1. Go through make menuconfig.
 2. Make kernel and modules.
 3. Install kernel and modules.
 4. Configure bootloader.
 5. Disconnect ethernet cable.
 6. Boot into new system.
 7. Emerge gentoo-sources (assuming that this actually works better in
the new system, without chroot).
 8. Copy over .config.
 9. Make oldconfig.
10. Make kernel and modules.
11. Install kernel and modules.
12. Configure bootloader (add Gentoo kernel).
13. Boot into the Gentoo kernel.
14. Configure bootloader (remove Vanilla kernel).
15. Remove Vanilla kernel and modules.
16. Unmerge vanilla-sources.
17. Reconnect ethernet cable.


Yes, I created ext4 partitions. Maybe that was stupid. I should have
stuck to ReiserFS 3.6 which has worked so well on the old system for
over 5 years. But at least I made /boot ext2 as usual.



Re: [gentoo-user] While installing Gentoo: emerge gentoo-sources hangs at Applying 4400_alpha-sysctl-uac.patch

2009-12-12 Thread Erik
Willie Wong skrev:
 On Sat, Dec 12, 2009 at 10:50:20AM +0100, Penguin Lover Erik squawked:
   
 I am configuring vanilla-sources right now. But I got a scary security
 warning. So the plan is:
 

 Which security warning are you talking about?
   

grep -r K_SECURITY_UNSUPPORTED
/usr/portage/sys-kernel/vanilla-sources/vanilla-sources-2.6.31.6.ebuild
/usr/portage/eclass



Re: [gentoo-user] While installing Gentoo: emerge gentoo-sources hangs at Applying 4400_alpha-sysctl-uac.patch

2009-12-12 Thread Erik
Kyle Adams skrev:
 On 12/11/09 16:43, Dale wrote:
 Erik wrote:
 Now I am trying to install Gentoo on a new system but when try to emerge
 gentoo-sources (as I am supposed to), it hangs at Applying
 4400_alpha-sysctl-uac.patch. This problem is also known as bug #291389.
 I see with top in another virtual terminal that rm uses 100% CPU. Is
 there any way to continue the installation?

   
 Maybe try a different version of gentoo-sources?
 Dale

 :-)  :-)
 Vanilla-sources will solve the problem until boot time, unless you have
 ext4 partitions.

Now I have seen what happens when trying to boot a vanilla kernel with
ext4 partitions:
[1.558600] VFS: Cannot open root device 803 or unknown-block(8,3)
[1.558807] Please append a correct root= boot option; here are the
available partitions:
[1.559061] Kernel panic - not syncing: VFS: Unable to mount root fs
on unknown-block(8,3)
[1.559285] Pid: 1, comm: swapper Not tainted 2.6.31.6 #2
[1.559483] Call Trace:
[1.559687]  [812a0619] ? panic+0x86/0x128
[1.559891]  [8140e123] ? printk_all_partitions+0x1dc/0x1ee
[1.560111]  [810962a8] ? sys_mount+0xba/0xce
[1.560339]  [813fc461] ? mount_block_root+0x25e/0x27c
[1.560543]  [813fc5fa] ? prepare_namespace+0x12c/0x156
[1.560746]  [813fbbd6] ? kernel_init+0x18b/0x19b
[1.560949]  [8100bdba] ? child_rip+0xa/0x20
[1.561179]  [8115562f] ? acpi_tb_verify_table+0x21/0x4f
[1.561382]  [813fba4b] ? kernel_init+0x0/0x19b
[1.561583]  [8100bdb0] ? child_rip+0x0/0x20




Re: [gentoo-user] While installing Gentoo: emerge gentoo-sources hangs at Applying 4400_alpha-sysctl-uac.patch

2009-12-12 Thread Erik
Erik skrev:
 Kyle Adams skrev:
   
 On 12/11/09 16:43, Dale wrote:
 
 Erik wrote:
   
 Now I am trying to install Gentoo on a new system but when try to emerge
 gentoo-sources (as I am supposed to), it hangs at Applying
 4400_alpha-sysctl-uac.patch. This problem is also known as bug #291389.
 I see with top in another virtual terminal that rm uses 100% CPU. Is
 there any way to continue the installation?

   
 
 Maybe try a different version of gentoo-sources?
 Dale

 :-)  :-)
   
 Vanilla-sources will solve the problem until boot time, unless you have
 ext4 partitions.
 

 Now I have seen what happens when trying to boot a vanilla kernel with
 ext4 partitions:
 [1.558600] VFS: Cannot open root device 803 or unknown-block(8,3)
   

Actually that seems unrelated to vanilla-sources and ext4. I just
compiled SCSI disk support (BLK_DEV_SD) as a yes instead of module. Now
it boots. (This is a Intel Corporation ICH9M/M-E SATA AHCI Controller




[gentoo-user] Which LiveCD for Intel Core2 Duo?

2009-12-11 Thread Erik
I will install Gentoo Linux on a Dell laptop with Intel Core2 Dua and
8GiB RAM. I tried 2 different LiveCDs. x86 boots fine, but does not seem
to find all memory. IA64 does not boot. Are there hidden versions like
x86_64?



[gentoo-user] While installing Gentoo: emerge gentoo-sources hangs at Applying 4400_alpha-sysctl-uac.patch

2009-12-11 Thread Erik
Now I am trying to install Gentoo on a new system but when try to emerge
gentoo-sources (as I am supposed to), it hangs at Applying
4400_alpha-sysctl-uac.patch. This problem is also known as bug #291389.
I see with top in another virtual terminal that rm uses 100% CPU. Is
there any way to continue the installation?



Re: [gentoo-user] emerge @ world - @preserved-rebuild - @preserved-rebuild - what next?

2009-11-16 Thread Erik
Alan McKinnon skrev:
 On Saturday 14 November 2009 01:13:06 Neil Bothwick wrote:
   
 However, it did get to the point where it was complaining about two
 packages and the number of files to be rebuilt went (IIRC) 52, 50, 50,
 so I decide since it was rebuilding 50 packages the 2nd  3rd times it
 wasn't going to improve. Might not be true though.
   

seems related to https://bugs.gentoo.org/show_bug.cgi?id=292622



[gentoo-user] dev-util/kdevplatform-0.9.96 fails

2009-11-16 Thread Erik
 Installing (2 of 4) dev-util/kdevplatform-0.9.96
 * checking 432 files for package collisions
 * This package will overwrite one or more files that may belong to other
 * packages (see list below). You can use a command such as `portageq
 * owners / filename` to identify the installed package that owns a
 * file. If portageq reports that only one package owns a file then do   
 * NOT file a bug report. A bug report is only useful if it identifies at
 * least two or more packages that are known to install the same file(s).
 * If a collision occurs and you can not explain where the file came from
 * then you should simply ignore the collision since there is not enough
 * information to determine if a real problem exists. Please do NOT file
 * a bug report at http://bugs.gentoo.org unless you report exactly which
 * two packages install the same file(s). Once again, please do NOT file
 * a bug report unless you have completely understood the above message.
 *   
 * Detected file collision(s):   
 *   
 *  /usr/lib/kde4/kdevdocumentview.so
 *  /usr/lib/kde4/kdevgrepview.so
 *  /usr/lib/debug/usr/lib/kde4/kdevgrepview.so.debug
 *  /usr/lib/debug/usr/lib/kde4/kdevdocumentview.so.debug
 *  /usr/share/apps/kdevdocumentview/kdevdocumentview.rc 
 *  /usr/share/apps/kdevgrepview/kdevgrepview.rc 
 *  /usr/share/kde4/services/kdevdocumentview.desktop
 *  /usr/share/kde4/services/kdevgrepview.desktop
 *   
 * Searching all installed packages for file collisions...   
 *   
 * Press Ctrl-C to Stop  
 *   
 * dev-util/kdevelop-3.9.95  
 *  /usr/lib/debug/usr/lib/kde4/kdevdocumentview.so.debug
 *  /usr/lib/debug/usr/lib/kde4/kdevgrepview.so.debug
 *  /usr/lib/kde4/kdevdocumentview.so
 *  /usr/lib/kde4/kdevgrepview.so
 *  /usr/share/apps/kdevdocumentview/kdevdocumentview.rc 
 *  /usr/share/apps/kdevgrepview/kdevgrepview.rc 
 *  /usr/share/kde4/services/kdevdocumentview.desktop
 *  /usr/share/kde4/services/kdevgrepview.desktop
 *   
 * Package 'dev-util/kdevplatform-0.9.96' NOT merged due to file 
 * collisions. If necessary, refer to your elog messages for the whole   
 * content of the above message. 

 Failed to install dev-util/kdevplatform-0.9.96, Log file:

  '/portage_tmpdir/portage/dev-util/kdevplatform-0.9.96/temp/build.log'

 * Messages for package dev-util/kdevplatform-0.9.96:

 * This package will overwrite one or more files that may belong to other
 * packages (see list below). You can use a command such as `portageq
 * owners / filename` to identify the installed package that owns a
 * file. If portageq reports that only one package owns a file then do   
 * NOT file a bug report. A bug report is only useful if it identifies at
 * least two or more packages that are known to install the same file(s).
 * If a collision occurs and you can not explain where the file came from
 * then you should simply ignore the collision since there is not enough
 * information to determine if a real problem exists. Please do NOT file
 * a bug report at http://bugs.gentoo.org unless you report exactly which
 * two packages install the same file(s). Once again, please do NOT file
 * a bug report unless you have completely understood the above message.
 *
 * Detected file collision(s):
 *
 *  /usr/lib/kde4/kdevdocumentview.so
 *  /usr/lib/kde4/kdevgrepview.so
 *  /usr/lib/debug/usr/lib/kde4/kdevgrepview.so.debug
 *  /usr/lib/debug/usr/lib/kde4/kdevdocumentview.so.debug
 *  /usr/share/apps/kdevdocumentview/kdevdocumentview.rc
 *  /usr/share/apps/kdevgrepview/kdevgrepview.rc
 *  /usr/share/kde4/services/kdevdocumentview.desktop
 *  /usr/share/kde4/services/kdevgrepview.desktop
 *
 * Searching all installed packages for file collisions...
 *
 * Press Ctrl-C to Stop
 *
 * dev-util/kdevelop-3.9.95
 *  /usr/lib/debug/usr/lib/kde4/kdevdocumentview.so.debug
 *  /usr/lib/debug/usr/lib/kde4/kdevgrepview.so.debug
 *  /usr/lib/kde4/kdevdocumentview.so
 *  /usr/lib/kde4/kdevgrepview.so
 *  

Re: [gentoo-user] firefox 3.5.4 crashes

2009-11-12 Thread Erik
dhk skrev:
 Recently I updated firefox to 3.5.4 and now it crashes on some web pages
 that use java script.  If I turn java script off in the preferences I
 can open the pages, but not use them.  I have an x86 box and using xfce4
 desktop.  I don't know if this has anything to do with it, but at the
 same time xulrunner was updated and there was some blocking with a
 library which was unmerged and then reemerged.

 Any ideas?
   
https://bugs.gentoo.org/show_bug.cgi?id=292651



[gentoo-user] entropy problem

2009-11-11 Thread Erik
I try to commit a lot of PNGs to SVN (ran a shrink script on them) but
get SSL handshake failed: Secure connection truncated too often. I
Could sit there and move the mouse all the time to work around it, but I
would really like to avoid that.

I Installed media-sound/audio-entropyd-2.0.1 and fixed the init script
and conf-file as described in
[https://bugs.gentoo.org/show_bug.cgi?id=271882]. But how do I know if
it does anything useful? It does not seem to keep up with the
consumption of SVN. I even tried to echo 3000 
/proc/sys/kernel/random/write_wakeup_threshold but it does not seem to
take effect. Would I need to restart audio-entropyd or do something else
to apply the new value?



Re: [gentoo-user] Has mysql become compulsory - Part 2

2009-11-10 Thread Erik
Nagatoro skrev:
 On Tuesday 10 November 2009 13.14.13 Alan McKinnon wrote:
 [...]
   
 *** glibc detected *** amarok: free(): invalid pointer: 0x03295080
  ***
 

 This is a highly debated issue, glibc has new checks for various things and 
 it 
 seems like some think the checks are to strict or even wrong while others 
 think that the checks are ok and the applications are wrong.
   
Really? A pointer is valid for free() if it has been returned by malloc,
calloc, realloc or strdup, and has not yet been passed to free(). What
could there possibly be to debate?



Re: [gentoo-user] [OT-perhaps] Cracking PDF file encryption

2009-11-09 Thread Erik
Mick skrev:
 I am trying to copy some text from a pdf file which has been
 protected, most likely using Adobe on a MSWindows machine.  When I
 select some text, the new KDE4 pdf viewer (Okular) shows the 'copy
 text' right click menu greyed out:

 Copy forbidden by DRM.

 I can still copy the text as an image.

 Xpdf does not even allow me to copy it as an image after selection.

 I can't remember what the case was with KDE 3.5.10 and kpdf - either
 way, is there an application or trick which would allow me to edit the
 pdf file in question and add comments, or cut and paste its textual
 content into a word file and edit it there?  There's a lot of text
 that I need to edit and would rather not have to retype it all ...
   

I noticed that Okular has the option Obey DRM restrictions enabled by
default. I do not know why this was changed. As far as I remember, in
KPDF, it was a compile-time option that was disabled default, and if it
was enabled at compile time, it would appear as a normal option (like in
Okular now), but be disabled by default. Just try to turn it off.



Re: [gentoo-user] KDE-4.3.73 I've disabled right mouse buttons

2009-11-08 Thread Erik
Dale skrev:
 I thought a cashew was a peanut or something?

Not at all. The only common thing they have is that both are flowering
plants. But cashew is a big tree, while peanut is an annual herbaceous
plant. See:
http://en.wikipedia.org/wiki/Cashew
http://en.wikipedia.org/wiki/Peanut

   Why is there a nut in KDE4?

It seems to be at the end of the panel and clicking it brings up a panel
configuration menu. The first time I had a red X next to it, but it
seems to be gone now.


 I'm not using KDE 4 yet.  ;-)
   

I had to migrate to it when emerge complained about packages masked for
removal. Spent the last few days reporting regressions at bugs.kde.org.
And now I am not talking about peanuts.



Re: [gentoo-user] New KDE4 option: night of the week for strip club attendance WTF?

2009-11-05 Thread Erik
Stroller skrev:

 The thing is that day of the week for religious observance is intuitive

Probably for those who are into that kind of stuff. For others it can be
disturbing. Same for strip club night.


 - it should default to Sunday in the west, Saturday in certain
 regions, and Pastafarians can select the day appropriate to their
 observance.

The thing with secular societies/desktop environments is that they do
not make assumptions about people's beliefs or religious habits.
Especially not based on which region they live in. They do not treat
religious activities as special compared to other social or recreational
activities.


 The meaning of day for religious observance is quite obvious - that
 it applies to the common case of a recurring weekly all-day event.
 Consequently the strip club joke is unhelpful because one doesn't
 usually take the whole day off for this reason.

I have read that many common religious activities also only last one or
maybe up to a few hours. The reason that western people get whole Sunday
off is not that they are supposed to go to church all day. (Obviously,
since we also get Saturdays off.) It is simply that demanding work
requires rest and recreation.


 I don't use KDE myself, so I'm left to wonder if it's possible to have
 multiple dayS of the week for religious observance

No.


 In the west we usually have both Saturday and Sunday off from our
 office jobs. Are these clearly marked in a similar manner?

Yes (actually it is Monday-Friday that are marked).


 If I agreed with my boss to work weekend technical support and have
 Mondays and Tuesdays off, could I change it so these are displayed as
 my weekend?

It appears so. You could set First work day to Wednesday and Last work
day to Sunday. If you literally want the 2 free days to be the
weekend, you set First day of week to Wednesday. If you want to mark
your special activity day, you could set Night of the week for strip
club attendance to Tuesday.

But if you agree with your boss to work Tuesday-Thurday and
Saturaday-Sunday, you are out of luck. KDE is not designed to handle it.

To allow that, there should be 2 checkboxes for each weekday; Work and
Special activity. That would even work for the jews that you mentioned.



[gentoo-user] New KDE4 option: night of the week for strip club attendance WTF?

2009-11-04 Thread Erik
With KDE4 I suddenly have bloody sexist stuff on my desktop!!! When I
configure country/region and language, there is an option for Night of
the week for strip club attendance: It even seems to have a weekday
selected by default! Has KDE been taken over by the sex industry? (Or
was it Gentoo that sneaked it in?). It was certainly not there in KDE3
and I would never install weirdo stuff like Gnaughty, so what the hell
is that option for? Will it set a special wallpaper that day? And it is
not even explained in the manual! That makes it even more suspicious.
The last part of the manual section says Till sist finns en
kombinationsruta som heter Första dag i veckan, som låter dig välja
vilken dag som är den första i veckan i ditt land. (Which means:
Finally there is a combobox called First day of week, that lets you
chose which day is first in the week in your country.) So there should
not exist any further options after First day of week.



Re: [gentoo-user] New KDE4 option: night of the week for strip club attendance WTF?

2009-11-04 Thread Erik
Stroller skrev:
 On 4 Nov 2009, at 13:22, Neil Bothwick wrote:
 ...
 There are four options here, first day of week, first working day of
 week, last working day of week and day of the week for religious
 observance. It would appear your locale uses a different translation!

 I am torn as whether to find this funny or improper.

 Only when I know what it's supposed to say I really like the joke that
 both are equally important. Why indeed give religious observance a
 higher priority?!?!

I have encountered arguments like this:
Yes, there's a setting for that in the country/region settings module
but if you're not interested in it, it won't bother you. If you are, you
can have kontact or the calendar plasmoid show those days as special.
That's it. Sounds unproblematic to me.


My point is of course that in my desktop environment, I do not want an
option for either strip club attendance, religious observance, or
anything else that someone else might want to do once a week.

I would prefer to keep the desktop environment neutral (secular) by
default. If there is indeed a need for such an option to make sundays
red in the calendar, it would be more proper to call it sometning more
neutral, like Weekly holiday, Ceremonial weekday or Special
weekday. The user can then let that mean lap dance, prayer, family
dinner, hiking, hacking or whatever he may be interested in.

Yes, I know that holiday sounds like holy day, but it still feels
broader than relious observance. According to wikipedia, a holiday can
mean among other things official or unofficial observances of
religious, national, or cultural significance. So the phrase Weekly
holiday covers the current meaning of the KDE option, but is meaningful
even to secular people. Therefore changing the phrase would make KDE
usage more acceptable in secular countries and by secular people.



Re: [gentoo-user] program to solve assignment problem?

2009-11-03 Thread Erik
Dale skrev:
 Alan McKinnon wrote:
   
 On Tuesday 03 November 2009 15:06:43 Etaoin Shrdlu wrote:
   
 
 On Tuesday 03 Nov 2009, bn wrote:
 
   
 Dale ha scritto:
   
 
 Neil Bothwick wrote:
 
   
 On Mon, 02 Nov 2009 19:27:13 -0600, Dale wrote:
   
 
 And maybe it will be easier to just do his own homework instead of
 letting a computer do it for him.
 
   
 Maybe the assignment is to write a program to solve the equation.
   
 
 That's a idea too.  Didn't think of that.
 
   
 In this case I suggest the following programming languages:
 - Brainfuck http://en.wikipedia.org/wiki/Brainfuck
 - OISC http://en.wikipedia.org/wiki/OISC
 - Thue http://en.wikipedia.org/wiki/Thue_(programming_language)
 - Unlambda http://en.wikipedia.org/wiki/Unlambda_programming_language
 - Befunge http://en.wikipedia.org/wiki/Befunge
 - Intercal http://en.wikipedia.org/wiki/Intercal
 - Malbolge http://en.wikipedia.org/wiki/Malbolge
   
 
 You forgot http://compsoc.dur.ac.uk/whitespace/
 
   
 And COBOL too. 

 COBOL - the original obfuscated language. Very cleverly designed to 
 outwardly 
 appear to not be obfuscated at all, but just beneath that veneer lies a 
 different world entirely.

   
 

 Is this that once a month thread where we get to have a little fun?


Fine. I think that I found a relevant package: sci-mathematics/glpk-4.35

It even has an example called assignment problem. If the package is
installed with the USE-flag examples, the example will be installed to
[/usr/share/doc/glpk-4.35/examples/assign.mod]. I will look into that.
Looks infinitely more useful than most suggestions that I got so far.



Re: [gentoo-user] program to solve assignment problem?

2009-11-03 Thread Erik
Alan McKinnon skrev:
 That's because you worded your question like a dumbass user asking someone 
 else to do their homework for him.

I did not mention anything related to homework or that I would still be
a student or anything like that. It was just a standard question of
knowing which Gentoo package is best suited for a particular task.
(Maybe the problem is offtopic until the user got so far that he knows
which package he should be using.)

Maybe next month I will ask which program I should use to solve the
stable marriage problem so you can have your fun again.



[gentoo-user] program to solve assignment problem?

2009-11-02 Thread Erik
Is there some simple little program to solve assignment problems?
Suppose that someone bought k meat (160), m fish (30) and n milk (15)
for 700. So it should solve the equation k * 160 + m * 30 + n * 15 =
700. (A solution happens to be k = 4, m = 2, n = 0. An additional
condition could be that he bought at most 6 items; k + m + n = 6. That
would eliminate solutions like k = 4, m = 0, n = 4.)



Re: [gentoo-user] HDMI-out working?

2009-09-25 Thread Per-Erik Westerberg
fre 2009-09-25 klockan 13:25 -0700 skrev Grant:
  Does HDMI-out on laptops work on Gentoo?
 
  Here with a Dell XPS Laptop M1330 and a Nvidia GeForce 9400M GS, it works 
  fine
  with nvidia-drivers just plug it, and all its ok :)
 
 Thank you.  I'm planning on getting a laptop with the Intel GMA
 4500MHD.  I thought HDMI had some type of copy protection built in
 in some way, so I was thinking it might not work with Linux.
 
 - Grant

Works fine here on a HP laptop with Nvidia Geforce Go 7600 using
Nvidia's binary drivers.

  BR / P-E





Re: [gentoo-user] connecting phone (sonyericsson c702) as mass storage device: one works, not the other [SOLVED]

2009-09-22 Thread Erik
KH skrev:
 Erik schrieb:
 Carlos skrev:
 Erik a écrit :
 I have a strange problem when trying to connect a telephone
 (SonyEricsspm C702) as a mass storage device.I have 2 such telephones,
 let us call them Black and Green.
 [snip]
 Google result from
 Sony Eri Memory Stick hostbyte=0x05 driverbyte=0x00

 http://bbs.archlinux.org/viewtopic.php?pid=548343

 Of course, this may not be your problem but worth comparing phone
 firmware.


 That was it! Now I remember that I had upgraded the firmware in Black
 back in April. Did the same with Green now and it works! Thanks a lot!


 how did you update the phone? My question is: did you have to install
 the 30MB download (for firmware) on windows or did it work with wine
 and gentoo?


No windows, wine or gentoo. Just Settings-Updateservice-Search for
uppdate.



[gentoo-user] connecting phone (sonyericsson c702) as mass storage device: one works, not the other

2009-09-18 Thread Erik
I have a strange problem when trying to connect a telephone
(SonyEricsspm C702) as a mass storage device.I have 2 such telephones,
let us call them Black and Green.

I could always connect Black. KDE showed that it had detected the device
and offered to open system:/media/sdb1 (the memory card) and
system:/media/sda1 (the builtin memory).

But with Green, I never get any popup in KDE.

On a work computer (with Microsoft Windows XP), the telephones behave
identically; they work.

I use Linux 2.6.30-gentoo-r6. I attach some output from
/var/log/messages for the 2 telephones:
Sep 18 12:13:14 tor usb 4-1: new high speed USB device using ehci_hcd and 
address 11
Sep 18 12:13:15 tor usb 4-1: configuration #2 chosen from 1 choice
Sep 18 12:13:15 tor scsi9 : SCSI emulation for USB Mass Storage devices
Sep 18 12:13:15 tor usb-storage: device found at 11
Sep 18 12:13:15 tor usb-storage: waiting for device to settle before scanning
Sep 18 12:13:20 tor scsi 9:0:0:0: Direct-Access Sony Eri Memory Stick   
 0 PQ: 0 ANSI: 0
Sep 18 12:13:20 tor sd 9:0:0:0: Attached scsi generic sg0 type 0
Sep 18 12:13:20 tor scsi 9:0:0:1: Direct-Access Sony Eri Memory Stick   
 0 PQ: 0 ANSI: 0
Sep 18 12:13:20 tor sd 9:0:0:1: Attached scsi generic sg1 type 0
Sep 18 12:13:20 tor sd 9:0:0:0: [sda] Attached SCSI removable disk
Sep 18 12:13:20 tor usb-storage: device scan complete
Sep 18 12:13:20 tor sd 9:0:0:1: [sdb] Attached SCSI removable disk
Sep 18 12:13:27 tor sd 9:0:0:0: [sda] 368401 512-byte hardware sectors: (188 
MB/179 MiB)
Sep 18 12:13:27 tor sd 9:0:0:1: [sdb] 7815169 512-byte hardware sectors: (4.00 
GB/3.72 GiB)
Sep 18 12:13:27 tor sd 9:0:0:0: [sda] Test WP failed, assume Write Enabled
Sep 18 12:13:27 tor sd 9:0:0:0: [sda] Assuming drive cache: write through
Sep 18 12:13:27 tor sd 9:0:0:1: [sdb] Test WP failed, assume Write Enabled
Sep 18 12:13:27 tor sd 9:0:0:1: [sdb] Assuming drive cache: write through
Sep 18 12:13:27 tor sd 9:0:0:0: [sda] Test WP failed, assume Write Enabled
Sep 18 12:13:27 tor sd 9:0:0:0: [sda] Assuming drive cache: write through
Sep 18 12:13:27 tor sda:4sd 9:0:0:1: [sdb] Test WP failed, assume Write 
Enabled
Sep 18 12:13:27 tor sd 9:0:0:1: [sdb] Assuming drive cache: write through
Sep 18 12:13:27 tor sdb: sda1
Sep 18 12:13:27 tor sdb1
Sep 18 12:13:27 tor sd 9:0:0:0: [sda] Unhandled sense code
Sep 18 12:13:27 tor sd 9:0:0:0: [sda] Result: hostbyte=0x00 driverbyte=0x08
Sep 18 12:13:27 tor sd 9:0:0:0: [sda] Sense Key : 0x3 [current]
Sep 18 12:13:27 tor sd 9:0:0:0: [sda] ASC=0x14 ASCQ=0x0
Sep 18 12:13:27 tor end_request: I/O error, dev sda, sector 368400
Sep 18 12:13:27 tor Buffer I/O error on device sda, logical block 368400
Sep 18 12:13:27 tor sd 9:0:0:1: [sdb] Unhandled sense code
Sep 18 12:13:27 tor sd 9:0:0:1: [sdb] Result: hostbyte=0x00 driverbyte=0x08
Sep 18 12:13:27 tor sd 9:0:0:1: [sdb] Sense Key : 0x3 [current]
Sep 18 12:13:27 tor sd 9:0:0:1: [sdb] ASC=0x14 ASCQ=0x0
Sep 18 12:13:27 tor end_request: I/O error, dev sdb, sector 7815168
Sep 18 12:13:27 tor Buffer I/O error on device sdb, logical block 7815168
Sep 18 12:13:27 tor sd 9:0:0:0: [sda] Unhandled sense code
Sep 18 12:13:27 tor sd 9:0:0:0: [sda] Result: hostbyte=0x00 driverbyte=0x08
Sep 18 12:13:27 tor sd 9:0:0:0: [sda] Sense Key : 0x3 [current]
Sep 18 12:13:27 tor sd 9:0:0:0: [sda] ASC=0x14 ASCQ=0x0
Sep 18 12:13:27 tor end_request: I/O error, dev sda, sector 368400
Sep 18 12:13:27 tor Buffer I/O error on device sda, logical block 368400
Sep 18 12:13:27 tor sd 9:0:0:1: [sdb] Sense Key : 0x0 [current]
Sep 18 12:13:27 tor sd 9:0:0:1: [sdb] ASC=0x0 ASCQ=0x0
Sep 18 12:13:27 tor sd 9:0:0:1: [sdb] Unhandled sense code
Sep 18 12:13:27 tor sd 9:0:0:1: [sdb] Result: hostbyte=0x00 driverbyte=0x08
Sep 18 12:13:27 tor sd 9:0:0:1: [sdb] Sense Key : 0x3 [current]
Sep 18 12:13:27 tor sd 9:0:0:1: [sdb] ASC=0x14 ASCQ=0x0
Sep 18 12:13:27 tor end_request: I/O error, dev sdb, sector 7815168
Sep 18 12:13:27 tor Buffer I/O error on device sdb, logical block 7815168
Sep 18 12:13:27 tor sd 9:0:0:0: [sda] Sense Key : 0x0 [current]
Sep 18 12:13:27 tor sd 9:0:0:0: [sda] ASC=0x0 ASCQ=0x0
Sep 18 12:13:27 tor sd 9:0:0:0: [sda] Unhandled sense code
Sep 18 12:13:27 tor sd 9:0:0:0: [sda] Result: hostbyte=0x00 driverbyte=0x08
Sep 18 12:13:27 tor sd 9:0:0:0: [sda] Sense Key : 0x3 [current]
Sep 18 12:13:27 tor sd 9:0:0:0: [sda] ASC=0x14 ASCQ=0x0
Sep 18 12:13:27 tor end_request: I/O error, dev sda, sector 368400
Sep 18 12:13:27 tor Buffer I/O error on device sda, logical block 368400
Sep 18 12:13:27 tor sd 9:0:0:1: [sdb] Unhandled sense code
Sep 18 12:13:27 tor sd 9:0:0:1: [sdb] Result: hostbyte=0x00 driverbyte=0x08
Sep 18 12:13:27 tor sd 9:0:0:1: [sdb] Sense Key : 0x3 [current]
Sep 18 12:13:27 tor sd 9:0:0:1: [sdb] ASC=0x14 ASCQ=0x0
Sep 18 12:13:27 tor end_request: I/O error, dev sdb, sector 7815168
Sep 18 12:13:27 tor Buffer I/O error on device sdb, logical block 7815168
Sep 18 12:13:27 tor sd 9:0:0:0: [sda] Unhandled sense code
Sep 18 12:13:27 tor sd 9:0:0:0: 

Re: [gentoo-user] connecting phone (sonyericsson c702) as mass storage device: one works, not the other [SOLVED]

2009-09-18 Thread Erik
Carlos skrev:
 Erik a écrit :
 I have a strange problem when trying to connect a telephone
 (SonyEricsspm C702) as a mass storage device.I have 2 such telephones,
 let us call them Black and Green.

 I could always connect Black. KDE showed that it had detected the device
 and offered to open system:/media/sdb1 (the memory card) and
 system:/media/sda1 (the builtin memory).

 But with Green, I never get any popup in KDE.

 On a work computer (with Microsoft Windows XP), the telephones behave
 identically; they work.

 I use Linux 2.6.30-gentoo-r6. I attach some output from
 /var/log/messages for the 2 telephones:

 Google result from
 Sony Eri Memory Stick hostbyte=0x05 driverbyte=0x00

 http://bbs.archlinux.org/viewtopic.php?pid=548343

 Of course, this may not be your problem but worth comparing phone
 firmware.


That was it! Now I remember that I had upgraded the firmware in Black
back in April. Did the same with Green now and it works! Thanks a lot!



Re: [gentoo-user] Re: libssl3.so.12 not found, but why not? [SOLVED]

2009-09-17 Thread Per-Erik Westerberg
tor 2009-09-17 klockan 11:15 -0700 skrev walt:
 On 09/17/2009 10:37 AM, Dirk Heinrichs wrote:
  Am Donnerstag 17 September 2009 19:21:44 schrieb walt:
  Two days ago after updating world on my ~amd64, at least two apps
  can't find libssl.so.12 even though it's right where it should be.
  ...
 
  ...I've seen this on my box at work today. The interesting thing
  here was that for the affected program, evolution, libssl3.so showed up four
  times in ldd output, where three entries showed not found while the forth
  showed the location of the lib.
 
 I also recompiled evolution and gnome-panel (those were the two apps
 that were broken) but they both depend on evolution-data-server, and
 recompiling that finally fixed it.
 
 Now, the next question is why didn't revdep-rebuild fix it first?
 
 

Hi,

I'm using ~x86 and the following fixed the issue for me :

revdep-rebuild --library libnss3.so.12





[gentoo-user] What does it take to get debug symbols from /lib/ld-2.9.so?

2009-09-06 Thread Erik
I have emerged glibc with debug -glibc-omitfp and restarted the
system. But when I execute valgrind /usr/lib/mozilla-firefox/firefox I
only see things like this:
Invalid read of size 4
   at 0x4018620: (within /lib/ld-2.9.so)

No filename:linenumber here. What does it take to get debug symbols from
/lib/ld-2.9.so?




Re: [gentoo-user] Re: What does it take to get debug symbols from /lib/ld-2.9.so?

2009-09-06 Thread Erik
Nikos Chantziaras skrev:
 On 09/06/2009 09:43 AM, Erik wrote:
 I have emerged glibc with debug -glibc-omitfp and restarted the
 system. But when I execute valgrind /usr/lib/mozilla-firefox/firefox I
 only see things like this:
 Invalid read of size 4
 at 0x4018620: (within /lib/ld-2.9.so)

 No filename:linenumber here. What does it take to get debug symbols from
 /lib/ld-2.9.so?

 Don't emerge with debug -glibc-omitfp.  Emerge with splitdebug in
 FEATURES.
Done:
Conditional jump or move depends on uninitialised value(s)
   at 0x400C0AC: _dl_relocate_object (in /lib/ld-2.9.so)

Now it at least shows the function name. But still no
filename:linenumber. Maybe I need debug for that after all?



Re: [gentoo-user] Re: What does it take to get debug symbols from /lib/ld-2.9.so?

2009-09-06 Thread Erik
Nikos Chantziaras skrev:
 On 09/06/2009 11:22 AM, Erik wrote:
 Nikos Chantziaras skrev:
 On 09/06/2009 09:43 AM, Erik wrote:
 I have emerged glibc with debug -glibc-omitfp and restarted the
 system. But when I execute valgrind
 /usr/lib/mozilla-firefox/firefox I
 only see things like this:
 Invalid read of size 4
  at 0x4018620: (within /lib/ld-2.9.so)

 No filename:linenumber here. What does it take to get debug symbols
 from
 /lib/ld-2.9.so?

 Don't emerge with debug -glibc-omitfp.  Emerge with splitdebug in
 FEATURES.
 Done:
 Conditional jump or move depends on uninitialised value(s)
 at 0x400C0AC: _dl_relocate_object (in /lib/ld-2.9.so)

 Now it at least shows the function name. But still no
 filename:linenumber. Maybe I need debug for that after all?

 Just -g in CFLAGS.

Ok, I added this to /etc/portage/env/sys-libs/glibc-2.9_p20081201-r2:
pre_pkg_setup() {
 if ! hasq -g $CFLAGS ; then
  elog Adding -g to CFLAGS for $PN-$PV to locate errors
reported by Valgrind.
  CFLAGS=$CFLAGS -g
 fi
}


Then I emerged glibc. It printed the elog message that I added and
included -g in the compile commands. Then I restarted the system. But
still no filename:linenumber in Valgrind.




Re: [gentoo-user] Question about the Live CD

2009-01-03 Thread Erik Hahn
On Sat, Jan 03, 2009 at 04:51:58PM +0100, Christian wrote:
 Hi all,
 The 2008 Live CD, does that include Gnome 2.24? Or is KDE being used?
 Many thanks for any info!

XFCE, I think. Before it was Gnome.


pgpmPVrcJmiZ0.pgp
Description: PGP signature


Re: [gentoo-user] Gentoo File Manager

2008-12-22 Thread Erik Hahn
On Mon, Dec 22, 2008 at 05:05:46PM +, Mick wrote:
 Hi All,
 
 I am trying out the Gentoo File Manager, but have run aground with the way it 
 opens certain types of files.  How can I create an association to e.g. use 
 xpdf to open pdf files and OOo (oowriter) to open .odt and .doc files?  All I 
 get now is a plain text editor firing up and opening such files.  Same 
 applies with pictures, videos, etc.

I'm afraid you're posting to the wrong list. This one belongs to the
distribution Gentoo, not the file manager.

-Erik

-- 
v4sw5RUYhw2ln3pr5ck0ma2u7Lw3+2Xm0l6/7Gi2e2t3b6AKMen5+7a16s0Sr1p-8.12/-6.56g6OR


pgptnOfg2q9LB.pgp
Description: PGP signature


[gentoo-user] Mouse keyboard broken after upgrade to xorg-server-1.5.2

2008-12-02 Thread Erik Hahn
I just upgraded xorg-server to 1.5.2 and ati-drivers tp 8.522-r2. Now
keyboard and mouse don't work in X - gpm, qingy and virtual terminals
work fine however. Rebuilding the drivers didn't help

I attach emerge --info output, this is my package.use entry for
xorg-server:

x11-base/xorg-serverdri -nptl -minimal xorg

-Erik

-- 
v4sw5RUYhw2ln3pr5ck0ma2u7Lw3+2Xm0l6/7Gi2e2t3b6AKMen5+7a16s0Sr1p-8.12/-6.56g6OR

X.Org X Server 1.5.2
Release Date: 10 October 2008
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.27-a-00063-g28bd6a0 i686 
Current Operating System: Linux eriks 2.6.27-a-00063-g28bd6a0 #2 PREEMPT Mon 
Dec 1 21:18:30 CET 2008 i686
Build Date: 01 December 2008  10:19:39PM
 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Tue Dec  2 17:52:12 2008
(==) Using config file: /etc/X11/xorg.conf
(==) ServerLayout aticonfig Layout
(**) |--Screen aticonfig-Screen[0]-0 (0)
(**) |   |--Monitor aticonfig-Monitor[0]-0
(**) |   |--Device aticonfig-Device[0]-0
(==) Automatically adding devices
(==) Automatically enabling devices
(==) Including the default font path 
/usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/OTF,/usr/share/fonts/Type1/,/usr/share/fonts/100dpi/,/usr/share/fonts/75dpi/.
(**) FontPath set to:
/usr/share/fonts/misc/,
/usr/share/fonts/TTF/,
/usr/share/fonts/100dpi/,
/usr/share/fonts/75dpi/,
/usr/share/fonts/misc/,
/usr/share/fonts/TTF/,
/usr/share/fonts/OTF,
/usr/share/fonts/Type1/,
/usr/share/fonts/100dpi/,
/usr/share/fonts/75dpi/
(**) ModulePath set to /usr/lib/xorg/modules
(**) Extension Composite is disabled
(II) Cannot locate a core pointer device.
(II) Cannot locate a core keyboard device.
(II) The server relies on HAL to provide the list of input devices.
If no devices become available, reconfigure HAL or disable 
AllowEmptyInput.
(II) Open ACPI successful (/var/run/acpid.socket)
(II) Loader magic: 0x81d3280
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 4.1
X.Org XInput driver : 2.1
X.Org Server Extension : 1.1
X.Org Font Renderer : 0.6
(II) Loader running on linux
(++) using VT number 7

(--) PCI:*([EMAIL PROTECTED]:0:0) ATI Technologies Inc R420 JI [Radeon X800PRO] 
rev 0, Mem @ 0xc000/0, 0xcfef/0, I/O @ 0xb800/0, BIOS @ 
0x/131072
(--) PCI: ([EMAIL PROTECTED]:0:1) ATI Technologies Inc R420 [Radeon X800 
PRO/GTO] (Secondary) rev 0, Mem @ 0xb800/0, 0xcfee/0
(II) System resource ranges:
[0] -1  0   0x - 0x (0x1) MX[B]
[1] -1  0   0x000f - 0x000f (0x1) MX[B]
[2] -1  0   0x000c - 0x000e (0x3) MX[B]
[3] -1  0   0x - 0x0009 (0xa) MX[B]
[4] -1  0   0x - 0x (0x1) IX[B]
[5] -1  0   0x - 0x (0x1) IX[B]
(II) extmod will be loaded by default.
(II) dbe will be loaded by default.
(II) glx will be loaded. This was enabled by default and also specified in 
the config file.
(II) freetype will be loaded. This was enabled by default and also specified 
in the config file.
(II) record will be loaded by default.
(II) dri will be loaded by default.
(II) LoadModule: xtrap

(II) Loading /usr/lib/xorg/modules/extensions//libxtrap.so
(II) Module xtrap: vendor=X.Org Foundation
compiled for 1.5.2, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 1.1
(II) Loading extension DEC-XTRAP
(II) LoadModule: freetype

(II) Loading /usr/lib/xorg/modules/fonts//libfreetype.so
(II) Module freetype: vendor=X.Org Foundation  the After X-TT Project
compiled for 1.5.2, module version = 2.1.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.6
(II) Loading font FreeType
(II) LoadModule: glx

(II) Loading /usr/lib/xorg/modules/extensions//libglx.so
(II) Module glx: vendor=X.Org Foundation
compiled for 7.4.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 1.1
(**) AIGLX enabled
(II) Loading extension GLX
(II) LoadModule: extmod

(II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
(II) Module extmod: vendor=X.Org Foundation
compiled for 1.5.2, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 1.1
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading

Re: [gentoo-user] Re: Mouse keyboard broken after upgrade to xorg-server-1.5.2

2008-12-02 Thread Erik Hahn
On Tue, Dec 02, 2008 at 07:14:27PM +0200, Nikos Chantziaras wrote:
 Erik Hahn wrote:
 I just upgraded xorg-server to 1.5.2 and ati-drivers tp 8.522-r2. Now
 keyboard and mouse don't work in X

 Pay attention to what the xorg-server ebuild tells you.  It even beeps  
 like crazy to get your attention.  It tells you exactly what to do if  
 those drivers stop working.

If you had actually read my mail you knew that I did rebuild all
drivers, as the ebuild told me. In addition, there aren't any module
mismatch errors in the Xorg.0.log, in fact there aren't any errors at
all.

-Erik

-- 
v4sw5RUYhw2ln3pr5ck0ma2u7Lw3+2Xm0l6/7Gi2e2t3b6AKMen5+7a16s0Sr1p-8.12/-6.56g6OR


pgpDtsObkM0y4.pgp
Description: PGP signature


Re: [gentoo-user] Mouse keyboard broken after upgrade to xorg-server-1.5.2

2008-12-02 Thread Erik Hahn
On Tue, Dec 02, 2008 at 06:15:48PM +0100, Uwe wrote:
 On Tuesday 02 December 2008 18:02:37 Erik Hahn wrote:
  I just upgraded xorg-server to 1.5.2 and ati-drivers tp 8.522-r2. Now
  keyboard and mouse don't work in X - gpm, qingy and virtual terminals
  work fine however. Rebuilding the drivers didn't help
 
  I attach emerge --info output, this is my package.use entry for
  xorg-server:
 
  x11-base/xorg-serverdri -nptl -minimal xorg
 
  -Erik
 
 Hi
 
 If they are not configured in your xorg.conf-ServerLayout, then they can't 
 work :
 
 It should look like this:
 
 Section ServerLayout
   Identifier aticonfig Layout
   Screen  0  aticonfig-Screen[0]-0 0 0
   InputDevice   Keyboard0
   InputDevice   Mouse0 
 EndSection

That fixed it, thanks. Server 1.4 always worked without these entries.

-Erik


pgpV3Na1aiWvm.pgp
Description: PGP signature


[gentoo-user] /usr/lib/perl5: file not recognized: Is a directory

2008-11-18 Thread Erik Hahn
Many packages (example: rxvt-unicode) fail like this:

---
i686-pc-linux-gnu-g++ -I.. -I. -I. -I./../libev -DHAVE_CONFIG_H 
-I/usr/include/freetype2   -O2 -march=athlon-xp -pipe -fomit-frame-pointer -w 
-DDEBUG_STRICT  -c ev_cpp.C
i686-pc-linux-gnu-gcc -Wl,-O1 -Wl,--sort-common -Wl,--as-needed -s -o rxvt 
rxvt.o background.o command.o rxvtfont.o init.o logging.o main.o misc.o 
ptytty.o proxy.o screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o 
scrollbar-xterm.o scrollbar-plain.o xdefaults.o encoding.o rxvttoolkit.o 
rxvtutil.o keyboard.o fdpass.o ev_cpp.o  -lm  -lsupc++ -lXft -lXrender 
-lfontconfig -lfreetype -lz -lX11 -lX11  /usr/lib/perl5
/usr/lib/perl5: file not recognized: Is a directory
collect2: ld returned 1 exit status
make[1]: *** [rxvt] Error 1
make[1]: Leaving directory 
`/var/tmp/portage/x11-terms/rxvt-unicode-9.05-r3/work/rxvt-unicode-9.05/src'
make: *** [all] Error 1
---

Remergin pgerl didn't help. I don't have anything special in my make.conf
(It's attached). Any ideas what goes wrong here? Google didn't help at
all.

-- 
v4sw5RUYhw2ln3pr5ck0ma2u7Lw3+2Xm0l6/7Gi2e2t3b6AKMen5+7a16s0Sr1p-8.12/-6.56g6OR
## Optimizing Flags

CFLAGS=-O2 -march=athlon-xp -pipe -fomit-frame-pointer
CXXFLAGS=${CFLAGS}
LDFLAGS=-Wl,-O1 -Wl,--sort-common -Wl,--as-needed -s

## Overlays

## General configuration

CHOST=i686-pc-linux-gnu
ACCEPT_KEYWORDS=x86 ~x86

GENTOO_MIRRORS=ftp://pandemonium.tiscali.de/pub/gentoo/ \
ftp://de-mirror.org/distro/gentoo/ \
http://ftp-stud.fht-esslingen.de/pub/Mirrors/gentoo/ \
http://de-mirror.org/distro/gentoo/ \
ftp://ftp-stud.fht-esslingen.de/pub/Mirrors/gentoo/;

SYNC=rsync://rsync.europe.gentoo.org/gentoo-portage

FEATURES=parallel-fetch unmerge-orphans sandbox userpriv usersandbox
PORTAGE_NICENESS=15
MAKEOPTS=-j2

CCACHE_DIR=/var/tmp/ccache
CCACHE_SIZE=5G

DISTDIR=/var/paludis/distfiles/
PKGDIR=/var/paludis/packages/

## Use Flags

USE=-* 3dnow 3dnowext acpi a52 aac amr alsa bzip2 cairo cups curl divx  dvd 
ffmpeg flac gdbm hal inotify  jpeg kde4  logrotate matroska midi mmx mmxext mp3 
mpeg  mplayer musepack nptl nptlonly nsplugin offensive ogg samba gg opengl pam 
paludis pdf phonon png quicktime qt4 libcaca readline samba sdl speex sse ssl 
svg tetex theora tiff truetype unicode usb vcd vim-syntax vorbis win32codecs 
wmf wmp xulrunner xv xvid zlib zsh-completion dri xorg

LINGUAS=en
VIDEO_CARDS=fglrx vesa
INPUT_DEVICES=mouse keyboard joystick


Re: [gentoo-user] lzma archives

2008-11-05 Thread Erik Hahn
On Wed, Nov 05, 2008 at 11:38:44PM +0700, Nickolay Hodyunya wrote:
 How to extract lzma archives?

emerge lzma-utils  man lzma

-- 
v4sw5RUYhw2ln3pr5ck0ma2u7Lw3+2Xm0l6/7Gi2e2t3b6AKMen5+7a16s0Sr1p-5.62/-6.56g6OR



Re: [gentoo-user] fix for e2fsprogs BLOCK?

2008-11-05 Thread Erik Hahn
On Wed, Nov 05, 2008 at 07:16:02PM +0100, Dirk Heinrichs wrote:
 or, simpler with paludis:
 
 paludis -i --dl-blocks discard e2fsprogs
 
 If the block still exists after you unmerged com_err and ss, use emerge with -
 t to find out which package still wants them end re-emerge this first.

It might be a good idea to remove the entries in the package database
afterwards.

-Erik

-- 
v4sw5RUYhw2ln3pr5ck0ma2u7Lw3+2Xm0l6/7Gi2e2t3b6AKMen5+7a16s0Sr1p-5.62/-6.56g6OR



[gentoo-user] Subversion broken

2008-11-04 Thread Erik Hahn
Suddenly (at least I don't know since when it doesn't work) I get this
error whenever I use svn:

svn: Failed to find label 'NULL' for URL '/svnroot/arcon/trunk/overlay'
svn: Failed to find label 'NULL' for URL '/svnroot/arcon/trunk/overlay'

Subversion (1.5.4) is build with 

USE:-apache2 -bash-completion -berkdb
-debug -doc -dso -emacs -extras -java -nls -perl -python -ruby -sasl
vim-syntax webdav-neon -webdav-serf

CFLAGS=-march=native -pipe -Os -fomit-frame-pointer -fno-ident -w
-fno-strict-aliasing

and gcc 4.3.

I've searched the web but couldn't find anything useful.

-Erik

-- 
v4sw5RUYhw2ln3pr5ck0ma2u7Lw3+2Xm0l6/7Gi2e2t3b6AKMen5+7a16s0Sr1p-5.62/-6.56g6OR



[gentoo-user] Why do these packages depend on corefonts?

2008-10-31 Thread Erik Hahn
Why the hell do these packages depend on corefonts?:

app-emulation/wine-1.1.6
net-www/netscape-flash-10_rc20080915
x11-misc/slim-1.3.1

It somehow makes sense with wine, maybe even - remotely - with flash.
But why, why should *slim* need Windows fonts to work?

-- 
hackerkey://v4sw5RUYhw2ln3pr5ck0ma2u7Lw3+2Xm0l6/7Gi2e2t3b6AKMen5+7a16s0Sr1p-5.62/-6.56g6OR



Re: [gentoo-user] what can I do besides waiting or complaining about missing kompozer?

2008-10-26 Thread Erik Hahn
On Sat, Oct 25, 2008 at 06:41:09PM -0200, Norberto Bensa wrote:
 On Saturday October 25 2008 12:21:01 Dirk Heinrichs wrote:
  Am Samstag, 25. Oktober 2008 15:32:50 schrieb Norberto Bensa:
  
   WTF is playman!?
 
  The paludis equivalent of layman.
 
 If development has moved to paludis, I guess I'll have to move to it.

You don't, portage is still developed and Gentoo's main package manager.
The only thing paludis was necessary for was the kde 4 overlay.

However, it's worth a try even if you don't necessarily need it. Paludis
can use portage's configuration files so you can switch back if you
don't like it.
-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] Another Abiword build failure

2008-10-24 Thread Erik Hahn
On Wed, Oct 22, 2008 at 06:41:18PM +0200, Erik Hahn wrote:
 On Wed, Oct 22, 2008 at 11:50:55AM +0200, Liviu Andronic wrote:
  Hello Erik,
  
  First two questions that come to me:
  - did you already emerge -DNu abiword and
  - did you try with the -gnome USE flag?
 
 gnome USE flag has never been enabled, I'm now doing complete update
 (it's high time anyway), that will take a while.

After the update it has compiled fine.

-Erik
-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] gentoo-wiki.com - Needs your help!

2008-10-23 Thread Erik Hahn
On Wed, Oct 22, 2008 at 09:26:36PM -0500, deface wrote:
I am reaching out to the community in search of someone, or someone  
 who may know someone at either TEL-X (http://www.telx.com)
 or 56Marietta (http://www.56marietta.com). I'm sure everyone on this ML  
 is aware that wiki is down. It may not concern some of you, as
 it is not an official documentation site; but for the rest of us, it is  
 a very helpful resource. You can read the current status of the wiki as
 thrasher7 (Mike Valstar - mikevalstarREMOVEME@gmail.com) blogs it. Our  
 options are stated, but we hope to find another through
 this e-mail. If anyone has any sort of contact with anyone at either of  
 these locations, please let me or Mike know.

The wiki can still be accessed via Google's cache.

-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] firefox crashes

2008-10-23 Thread Erik Hahn
On Thu, Oct 23, 2008 at 10:48:47AM -0400, Simon wrote:
 Hi,
   recently (dunno why or when exactly) firefox has started crashing when  
 loading certain pages.  Two pages I'm used to access often that are 
 causing the problem are my banking site (once logged in) and 
 linode.com/members...  the error is a bit cryptic and may involve 
 javascript (see the error below).

 I tried recompiling firefox, but got the exact same result...  so I tried 
 a `emerge -e mozilla-firefox`, (which btw, on the cheapest linode took a 
 bit more than 3 hours).  So, the host basically compilled the binpkgs and 
 i installed them on my desktop, same issue happened after...

 Here's the use flags for ff, also all files related to portage config  
 (make.conf,etc) are exactly the same on all my machines, only world is 
 different.

What does 'emerge --info' say? Does mozilla-firefox-bin work?

 CSS Error (http://www.linode.com/linode.css?2 :113.31): Unknown property  
 '-khtml-border-top-left-radius'.  Declaration dropped.
Those are only CSS errors, no problem

-Erik
-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] what can I do besides waiting or complaining about missing kompozer?

2008-10-22 Thread Erik Hahn
On Wed, Oct 22, 2008 at 09:52:04PM +0800, [EMAIL PROTECTED] wrote:
 What can I do besides waiting forever for compozer to be added to the
 portage or complaining in this list?
 
 P. S. I am also willing to start tutorial and mange to contribute
 ebuilds to gentoo project, e.g. for ThinkingRock, for Pentaho Report
 (these software didn't make their way into Gentoo Portage perhaps
 because nobody make ebuilds for them). but I really hesitate because I
 can see in bugzilla someone did ebuilds for kompozer years ago and never
 accepted (so does ebuilds for amaya, for gpass etc), so if I contribute
 ebuilds: but knowing it can be not accepted for years, I lost the
 motivation.

There is an ebuild for Kompzer in arcon overlay. 

-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] Another Abiword build failure

2008-10-22 Thread Erik Hahn
On Wed, Oct 22, 2008 at 11:50:55AM +0200, Liviu Andronic wrote:
 Hello Erik,
 
 First two questions that come to me:
 - did you already emerge -DNu abiword and
 - did you try with the -gnome USE flag?

gnome USE flag has never been enabled, I'm now doing complete update
(it's high time anyway), that will take a while.

-Erik

-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



[gentoo-user] Another Abiword build failure

2008-10-21 Thread Erik Hahn
I'm unsuccesfully trying to compile app-office/abiword-2.6.4. The error
is a different one than in the other thread, though.  I hope somebody
of you has a clue what's wrong and how I can fix it.

Thanks in advance, 

-Erik

Relevant output:

-ed -lgthread-2.0 -lrt -lglib-2.0   -lgoffice-0 -lgsf-1 -lglade-2.0 
-lgnomeprint-2-2 -lz -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 
-lpangocairo-1.0 -lart_lgpl_2 -lxml2 -lpango-1.0 -lcairo -lgobject-2.0 
-lgmodule-2.0 -ldl -lglib-2.0
../../../../src/af/xap/libXap.a(xap_UnixDialogHelper.o): In function 
`centerDialog(_GtkWidget*, _GtkWidget*, bool)':
xap_UnixDialogHelper.cpp:(.text+0x15f8): undefined reference to 
`go_dialog_guess_alternative_button_order'
../../../../src/af/ev/libEv.a(ev_UnixToolbar.o): In function 
`EV_UnixToolbar::synthesize()':
ev_UnixToolbar.cpp:(.text+0x122b): undefined reference to `go_color_group_fetch'
ev_UnixToolbar.cpp:(.text+0x1251): undefined reference to `go_combo_color_new'
ev_UnixToolbar.cpp:(.text+0x12b5): undefined reference to 
`go_combo_box_get_type'
ev_UnixToolbar.cpp:(.text+0x12d1): undefined reference to 
`go_combo_box_set_relief'
ev_UnixToolbar.cpp:(.text+0x12d6): undefined reference to 
`go_combo_color_get_type'
ev_UnixToolbar.cpp:(.text+0x12f2): undefined reference to 
`go_combo_color_set_instant_apply'
ev_UnixToolbar.cpp:(.text+0x1f47): undefined reference to `go_color_group_fetch'
ev_UnixToolbar.cpp:(.text+0x1f6e): undefined reference to `go_combo_color_new'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgnomeprintui-2-2.so: undefined 
reference to `gpa_option_menu_new'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgoffice-0.so: undefined 
reference to `gog_legend_get_type'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgoffice-0.so: undefined 
reference to `go_number_format_shutdown'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgoffice-0.so: undefined 
reference to `gog_series_lines_get_type'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgnomeprintui-2-2.so: undefined 
reference to `gpa_spinbutton_get_type'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgoffice-0.so: undefined 
reference to `go_number_format_init'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgnomeprintui-2-2.so: undefined 
reference to `gpa_paper_preview_item_set_logical_margins'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgoffice-0.so: undefined 
reference to `go_fonts_shutdown'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgoffice-0.so: undefined 
reference to `gog_grid_get_type'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgnomeprintui-2-2.so: undefined 
reference to `gpa_paper_preview_item_new'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgoffice-0.so: undefined 
reference to `gog_grid_line_get_type'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgoffice-0.so: undefined 
reference to `go_currency_date_format_shutdown'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgoffice-0.so: undefined 
reference to `gog_chart_get_type'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgoffice-0.so: undefined 
reference to `gog_plugin_services_shutdown'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgnomeprintui-2-2.so: undefined 
reference to `gpa_settings_selector_get_type'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgoffice-0.so: undefined 
reference to `gog_axis_line_get_type'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgnomeprintui-2-2.so: undefined 
reference to `gpa_spinbutton_set_unit'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgoffice-0.so: undefined 
reference to `gog_axis_get_type'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgoffice-0.so: undefined 
reference to `gog_series_get_type'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgnomeprintui-2-2.so: undefined 
reference to `gpa_checkbutton_new'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgnomeprintui-2-2.so: undefined 
reference to `gpa_paper_preview_item_get_type'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgnomeprintui-2-2.so: undefined 
reference to `gpa_widget_get_type'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgnomeprintui-2-2.so: undefined 
reference to `gpa_transport_selector_check_consistency'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgoffice-0.so: undefined 
reference to `gog_reg_eqn_get_type'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgnomeprintui-2-2.so: undefined 
reference to `gpa_spinbutton_update'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgoffice-0.so: undefined 
reference to `go_math_init'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgnomeprintui-2-2.so: undefined 
reference to `gpa_transport_selector_get_type'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgnomeprintui-2-2.so: undefined 
reference to `gpa_printer_selector_get_type'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgoffice-0.so: undefined 
reference to `go_fonts_init'
/usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../libgoffice-0.so: undefined 
reference to `goc_plugin_services_shutdown

Re: [gentoo-user] progress everywhere !

2008-10-20 Thread Erik Hahn
On Sun, Oct 19, 2008 at 07:58:09PM +0200, Alan McKinnon wrote:
 For probably the first time ever, I just had a look at that. And I'm asking 
 myself - why does OOo have nsplugins support at all?
 
 It's an office suite - I use it mostly to read documents other people send 
 me, 
 and because antiword is a little too minimal. What could OOo possibly do in 
 my specific case that requires browser plugins? It's not like I'm in the 
 habit of embedding java and flash applets into impress presentations

With that use flag it provides plugins for viewing documents inside the
browser,

-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] progress everywhere !

2008-10-20 Thread Erik Hahn
On Mon, Oct 20, 2008 at 12:35:00PM +0200, Alan McKinnon wrote:
 On Monday 20 October 2008 12:26:11 Erik Hahn wrote:
  On Sun, Oct 19, 2008 at 07:58:09PM +0200, Alan McKinnon wrote:
   For probably the first time ever, I just had a look at that. And I'm
   asking myself - why does OOo have nsplugins support at all?
  
   It's an office suite - I use it mostly to read documents other people
   send me, and because antiword is a little too minimal. What could OOo
   possibly do in my specific case that requires browser plugins? It's not
   like I'm in the habit of embedding java and flash applets into impress
   presentations
 
  With that use flag it provides plugins for viewing documents inside the
  browser,
 
 Oh, OK. 
 
 So the flag lets browsers use OOo stuff, rather than the other way round as I 
 assumed?

Yes, more or less like some PDF viewers.

-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] Slim: After zapping X fallback to console

2008-10-17 Thread Erik Hahn
On Fri, Oct 17, 2008 at 02:23:55PM +0200, Geralt wrote:
 On Thu, Oct 16, 2008 at 8:36 PM, Erik Hahn [EMAIL PROTECTED] wrote:
  On Thu, Oct 16, 2008 at 05:38:26PM +0200, Geralt wrote:
  Although it would be possible to include this respawning into slim
  (and I suppose that gdm and kdm have this feature?) it is much more
  work than checking in xdm is slim is still up and if not restarting it
  (since xdm is slim's parent process it gets even informed about it, so
  no polling would be necessary!).
 
  xdm isn't slim's parent process, slim is a replacement for xdm. Or do
  you mean the xdm init script?
 I meant the xdm init script, since I thought we were talking all the
 time about the xdm init script when saying xdm. Did I misunderstand
 something in the previous posts?

No, I just wasn't absolutely sure. xdm was mentioned once as
/etc/init.d/xdm, once someone said something about a xdm.

-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] Slim: After zapping X fallback to console

2008-10-16 Thread Erik Hahn
On Thu, Oct 16, 2008 at 05:38:26PM +0200, Geralt wrote:
 Although it would be possible to include this respawning into slim
 (and I suppose that gdm and kdm have this feature?) it is much more
 work than checking in xdm is slim is still up and if not restarting it
 (since xdm is slim's parent process it gets even informed about it, so
 no polling would be necessary!).

xdm isn't slim's parent process, slim is a replacement for xdm. Or do
you mean the xdm init script?

-Erik

-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] Slim: After zapping X fallback to console

2008-10-16 Thread Erik Hahn
On Thu, Oct 16, 2008 at 02:52:40PM -0500, Paul Hartman wrote:
 On Thu, Oct 16, 2008 at 2:17 PM, Benjamin Leggett [EMAIL PROTECTED] wrote:
  On Wed, 15 Oct 2008 22:29:31 +0200
  Erik Hahn [EMAIL PROTECTED] wrote:
 
  On Wed, Oct 15, 2008 at 07:14:08PM +0200, [EMAIL PROTECTED] wrote:
  
   Hi,
  
The login manager slim, which is started in daemon mode,
get killed when X is left by pressing Ctrl-Alt-Backspace
(zapping X) -- there is a fallback to the login of the
root console instead of getting a new login screen of slim.
 
  Is this actually a bug or intended behaviour? If it's a bug, is there
  a version that works properly?
 
  It's supposed to do this. GDM, and I think KDM, both respawn after being
  killed, but IMHO this isn't a good thing. If you kill something, you
  don't want it coming back to life by itself. If there's a problem
  somewhere in your X server and the disply manager constantly dies and
  tries to restart, that can get annoying. It's not in slim because it
  shouldn't really be default behaviour. Might not be bad to provide an
  conf file option for this behavior, though.
 
 You can try Qingy as an alternative for using an xdm:
 
 http://gentoo-wiki.com/TIP_Fix_The_Login_Security_Hole

Which unfortunately involves having to set up the framebuffer, in
addition starting an xdm preloads X (starting X takes only a few
seconds, but still) . Does quingy restart X on
ctrl-alt-del, anyway?

-Erik 

-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] Slim: After zapping X fallback to console

2008-10-15 Thread Erik Hahn
On Wed, Oct 15, 2008 at 07:14:08PM +0200, [EMAIL PROTECTED] wrote:
 
 Hi,
 
  The login manager slim, which is started in daemon mode,
  get killed when X is left by pressing Ctrl-Alt-Backspace
  (zapping X) -- there is a fallback to the login of the
  root console instead of getting a new login screen of slim.

Is this actually a bug or intended behaviour? If it's a bug, is there a
version that works properly?

-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] Kernel crash - howto find out what happened?

2008-10-12 Thread Erik Hahn
On Sun, Oct 12, 2008 at 11:08:57AM +0200, Alexander Puchmayr wrote:
 Since I'm using the box as desktop, I have only a frozen X-server and no 
 possibility to switch to console (maybe there's some hint whats happened?).
 
 How do I find out what happened, why it crashed? Modern systems have 
 MCE-logs, but how do I read it in this case? After reboot, all information 
 seems to be gone since mcelog is always empty.
 Alex

If it's a kernel panic you actually get debugging information on the
console. It's just hidden behind the X server. Maybe you can reproduce
the problem working without X (If you can do your work purely from the
VTs)

Do you use any proprietary drivers?

-Erik

-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] Replacements for ivman

2008-10-11 Thread Erik Hahn
On Sat, Oct 11, 2008 at 01:24:03PM +0200, Alan McKinnon wrote:
 I'm looking into ivman and pmount for automounting amongst other things while 
 using e17.
 
 ivman was last updated Feb 2007 according to the official sourceforge page, 
 and the maintainer is listed as . 18 months is a long time, so this 
 package looks like it's unmaintained.

Does software rot when it's unmaintained or why is that a problem?

The only problem I can see are unfixed bugs but these exist in
maintained packages as well.

-Erik
-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] Replacements for ivman

2008-10-11 Thread Erik Hahn
On Sat, Oct 11, 2008 at 05:24:27PM -0300, Norberto Bensa wrote:
 Quoting Erik Hahn [EMAIL PROTECTED]:

 Does software rot when it's unmaintained or why is that a problem?

 No, but it develops incompatibilities over time...

So far, it works fine.

-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] get rid of xf86-video-* drivers

2008-10-09 Thread Erik Hahn
Please, disable HTML in your client or at least tell it to send a plain
text version as well. I see hardly readable raw HTML code in mutt.

-Erik

-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] get rid of xf86-video-* drivers

2008-10-09 Thread Erik Hahn
On Thu, Oct 09, 2008 at 01:04:00PM -0200, Norberto Bensa wrote:
 Quoting Erik Hahn [EMAIL PROTECTED]:

 Please, disable HTML in your client or at least tell it to send a plain
 text version as well. I see hardly readable raw HTML code in mutt.

 Then change your MUA :)

Sure, but that's the one reason bugging me ;)
-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] Прод ажа квартир.Скидки стано вятся меньше...

2008-10-08 Thread Erik Hahn
There are language-specific mailing lists, see
http://www.gentoo.org/main/en/lists.xml 

-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] kein Profile

2008-10-08 Thread Erik Hahn
Poste bitte entweder auf English oder in gentoo-user-de.

-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] KDE 4.1.2... a winner!

2008-10-07 Thread Erik Hahn
On Tue, Oct 07, 2008 at 11:13:33PM +0400, Andrew Gaydenko wrote:
 I have found another KDE app which is important sufficiently to delay 
 switching to KDE4 - the app is k3b, which still isn't ported. If I 
 understand well, there isn't any minimal apps list (and k3b, would be in 
 the list, I think) which must be ported to KDE4 before unmasking KDE4 in 
 portage. Is it so?

Why should there be one? The fact k3b isn't ported yet doesn't break any
other KDE package. 

-Erik   

-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



[gentoo-user] media-sound/moc-2.5.0_alpha3-r2 fails to build

2008-10-06 Thread Erik Hahn
I have to rebuild moc to fix linkage. The build fails every time,
independent of CFLAGS and USE flags:

btool: compile:  i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. 
-pthread -O2 -mcpu=athlon-xp -pipe -fomit-frame-pointer -fno-strict-aliasing 
-Wall -W -I/usr/include/alsa -MT libmp3_decoder_la-mp3.lo -MD -MP -MF 
.deps/libmp3_decoder_la-mp3.Tpo -c mp3.c  -fPIC -DPIC -o 
.libs/libmp3_decoder_la-mp3.o
`-mcpu=' is deprecated. Use `-mtune=' or '-march=' instead.
libtool: compile:  i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. 
-pthread -O2 -mcpu=athlon-xp -pipe -fomit-frame-pointer -fno-strict-aliasing 
-Wall -W -I/usr/include/alsa -MT libmp3_decoder_la-xing.lo -MD -MP -MF 
.deps/libmp3_decoder_la-xing.Tpo -c xing.c  -fPIC -DPIC -o 
.libs/libmp3_decoder_la-xing.o
`-mcpu=' is deprecated. Use `-mtune=' or '-march=' instead.
mv -f .deps/libmp3_decoder_la-xing.Tpo .deps/libmp3_decoder_la-xing.Plo
mv -f .deps/libmp3_decoder_la-mp3.Tpo .deps/libmp3_decoder_la-mp3.Plo
/bin/bash ../../libtool --tag=CC   --mode=link i686-pc-linux-gnu-gcc -I../.. 
-pthread -O2 -mcpu=athlon-xp -pipe -fomit-frame-pointer -fno-strict-aliasing 
-Wall -W -I/usr/include/alsa-module -avoid-version -Wl,-O1 
-Wl,--sort-common -Wl,--as-needed -s -export-dynamic -o libmp3_decoder.la 
-rpath /usr/lib/moc/decoder_plugins libmp3_decoder_la-mp3.lo 
libmp3_decoder_la-xing.lo -lmad -lid3tag -lz  -lm -ldl 
libtool: link: i686-pc-linux-gnu-gcc -shared  .libs/libmp3_decoder_la-mp3.o 
.libs/libmp3_decoder_la-xing.o   -lmad /usr/lib/libid3tag.so 
/usr/local/bin/usr/bin/bin/opt/bin/usr/i686-pc-linux-gnu/gcc-bin/4.3.1/opt/intel/cc/10.1.017/bin/usr/lib/plan9/bin/usr/kde/4.1/bin/usr/kde/3.5/bin/usr/qt/3/bin/usr/games/bin/opt/openoffice.org3/program/
 -lz -lm -ldl  -pthread -mcpu=athlon-xp -Wl,-O1 -Wl,--sort-common 
-Wl,--as-needed   -pthread -Wl,-soname -Wl,libmp3_decoder.so -o 
.libs/libmp3_decoder.so
i686-pc-linux-gnu-gcc: 
/usr/local/bin/usr/bin/bin/opt/bin/usr/i686-pc-linux-gnu/gcc-bin/4.3.1/opt/intel/cc/10.1.017/bin/usr/lib/plan9/bin/usr/kde/4.1/bin/usr/kde/3.5/bin/usr/qt/3/bin/usr/games/bin/opt/openoffice.org3/program/:
 No such file or directory
make[3]: *** [libmp3_decoder.la] Error 1
make[3]: Leaving directory 
`/var/tmp/portage/media-sound/moc-2.5.0_alpha3-r2/work/moc-2.5.0-alpha3/decoder_plugins/mp3'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory 
`/var/tmp/portage/media-sound/moc-2.5.0_alpha3-r2/work/moc-2.5.0-alpha3/decoder_plugins'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory 
`/var/tmp/portage/media-sound/moc-2.5.0_alpha3-r2/work/moc-2.5.0-alpha3'
make: *** [all] Error 2

That happens both with Paludis and Portage. Does anyone have an idea what goes 
wrong?

-Erik
-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] start-stop-daemon sets USER=root - expected behaviour?

2008-10-06 Thread Erik Hahn
On Mon, Oct 06, 2008 at 08:41:58AM +0200, Jil Larner wrote:
 Hi,
 
 Erik Hahn a écrit :
  It doesn't run the command as root but as normal user (it isn't setuid 
  either. All it does is setting the *variables* $USER and $HOME to the
  wrong values.
  
 Oh, I read too quickly :x And by the way didn't give the right command
 switch that are --chuid --user and --env. These should give you the
 result you wish. Should the program automatically set correct home and
 user ? I'd say this could be great, so you may report it as a bug or,
 more pobably, as a feature request.

No, it simply shouldn't change them, there's no reason to do that (to my
knowledge).
 
  This implementation is not by Debian:
  
  This is a complete re-implementation with the process finding code in 
  the OpenRC library (librc, -lrc) so other programs can make use of it. 
 
 I didn't know. Where did you find this ?

Man page.

-Erik

-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] start-stop-daemon sets USER=root - expected behaviour?

2008-10-06 Thread Erik Hahn
On Mon, Oct 06, 2008 at 02:27:11PM +0200, Daniel Pielmeier wrote:
 2008/10/6 Erik Hahn [EMAIL PROTECTED]:
  No, it simply shouldn't change them, there's no reason to do that (to my
  knowledge).
 
 I think it is a big security issue if a normal user could start
 arbitrary daemons with root privileges. So you should file a bug at

It doesn't give anyone root privileges, it only sets wrong variables.
 
 I think only root should be able to execute start-stop-daemon and the
 user should be changed with the proper command line switches. I
 actually don't know if it is --chuid or --user as this has changed
 between old baselayout and new openrc.

Why's that? Running a program with user privileges is no security
problem at all. 

-Erik

-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



[gentoo-user] start-stop-daemon sets USER=root - expected behaviour?

2008-10-05 Thread Erik Hahn
I'm using start-stop-daemon for making sure rc.wmii runs only once (If
you don't know wmii's way of handling configs: it doesn't matter).
Although I run it as user, it sets USER=root and HOME=/root. Is this
behaviour expected or should I file a bug?

-Erik
-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] start-stop-daemon sets USER=root - expected behaviour?

2008-10-05 Thread Erik Hahn
On Sun, Oct 05, 2008 at 08:54:25PM +0200, Jil Larner wrote:
 You may wish to specify the --user parameter. As this tool is for system
 daemons (therefore located in /sbin), it seems obvious it starts daemons
 as root by default. I checked on my system and I don't have a setuid bit
 on this program, no more it starts any program when my wheel user
 executes the command. I've no error code, but no process is spawned.

It doesn't run the command as root but as normal user (it isn't setuid 
either. All it does is setting the *variables* $USER and $HOME to the
wrong values.

 If your non root user escalates privileges and is able to spawn a root
 process, *and* there is no setuid bit on /sbin/start-stop-daemon, you
 may fill a bug, if you have a procedure to reproduce it ;) Honestly, as
 it is a quite old debian tool, I don't think it's buggy ;)

This implementation is not by Debian:

 This is a complete re-implementation with the process finding code in 
 the OpenRC library (librc, -lrc) so other programs can make use of it. 

-Erik

-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] Gentoo-compatible wifi GUI?

2008-10-02 Thread Erik Hahn
On Thu, Oct 02, 2008 at 03:46:07PM +0100, Stroller wrote:
 Hi there,

 The DHL man has just been  taken my MacBook away to have its ego  
 stroked by professionally-trained Apple engineers. I thought in the  
 meantime I might try living the Linux lifestyle for a few days  have  
 (literally) dusted off my (not literarily) black  white Thinkpad.

 I've only used WEP so far, not wpa-supplicant, but I supposed I'd better 
 get the latter set up. So in light of that inexperience, please forgive 
 me if this is a dumb question, but are there any GUI wifi apps that sit 
 in the system tray, scan and let you connect to available networks, and 
 are also compatible with Gentoo's configuration files?

 Last time I used wifi under Gentoo one added the network name   
 encryption key to /etc/conf.d/net (or /etc/conf.d/wireless) and the  
 network scripts did the rest. Ideally, then, I'd like a GUI that scanned 
 for networks  added the details to the conf.d file. Is this a  
 reasonable expectation?

 BTW: I prefer KDE, if this is relevant.

 Stroller.

There's network-manager, it uses it's own config files, though.

-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] epiphany flash

2008-09-30 Thread Erik Hahn
On Tue, Sep 30, 2008 at 11:42:14AM -0700, Grant wrote:
 I've got flashblock installed and it works with youtube.com as far as
 being able to click and play the video, but not cnn.com.  Do you find
 it works pretty well in general?

I've never had any problem with it. Does it work without Flashblock?

There might be an icon in the status bar to temporarily disable
Flashblock completely (I've used Noscript, not Flashblock for a while,
though).

-Erik

-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] [OT] suggest not-net-hungry Linux

2008-09-26 Thread Erik Hahn
I think Suse would be suitable. AFAIK they have a updates-only policy
(you might even be able to choose only to use security updates but I'm
not sure - I used it only a short time) and use delta packages.

-Erik

-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] epiphany flash

2008-09-25 Thread Erik Hahn
On Thu, Sep 25, 2008 at 08:12:27AM -0700, Grant wrote:
 Firefox is crashing on me all the time.  I searched for an alternative
 and came up with epiphany.  I like it but I can't get flash to work.
Chances are Epiphany is more stable *because* you don't have Flash in
it - it often causes Firefix to crash. I recommend to either try one 
of the open source alternatives or install Flashblock [1].

[1] https://addons.mozilla.org/de/firefox/addon/433

-Erik
-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] epiphany flash

2008-09-25 Thread Erik Hahn
On Thu, Sep 25, 2008 at 08:54:52AM -0700, Grant wrote:
 Do you mean open-source alternatives to netscape-flash?  If so, can
 you recommend one?
I personally use netscape-flash because the open source don't support
flash completely. There are two alternatives:

* gnash
* swfdec (swfdec-mozilla for the plugin)

-Erik
-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



Re: [gentoo-user] Re: epiphany flash

2008-09-25 Thread Erik Hahn
On Thu, Sep 25, 2008 at 05:34:47PM +, James wrote:
 Seamonkey seems to be working fine with flash
 I do not use it tons, but a few times a day and it seems to be just
 fine with Seamonkey. This has not always been the case though
Whether flash works or not seems to be pretty random. I once could
improve the issue by reinstalling flash although everything was - 
actually - exactly the same as before reinstalling.

-Erik
-- 
hackerkey://v4sw5hw2ln3pr5ck0ma2u7LwXm4l7Gi2e2t4b7Ken4/7a16s0r1p-5.62/-6.56g5OR



  1   2   3   >