[gentoo-user] Cannot emerge 32 bits version of gnome libraries

2020-12-24 Thread François-Xavier Carton
C++ but not for C. Also, I can emerge other non-gnome multilib packages just fine. Has anyone encountered this before? Any tips for debugging that? Thanks, François-Xavier

Re: [gentoo-user] Upgrade an old system

2020-12-15 Thread François-Xavier Carton
On Mon, Dec 14, 2020 at 02:57:22PM -0700, the...@sys-concept.com wrote: > [snip] > > emerge --update --oneshot portage > > !!! All ebuilds that could satisfy > ">=app-crypt/openpgp-keys-gentoo-release-20180706" have been masked. > !!! One of the following masked packages is required to complete

Re: [gentoo-user] Cannot start xfce from lightdm [solved]

2020-11-01 Thread François-Xavier Carton
On Sun, Nov 01, 2020 at 04:18:23PM +0100, François-Xavier Carton wrote: > Ah, this might be the problem. I don't have that file, I only have > 00-xhost in there. I checked the dbus ebuild, I need to enable the X use > flag. Will do, and report back :) Thanks for the pointer! >

[gentoo-user] Cannot start xfce from lightdm

2020-11-01 Thread François-Xavier Carton
o graphical login managers, and I'm running out of ideas. Does anyone have some idea of what I could try to get xfce running from lightdm? Thanks, -François-Xavier

Re: [gentoo-user] Cannot start xfce from lightdm

2020-11-01 Thread François-Xavier Carton
On Sun, Nov 01, 2020 at 02:39:02PM +0100, netfab wrote: > Le 01/11/20 ?? 13:32, Fran??ois-Xavier Carton a tapot?? : > > I'm not used to graphical login managers, and I'm running out of > > ideas. Does anyone have some idea of what I could try to get xfce > > runn

Re: [gentoo-user] Re: Building packages in different prefix without rebuilding system packages

2020-05-15 Thread François-Xavier Carton
On Fri, May 15, 2020 at 12:53:16PM +0200, Michael Haubenwallner wrote: > Hi François-Xavier, > > What you're after is known as "Prefix/Stack", where you have some "base" > Prefix, which's portage does manage packages in another - stacked - Prefix. >

Re: [gentoo-user] Building packages in different prefix without rebuilding system packages

