Re: [gentoo-user] Speed up GoogleEarth on an ATI RV370 5B60 [Radeon X300 (PCIE)]?
Walter Dnes wrote: > Is it possible using standard Gentoo, or do I have to load a > proprietary driver? In either case, what are the steps to follow? I > did try Google, and found a zillion links on how to install GoogleEarth > under Wine, which is not what I want. > > Googleearth is in portage. You have to unmask it but it's in there and it worked fine for me. At least it was anyway. I hope that helps. Dale :-) :-) :-) -- www.myspace.com/dalek1967 -- gentoo-user@gentoo.org mailing list
[gentoo-user] Speed up GoogleEarth on an ATI RV370 5B60 [Radeon X300 (PCIE)]?
Is it possible using standard Gentoo, or do I have to load a proprietary driver? In either case, what are the steps to follow? I did try Google, and found a zillion links on how to install GoogleEarth under Wine, which is not what I want. -- Walter Dnes <[EMAIL PROTECTED]> In linux /sbin/init is Job #1 -- gentoo-user@gentoo.org mailing list
Re: [gentoo-user] Serial modem and permissions problem.
On Sun, Mar 04, 2007 at 02:18:41PM -0600, Dan Farrell wrote > FWIW, it was kind of a PITA to set up dialup in a secure way for > multiple users to use with traditional UNIX permissioning. I'm the only person on my machine, but things get complicated because the dialup is emergency backup for my ADSL connection. I can't get the two connections to co-exist peacefully. Furthermore, I use different ISPs for broadband and dialup, because problems at an ISP might take down both broadband and dialup access. That means that I have to copy over a different /etc/ssmtp/ssmtp.conf. So my ~/bin/dialup script is... #!/bin/bash /usr/bin/sudo /sbin/ifconfig eth0 down /usr/bin/sudo /usr/bin/cp -f /etc/ssmtp/295.ssmtp.conf /etc/ssmtp/ssmtp.conf /usr/bin/sudo /usr/sbin/pon 295caext The 3 commands... 1) tear down eth0 2) copy in the appropriate ssmtp.conf for my dialup ISP 3) run pon to actually dialup My ~/bin/dialdown (hang up dialup, and restore ADSL) script is #!/bin/bash /usr/bin/sudo /usr/sbin/poff /usr/bin/sudo /usr/bin/cp -f /etc/ssmtp/istop.ssmtp.conf /etc/ssmtp/ssmtp.conf /usr/bin/sudo /etc/init.d/net.eth0 restart 1) hang up the dialup connection 2) copy in the appropriate ssmtp.conf for my ADSL ISP 3) bring up eth0 To enable doing this without passwords, my /etc/sudoers contains... waltdnes m3000 = (root) NOPASSWD: /sbin/ifconfig eth0 down waltdnes m3000 = (root) NOPASSWD: /usr/bin/cp -f /etc/ssmtp/295.ssmtp.conf /etc/ssmtp/ssmtp.conf waltdnes m3000 = (root) NOPASSWD: /usr/sbin/pon 295caext waltdnes m3000 = (root) NOPASSWD: /usr/sbin/poff waltdnes m3000 = (root) NOPASSWD: /usr/bin/cp -f /etc/ssmtp/istop.ssmtp.conf /etc/ssmtp/ssmtp.conf waltdnes m3000 = (root) NOPASSWD: /etc/init.d/net.eth0 restart -- Walter Dnes <[EMAIL PROTECTED]> In linux /sbin/init is Job #1 -- gentoo-user@gentoo.org mailing list
Re: [gentoo-user] Synce and gentoo : crash RAPI driver
On Sat, 2007-03-03 at 09:21 +0100, Arnaud FARINE wrote: > After installed all lib from subversion, when I try to emerge > libopensync-plugin-synce (or I try to compile it directly from > subversion) I obtain the same message when configure is running : > can't find synce library !!! > > I find some synce lib in /usr/lib and /usr/local/lib this is because you need to specify to configure where you installed the library. Have a look at the wiki: http://www.synce.org/index.php/Building_SynCE_with_Windows_Mobile_2005_support_from_Subversion running export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/ before ./configure usually does the trick. HTH, -- Iain Buchanan Monday is an awful way to spend one seventh of your life. -- gentoo-user@gentoo.org mailing list
Re: [gentoo-user] TERM=Eterm unknown now?
Uwe Klosa wrote: You have to run emerge -av1 ncurses. This fixes the problem. Cheers Uwe Mark Kirkwood wrote: I've just run into this after an emerge: Using Eterm 0.9.4 from a remote host to my Gentoo box: $ clear 'Eterm': unknown terminal type. I can work around this by amending .bash_profile to set TERM to 'xterm' if it is currently 'Eterm' - but I'm curious as to why or what has removed 'Eterm' from the termcap database (or similar). Thanks - performed the emerge and indeed it is fixed. Mark -- gentoo-user@gentoo.org mailing list
Re: [gentoo-user] Serial modem and permissions problem.
Dan Farrell wrote: > On Sun, 04 Mar 2007 00:30:23 -0600 > Dale <[EMAIL PROTECTED]> wrote: > > >> Hmmm, I wonder why that was changed? I did a google search for uucp >> and group and it was interesting. It seems this is the norm now. >> When I added fax to the search, it seems that will solve my problem >> of having to fax something as root instead of a user. ;-) Learn >> something every day. I just wonder about my UPS and how it is going >> to like this change. Add nut to the group to I guess. >> >> Well, now we know huh? >> >> Thanks for the help. I better watch the rules update next time. >> >> Dale >> >> :-) :-) :-) :-) >> >> > FWIW, it was kind of a PITA to set up dialup in a secure way for > multiple users to use with traditional UNIX permissioning. The > reorganization of groups, if it deals with that ugliness (visit > http://gentoo-wiki.com/HOWTO_Setup_a_Dialup_Connection#Winmodems_with_Lucent_Apollo_.28ISA.29_and_Mars_.28PCI.29_chipsets > to see for yourself what I mean) I say, it's worth a bit of > reorganization of users. > I also went diggin in the groups file, there is a dialout group in there that *should* address this. I mentioned in a early reply that this was likely a security thing. Your link seems to show that it is that. What I can't figure out is why no one warned us? I only use Linux and only have one puter that connects to the net so if I didn't know to check the permissions of the modem, I could have been stuck. Plus, I did get that error about my UPS. That was really helpful there. It actually showed me the permissions were wrong and I noticed they were changed from what they used to be. I also notice there is no mention of the uucp group in the link. It does mention using the group ppp but not uucp. Anyway, I plan to watch those udev config updates closer next time. They have always worked before but I learned that *may* not always be true. Thanks for the info. Dale :-) :-) :-) :-) -- www.myspace.com/dalek1967
Re: [gentoo-user] Serial modem and permissions problem.
On Sun, 04 Mar 2007 00:30:23 -0600 Dale <[EMAIL PROTECTED]> wrote: > Mark Kirkwood wrote: > > Dale wrote: > > > >> If you can, check to see if udev was upgraded and there was a > >> notice that there are group changes. I would think udev would be > >> what was changed. I'm curious to see your reply though. > > > > Ok - here is the state after the emerge (recall group *was* tty): > > > > $ ls -l /dev/ttyS* > > crw-rw 1 root uucp 4, 64 Mar 4 15:53 /dev/ttyS0 > > crw-rw 1 root uucp 4, 65 Mar 4 15:53 /dev/ttyS1 > > crw-rw 1 root uucp 4, 66 Mar 4 15:53 /dev/ttyS2 > > crw-rw 1 root uucp 4, 67 Mar 4 15:53 /dev/ttyS3 > > > > and /etc/udev/rules.d/50-udev.rules has been updated in the emerge > > to make this ownership change: > > > > $ grep ttyS 50-udev.rules > > KERNEL=="ttyS[0-9]*", NAME="%k", SYMLINK="tts/%n", GROUP="uucp", > > MODE="0660" > > > > I didn't see any notice, it just gets processed when doing > > etc-update. Probably worth eyeballing any changes to 50-udev.rules! > > > > > > So looks like you need to be in the uucp group to dial-up now. > > > > Cheers > > > > Mark > > Hmmm, I wonder why that was changed? I did a google search for uucp > and group and it was interesting. It seems this is the norm now. > When I added fax to the search, it seems that will solve my problem > of having to fax something as root instead of a user. ;-) Learn > something every day. I just wonder about my UPS and how it is going > to like this change. Add nut to the group to I guess. > > Well, now we know huh? > > Thanks for the help. I better watch the rules update next time. > > Dale > > :-) :-) :-) :-) > FWIW, it was kind of a PITA to set up dialup in a secure way for multiple users to use with traditional UNIX permissioning. The reorganization of groups, if it deals with that ugliness (visit http://gentoo-wiki.com/HOWTO_Setup_a_Dialup_Connection#Winmodems_with_Lucent_Apollo_.28ISA.29_and_Mars_.28PCI.29_chipsets to see for yourself what I mean) I say, it's worth a bit of reorganization of users. -- gentoo-user@gentoo.org mailing list
Re: [gentoo-user] X application instability
Hi, I got the same problem (mostly with audacious, scite and inkscape). Did someone find a solution ? Thanks Ben -- gentoo-user@gentoo.org mailing list
Re: [gentoo-user] glibc update 2.4 > 2.5 FAILED postinst causes everything to segfault
Michael [Plouj] Ploujnikov ha scritto: >> Try also using the "emergency shell" /bin/bb, it should be statically >> linked and therefore independent from glibc. > Thanks. I had no idea I had that thing. Me too, but Google is always a bliss. :) m. -- gentoo-user@gentoo.org mailing list
[gentoo-user] Portage elogs no longer getting through
I used to get messages from most of the ebuilds I emerged. This is no longer happening. I've got the following lines (still) in /etc/make.conf: PORTAGE_ELOG_CLASSES="info warn error log" PORTAGE_ELOG_MAILURI="[EMAIL PROTECTED] localhost" (except there's a real domain instead of nospamplease). Shouldn't I still get these messages? -- Kevin O'Gorman -- gentoo-user@gentoo.org mailing list
Re: [gentoo-user] glibc update 2.4 > 2.5 FAILED postinst causes everything to segfault
First of all, thanks for the replies. Just so you know, I was able to get my system to a working state. Read the bit about untarring the old glibc into my system in my email. I don't reallly have a clue if any of those are relevant but have a look yourself.. Otherwise go ahead and file the bug. http://tinyurl.com/yoebg6 Ok. I'll be looking at these in the near future. -- Libre Software: http://www.gnu.org/philosophy/free-sw.html -- gentoo-user@gentoo.org mailing list
[gentoo-user] adesklets
Hi All, I am experimenting with adesklets, but do not seem to be able to run adesklets -i successfully. When I select a desklet and then hit return it says: = Retrieving data online... OK Checking locally installed desklets... OK Downloading Calendar desklet... = and then nothing much happens. Should I be running this as root? What's the gentoo way for making it work? -- Regards, Mick pgp0HPWxylEGW.pgp Description: PGP signature
Re: [gentoo-user] glibc update 2.4 > 2.5 FAILED postinst causes everything to segfault
On Saturday 03 March 2007 23:56:19 Michael [Plouj] Ploujnikov wrote: > Before I file this as a bug I'd like to make sure it's not caused by > something wrong with my system. Please help me determine that. > In the past two days I was trying to upgrade my glibc from version 2.4 > to 2.5. Each time I tried it the emerge process failed at the very > last point - I think when the actual files were being installed into > my system. Here is the relevant output: > > $ emerge -av glibc > ... [SNIP] > >>> /lib64/libBrokenLocale.so.1 -> libBrokenLocale-2.5.so > > !!! FAILED postinst: 2816 > > I couldn't find what that error means. > > What happens after this is pretty nasty. Any program that I run segfaults: I don't reallly have a clue if any of those are relevant but have a look yourself.. Otherwise go ahead and file the bug. http://tinyurl.com/yoebg6 -- Bo Andresen pgphayB1i3NEN.pgp Description: PGP signature
Re: [gentoo-user] A DNS question.
On Sun, Mar 04, 2007 at 11:52:55AM -0600, Dan Farrell wrote: > On Sat, 3 Mar 2007 23:16:47 +0100 > "Michal 'vorner' Vaner" <[EMAIL PROTECTED]> wrote: > > > The [ X ] is a machine, is a network and those C? are names of > > the machine on the net. Now, ping C1 on the middle machine. Should it > > ping itself on the right interface or look for the left computer? You > > should at last have something like: > > > > [ Name1 ] C1 C2 [ Name2 ] C1 C2 [ Name3 ] > > /etc/resolv.conf has a search line in which you can set up domains to > automatically append to hostnames that aren't fully qualified. If the > subnets had different subdomain names, the order/presence/absence in > resolv.conf would determin which C? was reached from Name2 Sure you can do all this - but I still think you just do better if you name the computer in some reasonable way - give it its own name that is the same everywhere (even if it has different domains behind it) and add nicknames for services. After all, it IS the same computer. If you do not give the computer a more global name, you need to ask yourself from which network you access it and decide. I did not say you can not do it other way, just that it probably is a good idea to act in a way most people take as sane. With regards -- No, you will not fix me Computer Michal 'vorner' Vaner pgpfIqNUtpfKV.pgp Description: PGP signature
Re: [gentoo-user] A DNS question.
On Sat, 3 Mar 2007 23:16:47 +0100 "Michal 'vorner' Vaner" <[EMAIL PROTECTED]> wrote: > The [ X ] is a machine, is a network and those C? are names of > the machine on the net. Now, ping C1 on the middle machine. Should it > ping itself on the right interface or look for the left computer? You > should at last have something like: > > [ Name1 ] C1 C2 [ Name2 ] C1 C2 [ Name3 ] /etc/resolv.conf has a search line in which you can set up domains to automatically append to hostnames that aren't fully qualified. If the subnets had different subdomain names, the order/presence/absence in resolv.conf would determin which C? was reached from Name2 -- gentoo-user@gentoo.org mailing list
Re: [gentoo-user] A DNS question.
On Sun, 04 Mar 2007 10:57:01 +1100 Reuben Farrelly <[EMAIL PROTECTED]> wrote: > That way there is no need to ever have hosts resolve to private RFC > 1918 IP addresses from the Internet. in fact, and as already hinted at, there's no way for traffic from the outside world to be routed to a host with a private ip address, so names publicly resolving to private addresses certainly aren't going to work. You should use NAT instead. -- gentoo-user@gentoo.org mailing list
Re: [gentoo-user] configurtion error
At Sun, 04 Mar 2007 19:13:12 +1000 Richard Watson <[EMAIL PROTECTED]> wrote: > I've run etc-update after my last emerge --sync and world update but I > still get "configuration error - unknown item 'PASS_MIN_LEN' (notify > administrator)" when I su or log in as Root. Anybody got any ideas on > how I can fix this. Thanks, Richard http://bugs.gentoo.org/show_bug.cgi?id=131097 The problem is in /etc/login.defs. Here is a workaround # AJG: Comment the following line. # See bug 131097. I just added a new group and user, which triggers this. # PASS_MIN_LEN 5 As my comment says, it is triggered by using the gnome tool to add a new user and group. allan -- gentoo-user@gentoo.org mailing list
Re: [gentoo-user] glibc update 2.4 > 2.5 FAILED postinst causes everything to segfault
Michael [Plouj] Ploujnikov ha scritto: > Hi, > What happens after this is pretty nasty. Any program that I run segfaults: > > # ls > Segmentation fault Try also using the "emergency shell" /bin/bb, it should be statically linked and therefore independent from glibc. m. -- gentoo-user@gentoo.org mailing list
Re: [gentoo-user] glibc update 2.4 > 2.5 FAILED postinst causes everything to segfault
Michael [Plouj] Ploujnikov ha scritto: > Hi, > Before I file this as a bug I'd like to make sure it's not caused by > something wrong with my system. Please help me determine that. > In the past two days I was trying to upgrade my glibc from version 2.4 > to 2.5. Each time I tried it the emerge process failed at the very > last point - I think when the actual files were being installed into > my system. Here is the relevant output: Don't know if it's your system or a glibc bug (my upgrade went OK), but anyway in the forums I found what seems to be a possible solution to have a working system back (the poster had a similar, but not identical problem): "I downloaded the 2006.0 livecd, boot it, chroot into my system and had the same issues with grep, sed, et al. (not able to emerge anything). exited the chroot, built a binary of glibc-2.3.5 in the CD environment (emerge -B sys-libs/glibc), moved it to my packages dir (/mnt/gentoo/usr/portage/packages/{All,sys-libs}/glibc-2.3.5...whatever it was), jumped back into the chroot, emerged the binary which worked and now i'm in the process of rebuilding my system (emerge linux-headers && emerge -e system && emerge -e ...). I'm taking the opportunity to move to gcc 4.1 (already done) and am building a new binary for glibc 2.3.6-r3 just incase the emerge of 2.4 dies && blows things up again. i'll report back here if and when it's working." m. -- gentoo-user@gentoo.org mailing list
[gentoo-user] java vm, GENTOO_VM value
I'm trying to recompile openoffice with java to get the help working. However I've run into a problem I don't understand. When I try to emerge dev-java/bsf-2.3.0-r2 it fails and complains that: "* Home for VM 'blackdown-jdk-1.4.2' does not exist: /usr/lib/jvm/blackdown-jdk-1.4.2/ * Invalid value for GENTOO_VM: blackdown: blackdown-jdk-1.4.2" Where is the GENTOO_VM value set? I don't have blackdown on my system anymore, I switched to sun abut six months ago. I've checked with java-config --list-available-vms "The following VMs are available for generation-2: *) Sun JDK 1.5.0.10 [sun-jdk-1.5]" and with eselect java-vm show " sun-jdk-1.5" So the question is why is the GENTOO_VM set to blackdown, and how do I change it? Thanks Matt -- %%% Dr. Matthew R. Lee CASEB & ECIM Departamento de Ecologia, P. Universidad Catolica de Chile, Alameda 340, Santiago. CP 6513677 CHILE [EMAIL PROTECTED] [EMAIL PROTECTED] URL: meiochile.matthewlee.org %%% -- gentoo-user@gentoo.org mailing list
Re: [gentoo-user] TERM=Eterm unknown now?
You have to run emerge -av1 ncurses. This fixes the problem. Cheers Uwe Mark Kirkwood wrote: I've just run into this after an emerge: Using Eterm 0.9.4 from a remote host to my Gentoo box: $ clear 'Eterm': unknown terminal type. I can work around this by amending .bash_profile to set TERM to 'xterm' if it is currently 'Eterm' - but I'm curious as to why or what has removed 'Eterm' from the termcap database (or similar). Cheers Mark begin:vcard fn:Uwe Klosa n:Klosa;Uwe org:Uppsala University;Electronic Publishing Centre adr:;;;Uppsala;;75120;Sweden email;internet:[EMAIL PROTECTED] tel;work:+46 (0)18 471 7658 url:http://epc.ub.uu.se version:2.1 end:vcard
[gentoo-user] glibc update 2.4 > 2.5 FAILED postinst causes everything to segfault
Hi, Before I file this as a bug I'd like to make sure it's not caused by something wrong with my system. Please help me determine that. In the past two days I was trying to upgrade my glibc from version 2.4 to 2.5. Each time I tried it the emerge process failed at the very last point - I think when the actual files were being installed into my system. Here is the relevant output: $ emerge -av glibc ... /lib64/libnss_nis.so.2 -> libnss_nis-2.5.so /lib64/libm.so.6 -> libm-2.5.so /lib64/libnss_files.so.2 -> libnss_files-2.5.so /lib64/libresolv.so.2 -> libresolv-2.5.so /lib64/libnsl.so.1 -> libnsl-2.5.so /lib64/libutil.so.1 -> libutil-2.5.so /lib64/ld-linux-x86-64.so.2 -> ld-2.5.so /lib64/libcidn.so.1 -> libcidn-2.5.so /lib64/libBrokenLocale.so.1 -> libBrokenLocale-2.5.so !!! FAILED postinst: 2816 I couldn't find what that error means. What happens after this is pretty nasty. Any program that I run segfaults: # ls Segmentation fault I can't even chroot into the system with a live cd anymore. The only fix I found was to untar the saved binary archive onto my system's root with the help of a live cd. Then I can unmerge glibc-2.5 and my system seems to function without problems. I've checked that my system doesn't have any other dependency issues with revdep-rebuild. Here is more info about my system: # emerge --info Portage 2.1.2-r9 (default-linux/amd64/2006.0, gcc-4.1.1, glibc-2.4-r4, 2.6.17-gentoo-r8 x86_64) = System uname: 2.6.17-gentoo-r8 x86_64 AMD Athlon(tm) 64 Processor 3500+ Gentoo Base System release 1.12.9 Timestamp of tree: Fri, 02 Mar 2007 13:20:01 + ccache version 2.4 [enabled] dev-java/java-config: 1.3.7, 2.0.30 dev-lang/python: 2.4.3-r4 dev-python/pycrypto: 2.0.1-r5 dev-util/ccache: 2.4-r6 sys-apps/sandbox:1.2.17 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.16.1-r3 sys-devel/gcc-config: 1.3.14 sys-devel/libtool: 1.5.22 virtual/os-headers: 2.6.17-r2 ABI="amd64" ACCEPT_KEYWORDS="amd64" ALSA_CARDS="ali5451 als4000 atiixp atiixp-modem bt87x ca0106 cmipci emu10k1x ens1370 ens1371 es1938 es1968 fm801 hda-intel intel8x0 intel8x0m maestro3 trident usb-audio via82xx via82xx-modem ymfpci" ALSA_PCM_PLUGINS="adpcm alaw asym copy dmix dshare dsnoop empty extplug file hooks iec958 ioplug ladspa lfloat linear meter mulaw multi null plug rate route share shm softvol" ANT_HOME="/usr/share/ant-core" ARCH="amd64" ASFLAGS_x86="--32" AUTOCLEAN="yes" CBUILD="x86_64-pc-linux-gnu" CCACHE_SIZE="4G" CDEFINE_amd64="__x86_64__" CDEFINE_x86="__i386__" CFLAGS="-march=k8 -pipe -fomit-frame-pointer -O2" CFLAGS_x86="-m32 -L/emul/linux/x86/lib -L/emul/linux/x86/usr/lib" CHOST="x86_64-pc-linux-gnu" CHOST_amd64="x86_64-pc-linux-gnu" CHOST_x86="i686-pc-linux-gnu" CLASSPATH="." CLEAN_DELAY="5" CONFIG_PROTECT="/etc /usr/kde/3.5/env /usr/kde/3.5/share/config /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/java-config/vms/ /etc/revdep-rebuild /etc/terminfo /etc/texmf/web2c" CVS_RSH="ssh" CXXFLAGS="-march=k8 -pipe -fomit-frame-pointer -O2" DEFAULT_ABI="amd64" DISPLAY=":0.0" DISTDIR="/usr/portage/distfiles" EDITOR="/usr/bin/vim" ELIBC="glibc" EMERGE_DEFAULT_OPTS="-v" EMERGE_WARNING_DELAY="10" FEATURES="autoconfig buildpkg ccache distcc distlocks metadata-transfer parallel-fetch sandbox sfperms strict" FETCHCOMMAND="/usr/bin/wget -t 5 -T 60 --passive-ftp -P ${DISTDIR} ${URI}" GCC_SPECS="" GDK_USE_XFT="1" GENERATION="2" GENTOO_MIRRORS="ftp://distro.ibiblio.org/pub/linux/distributions/gentoo/ http://gentoo.gg3.net/ http://ftp.gentoo.or.kr/ http://mirror.gentoo.gr.jp"; GUILE_LOAD_PATH="/usr/share/guile/1.6" G_BROKEN_FILENAMES="1" G_FILENAME_ENCODING="UTF-8" HISTFILESIZE="10" HISTSIZE="10" HISTTIMEFORMAT="%c " HOME="/root" INFOPATH="/usr/share/info:/usr/share/binutils-data/x86_64-pc-linux-gnu/2.16.1/info:/usr/share/gcc-data/x86_64-pc-linux-gnu/4.1.1/info:/usr/share/info/emacs-21" INPUT_DEVICES="keyboard mouse" JAVAC="/etc/java-config-2/current-system-vm/bin/javac" JAVA_HOME="/etc/java-config-2/current-system-vm" JDK_HOME="/etc/java-config-2/current-system-vm" KDEDIRS="/usr/kde/3.5:/usr:/usr/local:/usr/kde/3.5:/usr:/usr/local" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LDFLAGS_x86="-m elf_i386 -L/emul/linux/x86/lib -L/emul/linux/x86/usr/lib" LESS="-R -M --shift 5" LESSOPEN="|lesspipe.sh %s" LIBDIR_amd64="lib64" LIBDIR_x86="lib32" LOGNAME="root" MAKEOPTS="-j2" MANPATH="/usr/local/share/man:/usr/share/man:/usr/share/binutils-data/x86_64-pc-linux-gnu/2.16.1/man:/usr/share/gcc-data/x86_64-pc-linux-gnu/4.1.1/man:/opt/blackdown-jdk-1.4.2.03/man:/etc/java-config/system-vm/man/:/usr/qt/3/doc/man:/usr/qt/3/doc/man:/opt/vmware/server/man" MULTILIB_ABIS="amd64 x86" MULTILIB_STRICT_DENY="64-bit.*shared object" MULTILIB_STRICT_DIRS="/lib /usr/
Re: [gentoo-user] Re: X application instability
Hi, I got the same problem (mostly with audacious, scite and inkscape). Did you find a solution ? Thanks Ben PS : sorry if this message appeared more than one time, I'm new to mailing lists and I didn't really know how to write the subject. -- gentoo-user@gentoo.org mailing list
[gentoo-user] Re: X application instability
Hi, I got the same problem (mostly with audacious, scite and inkscape). Did you find a solution ? Thanks Ben -- gentoo-user@gentoo.org mailing list
Re: [gentoo-user] A DNS question.
Hello, On Sat, Mar 03, 2007 at 04:49:48PM -0800, Bob Young wrote: > Now with regards to eth1, it is my intent to configure eth1 as with the > machines only public IP address (69.12.134.79), and configure BIND to listen > on eth1 as a secondary domain name server, the primary domain name server > would have an "A Record" for 69.12.134.79 and it would be named > ns.somedomainname.com. IOW it would have a different "base" name (ns) than > eth0 (gentoo). My question is whether or not this is valid/"legal"/okay, > i.e. is it likely to cause any problems? I do not see why this would be forbidden, however I think it would be a good idea to let gentoo.somedomainname.com resolv to the same IP as ns.somedomainname.com. Or better, ns be a pointer to gentoo (if that is possible, I'm not sure here). It is for clarity and - well, this one is crazy, but it IMO adds to the computer's "personality" and the computer deserves a proper name. With regards. -- Hallowed be the zeroes and ones Michal "vorner" Vaner pgp17T5LMitJF.pgp Description: PGP signature
Re: [gentoo-user] configurtion error
I've run etc-update after my last emerge --sync and world update but I still get "configuration error - unknown item 'PASS_MIN_LEN' (notify administrator)" when I su or log in as Root. Anybody got any ideas on how I can fix this. Thanks, Richard -- gentoo-user@gentoo.org mailing list