Re: [gentoo-user] HTML5 player (YouTube) is a pain!...Alternatives?

2016-11-30 Thread Patrick Steinhardt
On Wed, Nov 30, 2016 at 06:46:00AM +0100, meino.cra...@gmx.de wrote:
> Patrick Steinhardt <p...@pks.im> [16-11-30 04:01]:
> > On Tue, Nov 29, 2016 at 06:39:28PM +0100, meino.cra...@gmx.de wrote:
> > > Poncho <pon...@spahan.ch> [16-11-29 18:24]:
> > > > you can use the open-with extension ( see:
> > > > https://addons.mozilla.org/en-US/firefox/addon/open-with/ ) to get a
> > > > "open with mpv" shortcut in your right click menu
> > > > 
> > > > On 29.11.2016 08:35, meino.cra...@gmx.de wrote:
> > > > > Alarig Le Lay <ala...@swordarmor.fr> [16-11-29 08:16]:
> > > > >> On Tue Nov 29 07:42:16 2016, meino.cra...@gmx.de wrote:
> > > > >>> Is there any way to feed the stream from youtube direktly into
> > > > >>> a not blown player like mpv/mplayer or such (I would prefer
> > > > >>> not to load a complete gui (vlc) with any click again and again.)?
> > > > >>
> > > > >> Hi,
> > > > >>
> > > > >> Yes, you can play video from youtube with mpv if you have emerged
> > > > >> net-misc/youtube-dl.
> > > > >>
> > > > >> -- 
> > > > >> alarig
> > > > > 
> > > > > Hi Alarig,
> > > > > 
> > > > > thanks for your help! :)
> > > > > 
> > > > > yes...I know...but this implies (as far as I know):
> > > > > Copying the url from FF as argument to youtube-dl,
> > > > > downloading the file, and than watching it.
> > > > > This was my (painful) workaround the last days.
> > > > > 
> > > > > I woyld like something like:
> > > > > Click on youtube-url, a window (console) pops up 
> > > > > and starts  to watch the video
> > > > > directly.
> > > > > 
> > > > > Is it possible somehow?
> > > > > 
> > > > > Thanks in advance for any help!
> > > > > 
> > > > > Cheers,
> > > > > Meino
> > > > > 
> > > 
> > > Hi Poncho,
> > > 
> > > thanks for your help - I installed this one.
> > > 
> > > One problem: mpv seems to open the video with the highest
> > > possible resolution...and now...the video.stops
> > > from.time..to time.due to..too
> > > lessDSL bandwidth...
> > > 
> > > Can I tell who? to only access videos with 720p max???
> > > 
> > > Cheers
> > > Meino
> > 
> > Hi Meino,
> > 
> > yes, it is possible. The format-selection is quite flexible with
> > youtube-dl. I've got the following line in
> > ~/.config/mpv/mpv.conf:
> > 
> > '''
> > ytdl-format=bestvideo[ext!=webm,width<=1920]+bestaudio[protocol!=http_dash_segments]/best
> > '''
> > 
> > Something like the following might work for you.
> > 
> > '''
> > ytdl-format=bestvideo[width<=920]+bestaudio/best
> > '''
> > 
> > It will select a format with width less than 920px together with
> > the best audio source, or, if nothing matches this criteria, the
> > best format available. But just take a look at youtube-dl(1),
> > FORMAT SELECTION.
> > 
> > Patrick
> 
> 
> Hi Patrick,
> 
> thanks for your help! :)
> 
> Additionally I played around with the 'vo=' settings.
> Interestingly it hangs always at the same point in the video.
> 
> I played back the video with
> 
> mpv '' from the commandline and get the same effect.
> 
> BUT: The output of mpv changes from "playing video" to
> "buffering" (at this moment the video hangs) and back.
> 
> I increased the cache and readahead in mpv.conf with
> no effect (it even hits the same point in the video
> every time!).
> 
> If I configure width<1280 it seems to work...but does
> it really need to be that small?
> 
> Am I out of luck?
> 
> Cheers
> Meino

I always had problems with mpv when caching was enabled. In fact,
I'm now running mpv without caching ("cache=no") at all and it
runs smooth as butter, even for full HD and better. So maybe try
disabling the cache altogether?

Otherwise I've got no idea as to what might be causing your
issue. Never had any problems despite caching issues.

Regards
Partick


signature.asc
Description: PGP signature


Re: [gentoo-user] HTML5 player (YouTube) is a pain!...Alternatives?

2016-11-29 Thread Patrick Steinhardt
On Tue, Nov 29, 2016 at 06:39:28PM +0100, meino.cra...@gmx.de wrote:
> Poncho <pon...@spahan.ch> [16-11-29 18:24]:
> > you can use the open-with extension ( see:
> > https://addons.mozilla.org/en-US/firefox/addon/open-with/ ) to get a
> > "open with mpv" shortcut in your right click menu
> > 
> > On 29.11.2016 08:35, meino.cra...@gmx.de wrote:
> > > Alarig Le Lay <ala...@swordarmor.fr> [16-11-29 08:16]:
> > >> On Tue Nov 29 07:42:16 2016, meino.cra...@gmx.de wrote:
> > >>> Is there any way to feed the stream from youtube direktly into
> > >>> a not blown player like mpv/mplayer or such (I would prefer
> > >>> not to load a complete gui (vlc) with any click again and again.)?
> > >>
> > >> Hi,
> > >>
> > >> Yes, you can play video from youtube with mpv if you have emerged
> > >> net-misc/youtube-dl.
> > >>
> > >> -- 
> > >> alarig
> > > 
> > > Hi Alarig,
> > > 
> > > thanks for your help! :)
> > > 
> > > yes...I know...but this implies (as far as I know):
> > > Copying the url from FF as argument to youtube-dl,
> > > downloading the file, and than watching it.
> > > This was my (painful) workaround the last days.
> > > 
> > > I woyld like something like:
> > > Click on youtube-url, a window (console) pops up 
> > > and starts  to watch the video
> > > directly.
> > > 
> > > Is it possible somehow?
> > > 
> > > Thanks in advance for any help!
> > > 
> > > Cheers,
> > > Meino
> > > 
> 
> Hi Poncho,
> 
> thanks for your help - I installed this one.
> 
> One problem: mpv seems to open the video with the highest
> possible resolution...and now...the video.stops
> from.time..to time.due to..too
> lessDSL bandwidth...
> 
> Can I tell who? to only access videos with 720p max???
> 
> Cheers
> Meino

Hi Meino,

yes, it is possible. The format-selection is quite flexible with
youtube-dl. I've got the following line in
~/.config/mpv/mpv.conf:

'''
ytdl-format=bestvideo[ext!=webm,width<=1920]+bestaudio[protocol!=http_dash_segments]/best
'''

Something like the following might work for you.

'''
ytdl-format=bestvideo[width<=920]+bestaudio/best
'''

It will select a format with width less than 920px together with
the best audio source, or, if nothing matches this criteria, the
best format available. But just take a look at youtube-dl(1),
FORMAT SELECTION.

Patrick


signature.asc
Description: PGP signature


Re: [gentoo-user] openconnect and network manager

2012-12-08 Thread Patrick Holthaus
On Friday 07 December 2012 20:06:42 Kevin Brandstatter wrote:
 ah this is on KDE then? im currently using xfce4

Yep, it's on KDE. Anyone experiences similar?

 On Fri, Dec 7, 2012 at 4:05 AM, Patrick Holthaus 
 patrick.holth...@uni-bielefeld.de wrote:
  On Thursday 06 December 2012 17:16:21 you wrote:
   no have you installed the networkmanager-openconnect plugin?
  
  Yes, I have it installed. Still no entry found in the networkmanagement
  plasmoid.

-- 
Regards
Patrick

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


Re: [gentoo-user] Re: want sound (alsa) muted on boot

2012-01-18 Thread Patrick Holthaus
Hey,

 »Q« boxc...@gmx.net wrote:
 Sound *is* muted on boot -- logging in to KDE unmutes it, maybe part
 of session restore.  I'll play with my KDE settings and if I can't
 fix it, I'll be back.

Open up kmix. Go to Settings - Configure KMix. Uncheck Restore volumes on 
login.

Or you always log off KDE with muted sound and leave Restore volumes on login 
enabled.

-- 
Gruß
Patrick



Re: [gentoo-user] xargs and rm funkiness

2010-05-22 Thread Patrick Holthaus
Hey!

On Saturday 22 May 2010 03:49:49 Daniel D Jones wrote:
 Running the command:
 
 find -name *.ext | xargs -0 rm

You might try:

find -name *.ext -print0 | xargs -0 rm

Cheers
Patrick


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


Re: [gentoo-user] Is rc.conf no longer used by Gentoo (baselayout-1.12.13)?

2009-12-14 Thread Patrick Holthaus
Hi!

  Thanks Mike, most helpful!  What happens if you want to switch between
  different sessions at/from the Display Manager stage?  Do you place
  them all in /etc/env.d/90xsession ?

 Sorry, I'm not sure how to do that. I'm the only user on my system and
 I don't use a graphical login manager.

For example KDM (and GDM, i think) look for *.desktop files in 
/usr/share/xsessions.

HTH
Patrick


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


Re: [gentoo-user] [OT] Need advice from people who use non-ascii all day long

2009-12-04 Thread Patrick Holthaus
Hey!

 So do people type in Busingen different ways depending on how they
 feel, do some people always leave off the umlaut, do some always use
 it? 

You cannot simply leave the umlaut out since it is considered as a separate 
letter for itself. You cannot choose whether to write an ö or an o. Like 
Renat said, there are words that completely change their meaning when 
exchanging the characters.

I think this is especially true if it comes to names. While people get used to 
spellings like Goettingen for Göttingen, it looks odd and wrong to Germans. 
Like someone who doesn't have the character on the keyboard ;)
Also keep in mind that there are cities that are spelled with oe or ae by 
design. (Soest, Oelde, Aerzen, Oestinghausen etc.) Those cannot be spelled 
with an ö instead. It would simply be wrong.

Patrick


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


Re: [gentoo-user] KDE4 equivalent for kwifimanager-3.5

2009-11-12 Thread Patrick Holthaus
Hey!

USE=qt4 emerge wpa_supplicant gives you a small gui tool for scanning and 
adding networks directly to the wpa_supplicant config file. For me, it does 
everything I need.

Patrick


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


Re: [gentoo-user] Is grep broken?

2009-07-01 Thread Patrick Holthaus
On Wednesday 01 July 2009 16:30:26 Peter Humphrey wrote:
 Hello list,

 Can anyone explain this to me?

 $ /bin/grep -r hmenu *html
 index.html: div id=hmenu
 master.html:div id=hmenu
 pictures.html:  div id=hmenu