2020-05-14 Thread François-Xavier Carton
On Thu, May 14, 2020 at 09:26:10AM -0400, Michael Orlitzky wrote: > On 5/14/20 7:55 AM, Neil Bothwick wrote: > > On Thu, 14 May 2020 18:17:06 +0800, Pengcheng Xu wrote: > > > >> That seems interesting. Do we need to include Portage install prefix > >> (/var/tmp/portage/category/package/..., the i

[gentoo-user] Building packages in different prefix without rebuilding system packages

2020-05-14 Thread François-Xavier Carton
y of doing that, but I feel like it shouldn't be too hard, because EPREFIX almost does what I want. Does someone know if it's possible without too much tweaking? Thanks, -François-Xavier

Re: [gentoo-user] Building packages in different prefix without rebuilding system packages

2020-05-14 Thread François-Xavier Carton
On Thu, May 14, 2020 at 09:07:43AM +0100, Michael wrote: > On Thursday, 14 May 2020 06:13:33 BST Dale wrote: > > François-Xavier Carton wrote: > > > Hi, > > > > > > Is there a way of installing packages in a different prefix while still > > > usin

Re: [gentoo-user] 32GB RAM and Swap

2020-05-03 Thread François-Xavier Carton
On Sat, May 02, 2020 at 10:12:08PM +0800, William Kenworthy wrote: > I am afraid this is an ".. it depends" question. > Yes, I agree. > If you work with large images or data sets, swap can be really handy.  > If you are doing a little programming, web browsing, reading email you > will *probably

Re: [gentoo-user] g-cpan equivalent for python

2019-11-24 Thread François-Xavier Carton
On Sat, Nov 23, 2019 at 11:21:46AM +0100, Dan Johansson wrote: > > OK, thanks for the feedback. > I will look into creating a ebuild for this (not my first ebuild, but > the first that has anything to do with python). > But, I will first try to build it in a "protected" environment like > Ralph

Re: [gentoo-user] vimrc in (g)vim and highlighting

2019-10-04 Thread François-Xavier CARTON
On 10/3/19 10:23 AM, Samuraiii wrote: Hi list, I have strange problem with my ~/.vimrc file. When I have it (does not matter if it is empty or not), the syntax highlighting is not working at all. But when I delete it, vim highlights as expected (I have already tried to set "incompatible" mo

Re: [gentoo-user] escape from i3lock

2019-07-10 Thread François-Xavier CARTON
On 7/10/19 7:03 PM, Ian Zimmerman wrote: Here is my next "low information" question, haha. I use i3lock which is like Xscreensaver but much much simpler; it plays no movies or games, just blanks the screen with a configured color or image. To unlock it you have to type your password. It bother

Re: [gentoo-user] UEFI kernel installation?

2019-06-17 Thread François-Xavier CARTON
On 6/17/19 5:37 AM, Grant Taylor wrote: I doubt it. I've routinely done emerges on machines with < 16 GB of memory and 2 GB of swap.?? Including llvm, clang, gcc, rust, Firefox and Thunderbird. I routinely do an emerge -DuNe @world on a VPS with 1 GB of memory and 1 GB of swap.?? It works ju

Re: [gentoo-user] OT scripting - strip zero if between period and digit

2019-01-22 Thread François-Xavier CARTON
Le 23/01/2019 à 04:19, Adam Carter a écrit : > François-Xavier > > My bad, it should be: sed 's/0*\([0-9][0-9]*\)/\1/g' (tests are indeed needed!) Many thanks François. This is almost right, but it is also stripping zeros that follow a letter,

Re: [gentoo-user] OT scripting - strip zero if between period and digit

2019-01-21 Thread François-Xavier CARTON
Le 22/01/2019 à 03:05, François-Xavier CARTON a écrit : Le 22/01/2019 à 00:50, Adam Carter a écrit : I need to clean up a file which has IP addresses with leading zeros in some of the octets so I need to make, say, .09 into .9 How do i do that in sed/awk/whatever? I believe that should do

Re: [gentoo-user] OT scripting - strip zero if between period and digit

2019-01-21 Thread François-Xavier CARTON
Le 22/01/2019 à 00:50, Adam Carter a écrit : I need to clean up a file which has IP addresses with leading zeros in some of the octets so I need to make, say, .09 into .9 How do i do that in sed/awk/whatever? I believe that should do: sed 's/0*\([0-9]\)/\1/g' eg. $ sed 's/0*\([0-9]\)/\1/g

Re: [gentoo-user] Xorg on really old PC

2018-08-31 Thread François-Xavier CARTON
Le 31/08/2018 à 05:10, Walter Dnes a écrit : Given the inter-connectedness of linux libraries, you're not going to get an ancient version of mesa to work with a new Gentoo install. That's where Gentoo helps, being a source-based distribution :) Forget about OpenGL and undo the masks. A

[gentoo-user] Xorg on really old PC

2018-08-30 Thread François-Xavier CARTON
ne any suggestion on what configuration and versions I should use? Thanks, François-Xavier Carton [1] https://wiki.gentoo.org/index.php?title=Intel&diff=599748&oldid=599742 [2] Xorg.0.log: http://sprunge.us/ZdWJNH

Re: [gentoo-user] Heads up: Gentoo fouls up mail transport agent.

2018-07-21 Thread François-Xavier CARTON
Le 22/07/2018 à 00:10, Mike Gilbert a écrit : On Sat, Jul 21, 2018 at 5:03 PM, Alan Mackenzie wrote: Hello, Gentoo. Right at the moment, I feel a lot of sympathy with Alan Grimes, and need a lot of restraint in avoiding the use of swear words in describing some Gentoo developer. ... nullmail

Re: [gentoo-user] [OT] network discovery tools

2011-05-25 Thread Vincent-Xavier JUMEL
dhcp can assign static adresses ! Thus, it's easier to manage (only the dhcp > server to admin !) > > I am not english, thus, don't know website with such doc (in english) but you > can easily find it on internet ! > Configuration sample are even given in isc-dhcp-server d

Re: [gentoo-user] Automation: Ripping DVDs to disk

2011-03-08 Thread Vincent-Xavier JUMEL
is quite clear on the subject, examples are all around the net. Cheers. -- Vincent-Xavier JUMEL GPG Id: 0x2E14CE70 http://thetys-retz.net Rejoignez les 5336 adhérents de l'April http://www.april.org/adherer Parinux, logiciel libre à Paris : http://www.parinux.org

Re: [gentoo-user] config with wireless

2011-01-14 Thread Xavier Parizet
nf. ctrl_interface=/var/run/wpa_supplicant ctrl_interface_group=0 ap_scan=1 network={     ssid="huang"     proto=WPA2     psk="Xda111524*&^" } but kernel start show that network config ist correct, unexpected with "}" -- Xavier Parizet http://gentooist.com

Re: [gentoo-user] No module named sqlite3

2011-01-08 Thread Xavier Parizet
e library _sqlite.so exists in directory /usr/lib/python2.6/site-packages/pysqlite2/. [SNIP] -- Xavier Parizet http://gentooist.com

Re: [gentoo-user] depclean wants to remove hal, which kills xdm

2010-12-20 Thread Vincent-Xavier JUMEL
computer. You should build it with udev support. > I can easily add hal to world, but should xdm depend on it? > > allan > -- Vincent-Xavier JUMEL GPG Id: 0x2E14CE70 http://thetys-retz.net Rejoignez les 5312 adhérents de l'April http://www.april.org/adherer Parinux, logiciel libre à Paris : http://www.parinux.org

Re: [gentoo-user] Re: 3Com PCMCIA network card not recognised

2010-12-13 Thread Xavier Parizet
update-pciids Or USE flag +network-cron which installs a CRON task to run thoses utils on a regular basis (once a month or sth). hth, James -- Xavier Parizet http://gentooist.com

Re: [gentoo-user] Firefox doesn't build - gcc compilers

2010-12-13 Thread Xavier Parizet
s also. You need to run: gcc-config x86_64-pc-linux-gnu-4.4.4 && source /etc/profile && gcc -v If the above commande output gcc version 4.4.4, then you're done, just re-run emerge. Portage 2.1.9.24 (default/linux/amd64/10.0, [unavailable], glibc-2.11.2-r3, 2.6.34-ge

Re: [gentoo-user] vlc-1.1.4 won't shoutcast?

2010-10-03 Thread Vincent-Xavier JUMEL
Le 03 octobre à 14:05 Mick a écrit > It doesn't show up in the menu anymore. The previous version was working > fine. Am I missing some crafty USE flag? If you're using vlc 1.1.0 or above, you should have read http://www.videolan.org/press/2010-1.html which informs about the situation and why th

Re: [gentoo-user] nss_updatedb && pam_ccreds

2010-07-30 Thread Vincent-Xavier JUMEL
Le 29 juillet à 18:50 Giampiero Gabbiani a écrit > Hi all, > I configured nss & pam in order to make LDAP authentication. In order to > have a proper authentication and attributes retrieving I added also ccreds > and nss_updatedb modifying /etc/pam.d/system-auth for the first and Did you tried t

Re: [gentoo-user] dvd playing problems

2010-05-11 Thread Xavier Parizet
On 05/11/2010 08:36 PM, meino.cra...@gmx.de wrote: > Xavier Parizet [10-05-11 19:48]: >> On 05/11/2010 06:42 PM, meino.cra...@gmx.de wrote: >>> Hi, >>> >>> when playing dvds the movie gets stopped from time to time >>> and restarts itsself after a s

Re: [gentoo-user] dvd playing problems

2010-05-11 Thread Xavier Parizet
54:40 CEST 2010 i686 AMD > Athlon(tm) 64 X2 Dual Core Processor 3800+ AuthenticAMD GNU/Linux > VLC version 1.0.6 Goldeneye > Player SVN-r30554-4.3.4 > The linux kernel is the vanilla version. Try to use PATA drivers better than olds ATA/IDE drivers. The drive should be recogniz

Re: [gentoo-user] Where is polkit-auth

2010-04-22 Thread Xavier Parizet
op.network-manager-settings.system.modify --user "USERNAME" > > However, polkit-auth is not installed in my system even though I have > =sys-auth/polkit-0.96-r1 installed. > > What am I missing? You have to install sys-auth/policykit. -- Xavier Parizet YaGB : ht

Re: [gentoo-user] How does grub assemble a RAID1 for / ??

2010-04-04 Thread Xavier Parizet
hey are, and > assembling them (according to their RAID volume UUID). > > You apparently only have one RAID volume. It's probably being assigned > to /dev/md0, yet you are passing root=/dev/md3.. not sure why you are > doing that. -- Xavier Parizet YaGB : http://gent

Re: [gentoo-user] source repository could not be determined

2010-02-26 Thread Xavier Parizet
Fix it. > I don't know what had happened but I run digest on the overlay ebuild > and it emerged OK. From what i can see, i understand that kbarcode was removed from /usr/portage overlay (that's the source of ?, as it's no more in /usr/portage, then portage cannot determine the

Re: [gentoo-user] boot specific service in sequence

2010-02-26 Thread Xavier Parizet
On 02/26/2010 09:19 AM, Kaushal Shriyan wrote: > On Fri, Feb 26, 2010 at 12:55 PM, Xavier Parizet wrote: >> On 02/26/2010 06:14 AM, Kaushal Shriyan wrote: >>> On Thu, Feb 25, 2010 at 7:03 PM, Xavier Parizet wrote: >>>> On 02/25/2010 02:12 PM, Neil Bothwick wrote: &

Re: [gentoo-user] openvpn static ip

2010-02-26 Thread Xavier Parizet
On 02/25/2010 11:21 PM, Joseph wrote: > On 02/25/10 22:17, Xavier Parizet wrote: >> [snip] > > I added full path to the server for ccd: > /etc/openvpn/ccd > > Now I'm getting consistent IP: 192.168.139.2 every-time I restart > openvpn.client_clinic2 > but I&#x

Re: [gentoo-user] boot specific service in sequence

2010-02-26 Thread Xavier Parizet
On 02/26/2010 06:14 AM, Kaushal Shriyan wrote: > On Thu, Feb 25, 2010 at 7:03 PM, Xavier Parizet wrote: >> On 02/25/2010 02:12 PM, Neil Bothwick wrote: >>> On Thu, 25 Feb 2010 13:15:57 +0100, Xavier Parizet wrote: >>> >>>> The syntax is: rc_need_[name of

Re: [gentoo-user] openvpn static ip

2010-02-25 Thread Xavier Parizet
Le 25/02/2010 22:01, Joseph a écrit : > On 02/25/10 21:09, Xavier Parizet wrote: > [snip] >>> Yes, it was a typo :-/ I corrected it: >>> cat syscon9 >>> ifconfig-push 192.168.139.15 255.255.255.0 >>> >>> but from log you can see it still didn&#x

Re: [gentoo-user] openvpn static ip

2010-02-25 Thread Xavier Parizet
Le 25/02/2010 20:20, Joseph a écrit : > On 02/25/10 18:12, Xavier Parizet wrote: >> Le 25/02/2010 17:51, Joseph a ??crit : >>> On 02/25/10 08:40, Xavier Parizet wrote: >>>> On 02/25/2010 02:32 AM, Joseph wrote: >>>>> I've configured OpenVPN and

Re: [gentoo-user] openvpn static ip

2010-02-25 Thread Xavier Parizet
Le 25/02/2010 17:51, Joseph a écrit : > On 02/25/10 08:40, Xavier Parizet wrote: >> On 02/25/2010 02:32 AM, Joseph wrote: >>> I've configured OpenVPN and it works OK but I can not seems to figure it >>> out how to assign static IP to clients >>> >>&

Re: [gentoo-user] [QA] The 'dropped' value in /sbin/ifconfig output

2010-02-25 Thread Xavier Parizet
On 02/25/2010 04:36 PM, Kan-I Jyo wrote: > Hello, Xavier > > Thank you for your prompt reply. > > 2010/2/25 Xavier Parizet : >> Well, you're talking about two different things: >> the dropped value in ifconfig output is related to Ethernet packet which >> w

Re: [gentoo-user] Error in emerge git

2010-02-25 Thread Xavier Parizet
t;reply to" method. 2nd, if you want only bare git without fancy utilities, just do echo "dev-util/git -gtk" >> /etc/portage/package.use; emerge dev-util/git should work without bringing down all the gtk dependencies. HTH. -- Xavier Parizet YaGB : http://g

Re: [gentoo-user] Is there a "lock daemon" for managing file locking on an NFS server?

2010-02-25 Thread Xavier Parizet
Please someone correct me if i understood badly what i found on the web. -- Xavier Parizet YaGB : http://gentooist.com GPG :C7DC B10E FC21 63BE B453 D239 F6E6 DF65 1569 91BF signature.asc Description: OpenPGP digital signature

Re: [gentoo-user] Is there a "lock daemon" for managing file locking on an NFS server?

2010-02-25 Thread Xavier Parizet
r weird behaviour regarding nfs) -- Xavier Parizet YaGB : http://gentooist.com GPG :C7DC B10E FC21 63BE B453 D239 F6E6 DF65 1569 91BF signature.asc Description: OpenPGP digital signature

Re: [gentoo-user] boot specific service in sequence

2010-02-25 Thread Xavier Parizet
On 02/25/2010 02:12 PM, Neil Bothwick wrote: > On Thu, 25 Feb 2010 13:15:57 +0100, Xavier Parizet wrote: > >> The syntax is: rc_need_[name of the service]="[list of space-separated >> services you want [name of the service] to depend on]" > > Accord

Re: [gentoo-user] [QA] The 'dropped' value in /sbin/ifconfig output

2010-02-25 Thread Xavier Parizet
packet statistics on software level (ie iptables), run iptables -v -L . > Any comment would be greatly appreciated. -- Xavier Parizet YaGB : http://gentooist.com GPG :C7DC B10E FC21 63BE B453 D239 F6E6 DF65 1569 91BF signature.asc Description: OpenPGP digital signature

Re: [gentoo-user] Can't unsubscribe

2010-02-25 Thread Xavier Parizet
t; > Any ideas or pointers about how to proceed? Are you trying to unsubscribe using the email address you subscribed with ? If no, then you need to unsubscribe using that email address (which by the way seems to be j...@imento.dk). > Joe -- Xavier Parizet YaGB : http://gentooi

Re: [gentoo-user] boot specific service in sequence

2010-02-25 Thread Xavier Parizet
c_mysql_need="tomcat" rc_dns_need="mysql" The syntax is: rc_need_[name of the service]="[list of space-separated services you want [name of the service] to depend on]" This is for baselayout-2 and openrc. For baselayout-1, the syntax is quite similar. Check man runscript

Re: [gentoo-user] openvpn static ip

2010-02-25 Thread Xavier Parizet
udp > remote 68.148.245.78 8458 > resolv-retry infinite > nobind > tun-mtu 1500 > tun-mtu-extra 32 > mssfix 1200 > persist-key > persist-tun > remote-cert-tls server > ca "/etc/openvpn/client/ca.crt" > cert "/etc/openvpn/client/syscon9.crt" >

Re: [gentoo-user] Apache+PHP

2010-01-14 Thread Xavier Parizet
aware list. After saying that, check that you enabled PHP interpretation, either in /etc/conf.d/apache2, add -D PHP5 in APACHE2_OPTS var, or check the file /etc/apache2/modules.d/70_mod_php5.conf is present, if not, then re-emerge php with useflag apache2. Best regards. -- Xavier Parize

Re: [gentoo-user] OT: amavis and DKIM verification

2010-01-11 Thread Xavier Parizet
Le 11/01/2010 16:31, Matt Harrison a écrit : > On Mon, Jan 11, 2010 at 04:09:07PM +0100, Xavier Parizet wrote: >> Le 10/01/2010 22:26, Matt Harrison a ??crit : >>> I say OT because it's my understanding of DKIM that lets me down here, not >>> Gentoo. I'm >&

Re: [gentoo-user] OT: amavis and DKIM verification

2010-01-11 Thread Xavier Parizet
arts (ie first mails about one topic). > If anyone knows about DKIM and might be able to shed a light on this, I'd > love to > hear. It's not a big problem, just a puzzle I'm interested in. > > Thanks > > Matt Harrison -- Xavier Parizet YaGB : http://gentooist.com GPG :C7DC B10E FC21 63BE B453 D239 F6E6 DF65 1569 91BF signature.asc Description: OpenPGP digital signature

Re: [gentoo-user] 2.6.32 and FAT file names

2010-01-08 Thread Xavier Parizet
ere such an option, either building a > kernel or mounting a filesystem? For me, plugin-in a FAT formatted usb-key on my system implied mounting it using hal, which implies mount options (rw,nosuid,nodev,noatime,uhelper=hal,shortname=lower,flush,uid=1000) using vfat. HTH. -- Xavier P

Re: [gentoo-user] Can I (partially) rebuild a package with emerge?

2009-12-16 Thread Xavier Parizet
r/tmp/portage. The only choice you have is to rebuild the whole package using emerge -- oneshot package. By the way, the rebuild will also pull the new dependencies implied by the new use flags settings. HTH. -- Xavier Parizet YaGB: http://gentooist.com

Re: [gentoo-user] Python 2.7 support

2009-12-07 Thread Xavier Parizet
Dale > > :-) :-) Thanks all for your answers. Anyway, is there a mean to be kept informed about the status of the "migration" ? (any "bugs" on b.g.o where i can CC myself) -- Xavier Parizet YaGB : http://gentooist.com GPG :C7DC B10E FC21 63BE B453 D239 F6E6 DF65 1569 91BF signature.asc Description: OpenPGP digital signature

