Re: [gentoo-user] Acrobat Reader 7
Just go to .adobe/Acrobat/7.0/JavaScripts and transform glob.settings.js into a symbolic to /dev/null hope that helps nico Am Dienstag 17 Mai 2005 18:51 schrieb Jorge Almeida: > On Tue, 17 May 2005, fire-eyes wrote: > > On Tue, 2005-05-17 at 09:20 -0700, Richard Fish wrote: > >> Has it annoyed you enough yet to turn on JavaScript? > > > > Hopefully not, documents which have been written to do so can then > > litrally call home. > > I _will not_ enable JavaSpook. > > What remains to be decided is whether I'll give up using Acrobat Reader. > > -- > Jorge Almeida -- mailto: [EMAIL PROTECTED] -- gentoo-user@gentoo.org mailing list
[gentoo-user] python - *** glibc detected ***
Hello list, a few days ago my creative urge forced me to learn python. As a first step I wanted to control ecasound by script. What a pity that it doesn't work. kernel: It's a 64bit applepro with Linux 2.6.22-sabayon #16 SMP PREEMPT Thu Dec 27 19:33:05 CET 2007 x86_64 Intel(R) Xeon(R) CPU 5130 @ 2.00GHz GenuineIntel GNU/Linux python: Python 2.5.1 (r251:54863, Feb 5 2008, 15:14:12) [GCC 4.1.2 (Gentoo 4.1.2 p1.0.1)] on linux2 ls -l `which python` lrwxrwxrwx 1 root root 18 10. Apr 00:04 /usr/bin/python -> /usr/bin/python2.5 I get: Chain operator status: ### Chain operator status (chainsetup 'pass_jack') ### Chain "chain01": 1. Lowpass filter: [1] cutoff-freq 100.0 *** glibc detected *** python: munmap_chunk(): invalid pointer: 0x2b8ca3a700d8 *** === Backtrace: = /lib/libc.so.6(cfree+0x1ac)[0x2b8ca48be7dc] /usr/lib64/python2.5/site-packages/pyecasound.so[0x2b8ca50ec6ee] /usr/lib/libpython2.5.so.1.0[0x2b8ca3c5fc80] /usr/lib/libpython2.5.so.1.0(PyDict_SetItem+0x118)[0x2b8ca3c603ff] /usr/lib/libpython2.5.so.1.0(_PyModule_Clear+0x1e8)[0x2b8ca3c65a58] /usr/lib/libpython2.5.so.1.0(PyImport_Cleanup+0x2ea)[0x2b8ca3cefbc3] /usr/lib/libpython2.5.so.1.0(Py_Finalize+0x95)[0x2b8ca3cfee1c] /usr/lib/libpython2.5.so.1.0(Py_Main+0xdb3)[0x2b8ca3d0f1f4] python(main+0x1b)[0x40081b] /lib/libc.so.6(__libc_start_main+0xf4)[0x2b8ca48651f4] python[0x400789] === Memory map: 0040-00401000 r-xp 08:12 6417361/usr/bin/python2.5 0060-00601000 r--p 08:12 6417361/usr/bin/python2.5 00601000-00602000 rw-p 1000 08:12 6417361/usr/bin/python2.5 00602000-006d9000 rw-p 00602000 00:00 0 [heap] I did "revdev-rebuild". In that sense my system seems to be consistence. Should glibc be downgraded? Wrong USE variables? eix glibc shows: 2.7-r2(2.2)(13:09:03 27.03.2008)(gd glibc-omitfp nls -debug -glibc-compat20 -hardened -multilib -profile -selinux -vanilla) On my 32bit centrino laptop with latest gentoo python+ecasound work fine. But that's beside the point. thanks for reading nico -- mailto: [EMAIL PROTECTED] gnupg fingerprint: 56DA 4E32 3A4A 52AC B769 DFC2 BF3E 9805 09BB 4259 -- gentoo-user@lists.gentoo.org mailing list
Re: [gentoo-user] python - *** glibc detected ***
OK I've reemerged python and ran python-updater. Problems remain the same although the script works until it stops and gives the error messages from above. The script is a slighty modified (In/Outputs) version of the one that comes with ecasound documentation: #!/usr/bin/env python """ 1 Setup ECI to read audio from file, apply a 100Hz lowpass filter, and send it to the soundcard (/dev/dsp). 2 Every second, check the current position. If the stream has been running for over 15 seconds, exit immediately. Also, every second, increase the lowpass filter's cutoff frequency by 500Hz. 3 Stop the stream (if not already finished) and disconnect the chainsetup. Print chain operator status info. """ import time from pyeca import * cutoff_inc = 500.0 e = ECA_CONTROL_INTERFACE() e.command("cs-add pass_jack") e.command("c-add chain01") e.command("ai-add jack_auto,xine") e.command("ao-add jack_auto,MONITOR") e.command("cop-add -efl:100") e.command("cop-select 1") e.command("copp-select 1") e.command("cs-connect") e.command("start") while True: time.sleep(True) e.command("engine-status") if e.last_string() != "running": break e.command("get-position") curpos = e.last_float() if curpos > 15: break e.command("copp-get") next_cutoff = cutoff_inc + e.last_float() e.command_float_arg("copp-set", next_cutoff) e.command("stop") e.command("cs-disconnect") e.command("cop-status") print "Chain operator status: ", e.last_string() On 12.04.2008 02:24:09, Volker Armin Hemmann wrote: > On Donnerstag, 10. April 2008, Nicolai Beuermann wrote: > > Hello list, > > a few days ago my creative urge forced me to learn python. As a first > > step I wanted to control ecasound by script. > > What a pity that it doesn't work. > > > > kernel: > > It's a 64bit applepro with Linux 2.6.22-sabayon #16 SMP PREEMPT Thu Dec > > 27 19:33:05 CET 2007 x86_64 Intel(R) Xeon(R) CPU 5130 @ 2.00GHz > > GenuineIntel GNU/Linux > > > > python: > > Python 2.5.1 (r251:54863, Feb 5 2008, 15:14:12) > > [GCC 4.1.2 (Gentoo 4.1.2 p1.0.1)] on linux2 > > > > ls -l `which python` > > lrwxrwxrwx 1 root root 18 10. Apr 00:04 /usr/bin/python -> > > /usr/bin/python2.5 > > > > I get: > > Chain operator status: ### Chain operator status (chainsetup > > 'pass_jack') ### Chain "chain01": > > 1. Lowpass filter: [1] cutoff-freq 100.0 > > *** glibc detected *** python: munmap_chunk(): invalid pointer: > > 0x2b8ca3a700d8 *** > > === Backtrace: = > > /lib/libc.so.6(cfree+0x1ac)[0x2b8ca48be7dc] > > /usr/lib64/python2.5/site-packages/pyecasound.so[0x2b8ca50ec6ee] > > /usr/lib/libpython2.5.so.1.0[0x2b8ca3c5fc80] > > /usr/lib/libpython2.5.so.1.0(PyDict_SetItem+0x118)[0x2b8ca3c603ff] > > /usr/lib/libpython2.5.so.1.0(_PyModule_Clear+0x1e8)[0x2b8ca3c65a58] > > /usr/lib/libpython2.5.so.1.0(PyImport_Cleanup+0x2ea)[0x2b8ca3cefbc3] > > /usr/lib/libpython2.5.so.1.0(Py_Finalize+0x95)[0x2b8ca3cfee1c] > > /usr/lib/libpython2.5.so.1.0(Py_Main+0xdb3)[0x2b8ca3d0f1f4] > > python(main+0x1b)[0x40081b] > > /lib/libc.so.6(__libc_start_main+0xf4)[0x2b8ca48651f4] > > python[0x400789] > > === Memory map: > > 0040-00401000 r-xp 08:12 > > 6417361/usr/bin/python2.5 > > 0060-00601000 r--p 08:12 > > 6417361/usr/bin/python2.5 > > 00601000-00602000 rw-p 1000 08:12 > > 6417361/usr/bin/python2.5 > > 00602000-006d9000 rw-p 00602000 00:00 0 > > [heap] > > > > > > I did "revdev-rebuild". In that sense my system seems to be consistence. > > > > Should glibc be downgraded? Wrong USE variables? > > you can't downgrade glibc. > > re-emerge python and use python-updater. > > And since you are using sabayon, file a bug in their bugzilla. Neither python or glibc nor ecasound are in the sabayon overlay. -- mailto: [EMAIL PROTECTED] gnupg fingerprint: 56DA 4E32 3A4A 52AC B769 DFC2 BF3E 9805 09BB 4259 -- gentoo-user@lists.gentoo.org mailing list
Re: [gentoo-user][SOLVED] python - *** glibc detected ***
Googling around I found, that glibc's error reporting might be the reason. Setting MALLOC_CHECK_="2" environment variable the error reporting disappears. I really hope that this solution is safe. nico On 12.04.2008 17:09:11, Nicolai Beuermann wrote: > OK I've reemerged python and ran python-updater. > Problems remain the same although the script works until it stops and gives > the error messages from above. > > The script is a slighty modified (In/Outputs) version of the one that comes > with ecasound documentation: > #!/usr/bin/env python > > """ > 1 Setup ECI to read audio from file, apply a 100Hz lowpass filter, and send > it to the soundcard (/dev/dsp). > 2 Every second, check the current position. If the stream has been running > for over 15 seconds, exit immediately. Also, every second, increase the > lowpass filter's cutoff frequency by 500Hz. > 3 Stop the stream (if not already finished) and disconnect the chainsetup. > Print chain operator status info. > """ > import time > from pyeca import * > > cutoff_inc = 500.0 > > e = ECA_CONTROL_INTERFACE() > e.command("cs-add pass_jack") > e.command("c-add chain01") > e.command("ai-add jack_auto,xine") > e.command("ao-add jack_auto,MONITOR") > e.command("cop-add -efl:100") > e.command("cop-select 1") > e.command("copp-select 1") > e.command("cs-connect") > e.command("start") > while True: > time.sleep(True) > e.command("engine-status") > if e.last_string() != "running": break > e.command("get-position") > curpos = e.last_float() > if curpos > 15: break > e.command("copp-get") > next_cutoff = cutoff_inc + e.last_float() > e.command_float_arg("copp-set", next_cutoff) > e.command("stop") > e.command("cs-disconnect") > e.command("cop-status") > print "Chain operator status: ", e.last_string() > > On 12.04.2008 02:24:09, Volker Armin Hemmann wrote: > > On Donnerstag, 10. April 2008, Nicolai Beuermann wrote: > > > Hello list, > > > a few days ago my creative urge forced me to learn python. As a first > > > step I wanted to control ecasound by script. > > > What a pity that it doesn't work. > > > > > > kernel: > > > It's a 64bit applepro with Linux 2.6.22-sabayon #16 SMP PREEMPT Thu > > > Dec 27 19:33:05 CET 2007 x86_64 Intel(R) Xeon(R) CPU 5130 @ 2.00GHz > > > GenuineIntel GNU/Linux > > > > > > python: > > > Python 2.5.1 (r251:54863, Feb 5 2008, 15:14:12) > > > [GCC 4.1.2 (Gentoo 4.1.2 p1.0.1)] on linux2 > > > > > > ls -l `which python` > > > lrwxrwxrwx 1 root root 18 10. Apr 00:04 /usr/bin/python -> > > > /usr/bin/python2.5 > > > > > > I get: > > > Chain operator status: ### Chain operator status (chainsetup > > > 'pass_jack') ### Chain "chain01": > > > 1. Lowpass filter: [1] cutoff-freq 100.0 > > > *** glibc detected *** python: munmap_chunk(): invalid pointer: > > > 0x2b8ca3a700d8 *** > > > === Backtrace: = > > > /lib/libc.so.6(cfree+0x1ac)[0x2b8ca48be7dc] > > > /usr/lib64/python2.5/site-packages/pyecasound.so[0x2b8ca50ec6ee] > > > /usr/lib/libpython2.5.so.1.0[0x2b8ca3c5fc80] > > > /usr/lib/libpython2.5.so.1.0(PyDict_SetItem+0x118)[0x2b8ca3c603ff] > > > /usr/lib/libpython2.5.so.1.0(_PyModule_Clear+0x1e8)[0x2b8ca3c65a58] > > > /usr/lib/libpython2.5.so.1.0(PyImport_Cleanup+0x2ea)[0x2b8ca3cefbc3] > > > /usr/lib/libpython2.5.so.1.0(Py_Finalize+0x95)[0x2b8ca3cfee1c] > > > /usr/lib/libpython2.5.so.1.0(Py_Main+0xdb3)[0x2b8ca3d0f1f4] > > > python(main+0x1b)[0x40081b] > > > /lib/libc.so.6(__libc_start_main+0xf4)[0x2b8ca48651f4] > > > python[0x400789] > > > === Memory map: > > > 0040-00401000 r-xp 08:12 > > > 6417361/usr/bin/python2.5 > > > 0060-00601000 r--p 08:12 > > > 6417361/usr/bin/python2.5 > > > 00601000-00602000 rw-p 1000 08:12 > > > 6417361/usr/bin/python2.5 > > > 00602000-006d9000 rw-p 00602000 00:00 0 > > > [heap] > > > > > > > > > I did "revdev-rebuild". In that sense my system seems to be > > > consistence. > > > > > > Should glibc be downgraded? Wrong USE variables? > > > > you can't downgrade glibc. > > > > re-emerge python and use python-updater. > > > > And since you are using sabayon, file a bug in their bugzilla. > > Neither python or glibc nor ecasound are in the sabayon overlay. > > > -- > mailto: [EMAIL PROTECTED] > gnupg fingerprint: 56DA 4E32 3A4A 52AC B769 DFC2 BF3E 9805 09BB 4259 -- mailto: [EMAIL PROTECTED] gnupg fingerprint: 56DA 4E32 3A4A 52AC B769 DFC2 BF3E 9805 09BB 4259 -- gentoo-user@lists.gentoo.org mailing list
Re: [gentoo-user] Batch audio converter?
Hi, On 27.04.2008 17:16:50, Mark Knecht wrote: > Hi, >I've got about 200GB of OGG and FLAC files on my local machine. My > son bought an iPod and wants me to do a batch conversion to mp3. Can > anyone recommend something in portage that can do this in more or less > a single step? Directory hierarchy is basically > band/album/audio_files. soundkonverter (http://www.kde-apps.org/content/show.php?content=29024) is a nice gui tool for that task. I've got it from the sabayon overlay. nico -- mailto: [EMAIL PROTECTED] http://www.nico-beuermann.de gnupg fingerprint: 56DA 4E32 3A4A 52AC B769 DFC2 BF3E 9805 09BB 4259 -- gentoo-user@lists.gentoo.org mailing list
[gentoo-user] emerge kdirstat fails
Hello, emerging kde-misc/kdirstat-2.5.3-r1 doesn't compile due to this error: $emerge -pv kde-misc/kdirstat [ebuild N] kde-misc/kdirstat-2.5.3-r1 USE="-debug -xinerama" kcleanup.moc.o: In function `KDirStat::KCleanup::~KCleanup()': kcleanup.moc.cpp: (.text._ZN8KDirStat8KCleanupD0Ev[KDirStat::KCleanup::~KCleanup()]+0x24): undefined reference to `QStringData::deleteSelf()' (...) collect2: ld returned 1 exit status make[3]: *** [kdirstat] Fehler 1 make[2]: *** [all-recursive] Fehler 1 make[1]: *** [all-recursive] Fehler 1 make: *** [all] Fehler 2 * * ERROR: kde-misc/kdirstat-2.5.3-r1 failed. * Call stack: * ebuild.sh, line 49: Called src_compile * environment, line 4371: Called kde_src_compile * environment, line 3157: Called kde_src_compile 'all' * environment, line 3172: Called kde_src_compile 'make' * environment, line 3164: Called die * The specific snippet of code: * emake || die "died running emake, $FUNCNAME:make" * The die message: * died running emake, kde_src_compile:make I'm working with kde4 (~amd64), kde3 apps like k3b, kaffeine and quanta work flawlessly. What did I overlook? emerge --info Portage 2.1.6.13 (default/linux/amd64/2008.0/desktop, gcc-4.3.3, glibc-2.9_p20081201-r2, 2.6.29-sabayon-03.04.2009-11 x86_64) = System uname: Linux-2.6.29-sabayon-03.04.2009-11-x86_64-Intel-R-_Xeon-R- _cpu_51...@_2.00ghz-with-glibc2.2.5 Timestamp of tree: Sun, 26 Jul 2009 20:45:01 + ccache version 2.4 [enabled] app-shells/bash: 4.0_p10-r1 dev-java/java-config: 2.1.8-r1 dev-lang/python: 2.5.4-r3 dev-util/ccache: 2.4-r8 dev-util/cmake: 2.6.4-r1 sys-apps/baselayout: 2.0.0 sys-apps/openrc: 0.4.3-r5 sys-apps/sandbox:2.0 sys-devel/autoconf: 2.13, 2.63-r1 sys-devel/automake: 1.4_p6, 1.5, 1.7.9-r1, 1.8.5-r3, 1.9.6-r2, 1.10.2 sys-devel/binutils: 2.19.1-r1 sys-devel/gcc-config: 1.4.1 sys-devel/libtool: 2.2.6a virtual/os-headers: 2.6.28-r1 ACCEPT_KEYWORDS="amd64" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-march=nocona -O2 -pipe" CHOST="x86_64-pc-linux-gnu" CONFIG_PROTECT="/etc /usr/kde/3.5/env /usr/kde/3.5/share/config /usr/kde/3.5/share/config/kdm /usr/kde/3.5/shutdown /usr/share/config" CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/env.d /etc/env.d/java/ /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/php/apache2- php5/ext-active/ /etc/php/cgi-php5/ext-active/ /etc/php/cli-php5/ext-active/ /etc/revdep-rebuild /etc/sandbox.d /etc/splash /etc/terminfo /etc/texmf/language.dat.d /etc/texmf/language.def.d /etc/texmf/updmap.d /etc/texmf/web2c /etc/udev/rules.d" CXXFLAGS="-march=nocona -O2 -pipe"
Re: [gentoo-user] emerge kdirstat fails
Am Montag, 27. Juli 2009 16:08:35 schrieb Arttu V.: > On 7/27/09, Nicolai Beuermann wrote: > > Hello, > > emerging kde-misc/kdirstat-2.5.3-r1 doesn't compile due to this error: > > This bug has someone fighting with this package with moderate success > (uninstalling : > > http://bugs.gentoo.org/show_bug.cgi?id=248883 oh - i didn`t realize that there's a bug report. In gentoo-portage.com it does not pop up. (I should have read the lines below the bug listing.) Thanks for your hint. nico -- mailto: nicolai.beuerm...@gmx.de http://www.nico-beuermann.de gnupg fingerprint: 56DA 4E32 3A4A 52AC B769 DFC2 BF3E 9805 09BB 4259
[gentoo-user] layman: could not connect to server
Hello, I've got a problem concerning syncing of some overlays with layman: "layman -s vmware" * Running command "/usr/bin/svn up "/usr/local/portage/layman/vmware""... svn: OPTIONS of 'http://overlays.gentoo.org/svn/proj/vmware/trunk': could not connect to server (http://overlays.gentoo.org) * * Errors: * -- * * Failed to sync overlay "vmware". * Error was: Syncing overlay "vmware" returned status 256! But pointing firefox to http://overlays.gentoo.org/svn/proj/vmware/trunk lists the directory. Same problem arose by syncing the sabayon overlay. Courageously removing this overlay with " layman -d sabayon" now I'm unable to add it again! Same error as mentioned before. Paradoxically syncing works with pro-audio overlay. All overlays use subversion. Re-emerging subversion doesn't change anything. I'm on ~amd64 subversion-1.6.0 layman-1.2.3 neon-0.28.4 Googling around didn't help. Any help is greatly appreciated. nico -- mailto: nicolai.beuerm...@gmx.de http://www.nico-beuermann.de gnupg fingerprint: 56DA 4E32 3A4A 52AC B769 DFC2 BF3E 9805 09BB 4259
Re: [gentoo-user] layman: could not connect to server
Willie Wong wrote: > On Wed, Mar 25, 2009 at 09:49:20PM +0100, Penguin Lover Nicolai Beuermann squawked: > > svn: OPTIONS of 'http://overlays.gentoo.org/svn/proj/vmware/trunk': could > > not connect to server (http://overlays.gentoo.org) > > > > But pointing firefox to http://overlays.gentoo.org/svn/proj/vmware/trunk > > lists the directory. > > > > Same problem arose by syncing the sabayon overlay. > > Courageously removing this overlay with " layman -d sabayon" now I'm > > unable to add it again! Same error as mentioned before. > > > > Paradoxically syncing works with pro-audio overlay. > > from layman -L, proaudio overlay talks to > svn://svn.tuxfamily.org/svnroot/pr.. whereas the other two talks to > http:// > > So my guess is to rebuild neon? > > Almost looks like a revdep-rebuild issue to me. > > W thanks for your answer: Here is what I did: 1) emerge -1 neon - revdep-rebuild (everything was consistent): layman -f -a sabayon failed, layman -s vmware failed too 2) USE=expat emerge -1 neon; emerge -1 subversion; Just to be shure I did revdep-rebuild again -> system consistent. layman failed again. emerge --info Portage 2.1.6.10 (default/linux/amd64/2008.0/desktop, gcc-4.1.2, glibc-2.9_p20081201-r2, 2.6.23-sabayon-r1-04.03.2009-01 x86_64) = System uname: Linux-2.6.23-sabayon-r1-04.03.2009-01-x86_64-Intel-R-_Xeon-R- _cpu_51...@_2.00ghz-with-glibc2.2.5 Timestamp of tree: Tue, 24 Mar 2009 18:45:01 + ccache version 2.4 [disabled] app-shells/bash: 4.0_p10-r1 dev-java/java-config: 1.3.7-r1, 2.1.7 dev-lang/python: 2.5.4-r2 dev-python/pycrypto: 2.0.1-r6 dev-util/ccache: 2.4-r8 dev-util/cmake: 2.6.3 sys-apps/baselayout: 2.0.0 sys-apps/openrc: 0.4.3-r2 sys-apps/sandbox:1.6 sys-devel/autoconf: 2.13, 2.63 sys-devel/automake: 1.4_p6, 1.5, 1.6.3, 1.7.9-r1, 1.8.5-r3, 1.9.6-r2, 1.10.2 sys-devel/binutils: 2.19.1-r1 sys-devel/gcc-config: 1.4.1 sys-devel/libtool: 2.2.6a virtual/os-headers: 2.6.28-r1 ACCEPT_KEYWORDS="amd64 ~amd64" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-march=nocona -fomit-frame-pointer -O2 -pipe" CHOST="x86_64-pc-linux-gnu" CONFIG_PROTECT="/etc /usr/kde/3.5/env /usr/kde/3.5/share/config /usr/kde/3.5/share/config/kdm /usr/kde/3.5/shutdown /usr/share/config" CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/env.d /etc/env.d/java/ /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/php/apache2- php5/ext-active/ /etc/php/cgi-php5/ext-active/ /etc/php/cli-php5/ext-active/ /etc/revdep-rebuild /etc/sandbox.d /etc/splash /etc/terminfo /etc/udev/rules.d"
Re: [gentoo-user] layman: could not connect to server
Willie Wong wrote: > On Thu, Mar 26, 2009 at 10:04:22PM +0100, Penguin Lover Nicolai Beuermann squawked: > > thanks for your answer: > > Here is what I did: > > 1) emerge -1 neon - revdep-rebuild (everything was consistent): layman -f > > -a sabayon failed, layman -s vmware failed too > > 2) USE=expat emerge -1 neon; emerge -1 subversion; > > Just to be shure I did revdep-rebuild again -> system consistent. layman > > failed again. > > please show "emerge -pv subversion" and > "svn --version" > > Best, > > W emerge -pv subversion: [ebuild R ] dev-util/subversion-1.6.0 USE="berkdb kde nls perl python webdav-neon -apache2 -bash-completion -ctypes-python -debug -doc -dso -emacs - extras -gnome-keyring -java -ruby -sasl -vim-syntax -webdav-serf" 0 kB svn --version: svn, version 1.6.0 (r36650) compiled Mar 26 2009, 21:54:11 Copyright (C) 2000-2009 CollabNet. Subversion is open source software, see http://subversion.tigris.org/ This product includes software developed by CollabNet (http://www.Collab.Net/). The following repository access (RA) modules are available: * ra_neon : Module for accessing a repository via WebDAV protocol using Neon. - handles 'http' scheme - handles 'https' scheme * ra_svn : Module for accessing a repository using the svn network protocol. - handles 'svn' scheme * ra_local : Module for accessing a repository on local disk. - handles 'file' scheme nico -- mailto: nicolai.beuerm...@gmx.de http://www.nico-beuermann.de gnupg fingerprint: 56DA 4E32 3A4A 52AC B769 DFC2 BF3E 9805 09BB 4259
Re: [gentoo-user] layman: could not connect to server
Willie Wong wrote: > On Fri, Mar 27, 2009 at 07:13:14PM +0100, Nicolai Beuermann wrote: > > emerge -pv subversion: > > [ebuild R ] dev-util/subversion-1.6.0 USE="berkdb kde nls perl > > python webdav-neon -apache2 -bash-completion -ctypes-python -debug -doc > > -dso -emacs - extras -gnome-keyring -java -ruby -sasl -vim-syntax > > -webdav-serf" 0 kB > > > > svn --version: > > svn, version 1.6.0 (r36650) > >compiled Mar 26 2009, 21:54:11 > > > > Copyright (C) 2000-2009 CollabNet. > > Subversion is open source software, see http://subversion.tigris.org/ > > This product includes software developed by CollabNet > > (http://www.Collab.Net/). > > > > The following repository access (RA) modules are available: > > > > * ra_neon : Module for accessing a repository via WebDAV protocol using > > Neon. - handles 'http' scheme > > - handles 'https' scheme > > Looks okay to me. Do you have any sort of http-proxy or firewall that > svn does not know about? > > Best, > > W Polipo is running but there's nothing changing when it's stopped. I'm on a NATted LAN behind a router without any firewall running on this host. regards nico -- mailto: nicolai.beuerm...@gmx.de http://www.nico-beuermann.de gnupg fingerprint: 56DA 4E32 3A4A 52AC B769 DFC2 BF3E 9805 09BB 4259
Re: [gentoo-user] layman: could not connect to server - partially SOLVED
Helmut Jarausch wrote: > On 28 Mar, Mike Kazantsev wrote: > > On Fri, 27 Mar 2009 22:53:00 +0100 > > > > Nicolai Beuermann wrote: > >> Polipo is running but there's nothing changing when it's stopped. > >> I'm on a NATted LAN behind a router without any firewall running on this > >> host. > > > > So far (in this thread) I've seen svn fail when it's started by layman, > > prehaps you should try starting it directly, like this: > > > > cd /tmp && \ > > svn co http://overlays.gentoo.org/svn/proj/vmware/trunk vmware_overlay > > > > If it fails as well (I guess it should) and wget of the same http > > address works, it certainly must be a bug in svn. > > > > 'strace -f svn co ...' might help to see which particular operation > > fails - might be it's not http access, but something totally unrelated, > > like forking a child 'getter' process due to some limit. > > > > You might also consider simply downgrading / updating svn, since no > > matter what kind of bug there is, it might not manifest itself in other > > versions. > > Hi, > > I've just discovered that reemerging dev-util/subversion (1.6.0) > with different use flags gives a working svn > > USE='-webdav-neon webdav-serf' emerge -1 dev-util/subversion > > So, I suspect net-misc/neon (0.28.4) or the interplay of subversion with > neon is broken. > > Helmut. After building subversion with this new set of USE variables adding the sabayon overlay works! Many thanks to everyone involved. Unfortunately "layman -s vmware" (also: "layman -d vmware; layman -f -a vmware") failed with: svn: XML parsing failed: (411 Length Required) Really strange. nico -- mailto: nicolai.beuerm...@gmx.de http://www.nico-beuermann.de gnupg fingerprint: 56DA 4E32 3A4A 52AC B769 DFC2 BF3E 9805 09BB 4259
Re: [gentoo-user] layman: could not connect to server - partially SOLVED
Willie Wong wrote: > On Sat, Mar 28, 2009 at 05:10:22PM +0100, Penguin Lover Nicolai Beuermann squawked: > > > I've just discovered that reemerging dev-util/subversion (1.6.0) > > > with different use flags gives a working svn > > > > > > USE='-webdav-neon webdav-serf' emerge -1 dev-util/subversion > > > > > > So, I suspect net-misc/neon (0.28.4) or the interplay of subversion > > > with neon is broken. > > > > > > Helmut. > > > > After building subversion with this new set of USE variables adding the > > sabayon overlay works! Many thanks to everyone involved. > > Unfortunately "layman -s vmware" (also: "layman -d vmware; layman -f -a > > vmware") failed with: > > svn: XML parsing failed: (411 Length Required) > > Helmut and Nicolai: it would be great if one of you can file a bug > about this. I think it is rather important as the neon module is the > default module for accessing http svns. > > Glad your problem is solved. > > Best, > > W Done. http://bugs.gentoo.org/show_bug.cgi?id=264101 -- mailto: nicolai.beuerm...@gmx.de http://www.nico-beuermann.de gnupg fingerprint: 56DA 4E32 3A4A 52AC B769 DFC2 BF3E 9805 09BB 4259
[gentoo-user] portage-2.1.3_rc6 doesn't compile
Hello, today I wanted to update my box. After syncing the portage tree emerging sys-apps/portage-2.1.3_rc6 fails. I've read thru forum entries but haven't found the clue. build.log: >>> Source unpacked. >>> Compiling source in /var/tmp/portage/portage/sys-apps/portage-2.1.3_rc6/work/portage-2.1.2 ... In Datei, eingefügt von /usr/include/bits/errno.h:8, von /usr/include/gentoo-multilib/amd64/errno.h:36, von /usr/include/errno.h:8, von tbz2tool.c:8: /usr/include/gentoo-multilib/amd64/bits/errno.h:25:26: Fehler: linux/errno.h: Datei oder Verzeichnis nicht gefunden (file or directory not found) !!! ERROR: sys-apps/portage-2.1.3_rc6 failed. Call stack: ebuild.sh, line 1637: Called dyn_compile ebuild.sh, line 983: Called qa_call 'src_compile' ebuild.sh, line 44: Called src_compile portage-2.1.3_rc6.ebuild, line 88: Called die !!! Failed to build tbz2tool emerge --info Portage 2.1.3_rc5 (default-linux/amd64/2006.0, gcc-4.1.2, glibc-2.5-r3, 2.6.21-sabayon-r2-17.06.2007-2 x86_64) = System uname: 2.6.21-sabayon-r2-17.06.2007-2 x86_64 Intel(R) Xeon(R) CPU 5130 @ 2.00GHz Gentoo Base System release 1.12.10 Timestamp of tree: Sat, 07 Jul 2007 10:20:01 + distcc 2.18.3 x86_64-pc-linux-gnu (protocols 1 and 2) (default port 3632) [disabled] ccache version 2.4 [enabled] dev-java/java-config: 1.3.7, 2.0.33-r1 dev-lang/python: 2.4.4-r4 dev-python/pycrypto: 2.0.1-r5 dev-util/ccache: 2.4-r7 sys-apps/sandbox:1.2.18.1 sys-devel/autoconf: 2.13, 2.61 sys-devel/automake: 1.4_p6, 1.5, 1.6.3, 1.7.9-r1, 1.8.5-r3, 1.9.6-r2, 1.10 sys-devel/binutils: 2.17 sys-devel/gcc-config: 1.3.16 sys-devel/libtool: 1.5.23b ACCEPT_KEYWORDS="amd64 ~amd64" AUTOCLEAN="yes" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-O2 -march=nocona -fomit-frame-pointer -pipe" CHOST="x86_64-pc-linux-gnu" CONFIG_PROTECT="/etc /usr/kde/3.5/env /usr/kde/3.5/share/config /usr/kde/3.5/share/config/kdm /usr/kde/3.5/shutdown /usr/share/X11/xkb /usr/share/config" CONFIG_PROTECT_MASK="/etc/env.d /etc/env.d/java/ /etc/gconf /etc/php/apache2-php5/ext-active/ /etc/php/cgi-php5/ext-active/ /etc/php/cli-php5/ext-active/ /etc/revdep-rebuild /etc/splash /etc/terminfo /etc/texmf/web2c" CXXFLAGS="-O2 -march=nocona -fomit-frame-pointer -pipe" DISTDIR="/usr/portage/distfiles" FEATURES="autoconfig ccache distlocks fixpackages metadata-transfer parallel-fetch sandbox sfperms strict unmerge-orphans" GENTOO_MIRRORS="http://pandemonium.tiscali.de/pub/gentoo/ ftp://pandemonium.tiscali.de/pub/gentoo/ ftp://ftp.tu-clausthal.de/pub/linux/gentoo/ ftp://ftp-stud.fht-esslingen.de/pub/Mirrors/gentoo/"; LANG="de_DE.UTF-8" LC_ALL="de_DE.UTF-8" LDFLAGS="-Wl,-O1 -Wl,--enable-new-dtags -Wl,--sort-common -s" LINGUAS="en de" MAKEOPTS="-s -j5" PKGDIR="/usr/portage/packages" PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --compress --force --whole-file --delete --delete-after --stats --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages --filter=H_**/files/digest-*" PORTAGE_TMPDIR="/var/tmp/portage" PORTDIR="/usr/portage" PORTDIR_OVERLAY="/usr/local/portage" SYNC="rsync://rsync.europe.gentoo.org/gentoo-portage" USE="7zip X a52 aac aalib accessibility acpi ada aiglx alsa amd64 apache2 arts artswrappersuid asterisk audiofile avahi beagle berkdb bitmap-fonts bluetooth browserplugin bzip2 cairo canvas cdda cdr cjk cli commercial cracklib crypt css cups dbox2 dbus dga divx4linux djvu dlloader dri dts dv dvb dvd dvdr dvdread dvi eds emboss encode evo exif exscalibar fat ffmpeg firefox flac foomatic-db foomaticdb fortran freetype fuse gcj gdbm gif gimpprint glitz glut gnokii gnutls gphoto2 gpm gsm gstreamer hal hfs iconv ieee1394 imlib ipod ipv6 isdnlog ivtv jack java jfs jingle joystick jpeg jpeg2k kde kdeenablefinal kdehiddenvisibility kdgraphics kerberos kig-scripting kipi ladspa lame lcd libcaca libnotify live livecd lm_sensors logitech-mouse lzw lzw-tiff mad mbrola midi mikmod mono moznocompose moznoirc moznomail mozsvg mp3 mp3rtp mpeg mudflap musepack musicbrainz nautilus ncurses nls nntp nptl nptlonly nsplugin ntfs nvidia ogg oggvorbis ole on-the-fly-crypt opengl openmp pam pam_chroot pam_timestamp pcre pda pdf perforce perl png portaudio postgres povray ppds pppd pulseaudio pwdb python qt qt3 qt4 quicktime rdesktop readline reflection reiser4 reiserfs remote rtsp ruby samba scanner sdl session shout skins sms sndfile soundtouch speedo speex spell spl sql sse3 ssl startup-notification stats stream subversion svg tcpd theora threads tiff timidity truetype truetype-fonts type1-fonts udev unichrome unicode usb utempter v4l v4l2 vcd visualization vlm vorbis wifi wxwindows x264 xcb xfs xine xinerama xml xml2 xorg xpm xprint xscreensaver xv xvid xvmc zeroconf zlib" ALSA_CARDS="hda-intel usb-usx2y usb-audio" ALSA_PCM_PLUGINS="adpcm alaw asym copy dmix dshare dsnoop empty extplug file hooks
Re: [gentoo-user] portage-2.1.3_rc6 doesn't compile
Am Samstag 07 Juli 2007 21:08:25 schrieb Vladimir Rusinov: > On 7/7/07, Nicolai Beuermann <[EMAIL PROTECTED]> wrote: > > Hello, > > today I wanted to update my box. After syncing the portage tree emerging > > sys-apps/portage-2.1.3_rc6 fails. > > I've read thru forum entries but haven't found the clue. > > > > build.log: > > >>> Source unpacked. > > >>> Compiling source > > > > in > > /var/tmp/portage/portage/sys-apps/portage-2.1.3_rc6/work/portage-2.1.2... > > In Datei, eingefügt von /usr/include/bits/errno.h:8, > > von /usr/include/gentoo-multilib/amd64/errno.h:36, > > von /usr/include/errno.h:8, > > von tbz2tool.c:8: > > /usr/include/gentoo-multilib/amd64/bits/errno.h:25:26: Fehler: > > linux/errno.h: > > Datei oder Verzeichnis nicht gefunden (file or directory not found) > > Please, post non-localized error messages. > You can do it with LC_ALL="C" . Thanks for the hint. > > You error looks like broken linux-headers. Try to update them. I did 'emerge sys-kernel/linux-headers'. It says it would be advised that you re-merge your system libc. Portage now builds - should I rebuild the libc nevertheless? -- mailto: [EMAIL PROTECTED] -- [EMAIL PROTECTED] mailing list
[gentoo-user] Couldn't load XKB keymap...
Hello, I've got a big problem after updating world. My Keyboard - Apple Extended USB Keyboard - refused to print german umlauts, AT and euro symbol. Xorg.0.log: (WW) Couldn't load XKB keymap, falling back to pre-XKB keymap setxkbmap quits reliably with "Error loading new keyboard description" $ setxkbmap -v 10 -model macintosh -layout de Setting verbose level to 10 locale is C Warning! Multiple definitions of keyboard model Using command line, ignoring X server Warning! Multiple definitions of keyboard layout Using command line, ignoring X server Applied rules from xorg: model: macintosh layout: de Trying to build keymap using the following components: keycodes: macintosh+aliases(qwertz) types: complete+numpad(mac) compat: complete symbols:pc+macintosh_vndr/de+inet(apple) geometry: macintosh(macintosh) Error loading new keyboard description Any known bugs or even solutions? -- mailto: [EMAIL PROTECTED] gnupg fingerprint: 56DA 4E32 3A4A 52AC B769 DFC2 BF3E 9805 09BB 4259 -- [EMAIL PROTECTED] mailing list
Re: [gentoo-user] Couldn't load XKB keymap...
Emerging xorg set me on the right track. Xorg-server didn't want to compile. Googling around some posts reminded me of /etc/portage/packages.mask and how I masked the latest xorg server because of nvidia issues. Unmasking it resolved my problem with the keyboard. After reemerging x11-drivers/xf86-input-evdev my Apple Mouse works again. Ahoy Nico Am Montag, 1. Oktober 2007 17:21:45 schrieb Emil Beinroth: > Hi > > On Mon, Oct 01, 2007 at 04:35:21PM +0200, Nicolai Beuermann wrote: > > Xorg.0.log: (WW) Couldn't load XKB keymap, falling back to pre-XKB keymap > > setxkbmap quits reliably with "Error loading new keyboard description" > > I had the same problem, "emerge -1 xorg-server" solved it. Maybe that'll > work for you too. > > Cheers, Emil -- mailto: [EMAIL PROTECTED] gnupg fingerprint: 56DA 4E32 3A4A 52AC B769 DFC2 BF3E 9805 09BB 4259 -- [EMAIL PROTECTED] mailing list
[gentoo-user] Cleaning up installation / two glibc versions
Basic question: Why do I need two versions of glibc? The background: After cleaning up non-sys stuff with help of eix-test-obsolete it now shows Installed packages with a version not in the database (or masked): [D] sys-libs/glibc (2.3.4.20040808-r1(i686-pc-linux-gnu-2.2)@08.11.2007 2.6.1 (2.2)@29.12.2007 -> 2.6.1(2.2)): GNU libc6 (also called glibc2) C library emerge --depclean -p gives me among other things: >>> These are the packages that would be unmerged: sys-libs/glibc selected: 2.3.4.20040808-r1 protected: none omitted: 2.6.1 Yesterday I courageously unemerge =glibc-2.3.4.20040808-r1. This made my system unbootable. The following thread (http://forums.gentoo.org/viewtopic-t-573767-highlight-unmerged+glibc.html) led me out of there. I`d reinstalled glibc-2.6.1 and now I'm in the same situation as before. equery depends =sys-libs/glibc-2.6.1 lists about 30 entries equery depends =sys-libs/glibc-2.3.4.20040808-r1 lists 27 entries of which some are the same some are different. glibc-2.3.4.20040808-r1 seems to be a leftover from initial install back in 2004. Thanks -- mailto: [EMAIL PROTECTED] http://www.nico-beuermann.de gnupg fingerprint: 56DA 4E32 3A4A 52AC B769 DFC2 BF3E 9805 09BB 4259 -- gentoo-user@lists.gentoo.org mailing list
Re: [gentoo-user] Cleaning up installation / two glibc versions
On 09.06.2008 14:10:00, Dirk Heinrichs wrote: > Am Sonntag, 8. Juni 2008 schrieb Nicolai Beuermann: > > Basic question: Why do I need two versions of glibc? > > You don't. > > > equery depends =sys-libs/glibc-2.6.1 lists about 30 entries > > equery depends =sys-libs/glibc-2.3.4.20040808-r1 lists 27 entries of > > which some are the same some are different. > > > > glibc-2.3.4.20040808-r1 seems to be a leftover from initial install back > > in 2004. > > Re-emerge those packages which have the older glibc as dependency. After > that, you can unmerge 2.3.4. > > HTH... > > Dirk After I'd reemerged listed packages the equery command from above still lists the dependencies. what goes wrong? thanks -- mailto: [EMAIL PROTECTED] http://www.nico-beuermann.de gnupg fingerprint: 56DA 4E32 3A4A 52AC B769 DFC2 BF3E 9805 09BB 4259 -- gentoo-user@lists.gentoo.org mailing list
Re: [gentoo-user] Cleaning up installation / two glibc versions
On 09.06.2008 19:10:53, Alan McKinnon wrote: > On Monday 09 June 2008, Nicolai Beuermann wrote: > > After I'd reemerged listed packages the equery command from above > > still lists the dependencies. > > > > what goes wrong? > The definitive way to find out exactly what is going on is to run emerge > with the -t option and see from that what is pulling a package in. I've run "emerge -tevp" (or similar) on the packages "equery depends =sys-libs/glibc-2.3.4" reports. All of sys related ebuilds among others show a dependency to glibc-2.6.1. I thought that was a good sign and unmerged old glibc-2.3.4. Again the result was an unbootable system. So for now, i am where i started. Any ideas? thanks -- mailto: [EMAIL PROTECTED] http://www.nico-beuermann.de gnupg fingerprint: 56DA 4E32 3A4A 52AC B769 DFC2 BF3E 9805 09BB 4259 -- gentoo-user@lists.gentoo.org mailing list
Re: [gentoo-user] Cleaning up installation / two glibc versions
>Nicolai Beuermann <[EMAIL PROTECTED]> a écrit: > >> Again >> the result was an unbootable system. > >What is the error exactly ? > I cannot remember the exact words right now - when i´m back home i´ll consult the logs. Unmerging the old glibc ends up in an error about commands are no longer found. Back at the prompt I can´t fire any command. Nothing was found. Even shutdown failed. Thanks -- gentoo-user@lists.gentoo.org mailing list
Re: [gentoo-user] Cleaning up installation / two glibc versions
Am Dienstag 10 Juni 2008 schrieb Enrico Weigelt: > IMHO, you've removed exactly that libc (or at least it's dynamic > linker) your binaries are built against, so they can't be executed > anymore - you'r system is unbootable. > > ldd output on these binaries should give your more enlightenment. That´s the situation (again): eix sys-libs/glibc [D] sys-libs/glibc Available versions: (2.2) [P]2.2.5-r10 [P]2.3.2-r12 2.3.5-r3 2.3.6-r4 2.3.6-r5 2.4-r4 2.5-r2 2.5-r3 2.5-r4 **2.5.1 ~2.6 2.6.1 ~2.7 ~2.7-r1 ~2.7-r2 {build debug erandom gd glibc-compat20 glibc-omitfp hardened linuxthreads-tls multilib nls nptl nptlonly pic profile selinux userlocales vanilla} Installed versions: 2.3.4.20040808-r1(i686-pc-linux-gnu-2.2)(08:48:34 08.11.2007)(nls userlocales -build -debug -erandom -hardened -multilib -nptl -pic) 2.6.1(2.2)(09:55:15 12.06.2008) (nls -debug -gd -glibc-omitfp -hardened -multilib -profile -selinux -vanilla) Let´s see if i´ve got what you mean: Because my system didn`t work anymore after removing glibc-2.3.4, with the help of ldd i should find some dependencies. ldd `which bash` linux-gate.so.1 => (0xb7fda000) libncurses.so.5 => /lib/libncurses.so.5 (0xb7f77000) libdl.so.2 => /lib/libdl.so.2 (0xb7f73000) libc.so.6 => /lib/libc.so.6 (0xb7e43000) /lib/ld-linux.so.2 (0xb7fdb000) l /lib/libc.so.6 lrwxrwxrwx 1 root root 13 12. Jun 09:55 /lib/libc.so.6 -> libc-2.6.1.so Within the few commands i´ve checked i was unable to find any dependency to glibc-2.3.4 :-( thanks > > If you're sure you've rebuilt all of them and they're still built > against the old glibc, it's might be a toolchain problem. Try to > rebuild gcc and binutils first. > > > BTW: if you don't want to risk an unbootable system, you could have > a try in chroot first. > > > cu > -- > - > Enrico Weigelt== metux IT service - http://www.metux.de/ > - > Please visit the OpenSource QM Taskforce: > http://wiki.metux.de/public/OpenSource_QM_Taskforce > Patches / Fixes for a lot dozens of packages in dozens of versions: > http://patches.metux.de/ > - -- mailto: [EMAIL PROTECTED] http://www.nico-beuermann.de gnupg fingerprint: 56DA 4E32 3A4A 52AC B769 DFC2 BF3E 9805 09BB 4259 -- gentoo-user@lists.gentoo.org mailing list
Re: [gentoo-user] Cleaning up installation / two glibc versions
Am Donnerstag 12 Juni 2008 schrieb Dirk Heinrichs: > Hi, > > I guess the best way to finally solve this would be to > > quickpkg glibc-2.3.4 (just in case...) > emerge -C glib-2.3.4 you mean to unmerge glibc-2.3.4? When I do this my system is no longer useable. emerge wouldn´t work. Marvelously i´ve repaired it via reemerging glibc-2.6.1 via a live cd and chroot... > emerge -e world (or at least "system" if world is too much) > > HTH... > > Dirk thanks -- mailto: [EMAIL PROTECTED] http://www.nico-beuermann.de gnupg fingerprint: 56DA 4E32 3A4A 52AC B769 DFC2 BF3E 9805 09BB 4259 -- gentoo-user@lists.gentoo.org mailing list
Re: [gentoo-user] Cleaning up installation / two glibc versions
You are right it´s not a real solution. Only a solution to get back the old (and working) system with two installed versions of glibc in package database. thanks Am Donnerstag 12 Juni 2008 schrieb Dimitrios Ropokis: > This is not a real solution, > a problem has to be solved with tools that gentoo offers, > is the livecd solution? > In my mind no, > because the installed system must be ready to help itself! > > Στις 12-06-2008, ημέρα Πεμ, και ώρα 14:50 +0200, ο/η Nicolai Beuermann > > έγραψε: > > Am Donnerstag 12 Juni 2008 schrieb Dirk Heinrichs: > > > Hi, > > > > > > I guess the best way to finally solve this would be to > > > > > > quickpkg glibc-2.3.4 (just in case...) > > > emerge -C glib-2.3.4 > > > > you mean to unmerge glibc-2.3.4? > > When I do this my system is no longer useable. emerge wouldn´t work. > > > > Marvelously i´ve repaired it via reemerging glibc-2.6.1 via a live cd and > > chroot... > > > > > emerge -e world (or at least "system" if world is too much) > > > > > > HTH... > > > > > > Dirk > > > > thanks > > > > > > -- > > mailto: [EMAIL PROTECTED] > > http://www.nico-beuermann.de > > gnupg fingerprint: 56DA 4E32 3A4A 52AC B769 DFC2 BF3E 9805 09BB 4259 -- mailto: [EMAIL PROTECTED] http://www.nico-beuermann.de gnupg fingerprint: 56DA 4E32 3A4A 52AC B769 DFC2 BF3E 9805 09BB 4259 -- gentoo-user@lists.gentoo.org mailing list
Re: [gentoo-user] Mail on multiple laptops
Michael Pobega wrote: > recommend as a good way to keep the > mail synced on both of my machines. I would definitely recommend IMAP. With laptops you should use disconnected IMAP - you wont be online all the time you turn on your laptop. You got all your emails as a copy on each of your IMAP clients. Anytime you're online you may synchronize to the server. > > I was looking into IMAP but I can't really figure out how it works Maybe one can compare it with a simple remote filesystem. -- mailto: [EMAIL PROTECTED] http://www.nico-beuermann.de gnupg fingerprint: 56DA 4E32 3A4A 52AC B769 DFC2 BF3E 9805 09BB 4259 -- gentoo-user@lists.gentoo.org mailing list
[gentoo-user] virtualbox update v4.0.8 trouble
Hi, after updating to virtualbox-4.0.8 I cannot start a vm anymore. The following ebuilds are installed: app-emulation/virtualbox-4.0.8 app-emulation/virtualbox-additions-4.0.8 app-emulation/virtualbox-extpack-oracle-4.0.8 app-emulation/virtualbox-modules-4.0.8 The logs mention that symlinks are not permitted. /usr/lib64 is a symlink to /usr/lib on my system. / filesystem is ext4 on solid-state-drive mounted with default options. lsmod: vboxnetadp 4502 0 vboxnetflt 14541 0 vboxdrv 1745860 2 vboxnetadp,vboxnetflt By the way stable virtualbox-3.2.12-r4 is able to run the vm. cat VBox.log 00:00:00.676 VirtualBox 4.0.8-Gentoo r71778 linux.amd64 (May 29 2011 16:47:41) release log 00:00:00.676 Log opened 2011-05-29T17:02:39.312737000Z 00:00:00.676 OS Product: Linux 00:00:00.676 OS Release: 2.6.38-gentoo-r6-28.05.2011-01 00:00:00.676 OS Version: #1 SMP PREEMPT Sat May 28 15:37:06 CEST 2011 00:00:00.676 DMI Product Name: MacPro1,1 00:00:00.676 DMI Product Version: 1.0 00:00:00.677 Host RAM: 9997MB RAM, available: 8732MB 00:00:00.677 Executable: /usr/lib/virtualbox/VirtualBox 00:00:00.677 Process ID: 5576 00:00:00.677 Package type: LINUX_64BITS_GENERIC (OSE) 00:00:00.696 pdmR3LoadR0U: pszName="VMMR0.r0" rc=VERR_SUPLIB_SYMLINKS_ARE_NOT_PERMITTED szErr="Symlinks are not permitted: '/usr/lib64'" 00:00:00.696 VMSetError: /var/tmp/portage/portage/app-emulation/virtualbox-4.0.8/work/VirtualBox-4.0.8_OSE/src/VBox/VMM/VMMR3/VM.cpp(583) int vmR3CreateU(UVM*, uint32_t, int (*)(VM*, void*), void*); rc=VERR_SUPLIB_SYMLINKS_ARE_NOT_PERMITTED 00:00:00.696 VMSetError: Failed to load VMMR0.r0 00:00:00.696 VMSetError: /var/tmp/portage/portage/app-emulation/virtualbox-4.0.8/work/VirtualBox-4.0.8_OSE/src/VBox/VMM/VMMR3/VM.cpp(354) int VMR3Create(uint32_t, const VMM2USERMETHODS*, void (*)(VM*, void*, int, const char*, unsigned int, const char*, const char*, __va_list_tag*), void*, int (*)(VM*, void*), void*, VM**); rc=VERR_SUPLIB_SYMLINKS_ARE_NOT_PERMITTED 00:00:00.696 VMSetError: Unknown error creating VM 00:00:00.698 ERROR [COM]: aRC=NS_ERROR_FAILURE (0x80004005) aIID={515e8e8d-f932-4d8e-9f32-79a52aead882} aComponent={Console} aText={Failed to load VMMR0.r0 (VERR_SUPLIB_SYMLINKS_ARE_NOT_PERMITTED). 00:00:00.698 Unknown error creating VM (VERR_SUPLIB_SYMLINKS_ARE_NOT_PERMITTED)}, preserve=false 00:00:00.707 Power up failed (vrc=VERR_SUPLIB_SYMLINKS_ARE_NOT_PERMITTED, rc=NS_ERROR_FAILURE (0X80004005)) 00:00:00.725 Using XKB for keycode to scan code conversion Please help. I don't have an idea. Nico
Re: [gentoo-user] virtualbox update v4.0.8 trouble
Am 29.05.2011 23:59, schrieb Alan McKinnon: > Apparently, though unproven, at 23:50 on Sunday 29 May 2011, Nicolai > Beuermann > did opine thusly: > >> Hi, >> after updating to virtualbox-4.0.8 I cannot start a vm anymore. >> >> The following ebuilds are installed: >> app-emulation/virtualbox-4.0.8 >> app-emulation/virtualbox-additions-4.0.8 >> app-emulation/virtualbox-extpack-oracle-4.0.8 >> app-emulation/virtualbox-modules-4.0.8 >> >> The logs mention that symlinks are not permitted. /usr/lib64 is a >> symlink to /usr/lib on my system. > > Switch it to be the other way round which is how it should be. It works > perfectly here with the exact same packages: > > $ ls -al /usr/ > lrwxrwxrwx 1 root root 5 Oct 27 2010 lib -> lib64 Now it works. One question remains unanswered and that is how this wrong symbolic link was created??? By portage? > >> Please help. I don't have an idea. >> >> Nico > Thank you very much. Regards Nico
Re: [gentoo-user] grub2 on macbook pro
Am 21.01.2013 05:04, schrieb Douglas J Hunley: > I'm completely stuck on getting Grub2 to work with the EFI on a new > macbook pro. I have grub2 emerged w/o issue, and efibootmg as well. > I've looked at both the Grub2 wiki and the Macbook wiki and the > various directions are just /not/ clicking for me. Anyone have any > clue how to actually get the EFI on macbook to boot Grub from > /dev/sda1? > > -- > Douglas J Hunley (doug.hun...@gmail.com) > Twitter: @hunleyd Web: > douglasjhunley.com > G+: http://goo.gl/sajR3 > > Here I have two macs with linux (gentoo), both are running refit (http://refit.sourceforge.net/) to boot properly. regards Nico -- mailto: nicolai.beuerm...@gmx.de online: http://www.nico-beuermann.de
Re: [gentoo-user] Thunderbird Datepicker
Am 14.01.20 um 13:15 schrieb Jens Pelzetter: since some weeks ago I have a problem with Thunderbird/Lightning. In the dialogs for tasks or events I can't input or change dialog. Clicking on the buttons to show the calendar does nothing. If I try the edit an using the keyboard the date it reset to the previous value once the date input loses the focus. Does anyone of you experience to same problem. I have this problem on two different systems, one running Xfce and other one running KDE Plasma. Yes. Me. I'm on Plasma, too. Clicking the date in the editor does not open the calendar popup anymore. Clicking the time the popup to choose the time still appears. First I thought that's a permission problem, but other calendar apps on smartphone and mac work flawlessly. tb/lightning on mac os works as expected KDE Plasma Version: 5.17.4 KDE Frameworks Version: 5.64.0 Qt Version: 5.13.2 Kernel Version: 5.4.11-gentoo-14.01.2020 mail-client/thunderbird-68.4.1 did you try other distribution? nico -- mailto: nicolai.beuerm...@gmx.de online: https://www.nico-beuermann.de
Re: [gentoo-user] Thunderbird Datepicker
Am 15.01.20 um 17:42 schrieb Jens Pelzetter: Hello Nicolai, one Fedora everything works as expected. But Fedora has a slightly older version of Thunderbird and GTK. Which useflags has your Thunderbird set? Mine has the following useflags: dbus gmp-autoupdate lightning startup-notification system-av1 system-harfbuzz system-icu system-jpeg system-libevent system-libvpx system-sqlite system-webp I have the same USE flags +jack +pulseaudio did you try thunderbird-bin? -- mailto: nicolai.beuerm...@gmx.de online: https://www.nico-beuermann.de
Re: [gentoo-user] Thunderbird Datepicker
Am 17.01.20 um 08:25 schrieb Jens Pelzetter: Hello everyone, found a partial solution. The problem is somehow related to the locales. I did the following: * Go to Preferences / Advanced * In the Select Box for the language choose English (United States) and ensure that it is one top of the list * Ensure that Regional settings locale is selected for Date and Time Formatting * Restart Thunderbird After doing the Thunderbird UI will be in English, but the date picker will work again. For me it works again after changing lightning add-on to the official one from https://addons.thunderbird.net/de/thunderbird/addon/lightning/ What i did roughly: 1) disable german 2) disable lightning, restart tb 3) install lightning from official source, restart 4) activate german, restart Hope it also works for you. Have a great weekend! Nico -- mailto: nicolai.beuerm...@gmx.de online: https://www.nico-beuermann.de