The star is evaluated /before/ grep is executed. Therefore, only files that are 
ending with html are searched recursively. If you had placed the files in a 
directory called blablahtml, then grep would have searched there.

 $ /bin/grep -r hmenu pages/*html
 pages/community.html:   div id=hmenu
 pages/contacts.html:div id=hmenu
 pages/history.html: div id=hmenu
 pages/music.html:   div id=hmenu
 pages/news.html:div id=hmenu
 pages/people.html:  div id=hmenu
 pages/pictures.html:div id=hmenu

 Grep is clearly disobeying the recursion command. I started noticing this a
 few days ago, and it's making maintenance of this directory hard work.

No, you just did not tell it to search in the the directory pages. :)

HTH
Patrick



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


Re: [gentoo-user] mozilla-firefox-3.0.11

2009-06-15 Thread Patrick Holthaus
Hi,

 Am I just being unlucky today, or are the distfiles for firefox-3.0.11
 really not on the mirrors yet, even though the ebuild hit the tree
 yesterday?

 Mon Jun 15 10:11:49 2009  net-libs/xulrunner-1.9.0.11
   merge time: 15 minutes and 33 seconds.

 Mon Jun 15 10:12:49 2009  www-client/mozilla-firefox-3.0.11
   merge time: 1 minute.

Successfully downloaded and installed firefox and xulrunner today.

HTH
Patrick


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


Re: [gentoo-user] mozilla-firefox-3.0.11

2009-06-15 Thread Patrick Holthaus
Hi,

  Successfully downloaded and installed firefox and xulrunner today.

 Do you have LINGUAS set? I can't seem to get the en-GB files:

Yes, I have.
LINGUAS=en en_US de

 # wget -c http://distfiles.gentoo.org/distfiles/mozilla-firefox-3.0.11-en-
 GB.xpi

This won't work for me, too. If I remove the already downloaded files, I also 
get a 404:

[snip]
Connecting to distfiles.gentoo.org|140.211.166.134|:80... connected.
   
HTTP request sent, awaiting response... 404 Not Found   
   
[snip]
Connecting to distro.ibiblio.org|152.46.7.109|:80... connected.
HTTP request sent, awaiting response... 404 Not Found

Then, releases.mozilla.org is chosen as a mirror and the download finishes 
successfully:

 Downloading 
'http://releases.mozilla.org/pub/mozilla.org/firefox/releases/3.0.11/linux-
i686/xpi/de.xpi'
 
--2009-06-15 13:11:58--  
http://releases.mozilla.org/pub/mozilla.org/firefox/releases/3.0.11/linux-
i686/xpi/de.xpi 
 
Resolving releases.mozilla.org... 129.101.198.59, 64.50.236.52, 204.246.0.136, 
...  
Connecting to releases.mozilla.org|129.101.198.59|:80... connected. 

HTTP request sent, awaiting response... 200 OK  



Apparently, the files are not (yet) on the gentoo mirrors.

HTH
Patrick



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


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

2009-05-07 Thread Patrick Holthaus
Hey!

On Thursday 07 May 2009 15:56:34 Andrew Gaydenko wrote:
 ... or is it for me only?

For me, it is also down.


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


Re: [gentoo-user] CMake and empty directories

2009-04-16 Thread Patrick Holthaus
Hey Arttu!

 Just a wild guess from a perl-fan: would it work if you escaped that
 dollar sign with a backslash? It might move the expansion around a
 bit, maybe even to the right place if you're lucky.

Tried that, unfortunately it did not have the desired effect.

Thanks for your suggestion.
Patrick


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


[gentoo-user] CMake and empty directories

2009-04-15 Thread Patrick Holthaus
Hello gentooers!

Maybe some of you can help me with this one. I'm trying to create an ebuild to 
test some of our university software on my laptop. It is using cmake as a 
build tool. CMakeLists.txt states the following (among others :)

SET(PREFIX ${CMAKE_INSTALL_PREFIX})
SET(INCLUDEDIR_B ${PREFIX}/include)

INSTALL(CODE FILE(MAKE_DIRECTORY ${INCLUDEDIR_B}/iwPlugins))

Everything is compiling fine, but the install procedure gets interrupted with a 
sandbox violation:

ACCESS DENIED  mkdir:/usr/include/iwPlugins 


CMake Error at cmake_install.cmake:92 (FILE):   


  file problem creating directory: /usr/include/iwPlugins   




It seems for me that the variable INCLUDEDIR_B is not expanded to the sandbox 
path but /usr/include within the CODE statement. Other INSTALL instructions 
like FILES and TARGETS work fine. Is it advisable to have another method of 
creating an empty directory?

Thanks in advance
Patrick


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


Re: [gentoo-user] Re: Kgpg 1.2.2 does not show email addresses ...

2009-04-08 Thread Patrick Holthaus
Note to self: Always search bugzilla first: 
http://bugs.gentoo.org/show_bug.cgi?id=263454


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


Re: [gentoo-user] Re: alsa in-kernel vs. alsa-lib

2008-10-31 Thread Patrick Holthaus

 But i read this after building alsa-lib:
 * Please try in-kernel ALSA drivers instead of the alsa-drivers ebuild.
 * If alsa-drivers works for you where a recent kernel does not, we want
 * to know about this. Our e-mail address is [EMAIL PROTECTED]
 * However, if you notice no sound output or instability, please try to
 * upgrade your kernel to a newer version first.

 and this makes me think i should get rid of those packages as it say
 instead. Is this wrong? do we still need alsa-lib and co.?

You should _not_ install alsa-drivers if you want to use in-kernel drivers. 
You can and should install alsa-lib etc.

Patrick


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


[gentoo-user] Two Suspend/Resume Problems

2008-09-18 Thread Patrick Holthaus
Hello Gentooers!

I am expieriencing some issues with Suspend/Resume (no matter if RAM or disk).
After resuming, There seems to be a kernel bug:

BUG: unable to handle kernel paging request at 00100100
IP: [803ab5bc] snd_ctl_dev_disconnect+0x58/0x89
PGD 71f3d067 PUD 78f4f067 PMD 0
Oops:  [1] PREEMPT SMP
CPU 0
Modules linked in: aes_x86_64 aes_generic bridge llc snd_pcm_oss snd_mixer_oss 
snd_seq_oss snd_seq_midi_event snd_seq hci_usb bluetooth snd_usb_audio 
snd_usb_lib snd_rawmidi snd_seq_device snd_hwdep usbhid hid arc4 ecb 
crypto_blkcipher cryptomgr ehci_hcd nvidia(P) crypto_algapi b44 uhci_hcd 
usbcore iwl3945 mac80211 crypto ohci1394 sdhci mmc_core dcdbas ssb 
snd_hda_intel cfg80211 snd_pcm snd_timer ieee1394 i2c_i801 mii snd_page_alloc 
i2c_core
Pid: 2118, comm: khubd Tainted: P  2.6.26-gentoo-r1 #2
RIP: 0010:[803ab5bc]  [803ab5bc] 
snd_ctl_dev_disconnect+0x58/0x89
RSP: 0018:81007dc97c20  EFLAGS: 00010246
RAX: 81007dc97fd8 RBX: 00100100 RCX: 
RDX: 00020004 RSI: 001d RDI: 81007efbcb48
RBP: 81007e4c8400 R08: 81007dc96000 R09: 000ec4e6
R10:  R11: 803ab740 R12: 81007e4c8568
R13: 81007e4c85a0 R14: fffa R15: 81007e5f6800
FS:  () GS:8050c000() knlGS:
CS:  0010 DS: 0018 ES: 0018 CR0: 8005003b
CR2: 00100100 CR3: 71f3c000 CR4: 06e0
DR0:  DR1:  DR2: 
DR3:  DR6: 0ff0 DR7: 0400
Process khubd (pid: 2118, threadinfo 81007dc96000, task 81007eb48ae0)
Stack:  81007e4c8400 81007eaf9dc0  81007e4c8400
 81007e4c8550 803adc0a 81007eaf9dc0 803adc6d
  81007e4c8400 81007e4c85d8 81007ed6b028
Call Trace:
 [803adc0a] ? snd_device_disconnect+0x2f/0x63
 [803adc6d] ? snd_device_disconnect_all+0x2f/0x4e
 [803aa1ee] ? snd_card_disconnect+0x17f/0x1d7
 [a08e78c4] ? :snd_usb_audio:usb_audio_disconnect+0x4c/0x136
 [a01155bd] ? :usbcore:usb_unbind_interface+0x38/0x75
 [80367e30] ? __device_release_driver+0x95/0xba
 [80367f2a] ? device_release_driver+0x21/0x2d
 [80367551] ? bus_remove_device+0x97/0xb9
 [80366222] ? device_del+0x109/0x190
 [a0113271] ? :usbcore:usb_disable_device+0x67/0xe6
 [a010f72a] ? :usbcore:usb_disconnect+0x89/0xf4
 [a011041c] ? :usbcore:hub_thread+0x55b/0xf3a
 [80226a84] ? hrtick_start_fair+0x139/0x18a
 [802403b8] ? autoremove_wake_function+0x0/0x2e
 [a010fec1] ? :usbcore:hub_thread+0x0/0xf3a
 [802400b4] ? kthread+0x47/0x73
 [8022c00c] ? schedule_tail+0x27/0x5b
 [8020c0c8] ? child_rip+0xa/0x12
 [8024006d] ? kthread+0x0/0x73
 [8020c0be] ? child_rip+0x0/0x12


Code: 48 8d 7b 28 31 c9 ba 01 00 00 00 be 03 00 00 00 e8 f6 a3 e7 ff 48 8d 7b 
48 ba 04 00 02 00 be 1d 00 00 00 e8 28 da ed ff 48 8b 1b 48 8b 03 4c 39 eb 
0f 18 08 75 ca 4c 89 e7 e8 47 7d e9 ff 83 ca
RIP  [803ab5bc] snd_ctl_dev_disconnect+0x58/0x89
 RSP 81007dc97c20
CR2: 00100100
---[ end trace 2e3cd65b101c6e8f ]---


Afterwards, My USB soundcard does not work anymore (USB mouse works fine).

An additional but probably unrelated issues is related to my wireless card. It 
gets disconnected after resume:

wlan0: authenticate with AP 00:1c:4a:1f:a1:b1
wlan0: RX authentication from 00:1c:4a:1f:a1:b1 (alg=0 transaction=2 status=0)
wlan0: authenticated
wlan0: associate with AP 00:1c:4a:1f:a1:b1
wlan0: RX ReassocResp from 00:1c:4a:1f:a1:b1 (capab=0x411 status=0 aid=1)
wlan0: associated
wlan0: CTS protection enabled (BSSID=00:1c:4a:1f:a1:b1)
wlan0: deauthenticate(reason=3)

I am using gentoo-sources-2.6.26-r1. Full dmesg, kernel config and 
emerge --info can be found here: http://big.homeftp.net/~pholthau/

Any help would be very much appreciated.
Patrick



Re: [gentoo-user] Two Suspend/Resume Problems

2008-09-18 Thread Patrick Holthaus
Hi!

 What hardware are you using? Is it a laptop or desktop pc?

I's a Dell Inspiron 9400.

 Few general suggestions:
 1. update your bios to latest version.
 2. Try to load motherboard-specific acpi module (e.g. asus-acpi for asus
 notebooks, or acer-acpi, or ...)

I think there isn't any for dell. Correct me if I am wrong, cause I'm not at 
the laptop right now.

Patrick



Re: [gentoo-user] Error emerging gtk+ Pango not found (NOT expat - kind of SOLVED)

2008-03-25 Thread Patrick Holthaus

On Tuesday 25 March 2008, Enrico Weigelt wrote:
 cairo's obviously built w/ GL, and your GL library is broken.
 In no way surprising, since it's NVidia's proprietary crap.

I have never expierienced any problems with the proprietary driver (till now). 
For sure it would be better if it were open but at least it always worked and 
had acceptable performance.

 You could try switching to another GL (via eselect) or rebuilding
 cairo w/o GL.

Strange, eselect showed that it was already set to xorg. Rebuilding cairo 
with -opengl made gtk+ compile. Thanks! Maybe an older version of the nvidia 
driver will also make it work.

 BTW: if you experience system lockups or X11 crashes, also the
 NVidia driver may be the source of evil.

Did not nice that before.

 Sad but true: there is *NO* reliable 3D driver for recent NVidia
 cards. NV's proprietary driver is crap, and they're totally unwilling
 to support OSS community in any way. So if you really want GL,
 either try software rendering (via mesa) or get a supported card.
 (I've got the same problem - didn't properly check before bying :( )

Supported card? ATI/AMD is just beginning to give information (when I bought 
the card both were binary only and nvidia had better 
performance/compatibility) and Intel performance is just too bad. However 
this is getting off-topic :) and since it is an old laptop, changing cards is 
not an option.

Thanks again!
Patrick

-- 
gentoo-user@lists.gentoo.org mailing list



[gentoo-user] Error emerging gtk+ Pango not found (expat issue or not?)

2008-03-24 Thread Patrick Holthaus
Hi Gentooers!

I don't know if I am facing the expat issue or not. gtk fails with the 
following error message:

 checking Pango flags...
 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
 -I/usr/include/cairo -I/usr/include/freetype2
 -I/usr/include/libpng12 -I/usr/include/pixman-1
 -lpangocairo-1.0 -lpango-1.0 -lcairo -lgobject-2.0 -lgmodule-2.0 -ldl 
 -lglib-2.0
 configure: error:
 *** Can't link to Pango. Pango is required to build
 *** GTK+. For more information see http://www.pango.org

However revdep-rebuild --library=libexpat.so.0 doesn't show anything. I 
already did the following:

 emerge -1 gettext XML-Parser 
 revdep-rebuild -i

That didn't help so I also tried:

 emerge -1 fontconfig pango

That one did not make it any better. So I tried unmerging cairo and pango:

 emerge -C cairo pango gtk+

Cairo and pango emerged fine after that but gtk+ is still failing. Now I don't 
have gtk+ anymore :( Atfer that I tried rebuilding every package that depends 
on expat. Still no luck :(

Someone knows a solution?

I'm on ~x86 with cairo-1.5.12, pango-1.20.0, expat-2.0.1. Tried gtk+-2.12.8 
and 2.12.9.

Thanks
Patrick
-- 
gentoo-user@lists.gentoo.org mailing list



Re: [gentoo-user] Error emerging gtk+ Pango not found (expat issue or not?)

2008-03-24 Thread Patrick Holthaus
Hi!

 What does config.out say about this ?

There is no config.out in /var/tmp/portage. You can find build.log and 
config.log here:

http://big.homeftp.net/~pholthau/

Tell me if you need other files aswell.

Patrick
-- 
gentoo-user@lists.gentoo.org mailing list



[gentoo-user] Kmail does not import gpg keys automatically?

2008-02-11 Thread Patrick Holthaus
Hey there!

I wonder why Kmail does not import any gpg keys. For example on this list, 
many people sign their messages. But Kmail tells me something like this:

 Message was signed on xxx with unknown key xxx.
 The validity of the signature cannot be verified.
 Status: No public key to verify the signature

OpenPGP is selected in Crypto Backends with default keyserver 
http://pgp.mit.edu
Automatically import keys and certificates is also selected.

gpg-agent is running, with the following config (gpg.conf):

 grep -v '^#' ~/.gnupg/gpg.conf | uniq

 keyserver-options auto-key-retrieve
 
 use-agent

 default-key  40A7BD65

 utf8-strings
 verbose
 utf8-strings

 encrypt-to  0x40A7BD65

and gpg-agent.conf:

 grep -v '^#' ~/.gnupg/gpg-agent.conf | uniq
 pinentry-program /usr/bin/pinentry-qt
 no-grab
 default-cache-ttl 1800
 
 debug-level basic
 log-file socket:///home/pholthau/.gnupg/log-socket
 allow-mark-trusted

I am running Kmail 1.9.7 (KDE 3.5.8) and gnupg 2.0.7.

Anyone knows whats going wrong?


Thanks
Patrick


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


Re: [gentoo-user] Kmail does not import gpg keys automatically?

2008-02-11 Thread Patrick Holthaus
Hi and thanks for the reply!

 I use hkp://subkeys.pgp.net as my default keyserver and do not seem to have
 such a problem (unless I open a new message offline, which has a new key
 that has not been imported yet from the keyserver).

I changed the default server to the one you use. It seems to work now.
gpg --refresh-keys had an error with the MIT server and it works with yours.

Nevertheless I have to set the trust to ultimately of each imported key in 
KGPG, right?

Patrick



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


Re: [gentoo-user] kdm does not start on boot

2007-10-16 Thread Patrick Holthaus
Hey!

 There's no way to set the DM in Xorg's config. The DM is set in
 /etc/conf.d/rc (or was it /etc/rc.conf?).

It should be /etc/conf.d/xdm

DISPLAYMANAGER=kdm

Patrick



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


Re: [gentoo-user] Re: Help finding a tv tuner card's chipset

2007-09-30 Thread Patrick May
On Sat, Sep 29, 2007 at 03:17:14PM -0500, forgottenwizard wrote:
 On 13:41 Sat 29 Sep , Grant Edwards wrote:
  On 2007-09-29, forgottenwizard [EMAIL PROTECTED] wrote:
  
   Since I'm using cable, I figure if I need to, in 17 month I
   can get a converter, or afford to buy a better card.
  
  If you're using cable, you may not need to.  Cable companies
  are free to continue distributing analog signals as long as
  they want.
  
  -- 
  Grant Edwards   grante Yow!  I need to discuss
at   BUY-BACK PROVISIONS
 visi.comwith at least six studio
 SLEAZEBALLS!!
  
  -- 
  [EMAIL PROTECTED] mailing list
  
  
 
 Good to know. Right now I'm down to finding a working app (mplayer only
 seems to work so far, and it doesn't seem to work quite right).

Grant is correct. The digital switch only applies to OTA (Over the Air). Cable
operators could do whatever they want.

Not sure why the PVR-150 isn't just working out of the box for you. I know
there were some complaints about Hauppauge quietly putting another device in
the box. And that's because of the switch over. As of March 1, 2007
manufacturers had to include a digital tuner if they included an analog tuner.
This included computer interface cards as well. I believe the new Hauppauge is
a PVR-1600 with dual tuner (NTSC  ATSC).

Good luck.

Patrick


pgpfla49QT9kd.pgp
Description: PGP signature


Re: [gentoo-user] Help finding a tv tuner card's chipset

2007-09-28 Thread Patrick May
I missed this thread earlier, so pardon me commenting to the OP so far down
the thread.

   On Thu, 27 Sep 2007 01:00:33 -0500, forgottenwizard wrote:
  
BTW, if anyone knows of a cheap tuner card (50US preferably) that
is decent and works with either PCI/USB/AGP, I would love to know.

I'm currently using an air2pc card I picked up on eBay. I believe I paid
around $20-30US. It pulls in all OTA ATSC signals just fine. I can't speak for
it's abilities to work with QAM (Cable.) I'm controlling it with MythTV.

Though I do recommend a decent processor. I used to run an Athlon 850MHz and
it could not keep up with an HD (1080i, etc) signal. It will dump the stream
to disk, just not display it (slow, pauses, etc.) 

Patrick


pgplY1gRN6Lt8.pgp
Description: PGP signature


Re: [gentoo-user] Help finding a tv tuner card's chipset

2007-09-28 Thread Patrick May
On Fri, Sep 28, 2007 at 03:43:52PM -0500, forgottenwizard wrote:
 On 08:31 Fri 28 Sep , Patrick May wrote:
  I missed this thread earlier, so pardon me commenting to the OP so far down
  the thread.
  
 On Thu, 27 Sep 2007 01:00:33 -0500, forgottenwizard wrote:

  BTW, if anyone knows of a cheap tuner card (50US preferably) that
  is decent and works with either PCI/USB/AGP, I would love to know.
  
  I'm currently using an air2pc card I picked up on eBay. I believe I paid
  around $20-30US. It pulls in all OTA ATSC signals just fine. I can't speak 
  for
  it's abilities to work with QAM (Cable.) I'm controlling it with MythTV.
  
  Though I do recommend a decent processor. I used to run an Athlon 850MHz and
  it could not keep up with an HD (1080i, etc) signal. It will dump the stream
  to disk, just not display it (slow, pauses, etc.) 
  
  Patrick
 
 I'm doing some looking and think I'm going to blow my budget and get a
 Haup. PVR-150, which I know is supported.
 
 Thanks for all of your help everyone.
 
If you are planning to watch over the air (not cable) remember that analog
will go off air on Feb 17, 2009. A little less than 17 months from now.

Patrick


pgpGIhVOefFLV.pgp
Description: PGP signature


Re: [gentoo-user] DivX web player?

2007-08-31 Thread Patrick Holthaus
Hi!

 Any idea what I need to emerge to be able to play clips from this website?

 http://stage6.divx.com/

 I have gxine and mplayer but the website wants to download the above
 plugin.

The videos display fine here. Did you compile mplayerplug-in with the divx 
USE flag?

Which version are you using?

The flag I have set:

net-www/mplayerplug-in-3.45 divx gmedia gtk nls quicktime realmedia wmp

media-video/mplayer-1.0_rc1_p20070824 X a52 aac alsa dv dvb dvd encode gif gtk 
iconv ipv6 jpeg mad mmx mp3 opengl oss png quicktime real samba sdl sse sse2 
truetype unicode v4l v4l2 vorbis xv


Patrick





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


Init Script dependencies (Was [gentoo-user] openvpn and nfsmount)

2007-08-30 Thread Patrick Holthaus
Hello again!

  Nevertheless I've used this many times before, and although realtime
  performance isn't especially good, I certainly wouldn't go so far as to
  call it unstable.

 I've used OpenVPN to interconnect workstations and servers in Argentina,
 using all from Cable internet to ADSL, and GPRS modems. It rocks.

I also never experienced any stability problems with OpenVPN.

 And NFS, well, it's NFS. I don't love it, but I've used NFS exports from a
 14.k modem... So... maybe he is having internet issues, router issues,
 firewall issues, compilation issues... but OpenVPN and NFS, given a
 relatively good network environment, work more than OK.

NFS works great for me, too. I don't see why I should not use it.

But going back to the original topic, which was not really about the pros and 
cons of OpenVPN and NFS. (Maybe I should have chosen another subject.)

How can I adjust init script dependencies based on ESSID / IP adress or 
network devices that are up and running?

Thanks in advance
Patrick


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


[gentoo-user] openvpn and nfsmount

2007-08-28 Thread Patrick Holthaus
Hello!

I am having difficulties in setting up nfs with my laptop. I have an openvpn 
server running at home that can be reached via dynamic dns from the outside 
world. Now i would like to mount my nfs exports from everywhere I am. These 
exports are only available in the vpn subnet (10.8.0.*).
There are basically three scenarios (all via net.wlan0):

1. Home:
- Direct connection to the openvpn server with a static private IP adress 
(192.168.1.xxx)
- ESSID is fixed (e.g. home)
- The openvpn service can be started via /etc/init.d/openvpn.home start (it 
is properly configured via /etc/openvpn/home.conf
- After that net.tap0 can be started and gets an ip adress inside the vpn 
(e.g. 10.8.0.100) if i have the following in /etc/conf.d/net:

 config_tap0=( dhcp )
 mac_tap0=00:FF:22:33:44:55
 RC_NEED_tap0=openvpn.home

2. Remote:
- Connection via internet
- This time the openvpn service has to be started 
via /etc/init.d/openvpn.remote start (because the config for that resides 
in /etc/openvpn/remote.conf)
- You see that i have to change a line in /etc/conf.d/net to get things to 
work:

 config_tap0=( dhcp )
 mac_tap0=00:FF:22:33:44:55
 RC_NEED_tap0=openvpn.remote


Question is: Can I avoid changing these lines everytime I travel around?

3. Remote via vpnc:
- Connection via internet (so openvpn.remote has to be used)
- ESSID fixed (e.g. unibi)
- Additionally: The vpnc service (/etc/init.d/vpnc.uni) has to be active

Second question: Can I start the vpnc service by knowing the ESSID of my 
wireless network, and if I can: how?

Thanks for your time
Patrick


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


Re: [gentoo-user] XSESSION=Xsession doesn't work!

2007-07-18 Thread Patrick Holthaus
Hi!

  I'm fairly experienced with Linux and have been using Gentoo for over
  3 years, ...
 
  Probably, you're not that fairly experienced regarding the usage of your
  mail client. ;-)
 
  Regards, Elias P.

 Well, I don't know about yours but mine says they were all sent at the
 same exact time.  So why are they arriving at different times?  Are we
 sure this is him and not something else?

 It is weird though.  Something fishy somewhere.

His mail arrived exactly once here.

Patrick


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


Re: [gentoo-user] Knode missing from Kontact

2007-06-20 Thread Patrick Holthaus
Hi!

 Yesterday, I started Kontact on Mandriva. On Mandriva, Knode was
 displayed in Kontact, alongside the other kdepim applications (like
 akgregator, kmail, ...).

 When I start Kontact on Gentoo, Knode (or Usenet) is not one
 of the available components.

Did you install knode? My Kontact also does not show it, but it because I did 
not install it:

 emerge -av knode
 
 [ebuild  N] kde-base/knode-3.5.7 
 USE=-arts -debug -kdeenablefinal -xinerama 0 kB 

It is _not_ automatically installed with kontact.

Patrick


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


Re: [gentoo-user] Firefox fonts

2007-03-19 Thread Patrick Holthaus
Hey!

 Is there a use flag or a separate package
 that needs to be installed to get the GTK Styles and Fonts option in
 Kcontrol?  Is there a config file located somewhere that I can edit to
 change the fonts in GTK apps?

There is a seperate package that is called x11-themes/gtk-engines-qt. It 
makes the Kontrol Center entry visible (Appearance  Themes).


pgpPxLkWB2exv.pgp
Description: PGP signature


[gentoo-user] OpenVPN and DHCP

2007-03-17 Thread Patrick Holthaus
Hello everybody!

Maybe this is a bit Off-Topic here, but maybe some of you like to help me 
anyway.

I am trying to build a VPN network where the clients get their IP adresses 
from a local DHCP server (because it should notify the nameserver of the 
clients). The VPN should have its own adress pool 10.8.0.* while the 
unsecured clients in the server's LAN should get an 192.168.1.* adress.

I got the VPN working but the clients do appearently not get their IP from the 
DHCP server but some random IP from the OpenVPN server. (The DHCP server only 
assignes 10.8.0.100-200 adresses but the clients get .8 or .10 for example)

Now my questions are:
Do I need bridging for making the DHCP server work in the VPN?
How should the configuration files look like?

The current configuration files can be found here:
http://wwwhomes.uni-bielefeld.de/pholthaus/public/vpn

client.openvpn.conf.txt and
server.openvpn.conf.txt are the current configuration files.

client.openvpn.conf.testing.txt and
server.openvpn.conf.testing.txt are files where i tried to use tap devices. 
However if i use these configurations i get the following error in the 
server's log:

Mar 15 12:50:04 kael openvpn[23401]: thrall/129.70.171.12:32830 MULTI: no 
dynamic or static remote --ifconfig address is available for 
thrall/129.70.171.12:32830

Any help is appreciated very much!
Thanks
Patrick

P.S. I also started a thread in the Gentoo forums. If you are interested in it 
check it out here: http://forums.gentoo.org/viewtopic-t-547061.html


pgp25d0KFP0cU.pgp
Description: PGP signature


[gentoo-user] Portage Error

2007-01-31 Thread Patrick Holthaus
Hello everybody!

This is my first post to the mailing list. So please forgive me if i am
doing something wrong...

I have a serious issue with portage because my hard disk (file system)
has been damaged. Now i am unable to detect wether the problem is
caused by portage or not.
However if i try to emerge net-wireless/ipw3945d i get the following error:

 Completed installing ipw3945d-1.7.22-r4 
into /var/tmp/portage/net-wireless/ipw3945d-1.7.22-r4/image/

 * QA Notice: Pre-stripped files found:
 * /var/tmp/portage/net-wireless/ipw3945d-1.7.22-r4/image/sbin/ipw3945d
Traceback (most recent call last):
  File /usr/bin/emerge, line 5271, in ?
retval = emerge_main()
  File /usr/bin/emerge, line 5266, in emerge_main
myopts, myaction, myfiles, spinner)
  File /usr/bin/emerge, line 4733, in action_build
retval = mergetask.merge(pkglist, favorites, mtimedb)
  File /usr/bin/emerge, line 2980, in merge
prev_mtimes=ldpath_mtimes)
  File /usr/lib/portage/pym/portage.py, line 3674, in doebuild
vartree=vartree, prev_mtimes=prev_mtimes)
  File /usr/lib/portage/pym/portage.py, line 3882, in merge
mydbapi=mydbapi, prev_mtimes=prev_mtimes)
  File /usr/lib/portage/pym/portage.py, line 7725, in merge
cleanup=cleanup, mydbapi=mydbapi, prev_mtimes=prev_mtimes)
  File /usr/lib/portage/pym/portage.py, line 7135, in treewalk
slot_matches = self.vartree.dbapi.match(
  File /usr/lib/portage/pym/portage.py, line 5169, in match
mymatch = [cpv for cpv in mymatch \
  File /usr/lib/portage/pym/portage.py, line 5262, in aux_get
for k, v in izip(aux_keys, self._aux_get(mycpv, aux_keys)):
  File /usr/lib/portage/pym/portage.py, line 5275, in _aux_get
raise KeyError(mycpv)
KeyError: 'net-wireless/ipw3945d-1.7.22-r4'

And nothing has been merged. ANY help on this would be appreciated, as i am 
using my laptop quite often and wireless is a must have for me. I also 
started a thread in the gentoo forums where more information about my system 
and tries i have made to compensate the file system errors can be found. You 
may want to have a look at it here:
http://forums.gentoo.org/viewtopic-t-535125-highlight-.html

Sadly no one could help me to resolve my issue until now. It would be great if 
you guys could.

Thank you
Patrick


pgpaCS6slv6BC.pgp
Description: PGP signature


Re: [gentoo-user] emerge --sync

2006-05-20 Thread Patrick McCauley
Leandro, emerge-webrsync should work.  You can download a recent snapshot
from one of the mirrors as an alternate.

Patrick

 Hi folks,

  Due to firewall configuration I can't make a emerge --sync using
 rsync, is it possible to do it using ftp or http?

 Thanks,
 Leandro

 --
 gentoo-user@gentoo.org mailing list




-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Installation AMD64 with SCSI

2006-05-20 Thread Patrick McCauley
Leandro, you can start by going through the handbook and following the
steps.  Maybe print off if you don't have a second system to view while
installing.  Post more specific problem if you encounter one.  When
configuring the kernel you will need to enable specific options depending
on hardware.  You can use lspci to get some hardware information.

Here's the handbook:
http://www.gentoo.org/doc/en/handbook/2006.0/handbook-amd64.xml?full=1

Patrick

 Hi folks,

   After download gentoo-universal for AMD64, what is the right steps
 should I need to do to install gentoo on a Opteron AMD64 with adaptec
 SCSI controler?

 Thanks

 Leandro

 --
 gentoo-user@gentoo.org mailing list





-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Re: glibc-2.4-r2: Problems with UTF-8 locale

2006-05-05 Thread Patrick Börjesson
On 2006-05-05 19:11, Farhan Ahmed uttered these thoughts:
 Well userlocales USE flag was there in glibc-2.4-r1 but it's absent in
 glibc-2.4-r2.. But here's the weird thing, I had compiled glibc-2.4-r1
 with userlocales USE flag, in my /etc/locales.build I just have
 
   en_US/ISO-8859-1
   en_US.UTF-8/UTF-8
 
 so the locale -a output, quiet expectantly, is:
 
   C
   en_US
   en_US.utf8
   POSIX
 
 But with 2.4-r2 there is no such flag as userlocales and I was expecting
 glibc to build all locales, but to my surprise I still have the above
 said locales only.. Any ideas?

locale-gen automatically uses /etc/locales.build (if it exists) if it
doesn't find any locales to generate in /etc/locale.gen

Regards,
  Patrick Börjesson

-- 
()  The ASCII Ribbon Campaign - against HTML Email
/\  and proprietary formats.


pgpz1jEZJOeyT.pgp
Description: PGP signature


Re: [gentoo-user] gentoo servers down?

2006-05-05 Thread Patrick Börjesson
On 2006-05-05 10:49, Alexander Skwar uttered these thoughts:
 Do other people also experience problems with http://bugs.gentoo.org/
 and http://packages.gentoo.org/ right now? The servers react extremely
 slow and bgo is only showing me a
 
   À
 
 right now.

It seems that (at least) bugs.gentoo.org has had some problems for a
while now. From what i gather it's the database it's using that's pretty
bogged down...

Regards,
  Patrick Börjesson

-- 
()  The ASCII Ribbon Campaign - against HTML Email
/\  and proprietary formats.


pgpr6erAPBlSG.pgp
Description: PGP signature


Re: [gentoo-user] insufficient emerge -t output

2006-04-13 Thread Patrick Börjesson
On 2006-04-13 06:28, Mantas Povilaitis uttered these thoughts:
 when I do emerge -uDp world, my (kde only) system wants to pull in a
 lot of gnome packages. When I add -t to see what wants them, it
 doesn't show:
 
 room17 mantas # emerge -uDpvt world

[snip]

 If I understand how to read the tree correctly, gnome is pulled in as
 x11-themes/gnome-icon-theme dependency and gtk-engines as a dependency
 of x11-themes/gnome-themes. But this tree doesn't show what wants
 gnome themes and gnome-icon-theme.

I would think the only time a package is shown as a top level object
in the tree output from emerge is when it's included in the world-file.

 So my question is how to find out why my system wants gnome themes and
 gnome-icon-theme.

You're sure you haven't installed x11-themes/gnome-themes explicitly
before? Send output of:

grep gnome /var/lib/portage/world


Regards,
 Patrick Börjesson

-- 
()  The ASCII Ribbon Campaign - against HTML Email
/\  and proprietary formats.


pgprbns0kJ8gB.pgp
Description: PGP signature


Re: [gentoo-user] mirror email servers

2006-04-11 Thread Patrick Watson

Uwe Thiem wrote:

On 11 April 2006 19:17, El Nino wrote:
  

Dear list friends,

i deployed several testing mail servers on different locations(towns).
now i need to mirror these all servers. how to do this?

idea(scenario) like,
o when one mail server goes down 2nd mail server get the email. but
when 1st up, 2nd mail server forward the email to 1st server.



MX entries in DNS?

Uwe
That's close to what I use. However, MX entries alone aren't the 
solution. You also have to configure the mail servers to forward the 
mail on to the final destination once it comes back online. I'm not sure 
how to do that myself, and don't really have to time to put much effort 
into it since my mail server is only for small scale personal use. I 
just use dyndns.org's Backup MX service: 
http://www.dyndns.com/services/mailhop/backupmx.html. Even if that isn't 
a solution for you, it's at least a place to start looking.


Patrick

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] subversion

2006-03-15 Thread Patrick Börjesson
On 2006-03-15 00:47, David Corbin uttered these thoughts:
 Anybody have any idea when subversion 1.3 will available as an ebuild?

It is... Marked testing on most architectures it seems.
If you want it, read man portage and look for package.keywords


Regards,
Patrick Börjesson

-- 
/  ()  The ASCII Ribbon Campaign - against HTML Email
\  /\   and proprietary formats.


pgpYY7mw6fIL4.pgp
Description: PGP signature


Re: [gentoo-user] Gentoo USE flags

2006-03-14 Thread Patrick Börjesson
On 2006-03-14 16:02, Goran Maksimovi� uttered these thoughts:
 I have already asked this but I will ask again. I am looking for who could 
 write
 me a list of USE flags to setup in make.conf, so anyone? I need desktop system
 with KDE and not GNOME, support for DVD and CD ripping and burning, playing 
 DVDs
 and DivX movies, MP3. I will do programming and testing of Apache server, mail
 server, MySQL.

Best tip I can give you is going through /usr/portage/profiles/use.desc
and pick the ones you think you need...

From the requirements you laid down above, a start would probably be:
USE=kde -gnome -gtk gtk2 mysql apache2 dvd dvdr xvid mp3

Then add whatever programming-languages you use in there too. F.ex.
ruby, python, perl. Although you might want to add these per package
instead, as they might just add scripting capabilities for certain
applications. 

For more information about masking, package-specific use-flags and so
on:

$ man portage


Regards,
Patrick Börjesson

-- 
/  ()  The ASCII Ribbon Campaign - against HTML Email
\  /\   and proprietary formats.


pgpJDGIxFKcIe.pgp
Description: PGP signature


Re: [gentoo-user] Portage Problem

2006-03-14 Thread Patrick Börjesson
On 2006-03-14 16:47, Timothy A. Holmes uttered these thoughts:
 I am trying to install JFFNMS, as part of its dependancies, it wants to
 install php4.4.2, however the computer already has PHP5 installed and
 running nicely. 
 
 Is there a way to install JFFNMS without installing php4 and have it use
 php5 properly?

That depends entirely on if JFFNMS runs on php5 or not... I'd guess that
if it's trying to draw in php4 as a dependency when you already have
php5 installed, it's probably not running on php4 reliably yet, in which
case you'll have to make some choises...
- If you don't really need php5, you just install php4 and unmerge php5
  (and mask it if it's getting dragged in by emerge again).
- If you want to run both php4 and php5, read this:
  http://www.gentoo.org/proj/en/php/php4-php5-configuration.xml
- Or you edit the ebuild for JFFNMS to not have a depencency for php5
  and try out running it on php5 instead... Probably wont work since
  either the maintainer or developers of JFFNMS has tried running it (or
  knows it wont run) on php5. 


Regards,
Patrick Börjesson

-- 
/  ()  The ASCII Ribbon Campaign - against HTML Email
\  /\   and proprietary formats.


pgpKUAhgbWbma.pgp
Description: PGP signature


Re: [gentoo-user] Stop and continue emerge -e world

2006-03-14 Thread Patrick Börjesson
On 2006-03-14 23:39, Petr Uzel uttered these thoughts:
 Hello everybody!
 I'm currently running emerge -e world because of gcc upgrade. I would 
 appreciate if I can stop this emerge and continue tomorrow from where it was 
 stopped.
 
 I have two questions:
 
 1) Is there any possibility to stop and later continue (after reboot) emerge 
 -e world without compiling every package again?
 
 2) If I do this, will be the system usable after reboot? (some of packages 
 compiled with gcc-3.3.6 and other with gcc-3.4.5)

Actually, the faster way would be to use revdep-rebuild instead of
emerge -e world (isn't this mensioned in the upgrade guide for gcc?). If
you still have gcc-3.3.6 installed on your system, you won't have a
problem from rebooting (as far as I know). 

Regards,
 Patrick Börjesson

-- 
/  ()  The ASCII Ribbon Campaign - against HTML Email
\  /\   and proprietary formats.


pgplqB4K6fc7W.pgp
Description: PGP signature


Re: [gentoo-user] KDE refuses to be compiled!!!

2006-03-09 Thread Patrick B�rjesson
On 2006-03-09 14:03, Rafael Barrera Oro uttered these thoughts:
 Any time i attempt to compile KDE 3.5, it fails misserably, here is
 some output from the make process:
 
 
 libtool: link: `/usr/lib/libGL.la' is not a valid libtool archive
 make[3]: *** [kcm_info.la] Error 1
 make[3]: Leaving directory
 `/var/tmp/portage/kdebase-3.5.1-r2/work/kdebase-3.5.1/kcontrol/info'
 make[2]: *** [all-recursive] Error 1
 make[2]: Leaving directory
 `/var/tmp/portage/kdebase-3.5.1-r2/work/kdebase-3.5.1/kcontrol'
 make[1]: *** [all-recursive] Error 1
 make[1]: Leaving directory
 `/var/tmp/portage/kdebase-3.5.1-r2/work/kdebase-3.5.1'
 make: *** [all] Error 2
 
 !!! ERROR: kde-base/kdebase-3.5.1-r2 failed.
 Call stack:
   ebuild.sh, line 1928:   Called dyn_compile
   ebuild.sh, line 966:   Called src_compile
   kdebase-3.5.1-r2.ebuild, line 109:   Called kde_src_compile
   kde.eclass, line 111:   Called kde_src_compile 'compile'
   kde.eclass, line 228:   Called kde_src_compile 'all' 'myconf' 'configure'
 
 !!! died running emake, kde_src_compile:make
 !!! If you need support, post the topmost build error, and the call
 stack if relevant.
 
 If any of you has any clue of what the solution coulde be, it will
 greatly appreciated.
 

Took one search on bugs.gentoo.org to find this:

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

Regards,
Patrick B�rjesson

-- 
/  ()  The ASCII Ribbon Campaign - against HTML Email
\  /\   and proprietary formats.


pgpbgX3Jdu0Y5.pgp
Description: PGP signature


Re: [gentoo-user] equery, make.conf USE flag mismatch on amd64

2006-03-08 Thread Patrick B�rjesson
On 2006-03-08 00:20, Kumar Golap uttered these thoughts:
 I have the following USE in my make.conf (on an athlon64 machine)
 USE=3dnow xorg a52 alsa acpi arts avi berkdb cdr crypt cups dvdr dvd
 encode foomaticdb ffmpeg flac gdbm gif gpm gtk gtk2 hal imlib jpeg kde
 gnome libg++ libwww lm_sensors mad mikmod mmx motif mpeg mysql ncurses
 nls oggvorbis opengl pam pam_console pdflib png python qt quicktime
 readline sdl slang spell sse ssl svga tcpd tiff truetype usb X xml2
 xmms xv zlib f77 v4l win32codecs
 
 
 And when i do: equery uses xawtv i get the following:
 [ Searching for packages matching xawtv... ]
 [ Colour Code : set unset ]
 [ Legend: Left column  (U) - USE flags from make.conf 
]
 [  : Right column (I) - USE flags packages was installed with 
 ]
 [ Found these USE variables for media-tv/xawtv-3.95-r1 ]
[snip]
  - - mmx   : Adds support for optimizations for Pentium MMX and
 Athlon class processors
[snip]

 Please note that mmx seems to be missing in both columns. despite
 that its there in my USE in make.conf
 
 When i do: emerge --pretend --newuse xawtv
 
 It basically reports that nothing need to be done

Try a
$ emerge -vp xawtv
and see if the mmx useflag is set in that output... If not, then do a 
$ emerge --info
and see if the useflag output from that command includes mmx. If not,
you've probably got a typo of some sort in your make.conf since the mmx
useflag is not profile-masked on the amd64 (use.mask under your
/etc/make.profile symlink). 

 Is this a bug in equery or is it that i can't set mmx on an Athlon64 ?

Might be, but probably not ;)


Regards,
Patrick B�rjesson

-- 
/  ()  The ASCII Ribbon Campaign - against HTML Email
\  /\   and proprietary formats.


pgpUlt3St97RL.pgp
Description: PGP signature


Re: [gentoo-user] How many GB for / partition?

2006-02-17 Thread Patrick Börjesson
 remounting.

You don't. But saying that remounting /usr when you do updates takes up
an unreasonable amount of time is pretty much moot if you take a couple
of minutes to script your update procedure.

  a) /tmp is cleaned during boot - so this won't happen anyway.
 
 /tmp ios cleaned so late, that it is too late, is both are totally full.
 
  b) Don't let it happen in the first place.
 you can not tell an attacker what not to do.
 
  c) Boot a rescue system like Knoppix and clean /tmp.
 
 yeah! but why boot from a boot-cd, if you don't have to? (hint: /tmp not on 
 its own, small partition)

Oh yeah, it's much better to have /tmp on the same filesystem as /,
making the system unusable as soon as you fill up /tmp. Good suggestion
;)

  d) In reality, I NEVER had it happen that /tmp or /var/tmp
  ran out of space. What happened more often is that /var
  ran out of space, because of the logs in /var/log.
 
 you have never used gimp, did you?
 I have seen gimp filling up a 5GB /tmp.
 
 
I see. Strange thing is, that about every server and workstation
I've seen more or less contradicts what you say.
   
if you have 20+ users on each of them, and every single one is a
little cracker in disguisse, it may make sense, but for a single user
box?
  
   Why are you asking?
  
   because you are the one starting with 'server' and 'workstations'
 
  Correct. So what? Why are you asking?
 
   and the OP
   never talked about one or the other.
 
  His system MUST be the one or the other.
 
 nope, there is a third category: personal computer (also called home 
 computer).

What's this got to do with anything at all?

If every partition takes a second, it will be very noticable.
  
   Hardly. (Notice that I'm not saying No.)
  
   if mounting becomes the major 'hold up' in your booting process, it
   becomes VERY noticable.
 
  Jaja. Do you actually expect to be taken seriously?
 
 not from you. From thois mailing list I learnt, that if someone is not on 
 your 
 side, the person is wrong.

Good philosophy. Good luck getting through life with that attitude. 

   I have been there,
 
  I doubt that.
 
 Why should I lie?
 I had 3 ibm harddisks 1x10Gb,2x40gb one seagate 20gb and all and everything 
 on 
 its own partition.
 And it was hell after a while.

I would imagine it could get pretty screwed up using ordinary
partitions which you can't resize easily. But from Alexander's point of
view this is pretty much moot since it seems that extending filesystems
using LVM is extremely easy and fast. 

   More harddisks=bigger chance that one of them dies.

So, instead of spreading your data out over several harddrives (reducing
the chance of loosing _all_ your data when a harddrive dies), you'd
rather have everything on one harddrive, thus loosing all your data when
that harddrive dies... Best suggestion I've heard in a long time ;)

  True. So? What does this have to do with the fact, that the
  available hd's are too small? Just as a reminder - that's
  the scenario YOU are talking about.
 
 becuase you started with 'buy more harddisks'
 
It is simple math.
  
   *LOL* _You_ should not talk about maths :)
  
   you obviously don't understand simple statistics.

The statistics in your reasoning really has no bearing in the argument,
since harddrives will fail no matter how many (or few) harddrives you
have. 
And even though having more harddrives increases the chance of one of
them failing, how does that impact your choice in what
partitioning-scheme you want to use (especially if you use LVM)?

  Seems like. But maybe it's just, that I've got problems
  following your nonsense, hm?
 
 you mean your nonesense?
 Yep, it is hard to deal with you.
 
 I snipped the rest: TL:DR

Wow, intelligent rebuttals here... Impressive.


At the end of the day, it's basically a choice of how secure/robust you
want your filesystem layout to be compared to how much tinkering you
want to do to keep everything rolling along nicely. 

Using alot of ordinary partitions seems to be pretty outdated when we
have access to LVM, and can bring alot of hassle if you have made your
partitions to small, or waste alot of space if made to big. 

Using one partition for basically everything under / is a bit less
secure if you're running a couple of services on your system, but if
you're just using the system as a workstation, I wouldn't be too worried
about it. 

Using LVM seems to be a lot more flexible since you can start small with
your filesystems, and extend them after time when need be. But this also
includes some supervision of how much space you have available on your
different filesystems. Could probably be considered a more convenient
alternative if you plan to extend your system later on with more
harddrives, or plan on separating your data areas to further
security/robustness.


Please end the flamefest now, k?

-- 
/  Patrick Börjesson
\ ---
/  ()  The ASCII Ribbon Campaign - against HTML Email

Re: [gentoo-user] Re: Problems with GRUB in the installation of Gentoo

2006-02-12 Thread Patrick Bloy

Bo Andresen schrieb:


On Sunday 12 February 2006 18:12, Gilberto Martins wrote:
 


But it does not work yet ...   8(

   



Perhaps you should post the output of:

#ls -l /boot
#cat /boot/grup/grub.conf

 



#cat /boot/grub/grub.conf ?!

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Postfix authentication error??

2006-02-09 Thread Patrick Börjesson
On 2006-02-09 15:48, Darren Grant uttered these thoughts:
 When trying to connect remotely with an email client (thunderbird) I 
 can't seem to authenticate... and it's driving me crazy. Could someone 
 please point me in the right direction?
 
 #tail -f /var/log/messages
 
 Feb  9 15:43:52 myhost imapd: Connection, ip=[:::216.xxx.xxx.xx]
 Feb  9 15:43:55 myhost imapd: LOGIN FAILED, [EMAIL PROTECTED], 
 ip=[:::216.xxx.xxx.xx]
 Feb  9 15:43:55 myhost imapd: authentication error: Input/output error
 
 Where is my configuration problem most likely? In my 
 /etc/postfix/main.cf file? or in my courier configs?
 
 Any help would be greatly appreciated.
Well, you can exclude postfix from the problem since postfix doesn't
supply a imap server. So it's a courier problem. Can't say much more,
but it seems that the imap daemon has trouble connecting to whatever
authentication resource you're using (maybe courier's authdaemon?).

Sorry for not being of more help...

-- 
/  Patrick Börjesson
\ ---
/  ()  The ASCII Ribbon Campaign - against HTML Email
\  /\   and proprietary formats.


pgp1LxGRhfT09.pgp
Description: PGP signature


Re: [gentoo-user] daemon start up problem

2006-02-08 Thread Patrick Börjesson
On 2006-02-08 10:08, K. Mike Bradley uttered these thoughts:
 Hello,
 I am running latest Gentoo.
 I want to start my app as a daemon.
 This app has a script to do so.
 
 webservice.sh
 
 I copied this file to /etc/init.d/
 
 I made a link:
 
 /etc/runlevels/default/webctrl --- /etc/init.d/webservice.sh
 
 If I start manually it's ok:
 
 /etc/init.d/webservice.sh start
 
 But when I re-boot I get:
 
 
 *WARNING:   /etc/init.d/webctrl missing ... Skipping[ok] 

I would imagine that the init system of Gentoo expects the links in
/etc/runlevels/... to have the same name as the script they link to.

So to get proper behaviour: 
ln -sf /etc/init.d/webservice.sh /etc/runlevels/default/webservice.sh
(or rc-update add webservice.sh default)

Then remove /etc/runlevels/default/webctrl
 
That should fix it...

-- 
/  Patrick Börjesson
\ ---
/  ()  The ASCII Ribbon Campaign - against HTML Email
\  /\   and proprietary formats.


pgpTrQCW7YE8n.pgp
Description: PGP signature


Re: [gentoo-user] Stupid Postfix alias question...

2006-02-01 Thread Patrick Börjesson
On 06/02/01 16:32, Eric Bliss wrote:
 I've got a user who wants his mail both kept locally and forked off to 
 another 
 server.  Will the following work in the aliases file, or will it create an 
 infinite loop?
 
 bob: bob, [EMAIL PROTECTED]
 
 I'm thinking it should work safely, but I can't seem to find the reference to 
 in in the documentation, although I know it's gotta be in there somewhere.

According to `man 8 local` on line 56, it seems what you're trying to do
should work as you wrote it.

-- 
/  Patrick Börjesson
\ ---
/  ()  The ASCII Ribbon Campaign - against HTML Email
\  /\   and proprietary formats.


pgppXE6Zx35hS.pgp
Description: PGP signature


Re: [gentoo-user] root password gremlin

2005-11-18 Thread Patrick McLean

Walter Dnes wrote:

On Thu, Nov 17, 2005 at 06:11:22PM -0500, Willie Wong wrote



Clarify? I certainly run my box without pam and I can still login. Is
this some new development that I am not aware of?



  You need to emerge *EITHER* pam *OR* shadow.  You can't emerge both,
because they provide the same service.  I prefer to run without pam,
because everything you know is wrong when it comes to config files
all over the place.



That is outright wrong, pam and shadow are different things. Pam is an 
authentication framework, and shadow is an authentication mechanism. Pam 
lets you use many ways to authenticate (the default being shadow on a 
standard Gentoo system).


Running a system withoug pam is a rather strange thing to do on a modern 
Linux system, and I can think of very few reasons to do it.

--
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] -mtune for P4M (dothan)

2005-11-02 Thread Patrick Watson
In other words:

pentium4m is for the mobile version of the Pentium 4; see
http://www.intel.com/products/processor/mobilepentium4/

Pentium-m is for the Pentium M series, a completely different processor from
the Pentium 4 series. See
http://www.intel.com/products/processor/pentiumm/index.htm

-Original Message-
From: Luca Botti [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 02, 2005 7:45 AM
To: gentoo-user@lists.gentoo.org
Subject: Re: [gentoo-user] -mtune for P4M (dothan)


WRONG!

dothan is not a P4M, it is a Pentium-M, like the previous, 1mb 2nd level
cache 
version.

So you should apply the pentium3 + sse options for gcc 3.3, or 
-march=pentium-m for gcc 3.4 and upper.

The pentium4m is just a cut-down version of pentium4.




Alle Tuesday 1 November 2005 16:09, Qian Qiao ha scritto:
 Hi,

 Trying to install gentoo on a notebook with a P4M (dothan), wondering
 what -mtune should I go for, the GCC manual says:

 pentium-m
 Low power version of Intel Pentium3 CPU with MMX, SSE and SSE2
 instruction set support. Used by Centrino notebooks.

 pentium4, pentium4m
 Intel Pentium4 CPU with MMX, SSE and SSE2 instruction set support.

 So shall I choose pentium-m? or pentium4m?

 TIA

 -- Joe

 --
 There are 3 kinds of people in the world:
 Those who can count, and those who can't.
-- 
gentoo-user@gentoo.org mailing list


-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] -mtune for P4M (dothan)

2005-11-02 Thread Patrick Watson
Just noticed: it seems that Intel has two pages for their mobile version of
the Pentium 4. shrug This is the second one, and (guessing by the name) is
probably what the flag is really for:
http://www.intel.com/products/processor/pentium4-m/index.htm

-Original Message-
From: Patrick Watson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 02, 2005 8:36 AM
To: gentoo-user@lists.gentoo.org
Subject: RE: [gentoo-user] -mtune for P4M (dothan)

In other words:

pentium4m is for the mobile version of the Pentium 4; see
http://www.intel.com/products/processor/mobilepentium4/

Pentium-m is for the Pentium M series, a completely different processor from
the Pentium 4 series. See
http://www.intel.com/products/processor/pentiumm/index.htm

-Original Message-
From: Luca Botti [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 02, 2005 7:45 AM
To: gentoo-user@lists.gentoo.org
Subject: Re: [gentoo-user] -mtune for P4M (dothan)


WRONG!

dothan is not a P4M, it is a Pentium-M, like the previous, 1mb 2nd level
cache 
version.

So you should apply the pentium3 + sse options for gcc 3.3, or 
-march=pentium-m for gcc 3.4 and upper.

The pentium4m is just a cut-down version of pentium4.




Alle Tuesday 1 November 2005 16:09, Qian Qiao ha scritto:
 Hi,

 Trying to install gentoo on a notebook with a P4M (dothan), wondering
 what -mtune should I go for, the GCC manual says:

 pentium-m
 Low power version of Intel Pentium3 CPU with MMX, SSE and SSE2
 instruction set support. Used by Centrino notebooks.

 pentium4, pentium4m
 Intel Pentium4 CPU with MMX, SSE and SSE2 instruction set support.

 So shall I choose pentium-m? or pentium4m?

 TIA

 -- Joe

 --
 There are 3 kinds of people in the world:
 Those who can count, and those who can't.
-- 
gentoo-user@gentoo.org mailing list


-- 
gentoo-user@gentoo.org mailing list


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] PANIC !!!!

2005-10-22 Thread Patrick Börjesson
On 05/10/22 00:45, Hemmann, Volker Armin wrote:
 On Friday 21 October 2005 22:13, Jeff Smelser wrote:
  On Friday 21 October 2005 02:24 pm, Hemmann, Volker Armin wrote:
   but at least now you know why you should not use --deep.
 
  Why not? I use it here and I never get crashes.. One doesnt mean the other.
 
 
 because some apps (like, for example xine) doesn't like it, when some of 
 their 
 dependencies get upgraded with a --deep world (like ffmpeg or transcode), 
 while themselves are not recombiled.
 
 xine will not crash - but some video-filters will be gone.
 
 It is just not wise:
 App X linked against library L.
 Now you do an --update --deep world.
 lib L gets a new version L.1.1.
 But X does not recompiled, and funny things can happen now.

This reasoning is pretty much void when dealing with libraries, since
there's often more than one application depending on a particular
library. 

Example:
App A and app B link agains library L.
Run an 'emerge -u A' and app A, and library L gets upgraded.
App B is fucked in the same way as you having run an 'emerge -deep
world', since B is not recompiled but its dependency is.

-- 
Regards,
  Patrick Börjesson

PGP signature: http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0x21792A5D
PGP fingerprint: 74AF D4EF 6BDE CF77 16BE  6A29 CDB8 7607 2179 2A5D


pgpZSofbEwFbv.pgp
Description: PGP signature


[gentoo-user] Keyboard troubles and new baselayout

2005-10-11 Thread Patrick Marquetecken
Hi,

After upgrading to baselayout-1.11.13-r1 i can't login to my servers
direct with the keyboard.
After the upgrade i have used the new /etc/rc.conf and changed the
/etc/conf.d/keymaps accourding to my Belgium keyboard KEYMAP=be-latin1,
and rebooted the machine !
It seems that the @ button not work on the keyboard, on the otherhand if i
login with ssh i can use the @ sign.
Must i change something else ?


TIA
-- 
This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Bridge confusion

2005-10-10 Thread Patrick Marquetecken
Hi,

I hope that someone on this list can help me to clarify bridging.

This is the setup i want:

Lan 1 Lan 2
 eth1---brigdeeth1
||
 10.32.0.0/22  10.32.0.0/22
||
 eth0 (10.32.3.10)---eth0 (10.32.3.11)


So the questing is, must i add eth0 and eth1 of the same machine to the
same bridge device to get it working, or is eth1 enough ?

-- 
This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Mail systems

2005-10-10 Thread Patrick Börjesson
/local-mail-0.3.0/local-email.html

-- 
Regards,
  Patrick Börjesson

PGP signature: http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0x21792A5D
PGP fingerprint: 74AF D4EF 6BDE CF77 16BE  6A29 CDB8 7607 2179 2A5D


pgpEX4dOhl4N1.pgp
Description: PGP signature


[gentoo-user] Bridging problems with new baselayout

2005-10-07 Thread Patrick Marquetecken
Hi,

I'm having trouble to get bridging working with the new baselayout
I followed a example of gentoo-wiki

config_eth0=( 10.32.3.52/22 )
config_eth1=( 10.32.100/28 )
config_eth2=( 10.32.100.18/28 )
config_eth3=( null )
config_tap0=( 0.0.0.0 promisc )
config_br0=( 10.32.100.99 )
bridge_br0=eth3 tap0
depend_br0 () {
need net.tap0 net.eth3
}

when i bring up the net.br0 i get this error:

 * Please make sure that /etc/conf.d/net has $ifconfig_eth3 set
 * (or $iface_eth3 for old-style configuration)
 * ERROR:  Problem starting needed services.
 * net.br0 was not started.

If i run all the commands with ifconfig i get it working.

Whats wrong in my /etc/conf.d/net ?

TIA
Patrick

-- 


This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Bridging problems with new baselayout - SOLVED

2005-10-07 Thread Patrick Marquetecken
Is seems that my net.eth3 was a old script, when replacing it with a newer
version my ny /etc/conf.d/net if working perfect.


 Hi,

 I'm having trouble to get bridging working with the new baselayout
 I followed a example of gentoo-wiki

 config_eth0=( 10.32.3.52/22 )
 config_eth1=( 10.32.100/28 )
 config_eth2=( 10.32.100.18/28 )
 config_eth3=( null )
 config_tap0=( 0.0.0.0 promisc )
 config_br0=( 10.32.100.99 )
 bridge_br0=eth3 tap0
 depend_br0 () {
 need net.tap0 net.eth3
 }

 when i bring up the net.br0 i get this error:

  * Please make sure that /etc/conf.d/net has $ifconfig_eth3 set
  * (or $iface_eth3 for old-style configuration)
  * ERROR:  Problem starting needed services.
  * net.br0 was not started.

 If i run all the commands with ifconfig i get it working.

 Whats wrong in my /etc/conf.d/net ?

 TIA
 Patrick

 --


 This is Unix-Land. In quiet nights, you can hear the Windows machines
 reboot.
 --
 gentoo-user@gentoo.org mailing list





-- 
Arwen: Why do you fear the past? You are Isildur's heir, not Isildur
himself. You are not bound to his fate.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Bridging problems with new baselayout - SOLVED

2005-10-07 Thread Patrick Börjesson
On 05/10/07 13:38, Patrick Marquetecken wrote:
 Is seems that my net.eth3 was a old script, when replacing it with a newer
 version my ny /etc/conf.d/net if working perfect.
The easiest way to prevent this in the future is to make /etc/init.d/net.eth*
symlink to /etc/init.d/net.lo since they're supposed to be the same script.

-- 
Regards,
  Patrick Börjesson

PGP signature: http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0x21792A5D
PGP fingerprint: 74AF D4EF 6BDE CF77 16BE  6A29 CDB8 7607 2179 2A5D


pgp4vzk1WlIeH.pgp
Description: PGP signature


[gentoo-user] Automatic install script

2005-10-04 Thread Patrick Marquetecken
Hi,

I'm working on a automatic install script, so that i can start the install
and the 'next' morning i have a working server system.

The only problem i have is when i emerge fails where can i see this ?

/var/log/emerge.log


TIA
Patrick



-- 
This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Save cflags for Xeon

2005-10-04 Thread Patrick Marquetecken
Hi,

i'm looking for good cflags for a PowerEdgeTM  SC1425

The Gentoo wike site
Xeon w/EM64T (Intel)

vendor_id  : GenuineIntel
cpu family  : 15
model  : 4
model name  : Intel(R) Xeon(R) CPU 2.80MHz

CHOST=x86_64-pc-linux-gnu
CFLAGS=-march=nocona -O2 -fomit-frame-pointer -mmmx -msse2 -mfpmath=sse
-pipe
CXXFLAGS=${CFLAGS}


/proc/cpuinfo

Model name : Intel(R) Xeon(R) CPU 2.80MHz
cpu fam : 15
model : 4


For me it seems the same model but i got errors at bootstrap

anyone a idea

TIA
Patrick


-- 
This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] keeping hosts file in sync

2005-09-28 Thread Patrick Marquetecken
Hi,

Whats the best way to keep several /etc/host files in sync ?

TIA
Patrick

-- 
This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] cdrecord-prodvd extrange behaivor

2005-09-27 Thread Patrick Börjesson
On 05/09/27 18:31, Uwe Thiem wrote:
 On 27 September 2005 17:59, Mauro Sauco wrote:
  On Wed, 28 Sep 2005 00:25:46 +0900, Mauro Sauco wrote

[snip]

  # cdrecord dev=0,0,0 speed=1 -v -eject -dao -data myimg.iso
 
  Cdrecord 1.11a15 (i686-pc-linux-gnu) Copyright (C) 1995-2001 J¥urg
  Schilling TOC Type: 1 = CD-ROM
  scsidev: '0,0,0'
  scsibus: 0 target: 0 lun: 0
  Linux sg driver version: 3.5.33
  Using libscg version 'bero-0.5a'
  cdrecord: Warning: using inofficial version of libscg (bero-0.5a
  '@(#)scsitransp.c 1 .81 01/04/20 Copyright 1988,1995,2000 J. Schilling').
  atapi: 1
  Device type: Removable CD-ROM
  Version: 2
  Response Format: 2
  Capabilities   :
  Vendor_info: 'MATSHITA'
  Identifikation : 'DVD-RAM LF-D521 '
  Revision   : 'A116'
 
 This is a different DVD burner than reported in your other emails. What have 
 you done? Replaced the device?

Actually, that's exactly what he did according to the first sentence in
his last email. To quote: 
  Just to make sure that the drive wasnt the problem , I replaced it with a
  completely different drive and got exactly the same behavior.
 
-- 
Regards,
  Patrick Börjesson

PGP signature: http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0x21792A5D
PGP fingerprint: 74AF D4EF 6BDE CF77 16BE  6A29 CDB8 7607 2179 2A5D


pgpeKQa7VDpGb.pgp
Description: PGP signature


[gentoo-user] QOS setup advice

2005-09-26 Thread Patrick Marquetecken
Hi,

This is my situation

  internet (38mbit)
|
|
|
lan-1 (34mbit)  lan-2 (4mbit)

There is a 38mbit connection to the internet and lan-2 may use max 4mbit
and lan-1 34mbit.
Is it enough to create a root cbq queue of 4mbit on the lan-2 interface
and a root cbq queue of 34 mbit for lan-1?
The traffic of the two lans is compleet separate, and different.

TIA
Patrick

-- 
This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] DSPAM + How to train?

2005-09-26 Thread Patrick Marquetecken

 Postfixz- amavisd-new(Clamav+spamassassin+dspam)-cyrus

 I'm wondering how to properly configure dspam. How do I train it? Right
 now, seems like spamassassin is working OK, but dspam is well, doesn't.

 I've got a bunch of ham and spam in my mailbox (mbox format) and I just
 want to use it to train it. How do I go about doing that? I've tried
 dspam_sa_trainer but it keeps complaining of errors. (Can't write to
 the /var/amavis/.dspam/ directory, even though I run it as root!!)

 Anyone?

I'm not using dspam only spamassassin and i copy the ham and spam to their
learning mail folders and have every night a script that uses sa-learn.

HTH
Patrick


 --
 Ow Mun Heng
 Gentoo/Linux on DELL D600 1.4Ghz 1.5GB RAM
 98% Microsoft(tm) Free!!
 Neuromancer 16:47:02 up 1 day, 21:33, 7 users, load average: 1.20, 1.02,
 0.77


 --
 gentoo-user@gentoo.org mailing list





-- 
This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Central syslog server and then

2005-09-16 Thread Patrick Marquetecken
Hi,

I'm going to setup a central syslog server for Linux and windows machines,
but whats the best program to examin these logs, and send out email alerts
to users ?

It seems that there are not so many opensource solutions.

TIA

-- 
This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Central syslog server and then

2005-09-16 Thread Patrick Marquetecken

 Patrick Marquetecken wrote:
 I'm going to setup a central syslog server for Linux and windows
 machines,
 but whats the best program to examin these logs, and send out email
 alerts
 to users ?

 It seems that there are not so many opensource solutions.

 Which ones have you already checked out?
The one mention at the syslog-ng site.
At the moment i'm going true the internet with google



 Perhaps sys-apps/logwatch is what your looking for.
 http://www.logwatch.org/

 Christoph
 --
 echo mailto: NOSPAM !#$.'*'|sed 's. ..'|tr * !#:2 [EMAIL PROTECTED]
 --
 gentoo-user@gentoo.org mailing list





-- 
This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Encrypted NFS via ssh tunelling

2005-09-09 Thread Patrick Marquetecken
Hi,

I can do a nfs mount, but for security i would like to do it over ssh.
I always get this error:
mount: localhost:/usr/portage failed, reason given by server: Permission
denied
without the ssh tunnel i have no problems.
There are no firewall between the two machines, ssh between both goes fine.
My setup:
Attach NFS port of Server (2049) to local port 2818
ssh -f -L 2818:10.32.3.172:2049 -l root 10.32.3.172 sleep 86400

Attach mountD port of Server (675) to local port 3818
ssh -f -L 3818:10.32.3.172:675 -l root 10.32.3.172 sleep 86400

Mount
mount -t nfs -o tcp,port=2818,mountport=3818 localhost:/usr/portage
/usr/portage

ps -ef
root  9165 1  0 10:22 ?00:00:00 ssh -f -L
2818:10.32.3.172:2049 -l root 10.32.3.172
root  9173 1  0 10:23 ?00:00:00 ssh -f -L
3818:10.32.3.172:675 -l root 10.32.3.172

whats wrong here ?

TIA
Patrick
-- 
This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Routing problem

2005-09-08 Thread Patrick Marquetecken

 It's rather hard to help you here. You described only the sympthoms but
 didn't provide any basic details like IP-ranges on both sides, routes,
 ovpn config, OpenVPN versions used, etc. etc.
SiteA 10.32.0.0/22
siteB 10.32.16.0/24
connection goes over 10.32.100.0
tunnels ip's are 10.32.101.3 for siteA and 10.32.101.4 for SiteB
routing tables:
siteA
eth0 10.32.3.51
Destination Gateway Genmask Flags Metric RefUse Iface
10.32.101.6 0.0.0.0 255.255.255.255 UH0  00 tun2
10.32.101.4 0.0.0.0 255.255.255.255 UH0  00 tun1
10.32.101.2 0.0.0.0 255.255.255.255 UH0  00 tun0
10.32.16.16010.32.101.2 255.255.255.255 UGH   0  00 tun0
10.32.101.140.0.0.0 255.255.255.255 UH0  00 tun5
10.32.101.120.0.0.0 255.255.255.255 UH0  00 tun4
10.32.101.8 0.0.0.0 255.255.255.255 UH0  00 tun3
10.32.32.0  0.0.0.0 255.255.255.248 U 0  00 eth0
10.32.100.160.0.0.0 255.255.255.240 U 0  00 eth2
10.32.100.0 0.0.0.0 255.255.255.240 U 0  00 eth1
10.32.100.3210.32.0.20  255.255.255.240 UG0  00 eth0
10.35.0.0   10.32.101.8 255.255.255.0   UG0  00 tun3
10.32.24.0  10.32.101.6 255.255.255.0   UG0  00 tun2
10.35.1.0   10.32.100.17255.255.255.0   UG0  00 eth2
10.32.25.0  10.32.100.17255.255.255.0   UG0  00 eth2
10.32.66.0  10.32.101.4 255.255.255.0   UG0  00 tun1
10.32.16.0  10.32.101.4 255.255.255.0   UG0  00 tun1
10.32.67.0  10.32.101.4 255.255.255.0   UG0  00 tun1
10.32.0.0   0.0.0.0 255.255.252.0   U 0  00 eth0
127.0.0.0   127.0.0.1   255.0.0.0   UG0  00 lo
0.0.0.0 10.32.0.20  0.0.0.0 UG0  00 eth0

siteB
eth0
10.32.16.52
Destination Gateway Genmask Flags Metric RefUse Iface
10.32.101.3 0.0.0.0 255.255.255.255 UH0  00 tun1
10.32.101.1 0.0.0.0 255.255.255.255 UH0  00 tun0
10.32.3.129 10.32.101.1 255.255.255.255 UGH   0  00 tun0
10.32.3.128 10.32.101.1 255.255.255.255 UGH   0  00 tun0
81.246.22.210   10.32.16.20 255.255.255.255 UGH   0  00 eth0
10.32.101.130.0.0.0 255.255.255.255 UH0  00 tun5
10.32.101.110.0.0.0 255.255.255.255 UH0  00 tun4
10.32.32.0  10.32.101.3 255.255.255.248 UG0  00 tun1
10.32.26.0  10.32.16.20 255.255.255.240 UG0  00 eth0
10.32.100.1610.32.16.20 255.255.255.240 UG0  00 eth0
10.32.100.0 0.0.0.0 255.255.255.240 U 0  00 eth1
10.32.100.320.0.0.0 255.255.255.240 U 0  00 eth2
10.35.0.0   10.32.101.3 255.255.255.0   UG0  00 tun1
10.32.24.0  10.32.101.3 255.255.255.0   UG0  00 tun1
10.32.16.0  0.0.0.0 255.255.255.0   U 0  00 eth0
10.33.10.0  10.32.101.3 255.255.255.0   UG0  00 tun1
10.32.64.0  10.32.101.3 255.255.255.0   UG0  00 tun1
10.32.65.0  10.32.101.3 255.255.255.0   UG0  00 tun1
10.32.0.0   10.32.101.3 255.255.252.0   UG0  00 tun1
127.0.0.0   127.0.0.1   255.0.0.0   UG0  00 lo
0.0.0.0 10.32.16.20 0.0.0.0 UG0  00 eth0


RR: 10.32.3.172
10.32.101.3
10.32.16.52
10.32.16.52
10.32.3.51 - should be 10.32.101.3
10.32.3.172



 And what do you mean by I have connected two sites ? Are we talking
 Linux - Linux here, or is a Windoze box involved ? Firewalls in between
Its Linux to Linux direct without any firewalls.
the VPN tunnels are now working for more than 3 months, its only that the
openVPN machines can't connect to other machines then theireselfs.

Patrick

 Heinz Sporn



-- 
This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Routing problem - Solved

2005-09-08 Thread Patrick Marquetecken
After spending some hours watching tcpdumps, i saw that the openvpn at
siteB comes with ip form the vpntunnel to the client, setting up a route
on the client solved it all.
I tought that i always would use the ip of eth0 ?

Patrick


-- 
Arwen: Why do you fear the past? You are Isildur's heir, not Isildur
himself. You are not bound to his fate.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Routing problem - Solved

2005-09-08 Thread Patrick Marquetecken


 Am Donnerstag, den 08.09.2005, 11:37 +0200 schrieb Patrick Marquetecken:
 After spending some hours watching tcpdumps, i saw that the openvpn at
siteB comes with ip form the vpntunnel to the client, setting up a
route on the client solved it all.
 I tought that i always would use the ip of eth0 ?

 I have to say your network layout seems to be rather odd. Why on earth
do you need so many tunnels and routes? If site A and B contain just a
number of servers and clients I'd say you just need one tunnel at all
and one route on each side of it that points to the correspondig LAN.

We have two tunnels tun0  tun1 to siteB, but this is because we are using
QOS, the tunnels contains different type of traffic.
There are other tunnels to siteC and siteD

Patrick


 Patrick


 --
 Arwen: Why do you fear the past? You are Isildur's heir, not Isildur
himself. You are not bound to his fate.
 --
 Mit freundlichen Grüßen

 Heinz Sporn

 SPORN it-freelancing

 Mobile:  ++43 (0)699 / 127 827 07
 Email:   [EMAIL PROTECTED]
  [EMAIL PROTECTED]
 Website: http://www.sporn-it.com
 Snail:   Steyrer Str. 20
  A-4540 Bad Hall
  Austria / Europe

 --
 gentoo-user@gentoo.org mailing list





-- 
This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.



-- 
This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Routing problem

2005-09-07 Thread Patrick Marquetecken
Hi,

I have connected two sites with openVPN, this works fine all traffic goes
trought the tunnels, and i can ping machines from one site to another.
But, i can't ping a machine from siteA from openVPN from siteB. to make it
compleet bizar the machine on siteA can ping the openVPN on siteB.

If i do a ping -R on the machine at siteA i see this:
RR: 10.32.3.172 - machine siteA
10.32.101.3 - tunnel
10.32.16.52 - openVPN siteB
10.32.16.52
10.32.3.51 - must be 10.32.101.3 (openVPN siteA)
10.32.3.172
It seems that the answer goes direct between the two openVPN machines and
not the tunnel (10.32.101.x)
There is a route  10.32.0.0 netmask 255.255.252.0 gw 10.32.101.3 dev tun1.

A ping from openVPN siteB to openVPN siteA
RR: 10.32.101.4
10.32.3.51
10.32.3.51
10.32.101.4

My main portage server is in siteA and i would like to update my remore
openVPN machines.
This behaviour its not only with that machine but with all my other remote
openVPN machines, all machines behind those does not have this kind of
problems.

Anyone know a solution
TIA
-- 
This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Re: bbgallery and template files

2005-08-27 Thread Patrick Börjesson
On 05/08/27 18:35, Harry Putnam wrote:
 Mike Williams [EMAIL PROTECTED] writes:
  Getting it done this morning is another matter, going several months
  without an update is likely to put you a long way back, meaning lots
  to compile.  Thankfully you can just leave it going in the
  background. I almost always run
 
 This appears now to have been a rather hefty understatement.  I'm not
 sure what time this morning I started on this but its now 6:34  where
 I am and its still running strong.
 
 This seems a bit long Is this a normal amount of time for an
 update world to run (something like ten hours so far)?

Definitely if you've kept off an update for more than a month! Things
like OpenOffice, KDE, glibc, and all the other behemoths take a while (like
up to a couple of hours, depending on CPU) to compile each. So 10 hours
is definitely not something to worry about. 

-- 
Regards,
  Patrick Börjesson

PGP signature: http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0x21792A5D
PGP fingerprint: 74AF D4EF 6BDE CF77 16BE  6A29 CDB8 7607 2179 2A5D


pgpdCNC25ZX9V.pgp
Description: PGP signature


[gentoo-user] MacOS 10.4 (Tiger) can't connect to smaba share

2005-08-26 Thread patrick . marquetecken
hi,

One Mac with the new OS 10.4 (Tiger) can't connect to my Samba shares, Mac's 
with 10.3 have no problems. I have also emerged the latest version of Samba.

This is what i see in the smaba logs:
[2005/08/26 13:44:07, 0] rpc_parse/parse_prs.c:prs_mem_get(537)
  prs_mem_get: reading data of size 2 would overrun buffer.
[2005/08/26 13:44:07, 0] rpc_server/srv_pipe.c:api_pipe_bind_req(919)
  api_pipe_bind_req: unable to unmarshall RPC_HDR_RB struct.

Anyone a idea 

TIA
Patrick


-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] webcdwriter

2005-08-25 Thread patrick . marquetecken
Hi,

Because my server is the only computer with a dvd writer i was thinking of 
installing webcdwriter.
My server doesn't have Xorg installed on it, so when i do a emerge -pv i get a 
huge list, even with -X -gnome and so on in my use settings. Is there a way to 
install this without all these ?

TIA
PAtrick


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] MySQL Run Script Weirdness

2005-07-25 Thread Patrick Rutkowski
On 7/25/05, A. Khattri [EMAIL PROTECTED] wrote:
 On Sat, 23 Jul 2005, Patrick Rutkowski wrote:
 
  Nope, same old stuff:
 
  localhost ~ # /etc/init.d/mysql start
   * Starting mysqld (/etc/mysql/my.cnf) ...
   * MySQL NOT started, proceding anyway
  [ !! ]
  localhost ~ # /etc/init.d/mysql zap
  localhost ~ # /etc/init.d/mysql start
   * Starting mysqld (/etc/mysql/my.cnf) ...
  [ !! ]
  localhost ~ # /etc/init.d/mysql stop
   * ERROR:  mysql has not yet been started.
  localhost ~ #
 
 You could try rebuilding mysql - that missing symbol error message may
 have been a clue...
 
 
 --
 
 --
 gentoo-user@gentoo.org mailing list
 
 

Fixed it http://forums.gentoo.org/viewtopic-t-362461-highlight-.html

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Can't emerge mozilla-firefox-1.0.6-r2

2005-07-23 Thread Patrick Börjesson
On 05/07/23 13:38, Jules Colding wrote:
 emerge --sync  emerge -vauDN today gave me the following error.
[snip]
 
I'd think that the developers would rather have that information posted
to http://bugs.gentoo.org/ instead...

-- 
Regards,
  Patrick Börjesson

PGP signature: http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0x21792A5D
PGP fingerprint: 74AF D4EF 6BDE CF77 16BE  6A29 CDB8 7607 2179 2A5D


pgpsoTSNZPCHa.pgp
Description: PGP signature


Re: [gentoo-user] Can't emerge mozilla-firefox-1.0.6-r2

2005-07-23 Thread Patrick Börjesson
On 05/07/23 14:50, Holly Bostick wrote:
 Jules Colding schreef:
  emerge --sync  emerge -vauDN today gave me the following error.
  
[snip]
 
 Well, since I just (literally, 10 minutes ago) emerged
 mozilla-firefox-1.0.6-r2, and had no problems on a 32-bit system, I must
 suspect that this is a 64-bit issue.
 
 In that regard, I see at least one thing in your emerge info that has
 been called into question for 64-bit users in recent threads:
 
 CFLAGS=-march=k8
 
 I am, of course, not a 64-bit user, so I don't know anything about this,
 but I have seen several responses to similar questions that suggest that
 the correct flag is
 
 march=amd64

Looking at gcc's info page, there is no amd64 target. The only ones I
can find that seems reasonable are k8 and athlon64. I use k8 myself and
haven't had _any_ problems with it. 

 Oh, and despite what Patrick said, I think you were right to post here
 first-- no need to clog up b.g.o with what might be a configuration
 problem and waste developer's time closing an invalid bug.

I really don't see how this could be a configuration problem, since it
would have complained about an erroneous compilation flag if it was the
k8 thing that was at fault... And missing files (which the compilation
error points at) sounds pretty much like a valid bug to me...

 I think it's always wise to try to make sure that it really is a bug
 before posting it.

Of course, but looking at the ordinary response from developers to these
kind of emails, I'd guess that b.g.o is where they want the report, not
here...

 And it seems to me that if there is a bug, it might be a *documentation*
 bug (because the other person who mentioned using march=k8 said that
 that was the recommendation of the docs, but that seems to no longer be
 the case, if people using this flag are regularly receiving compilation
 errors).

Documentation bug? Not recommended by the docs any more? 
You might want to actually try to find information about the subjects
you respond to. 

Straight out of the AMD64 Gentoo Handbook:
AMD64 users who want to use a native 64 bit system should use
-march=k8
Combining that cite with the information from the gcc info page, I'm
pretty sure it's not a documentation bug. 

-- 
Regards,
  Patrick Börjesson

PGP signature: http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0x21792A5D
PGP fingerprint: 74AF D4EF 6BDE CF77 16BE  6A29 CDB8 7607 2179 2A5D


pgpXnDevvfSnn.pgp
Description: PGP signature


Re: [gentoo-user] MySQL Run Script Weirdness

2005-07-23 Thread Patrick Rutkowski
On Saturday 23 July 2005 11:27, A. Khattri wrote:
 On Fri, 22 Jul 2005, Patrick Rutkowski wrote:
  [code]
  localhost mysql # /etc/init.d/mysql stop
   * ERROR:  mysql has not yet been started.
  localhost mysql #
  [/code]
 
  The fact that I can't use the runscript to stop the proess gets to me...
  I'm itching to fix this.

 Did you run mysql_install_db after emerging MySQL???

 If you didn't, then I would kill off MySQL, run the script, then do
 /etc/init.d/mysql zap, after which the normal start and stop should
 work.

 --

Heh, yes; of course I did mysql_install_db
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] MySQL Run Script Weirdness

2005-07-23 Thread Patrick Rutkowski
On Saturday 23 July 2005 14:36, A. Khattri wrote:
 On Sat, 23 Jul 2005, Patrick Rutkowski wrote:
  On Saturday 23 July 2005 11:27, A. Khattri wrote:
   On Fri, 22 Jul 2005, Patrick Rutkowski wrote:
[code]
localhost mysql # /etc/init.d/mysql stop
 * ERROR:  mysql has not yet been started.
localhost mysql #
[/code]
   
The fact that I can't use the runscript to stop the proess gets to
me... I'm itching to fix this.
  
   Did you run mysql_install_db after emerging MySQL???
  
   If you didn't, then I would kill off MySQL, run the script, then do
   /etc/init.d/mysql zap, after which the normal start and stop should
   work.
  
   --
 
  Heh, yes; of course I did mysql_install_db

 OK, but did you try the other stuff?


 --
Nope, same old stuff:

localhost ~ # /etc/init.d/mysql start
 * Starting mysqld (/etc/mysql/my.cnf) ...
 * MySQL NOT started, proceding anyway
[ !! ]
localhost ~ # /etc/init.d/mysql zap
localhost ~ # /etc/init.d/mysql start
 * Starting mysqld (/etc/mysql/my.cnf) ...
[ !! ]
localhost ~ # /etc/init.d/mysql stop
 * ERROR:  mysql has not yet been started.
localhost ~ #
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Can't emerge mozilla-firefox-1.0.6-r2

2005-07-23 Thread Patrick Börjesson
On 05/07/23 20:19, Richard Fish wrote:
 Patrick Börjesson wrote:
  I'd think that the developers would rather have that information
  posted to http://bugs.gentoo.org/ instead...
 
 To me, Holly, and I'd bet many others, the instead... in that line 
 could only be read as telling the OP that he has posted to the wrong 
 place, and that we do not welcome such things here.

Ok, reading my original post again I can see your point ;)

 Plus, the OP message was very much of the here is the output of a 
 failed build, what does it mean variety.  Many such posts come from 
 people who don't know how to recognize the actual source of the build 
 failure.  Whether it says missing file, unresolved symbol, locking 
 failed, or compiler bug, they simply do not know what it *really* 
 means (and sometimes, not even what line contains the real problem).

Ok, I might have read a bit too much into the fact that he posted the
output of emerge info. Not very usual in this list (from what I've
seen in the last couple of years) since most people who don't know what
line in the build failure is relevant mostly don't give much information
either concerning arch and other information that might be important to
help finding the cause. 
Although... I would suggest that the OP give a more explicit question,
since I was really not sure if it was a anyone seen this before?, I'm
a n00b, please solve this for me! or a where should I take this to get
it solved? question. 

 Now, I don't mean to offend any users here.  I don't expect everybody 
 running Gentoo to be a programmer or linux expert.  So I will say it 
 clearly:  if a user encounters an error in emerge that he doesn't know 
 what to do with, it is entirely appropriate to post here first.

Agreed

  Of course, but in this case it wasn't an oversight... The poster
  explicitly said that using march=k8 seemed to no longer be the
  recommendation of the docs. That implies at least _some_ looking into
  the subject before posting...
 
 No, Holly said that her advice was based on recent threads.  A recent 
 thread on this list involving gzip on by an amd64 user suggested trying 
 different march options.  Now, it was _bad_ advice (sorry Holly, but it 
 was!), but Holly did say she doesn't use amd64 and wasn't sure.

Ok. I just make it a point of trying to find a bit more information, than
just previous threads in a user mailinglist, about the things I suggest.
But I'll try being more forgiving towards those who might not next time ;)

  Since I'm myself using the specified platform and have had at least a
  bit experience with it
 
 Good. Please help educate those of us who don't have or know the amd64 
 platform very well! :-)

Ehm... now let's not take this overboard ;) I'm by no means an expert
(or even near experienced) on this arch. I'm just saying I might have at
least some information that might be more relevant than a 32 bit only
person might have...

  Also, since the originator had posted the emerge info output, I
  assumed that he/she was at least a bit familiar with how bug handling
  is handled by Gentoo.
 
 Maybe, but I still think it was pretty clear that the OP was not sure 
 whether the problem was an actual bug or not.

Maybe, but I'm still inclined to give short (and sometimes
uninformative) answers to questions that doesn't really give enough
information regarding both the experience level of the person, and
especially what he/she wants help with.

-- 
Regards,
  Patrick Börjesson

PGP signature: http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0x21792A5D
PGP fingerprint: 74AF D4EF 6BDE CF77 16BE  6A29 CDB8 7607 2179 2A5D


pgpdswVpJHBjf.pgp
Description: PGP signature


Re: [gentoo-user] portage: sendmail blocked by ssmtp...]

2005-07-22 Thread Patrick Börjesson
On 05/07/22 14:23, Jarry wrote:
 I'm rather new to this portage-world, and I've lost track of all
 softwares I installed. Can portage somehow list all packages which
 have been installed?

# emerge gentoolkit
$ equery list

-- 
Regards,
  Patrick Börjesson

PGP signature: http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0x21792A5D
PGP fingerprint: 74AF D4EF 6BDE CF77 16BE  6A29 CDB8 7607 2179 2A5D


pgp8cJpJmqCvp.pgp
Description: PGP signature


Re: [gentoo-user] thunderbird/firefox conflict

2005-07-22 Thread Patrick Rutkowski
On Friday 22 July 2005 23:31, Ryan Sims wrote:
 I just upgraded to mozilla-thunderbird-bin-1.0.6-r1 and
 mozilla-firefox-bin-1.0.6-r1, and they seem to be conflicting with
 each other, i.e. when I install firefox, running thunderbird gives me
 a /usr/libexec/mozilla-launcher: can't find the browser :-( error,
 so I remerge thunderbird and it runs, but I find that then firefox
 gives me the same error. I've done this a couple of times, and
 resynced.

 Well, I looked at the ebuilds, because I noticed that the thunderbird
 merge was installing a lot of stuff in /opt/firefox which seemed
 wrong, and sure enough I found this in the thunderbird-bin-1.0.6-r1:

 (line 36) src_install () {
  declare MOZILLA_FIVE_HOME=/opt/firefox

 The thunderbird-bin-1.0.5-r1 ebuild seems to use /opt/thunderbird as its
 home...

 Changelog doesn't seem to mention anythingwas thinking about
 opening a bug report?

 -=-
 Ryan W Sims

I recently had various problems with firefox-bin too; then I let the source 
compile rip while I was away at work.

I find that things are just better if you stay away from bins.

Sorry I can't offer any real advice,
Patrick Rutkowski
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] portage: sendmail blocked by ssmtp...

2005-07-21 Thread Patrick Börjesson
On 05/07/21 10:48, Jarry wrote:
 I wanted to emerge sendmail (for a few reasons I don't want to
 use other MTA), and I see, that it is blocked by ssmtp. Because
 I did not installed it, it must have been emerged as a dependency
 of some other package.
 
 Q1: Is it possible to find, which package depends on ssmtp and
 caused ssmtp to be emerged?
 
 I want to unmerge ssmtp and emerge sendmail, but I don't want to
 break some dependencies on my system. In manual there is BIG WARNING
 that portage does not check dependencies when unmerging...
 
 Q2: How can I get list of all packages, installed on my comp, with
 their dependencies?

If you want you can enable the mailwrapper use flag, which enables
multiple MTAs to be installed at the same time. Then you just edit
/etc/mail/mailer.conf to switch which MTA to be used...

Or you just emerge -C ssmtp  emerge sendmail and everything should
be fine.

-- 
Regards,
  Patrick Börjesson

PGP signature: http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0x21792A5D
PGP fingerprint: 74AF D4EF 6BDE CF77 16BE  6A29 CDB8 7607 2179 2A5D


pgpkRSsB6RIW4.pgp
Description: PGP signature


Re: [gentoo-user] 1.) Kernel panic - not syncing: Aiee, killing interupt handler; 2.) kdebase-3.4.1-r1 failed

2005-07-20 Thread Patrick Rutkowski
On Wednesday 20 July 2005 22:08, Joseph wrote:
 I have a brand new (conservative box) AMD64 3000, Sata Drive with Asus
 AV8,
 I have two problems:

 1.) Kernel panic - not syncing: Aiee, killing interupt handler.
 It appear during every few hours during compiling, I've seen other folks
 having the same problem but no solution.

 2,) I'm constantly getting the error when I try to emerge kde
 kde-base/kdebase-3.4.1-r1 failed
 Function kde_compile, line 164,

 I've tried re-emerge qt, it did not help
 my make.conf:
 CFLAGS=-march=k8 -O2
 CHOST=x86_64-pc-linux-gnu
 CXXFLAGS=${CFLAGS}
 MAKEOPTS=-j2

 I've tried new kde-split, same error.
 Somebody pointed out that it has something do to with gcc-3.4.3-r1 but
 this is the only stable version available on AMD64.

 So, I have this new box - good for nothing, well it might run
 Windows :-(

 #Joseph

So try the unstable gcc :-D

In all seriousness, this seams like an issue destined for a more specific 
mailing list; try to contact others who have this issue and you can work it 
out together.

It's very puzzling, good luck (hopefully someone on this gentoo list can help 
too).
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user]

2005-07-20 Thread Patrick Rutkowski
On Wednesday 20 July 2005 22:17, Charles A. Jeffrey wrote:
 [EMAIL PROTECTED] unsubscribe
 end
heh
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Gentoo Installation

2005-07-19 Thread Patrick Rutkowski
On Tuesday 19 July 2005 03:31, Mark Humphrey wrote:
 Does Gentoo have any sort of GUI for installation? I've followed the
 Gentoo Handbook, but a GUI would obviously be nicer.



 Email Disclaimer
 http://www.aplitec.co.za/emaildisclaimer.htm

Suffer through the terminal only install a few times; you'll learn lots :)
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] howto install gentoo without a cd-rom

2005-07-19 Thread Patrick Rutkowski
On Tuesday 19 July 2005 03:47, simply change wrote:
 hi!

 dear friends,

 i have an old pentium2 laptop without a cdrom. it has a 1 LAN port(I HAVE A
 ADSL LINE) + floppy driver. now i need to install gentoo to my lap. so can
 any body to help me to do this?

You could always try booting the slackware installer off of floppy disks. If 
you download their network.dsk floppy image then you can have internet 
access during the install; skip the slackinstall, duck out into a terminal, 
and install gentoo.
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Can't get new XP into Samba domain

2005-07-19 Thread Patrick
Hi,

I have a Samba domain with two XP Prof machines into it. With a new
Windows XP Prof sp2 machine, i get this message if the user wants to
logon:

The system cannnot log you on due to the following error:
A device attached to the system is not functioning.

This is also if i want to use a existing account. Only with root i have
no problems.
Ofcourse the machine account exists.

Anyone a idee wat i must change on the Windows machine ?


TIA
Patrick

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Can't get new XP into Samba domain

2005-07-19 Thread Patrick
Op di, 19-07-2005 te 20:44 +0200, schreef Patrick:
 Hi,
 
 I have a Samba domain with two XP Prof machines into it. With a new
 Windows XP Prof sp2 machine, i get this message if the user wants to
 logon:
 
 The system cannnot log you on due to the following error:
 A device attached to the system is not functioning.
 
 This is also if i want to use a existing account. Only with root i have
 no problems.
 Ofcourse the machine account exists.
 
 Anyone a idee wat i must change on the Windows machine ?
 

 
rivendell samba # tail log.valar
[2005/07/19 20:27:21, 1] smbd/service.c:close_cnum(836)
  valar (192.168.123.4) closed connection to service profiles
[2005/07/19 20:27:46, 1] rpc_server/srv_netlog_nt.c:_net_sam_logon(766)
  _net_sam_logon: user ARDA\linda has user sid
S-1-5-21-2855090193-2624198182-1206554747-2004
   but group sid S-1-5-32-545.
  The conflicting domain portions are not supported for NETLOGON calls
[2005/07/19 20:27:57, 1] rpc_server/srv_netlog_nt.c:_net_sam_logon(766)
  _net_sam_logon: user ARDA\patrick has user sid
S-1-5-21-2855090193-2624198182-1206554747-3000
   but group sid S-1-5-32-545.
  The conflicting domain portions are not supported for NETLOGON calls

forgot to add my log.

Patrick

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] OT: keys that don't create keycodes

2005-07-19 Thread Patrick Börjesson
On 05/07/19 17:31, Petr Kocmid wrote:
 On Tuesday 19 of July 2005 08:56, Iain Buchanan wrote:
  It seems that every multimedia keyboard out there (especially the usb
  ones) have some or all extra keys that just aren't visible outside of
  Winblows.
 
  I have a couple of them!  I've tried all the usual ways of detecting
  them - xev and others that do a similar thing but they just don't
  register as keypresses in any standard way.
 
  I would like comments on why, and what methods, if any, may be available
  to detect such keys.  Surely with the plethora of cheap multimedia
  keyboards out there, there is some way.
 
 In X, once you analyze scan codes generated by those keys with xev, you can 
 assign keycodes locally wih xmodmap. In keyboard maps, you can reuse some 
 exotic Fn key names available from historical mainframe terminals, unused on 
 PC platform, such as F26 and Shift+F26 and so, I can't now remember the exact 
 number limit for function key names, depends on how x libraries built. Works 
 great for KDE, which recognizes these names well for shortcuts.

I think the originator is rather pointing out the problem that the newer
keyboards (e.g. those with the F-Lock key) doesn't even generate a
scancode. So xev for example won't even register a keypress when one of
those extra multimedia keys is pressed by the user... 

I had the same problem when I bought a new keyboard, but I just couldn't
find a solution for it so I returned it and went back to one of my old
IBM-clicky-click keyboards ;)

-- 
Regards,
  Patrick Börjesson

PGP signature: http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0x21792A5D
PGP fingerprint: 74AF D4EF 6BDE CF77 16BE  6A29 CDB8 7607 2179 2A5D


pgpw7mN7zHWUM.pgp
Description: PGP signature


Re: [gentoo-user] P4P800 - Intel ICH5R - data recovery?

2005-07-19 Thread Patrick Rutkowski
On Tuesday 19 July 2005 19:37, José Pedro Saraiva wrote:
 Thanks for the reply Colin =)

  If you remember your stripe size, then you should be able to plug
  your drives into any ICH5R-based motherboard and get your data back.
  Theoretically, you could plug your drives into any RAID whose BIOS
  does not write to the disks when creating an array and then recreate
  the array in the BIOS with the same stripe size.  I don't know if
  software RAID can rebuild your array, but that seems like your best
  bet, lest you have a friend with a lot of SATA RAID controllers (s)
  he's willing to lend out.

 I already ordered another ICH5R motherboard (similar to my P4P800 but
 a new model, since my old one is not available anymore) to try that
 out. I'm almost sure that my stripe size is 64KB (default). If so,
 plugging my hard drives into the new board and creating a new array
 with the same stripe size will give me access to my data? Or is there
 the risk of loosing it all? Do you know if the ICH5R writes to the
 disks when creating the array?

  If all else fails and your data is priceless, grab a couple grand and
  look into professional data recovery, because unless you can find a
  super-geek, that will probably be your best bet.

 Unfortunately I cannot afford such a service, even though my data is
 crucial to me, they're just too expensive for my pocket. :-(

 José Pedro

My one BIG FAT WARNING to you would be to think for 30 seconds or more before 
pushing any buttons when redoing your disks.

Its very easy to accidentally format things when you don't know exactly what 
your doing... at least for me it is; I've done it :-p

Wishing the best of luck,
Patrick Rutkowski

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] QOS

2005-07-15 Thread Patrick
Hi,

Are there people on the list who are using QOS, i need it to preserve
4MB for IP telephonie on a 100Mbit line.

What are good site's / howto's for QOS.

TIA
Patrick

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Does (-win32codecs) mean Slots?

2005-07-12 Thread Patrick Audley
On Tuesday 12 July 2005 02:12, Ow Mun Heng wrote:
 Why doesn't mplayer let me compile with win32codecs? It doesn't pull
 down win32codec as a dependency and having that USE flag in the CLI as
 well as on make.conf doesn't make a difference.

 I still can't get -win32codecs to +win32codecs

amd64?  If so then you can get a 32-bit mplayer with the win32 codecs from the 
site listed at:

 http://gentoo-wiki.com/HOWTO_AMD_64#Mplayer_and_32bit_codecs

  

-- 
How human beings change themselves through technology, ideology,
identity, sex, drugs, media and - of course - genital piercing. From
cyborgization to memetics - from the spread of diseases to medical
technology - from  artificial life to extropian concerns like
Nanotechnology, biotechnology, longevity, intelligence drugs, and space
exploration - from transgenderism to neo-dadaism, MUTATE! -- R.U.Sirius 
...
Patrick Audley  [EMAIL PROTECTED]
Blackcat Systemshttp://blackcat.ca
 Bringing Elegance to Complexity
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] IPtables statefull connection capable

2005-07-06 Thread Patrick Marquetecken

 Hi,

 On Tue, 5 Jul 2005 15:52:20 +0200 (CEST)
 Patrick Marquetecken [EMAIL PROTECTED] wrote:

 If I’m correct then iptables is statefull connection capable, this means
 I
 should not use rules like:
 If state of connection is ESTABLISHED ...
 If state of connection is RELATED ...

 and i my use only:
 If protocol is TCP and source is bla bla and destination port is bla bla
 and state of connection is NEW

 All of the mentioned rules are related to stateful connection matching.
 You probably want all ESTABLISHED and RELATED traffic in both the
 incoming and outgoing direction, and NEW connections only outgoing.
 Additional you'll probably want NEW connections also in the incoming
 direction for the services you want to offer - that's how I interpret
 your last sentence. But you'll definately want ESTABLISHED and RELATED,
 too.

 Concept usually is:
 INPUT:
 - allow ESTABLISHED,RELATED
 - allow NEW for selected services
 FORWARD:
 - allow NEW,ESTABLISHED,RELATED from LAN to WAN
 - allow ESTABLISHED,RELATED from WAN to LAN
 OUTPUT:
 - allow NEW,ESTABLISHED,RELATED

 where OUTPUT rules are optional if OUTPUT's policy is set to ACCEPT.

 Current connections being monitored are listed and accessible in procfs.
 When playing with Linux as a router for UDP traffic, you may want to
 play with the state matching related sysctl's (also accessible via
 procfs) to adjust the timespan that the information is held. My VPN
 connections from LAN to WAN tend to time out otherwise. But that's just
 a side note.

 -hwh

 --
Thank you all,
The explanation was very clear, I tough because its statefull it’s not
necessary to add the ESTABLISHED,RELATED stuff.
I was using a setup like you say above.


Patrick


-- 
This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] IPtables statefull connection capable

2005-07-05 Thread Patrick Marquetecken
Hi,

If I’m correct then iptables is statefull connection capable, this means I
should not use rules like:
If state of connection is ESTABLISHED ...
If state of connection is RELATED ...

and i my use only:
If protocol is TCP and source is bla bla and destination port is bla bla
and state of connection is NEW

TIA
Patrick

-- 
This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Omit certain parts of portage tree during sync

2005-07-03 Thread Patrick Börjesson
On 05/07/03(Sun) 10:48, Fred Moyer wrote:
 I run a couple of gentoo boxes which are mostly servers.  Is there a way
 to omit certain portions of the portage tree from emerge sync so that the
 sync will go faster?  For example I would likely omit any X and games
 based sections on my server syncs.

You can probably use RSYNC_EXCLUDEFROM (which you can define in
/etc/make.conf). This is the relevant section from
/etc/make.conf.example:

# RSYNC_EXCLUDEFROM is a file that portage will pass to rsync when it
# updates
# the portage tree. Specific chunks of the tree may be excluded from
# consideration. This may cause dependency failures if you are not
# careful.
# The file format is one pattern per line, blanks and ';' or '#'
# lines are
# comments. See 'man rsync' for more details on the exclude-from
# format.

-- 
Regards,
  Patrick Börjesson

PGP signature: http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0x21792A5D
PGP fingerprint: 74AF D4EF 6BDE CF77 16BE  6A29 CDB8 7607 2179 2A5D


pgpwwwsoNqRZS.pgp
Description: PGP signature


  1   2   >