Re: [gentoo-user] Python 3 support [was: Python 2.7 support]

2009-12-07 Thread Xavier Parizet
Xavier Parizet a écrit : > Hi list, > > I eard some (long) time ago that portage is not compatible with python 2.7, > so i > masked it (python) in /etc/portage/package.mask. What i would like to know now > is is portage now compatible with this version of python ? Or if not

[gentoo-user] Python 2.7 support

2009-12-07 Thread Xavier Parizet
looked on b.g.o but didn't find anything related to this. Many thanks in advance. -- Xavier Parizet YaGB : http://gentooist.com GPG :C7DC B10E FC21 63BE B453 D239 F6E6 DF65 1569 91BF signature.asc Description: OpenPGP digital signature

Re: [gentoo-user] Re: [OT] Acer Core2Duo only sees 3G of RAM

2009-12-03 Thread Xavier Parizet
3G of RAM is visible. Why would that be so? Both cores of the CPU >> are recognised, so I think that the kernel is SMP enable. I attach the >> lspci output in case you see something that explains it. Unfortunately, >> hwinfo fails with an io segmentation ... >> >

Re: [gentoo-user] openwatcom ebuild question

2009-11-14 Thread Xavier Parizet
properly. > > Anybody familiar with the "i386:x86-64 ... incompatible ... i386" > message and know what it means? > > Any suggestions on ebuild changes to correct this behavior? > > Thanks ! > > David > -- Xavier Parizet YaGB : http://gentooist.com GPG :C7DC B10E FC21 63BE B453 D239 F6E6 DF65 1569 91BF signature.asc Description: OpenPGP digital signature

Re: [gentoo-user] Problem with gethostname() returning incorrect value

2009-10-12 Thread Xavier Parizet
g 127.0.0.1 like this: 127.0.0.1 lieryan. lieryan localhost or set HOSTNAME variable in /etc/conf.d/hostname to localhost, put the error returned by python seems to indicate that you forgot to edit /etc/hosts to put the definition of lieryan hostname ip address. HTH. > [SNIP] -- Xavi

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

2009-09-25 Thread Xavier Parizet
Grant a écrit : > 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 :) > - Grant > -- Xavier Parizet YaGB : http://gentooist.com GPG :C7DC B10E FC21

Re: [gentoo-user] Where is pam_winbind.so?

2009-09-22 Thread Xavier Parizet
rge net-fs/samba-client with winbind & pam use flags enabled if you're in ~arch, if not, emerge net-fs/samba with same enabled use flags. HTH. > Thank you all for your help and your patience! > > Massimiliano -- Xavier Parizet YaGB : http://gentooist.com GPG :

Re: [gentoo-user] Gentoo LVS

2009-09-09 Thread Xavier Parizet
Nick Khamis a écrit : > Hey Xavier, > > I do appologize for the two messages, it will not happen again. When > issuing a "find /lib/modules/`uname -r` -name ip_vs*.ko" I see only > Ok so, under Networking support -> Networking options -> Network packet fil

Re: [gentoo-user] Gentoo LVS

2009-09-09 Thread Xavier Parizet
nfig ? And then, *very* important point, please do not make double or triple posting, it's very disturbing, and you will not get an answer quicker in this way. Thanks a lot for your understanding. > Thanks for you Help, > Ninus. -- Xavier Parizet YaGB : http://gentooist.com GP

Re: [gentoo-user] Catch all mailbox

2009-09-09 Thread Xavier Parizet
Stroller a écrit : > > On 9 Sep 2009, at 19:06, Xavier Parizet wrote: >>>>> ... >>>>> Does anyone know how I can force postfix to add the domain to the >>>>> search >>>>> query? >>>> Is mydomain parameter set in

Re: [gentoo-user] Catch all mailbox

2009-09-09 Thread Xavier Parizet
J. Roeleveld a écrit : > On Wednesday 09 September 2009 16:56:28 Xavier Parizet wrote: >> J. Roeleveld a écrit : >>> On Wednesday 09 September 2009 14:49:37 Xavier Parizet wrote: >>>> J. Roeleveld a écrit : >>>>> On Wednesday 09 September 2009 14:19:4

Re: [gentoo-user] Catch all mailbox

2009-09-09 Thread Xavier Parizet
J. Roeleveld a écrit : > On Wednesday 09 September 2009 14:49:37 Xavier Parizet wrote: >> J. Roeleveld a écrit : >>> On Wednesday 09 September 2009 14:19:45 Xavier Parizet wrote: >>>> J. Roeleveld a écrit : >>>>> Hi All, >>>>> >>

Re: [gentoo-user] Catch all mailbox

2009-09-09 Thread Xavier Parizet
J. Roeleveld a écrit : > On Wednesday 09 September 2009 14:19:45 Xavier Parizet wrote: >> J. Roeleveld a écrit : >>> Hi All, >>> >>> I know this is probably off-topic, but I'm hopefull someone on this list >>> knows how to do this. >>> &g

Re: [gentoo-user] Catch all mailbox

2009-09-09 Thread Xavier Parizet
specific cyrus mailbox. A solution could be doing a catch-all alias (see [1]) : if your domain is example.com, then add an alias mapping @example.com to oneaddr...@example.com either using virtual alias or /etc/postfix/aliases . HTH. [1] http://www.postfix.org/VIRTUAL_README.html &

Re: [gentoo-user] Xen questions

2009-09-08 Thread Xavier Parizet
Heiko Wundram a écrit : > On Tue, 08 Sep 2009 16:38:16 +0200, Xavier Parizet > wrote: >> - why 2.6.21 stays masked on ~arch (last entry in changelog date of >> 31/08/2008) ? > > 2.6.21 was a forward-port done by some Gentoo-guys based on the > 2.6.18-kernel that

[gentoo-user] Xen questions

2009-09-08 Thread Xavier Parizet
n Xen in Gentoo ? - i know about kvm, so is there any reason to migrate to KVM instead of Xen ? Thanks a lot for your opinion. Best regards. -- Xavier Parizet YaGB : http://gentooist.com GPG :C7DC B10E FC21 63BE B453 D239 F6E6 DF65 1569 91BF signature.asc Description: Op

Re: [gentoo-user] Vmware 1.0.9 emerge problem

2009-09-04 Thread Xavier Parizet
on make menuconfig, type '/' key to search for a key, then after typing UNUSED_SYMBOLS, you'll find it under Kernel hacking --> [ ] Enable unused/obsolete exported symbols. HTH. > Thanks In Advanced! > Ninus PS: please stop stripping the mails you answer in your... answers !

Re: [gentoo-user] unknown filesystem type 'ext2'

2009-09-03 Thread Xavier Parizet
ard is working. So try to re-emerge xf86-input-keyboard and xf86-input-mouse, it will probably solves your problem. Regards. > Reagrds, > Ninus. -- Xavier Parizet YaGB : http://gentooist.com GPG :C7DC B10E FC21 63BE B453 D239 F6E6 DF65 1569 91BF signature.asc Description: Ope

Re: [gentoo-user] unknown filesystem type 'ext2'

2009-09-03 Thread Xavier Parizet
6-input-keyboard and xf86-input-mouse ? HTH. > Regards, > Ninus -- Xavier Parizet YaGB : http://gentooist.com GPG :C7DC B10E FC21 63BE B453 D239 F6E6 DF65 1569 91BF signature.asc Description: OpenPGP digital signature

Re: [gentoo-user] unknown filesystem type 'ext2'

2009-09-03 Thread Xavier Parizet
im to use your new kernel instead of the one located in /boot. HTH. > Thank In Advanced, > Ninus -- Xavier Parizet YaGB : http://gentooist.com GPG :C7DC B10E FC21 63BE B453 D239 F6E6 DF65 1569 91BF signature.asc Description: OpenPGP digital signature

Re: [gentoo-user] How does one get off this list?

2009-09-02 Thread Xavier Parizet
Pete Pardoe a écrit : > How does one get off this list? > Send a mail at gentoo-user+unsubscr...@lists.gentoo.org to unsubscribe this list. You can have a help summary sending a mail at gentoo-user+h...@lists.gentoo.org . HTH. -- Xavier Parizet YaGB : http://gentooist.c

Re: [gentoo-user] my gentoo wont read .bashrc automatically

2009-09-02 Thread Xavier Parizet
skel even has a comment directly above >> that (commented) line saying something to the effect of "uncomment the >> following line to have .bashrc read at every new shell"... /etc/skel/.bash_profile HTH. -- Xavier Parizet YaGB : http://gentooist.com GPG :C7DC B10E FC21 63BE B453 D239 F6E6 DF65 1569 91BF signature.asc Description: OpenPGP digital signature

Re: [gentoo-user] Regenerating package db

2009-08-27 Thread Xavier Parizet
Now, is it mandatory to run emerge to get the /var/db/pkg/ thinks, or just do something like emerge --noreplace will do the trick ? -- Xavier Parizet YaGB : http://gentooist.com GPG :C7DC B10E FC21 63BE B453 D239 F6E6 DF65 1569 91BF signature.asc Description: OpenPGP digital signature

Re: [gentoo-user] Regenerating package db

2009-08-27 Thread Xavier Parizet
Alan McKinnon a écrit : > On Thursday 27 August 2009 11:07:24 Xavier Parizet wrote: >> Hi everyone, >> >> I had some problem with /var/db/pkg : it's empty. So, how can i fix this >> without rebuilding world and system from scratch ? > > You need to rebuild w

Re: [gentoo-user] Regenerating package db

2009-08-27 Thread Xavier Parizet
Dale a écrit : > Xavier Parizet wrote: >> Dale a écrit : >> >>> I don't but I'd wait until some other guru that has ran into this >>> problem comes along with a fix or advice on something to try. >>> >>> What happened anyway? G

Re: [gentoo-user] Regenerating package db

2009-08-27 Thread Xavier Parizet
Dale a écrit : > Xavier Parizet wrote: >> Dale a écrit : >> >>> Xavier Parizet wrote: >>> >>>> Hi everyone, >>>> >>>> I had some problem with /var/db/pkg : it's empty. So, how can i fix this >>>> withou

Re: [gentoo-user] Regenerating package db

2009-08-27 Thread Xavier Parizet
Dale a écrit : > Xavier Parizet wrote: >> Hi everyone, >> >> I had some problem with /var/db/pkg : it's empty. So, how can i fix this >> without >> rebuilding world and system from scratch ? >> >> Thanks a lot for your help. >> >>

[gentoo-user] Regenerating package db

2009-08-27 Thread Xavier Parizet
Hi everyone, I had some problem with /var/db/pkg : it's empty. So, how can i fix this without rebuilding world and system from scratch ? Thanks a lot for your help. -- Xavier Parizet YaGB : http://gentooist.com GPG :DC81 6FEE 6EBE FCE4 1C18 202F E575 4A5D 036D 1408

Re: [gentoo-user] copying the / partition

2009-08-03 Thread Xavier Parizet
for recent help with other issues. > > Alan > > You can know the name of a bird in all the languages of the world, but > when > you're finished, you'll know absolutely nothing whatever about the bird... > So let's look at the bird and see what it's doing

Re: [gentoo-user] 5.b. Default: Using a Stage from the Internet

2009-07-27 Thread Xavier Parizet
TS: No such file or directory > ./stage3-x86-2008.0.tar.bz2.CONTENTS: FAILED open or read > md5sum: WARNING: 1 of 2 listed files could not be read > > Portage seemed to be fine: > livecd gentoo # md5sum -c portage-latest.tar.bz2.md5sum > portage-latest.tar.bz2: OK > > Thanks,

Re: [gentoo-user] Is gentoo-wiki.com down?

2009-07-26 Thread Xavier Parizet
ely, > > Wen > [1] http://en.gentoo-wiki.com [2] http://fr.gentoo-wiki.com -- Xavier Parizet YaGB : http://gentooist.com GPG :DC81 6FEE 6EBE FCE4 1C18 202F E575 4A5D 036D 1408 signature.asc Description: OpenPGP digital signature

Re: [gentoo-user] OK to disable "filter" USE in php?

2009-07-18 Thread Xavier Parizet
mail-filter/amavisd-new filtering so filter is not a global useflag, you can disable it if you do not need filter extension in php, and it is also safe. HTH. > - Grant -- Xavier Parizet YaGB : http://gentooist.com GPG :DC81 6FEE 6EBE FCE4 1C18 202F E575 4A5D 036D 1408 s

Re: [gentoo-user] kernel cross compilation

2009-06-28 Thread Xavier Parizet
p this behavior? > > make CROSS_COMPILE=i686-pc-linux-gnu- ARCH=i386 ... Try also linux32 command from sys-apps/util-linux . > HTH... > > Dirk -- Xavier Parizet YaGB : http://gentooist.com GPG :DC81 6FEE 6EBE FCE4 1C18 202F E575 4A5D 036D 1408 signature.asc Description: OpenPGP digital signature

Re: [gentoo-user] What has bash_compleion done to me, and I to it?

2009-05-19 Thread Xavier Parizet
le --global base and eselect bashcomp enable --global gentoo to get some basics... As a normal user, remove the --global switch. HTH. -- Xavier Parizet YaGB : http://gentooist.com GPG :DC81 6FEE 6EBE FCE4 1C18 202F E575 4A5D 036D 1408

Re: [gentoo-user] is packages.gentoo.org down?

2009-05-07 Thread Xavier Parizet
On Thu, 7 May 2009 16:01:52 +0200, Ward Poelmans wrote: > On Thu, May 7, 2009 at 15:56, Andrew Gaydenko wrote: >> ... or is it for me only? > > it's down here too. same result here... -- Xavier Parizet YaGB : http://gentooist.com GPG :DC81 6FEE 6EBE FCE4

Re: [gentoo-user] remove a package from world without unmerging?

2009-05-05 Thread Xavier Parizet
e. >> >> Also, some nerd seems to have made it in alphabetical order too. It >> should be easy to find. >> >> Dale >> >> :-) :-) >> > Hi, > > thanks for the answer. One more question: Where exactly is the world > file? Is it in /var/db/pkg/ ? /var/lib/portage/world > > kh -- Xavier Parizet YaGB : http://gentooist.com GPG :DC81 6FEE 6EBE FCE4 1C18 202F E575 4A5D 036D 1408

Re: [gentoo-user] emerge --oneshot gcc-4.1.2

2009-05-02 Thread Xavier Parizet
? emerge --oneshot =sys-devel/gcc-4.1.2 Check man 5 ebuild to have more information about package atom syntax :) HTH > Thanks a lot > Hung > -- Xavier Parizet YaGB : http://gentooist.com GPG :DC81 6FEE 6EBE FCE4 1C18 202F E575 4A5D 036D 1408 signature.asc Description: OpenPGP digital signature

Re: [gentoo-user] Re: Question about making a tarball

2009-05-01 Thread Xavier Parizet
k as it will be expanded by your shell as /mnt/gentoo/boot, /mnt/gentoo/etc, ..., which will get you the same behaviour you said was the one you don't want ;) And to think that I thought a period was only needed for the end of a sentence. Learn something new every day I guess. Dale :-) :-)

Re: [gentoo-user] Re: how I violate gentoo-netiquette

2009-04-29 Thread Xavier Parizet
Nikos Chantziaras a écrit : > Xavier Parizet wrote: >> Nikos Chantziaras a écrit : >>> Andrew Gaydenko wrote: >>>> Say, I see here >>>> >>>> http://packages.gentoo.org/feed/arch/amd64 >>>> >>>> some packages I'm int

Re: [gentoo-user] Re: how I violate gentoo-netiquette

2009-04-29 Thread Xavier Parizet
hour later... >> >> I see, there is some time lag somewhere. Is there a way to see really >> available portage updates? > > Portage got updated but the mirror you're using is not synced yet. > > And what's the "gentoo-netiquette" in the sub

Re: [gentoo-user] autorespond

2009-04-28 Thread Xavier Parizet
the trick... Now i think he is spammed with "you're not subscribed to this list" mlmmj mails... HTH... > > He deserves much more than that. > Life-time ban for that stupidity would be adequate... > > Jarry -- Xavier Parizet YaGB : http://gentooist.com G

Re: [gentoo-user] trouble installing kvm on gentoo-2.6.24.-r4

2009-04-23 Thread Xavier Parizet
Brian Wince a écrit : -Original Message- From: Xavier Parizet [mailto:x...@gentooist.com] Sent: Wednesday, April 22, 2009 11:49 PM To: gentoo-user@lists.gentoo.org Subject: Re: [gentoo-user] trouble installing kvm on gentoo-2.6.24.-r4 On Wed, 22 Apr 2009 14:30:54 -0700, Brian Wince

Re: [gentoo-user] can't print from firefox, but CUPS says OK, also poppler

2009-04-23 Thread Xavier Parizet
> find a solution to the issue, and appearantly nobody has any ideas. > > - -- > Morten 'T-Hawk' Holt > In the joy of anticipation there's the anticipatory > letdown of anticipating not anticipating anticipation > of some future anticipation. > > -BE

Re: [gentoo-user] trouble installing kvm on gentoo-2.6.24.-r4

2009-04-22 Thread Xavier Parizet
pgrade is the problem, but it remind me another thread about nvidia-drivers build, and i'm directing towards a kernel configuration problem... The log i ask you earlier will help us to see if it is the case ;) > Please let me know if you require further information and I will post it. > > TIA, > > brian -- Xavier Parizet YaGB : http://gentooist.com GPG :DC81 6FEE 6EBE FCE4 1C18 202F E575 4A5D 036D 1408

Re: [gentoo-user] nvidia-drivers-180.51 on amd64

2009-04-22 Thread Xavier Parizet
On Thu, 23 Apr 2009 00:04:13 +0200, Alan McKinnon wrote: > On Wednesday 22 April 2009 23:45:19 Peter Humphrey wrote: >> On Wednesday 22 April 2009 11:30:27 Xavier Parizet wrote: >> > Can you repost emerge output using MAKEOPTS="-j1" to see what make >> > comm

  1   2   >