RE: [gentoo-user] Avahi Keeps failing on Emerge - Maybe a Python Error?

2009-01-17 Thread Richard Watson
I'm sorry about the delay in closing this. I finally figured out if I remove
-pipe from my /etc/make.conf CFLAGS that all my compile errors go away.
Looking at the reference on the subject this option tells GCC not to create
temporary files when compiling but to turn this off if low on RAM. Not sure
why this happens as I have a 1GB Ram. Maybe this is not enough these days.
Anyway problem solved.

Regards, Richard

===
Try to find out why this strange configure command line is being
called (take a look at the ebuild)

Also, there are other logs you can post. I don't remember exactly the
names, but I think there are multiple configure log files like
configure.log and configure.error (or something like that) that says
exactly why did configure concluded that a certain feature is missing.
The log you provided does not say why configure concluded there is no
pygtk, but configure usually *does* explain this (is specific log
files. Do a little search).

Regards,
Jorge Peixoto

-- 
Software is like sex: it is better when it is free - Linus Torvalds


No virus found in this incoming message.
Checked by AVG - http://www.avg.com 
Version: 8.0.176 / Virus Database: 270.10.8/1899 - Release Date: 17/01/2009
5:50 PM




RE: [gentoo-user] Avahi Keeps failing on Emerge - Maybe a Python Error?

2008-11-16 Thread Richard Watson
Hi,

Avahi keeps failing with what looks like a Python gtk module error that I
can't seem to figure out. I've done the obvious by re-emerging python (with
running python-updater) and pygtk but it still fails.

Any help would be appreciated.

Thanks, Richard

The configure failure message is:

checking for python module gtk... no
configure: error: Could not find Python module gtk

Yet emerge confirms pygtk is installed.





[gentoo-user] Avahi Keeps failing on Emerge - Maybe a Python Error?

2008-11-15 Thread Richard Watson
Hi,

Avahi keeps failing with what looks like a Python gtk module error that I
can't seem to figure out. I've done the obvious by re-emerging python (with
running python-updater) and pygtk but it still fails.

Any help would be appreciated.

Thanks, Richard





[gentoo-user] ipw in kernel-genkernel-x86-2.6.22-gentoo-r9

2007-12-15 Thread Richard Watson
Hi - Can anyone give me pointers on how to get ipw2100-firmware working
with kernel-genkernel-x86-2.6.22-gentoo-r9? It works fine with
kernel-genkernel-x86-2.6.22-gentoo-r8 where it's compiled in the kernel
but the same set-up fails in kernel-genkernel-x86-2.6.22-gentoo-r9. When
I run emerge ipw2100-firmware it seems to install OK, but the kernel
can't seem to find the module.

Thanks, Richard

-- 
[EMAIL PROTECTED] mailing list



[gentoo-user] No /etc/resolv.conf with dhcpcd

2007-05-26 Thread Richard Watson
Hi - For a while now when I run 
# dhcpcd eth1
I get an IP address OK but no DNS. I've established that a 
/etc/resolv.conf file is not being created when the command is being 
run. 

There's a script invoked at some stage called
/etc/resolvconf/update.d/libc. This is creating a file with all the DNS 
information called /var/run/resolvconf/interfaces/eth1 (or eth2 
depending on the interface raised). However it's not then creating 
/etc/resolv.conf. I can get around this by running my own script to
copy 
the DNS information to /etc/resolv.conf but it would be good to figure 
out why it's not working.

I attach output of my /etc/resolvconf/update.d/libc below if anyone can 
help. I've tried reemerging the package (unsuccessfully).

Thanks, Richard

=== Begin ===

#!/bin/bash
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

# libc resolv.conf updater

# Written by Roy Marples ([EMAIL PROTECTED])
# Heavily based on Debian resolvconf by Thomas Hood

# Load generic Gentoo functions
source /etc/init.d/functions.sh

[[ $(readlink /etc/resolv.conf 2/dev/null) \
!= resolvconf/run/resolv.conf ]]  exit 0

RESOLVCONF=$(resolvconf -l)

BASE=/etc/resolvconf/resolv.conf.d/base
OUR_NS=
if [[ -e ${BASE} ]] ; then
OUR_NS=$(sed -n -e 's/^[[:space:]]*nameserver[[:space:]]*//p'
${BASE})
fi
OUR_NS=$(uniqify \
${OUR_NS} \
$(echo ${RESOLVCONF} \
| sed -n -e 's/^[[:space:]]*nameserver[[:space:]]*//p') \
)

# libc only allows for 3 nameservers
# truncate after 127 as well
i=0
NS=
for N in ${OUR_NS} ; do
((i++))
NS=${NS} ${N}
[[ ${i} == 3 || ${N} == 127.* ]]  break
done

# This is nasty!
# If we have a local nameserver then assume they are intelligent enough
# to be forwarding domain requests to the correct nameserver and not
search
# ones. This means we prefer search then domain, otherwise, we use them
in
# the order given to us.
OUR_SEARCH=
if [[ ${N} == 127.* ]] ; then
if [[ -e ${BASE} ]] ; then
OUR_SEARCH=$(sed -n -e 's/^[[:space:]]*search[[:space:]]*//p'
${BASE})
fi
OUR_SEARCH=${OUR_SEARCH} $(echo ${RESOLVCONF} \
| sed -n 's/^[[:space:]]*search[[:space:]]*//p')
if [[ -e ${BASE} ]] ; then
OUR_SEARCH=${OUR_SEARCH} $(sed -n -e
's/^[[:space:]]*domain[[:space:]]*//p' ${BASE})
fi
OUR_SEARCH=${OUR_SEARCH} $( echo ${RESOLVCONF} \
| sed -n -e 's/^[[:space:]]*domain[[:space:]]*//p')
else
if [[ -e ${BASE} ]] ; then
OUR_SEARCH=$(sed -n -e 's/^[[:space:]]*search[[:space:]]*//p' \
-e 's/^[[:space:]]*domain[[:space:]]*//p' ${BASE})
fi
OUR_SEARCH=${OUR_SEARCH} $(echo ${RESOLVCONF} \
| sed -n -e 's/^[[:space:]]*search[[:space:]]*//p' \
-e 's/^[[:space:]]*domain[[:space:]]*//p')
fi

# libc only allows for 6 search domains 
i=0
SEARCH=
for S in $(uniqify ${OUR_SEARCH}) ; do
((i++))
SEARCH=${SEARCH} ${S}
[[ ${i} == 6 ]]  break
done
[[ -n ${SEARCH} ]]  SEARCH=search${SEARCH}

# Hold our new resolv.conf in a variable to save on temporary files
NEWCONF=# Generated by resolvconf\n
[[ -e /etc/resolvconf/resolv.conf.d/head ]] \
 NEWCONF=${NEWCONF}$( /etc/resolvconf/resolv.conf.d/head)\n
[[ -n ${SEARCH} ]]  NEWCONF=${NEWCONF}${SEARCH}\n
for N in ${NS} ; do
NEWCONF=${NEWCONF}nameserver ${N}\n
done

# Now dump everything else from our resolvs
if [[ -e ${BASE} ]] ; then
NEWCONF=${NEWCONF}$(sed -e '/^[[:space:]]*$/d' \
-e '/^[[:space:]]*nameserver[[:space:]]*.*/d' \
-e '/^[[:space:]]*search[[:space:]]*.*/d' \
-e '/^[[:space:]]*domain[[:space:]]*.*/d' \
${BASE}) 
fi

# We don't know we're using GNU sed, so we do it like this
NEWCONF=${NEWCONF}$(echo ${RESOLVCONF} | sed -e '/^[[:space:]]*$/d' \
-e '/^[[:space:]]*#/d' \
-e '/^[[:space:]]*nameserver[[:space:]]*.*/d' \
-e '/^[[:space:]]*search[[:space:]]*.*/d' \
-e '/^[[:space:]]*domain[[:space:]]*.*/d' \
)
[[ -e /etc/resolvconf/resolv.conf.d/tail ]] \
 NEWCONF=${NEWCONF}$( /etc/resolvconf/resolv.conf.d/tail)

# Check if the file has actually changed or not
if [[ -e /etc/resolv.conf ]] ; then
[[ $( /etc/resolv.conf) == $(echo -e ${NEWCONF}) ]]  exit 0
fi

# Create our resolv.conf now
echo -e ${NEWCONF}  /etc/resolvconf/run/resolv.conf

# Restart nscd if it's running
if [[ -x /etc/init.d/nscd ]] ; then
if /etc/init.d/nscd --quiet status ; then
/etc/init.d/nscd --nodeps --quiet restart
fi
fi

# Notify users of the resolver
for x in /etc/resolvconf/update-libc.d/* ; do
[[ -e ${x} ]]  ${x} $@
done

# vim: ts=4 :


-- 
[EMAIL PROTECTED] mailing list



[gentoo-user] Booting Gentoo from a floppy and then chroot to finish install on old PC

2007-05-07 Thread Richard Watson
Hi - I've got an old PC at home I want to use as a samba server. It
doesn't have a CD drive and I was wondering if anyone could tell me how
to create bootable gentoo floppy. I've been using Toms linux to wget and
re-install the stage and portage files but the kernel is to old and
fails on chroot.

Apart from the obvious comment to buy a CD drive ... Is there anyone out
there that has Gentoo 2.6 kernel that will boot of a floppy and can tell
me how to do it? The only other command I would need to perform would be
chroot.

Thanks, Richard

-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Don't get a /etc/resolv.conf on dhcpcd ethx - Get /etc/resolv.conf-eth2.sv instead which doesn't work unless copy to /etc/resolv.conf

2007-05-05 Thread Richard Watson
 you _are_ using dhcpcd, right?

I decided to emerge dhcpcd again to see what I get. It reports an error
at the end of the compilation.

* QA Notice: USE Flag 'kernel_linux' not in IUSE for
net-misc/dhcpcd-2.0.5-r1
* 
* dhcpcd requires kernel support for Packet Socket (CONFIG_PACKET).

However it completes OK and seems to work OK other than having to
manually create the correct DNS in /etc/resolv.conf.

Anyone any ideas. Thanks, Richard

-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Don't get a /etc/resolv.conf on dhcpcd ethx - Get /etc/resolv.conf-eth2.sv instead which doesn't work unless copy to /etc/resolv.conf

2007-04-23 Thread Richard Watson
 you _are_ using dhcpcd, right?

I decided to emerge dhcpcd again to see what I get. It reports an error
at the end of the compilation.

* QA Notice: USE Flag 'kernel_linux' not in IUSE for
net-misc/dhcpcd-2.0.5-r1
* 
* dhcpcd requires kernel support for Packet Socket (CONFIG_PACKET).

However it completes OK and seems to work OK other than having to
manually create the correct DNS in /etc/resolv.conf.

Anyone any ideas. Thanks, Richar

-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Don't get a /etc/resolv.conf on dhcpcd ethx - Get /etc/resolv.conf-eth2.sv instead which doesn't work unless copy to /etc/resolv.conf

2007-03-10 Thread Richard Watson

 `man dhcpcd`
-R Prevents dhcpcd  from  replacing  existing
   etcDir/resolv.conf file.
 
 I'm not sure whether that will help at all.  It may preserve the data
 in resolv.conf.  Why this data isn't being correctly updated, I can't
 say.  
 
 you _are_ using dhcpcd, right?
 

Yes I'm using dhcpcd. Thanks

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Don't get a /etc/resolv.conf on dhcpcd ethx - Get /etc/resolv.conf-eth2.sv instead which doesn't work unless copy to /etc/resolv.conf

2007-03-09 Thread Richard Watson
Hi - I've been having problems with DNS. When I start my wireless
interface (or any other for that matter) I don't get a /etc/resolv.conf
file generated. Instead I get one called /etc/resolv.conf-eth2.sv (or
whatever for the appropriate interface).  I can ping IP addresses but
not DNS (i.e. ping www.gentoo.org).

To get it running I copy the contents of resolv.conf-eth2.sv
to /etc/resolv.conf.

Anybody tell me how to fix this?

Thanks, Richard

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] configurtion error

2007-03-04 Thread Richard Watson
I've run etc-update after my last emerge --sync and world update but I still 
get configuration error - unknown item 'PASS_MIN_LEN' (notify 
administrator) when I su or log in as Root. Anybody got any ideas on how I 
can fix this. Thanks, Richard


--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Wireless PCI Network controller: RaLink RT2561/RT61 rev B 802.11 - Driver Problem

2007-02-24 Thread Richard Watson



Yes it's pointing to the correct kernel source - Thanks


I recompiled my kernel and modprobe rt61 worked. I now have an interface 
that come up called ra0.


The following worked for me:

Added rt61 to /etc/modules.autoload.d/kernel-2.6

# ln -s net.lo net.ra0

I edited /etc/conf.d/net
modules= ( iwconfig )
config_rao=( null )

# rc-update add net.ra0 default

Set ra0 to null because ra0 won't come up as dhcpc until configured.

# /etc/init.d/net.rao start
# iwlist ra0 scanning
gave me channel and essid to use

I created a script /root/scripts/d_link_rt61_up.sh
iwlist ra0 scanning
iwconfig ra0 essid [essid]
iwconfig ra0 channel 11
dhcpcd ra0

Added /root/scripts/d_link_rt61_up.sh to /etc/conf.d/local.start

Everything comes up no on boot.

Thank you everybody 


--
gentoo-user@gentoo.org mailing list



[gentoo-user] Wireless PCI Network controller: RaLink RT2561/RT61 rev B 802.11 - Driver Problem

2007-02-22 Thread Richard Watson
Hi - I'm trying to get a D-Link PCI network card running on my desktop PC. 
I've installed it and it runs under Windows XP (I dual boot).


# lspci reports
:01:00.0 Network controller: RaLink RT2561/RT61 rev B 802.11

net-wireless/ralink-rt61 was masked so I added to 
/etc/portage/package.keywords


So I
# emerge ralink-rt61
# slocate rt61.ko
/lib/modules/2.6.17-gentoo-r8/net/rt61.ko
# modprobe rt61
FATAL: Module rt61 not found

What should I do next? Do I need to recompile my kernel and if so are there 
any options I need to ensure are selected (or not)?


Many thanks, Richard

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Wireless PCI Network controller: RaLink RT2561/RT61 rev B 802.11 - Driver Problem

2007-02-22 Thread Richard Watson

# modprobe rt61
FATAL: Module rt61 not found

Is 2.6.17-gentoo-r8 the kernel you are currently running? It sounds 
like /usr/src/linux is pointing to the wrong kernel source.


# ls -la /usr/src/linux
/usr/src/linux - linux-2.6.17-gentoo-r8

Yes it's pointing to the correct kernel source - Thanks
--
gentoo-user@gentoo.org mailing list



[gentoo-user] Is it possible to download packages from Windows XP?

2007-02-17 Thread Richard Watson
Hi - I've just installed a wireless card and think I need to install 
ralink-rt61 drivers (that's what lspci shows). I'm a dual boot system 
(XP/Gentoo) and wireless works fine in XP at the moment. I thought I would 
download the package with XP (FTP / HTTP?)and then copy it into 
/usr/portage/distfiles. Thanks, Richard

Re: [gentoo-user] Is it possible to download packages from Windows XP?

2007-02-17 Thread Richard Watson

That will work just fine.  Just copy it there and then emerge will see it and 
do its thing.

What http or ftp address goes to the package area where I can download? Thanks, 
Richard


Re: [gentoo-user] Is it possible to download packages from Windows XP?

2007-02-17 Thread Richard Watson

What http or ftp address goes to the package area where I can download? Thanks, 
Richard


Stupid question ... One of the mirrors of course (sorry). Richard

Re: [gentoo-user] Network works OK internally but can't access Internet - very frustrated

2007-02-03 Thread Richard Watson

Do you have your dns configuration correct?

please check you /etc/resolv.conf file. Does your DHCP server send
nameserver to the client?


Thanks for your reply. When the interface is up /etc/resolv.conf has a name 
change to /etc/resolve.conf-eth2.sv and contains the following:


# Generated by dhcpcd for interface eth0
nameserver 61.9.208.14
nameserver 61.9.208.15

Which is the primary and secondary DNS on my cable modem for Telstra. So I 
guess the DHCP server is sending the nameserver info. Still no go ...


Regards, Richard

--
gentoo-user@gentoo.org mailing list



[gentoo-user] Network works OK internally but can't access Internet - very frustrated

2007-02-02 Thread Richard Watson
Hi - After a last emerge --sync I've been having trouble accessing the 
internet. My network interface comes up OK. I receive an address for the DHCP 
server (i.e. eth1 received address 192.168.0.7/24) and I can see and access 
my Intranet webpage on 192.168.0.xx and copy files to and from various 
machines. 

However if trying to access the Internet I keep getting unknown host when 
pinging sites I know will respond. My machine dual boots into XP and runs fine. 

I've checked the Gentoo handbook and config files and confirmed my network 
config files look OK (they seem to). Can anyone offer any suggestions? 

Thanks, Richard


[gentoo-user] net.eth0 net.eth1 net.eth2 persist in trying to come up even though not in any run level.

2007-01-08 Thread Richard Watson
Hi, I recently upgraded my system with emerge -uDN world. Afterwards I found 
that net.eth0 was grabbing my firewire port (ieee1394) and I needed to create 
net.eth2 for my NIC as net.eth1 was being assigned to my wireless. My problem 
is that although rc-update show indicates all my interfaces are NOT being 
loaded other than net.lo at boot (which is what I want) my system keeps trying 
to start net.eth0 net.eth1 net.eth2 in the  default run level. Can anybody 
help? It's very frustrating waiting for these interfaces to try and connect 
before timing out.

I've always run my network connection on this basis as Gentoo is on my laptop 
and depending where I am will determine which interface I want to use.

Thanks, Richard


[gentoo-user] libglade-WARNING with Kino

2006-09-16 Thread Richard Watson
Hi - For some reason Kino will not run since my last emerge -uDN world.
It loads with a blank screen and generates the following errors. Can
anyone tell me what's gone wrong? Thanks, Richard



(kino:21107): libglade-WARNING **: could not find signal handler
'on_publish_project_activate'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_capture_page_stop_button_clicked'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_button_export_pipe_file_clicked'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_video_start_movie_button_clicked'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_hscale_shuttle_value_changed'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_video_fast_forward_button_clicked'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_entry_timeline_start_focus_out_event'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_about_activate'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_video_start_scene_button_clicked'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_radiobutton_XX_clicked'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_append_movie_activate'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_preferences_dialog_ok_button_clicked'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_video_play_button_clicked'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_video_stop_button_clicked'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_time_format_smpte_activate'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_capture_file_button_clicked'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_video_rewind_button_clicked'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_button_export_audio_file_clicked'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_time_format_frames_activate'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_optionmenu_dvcapture_driver_activate'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_main_window_size_allocate'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_combo_trim_clip_entry_focus_out_event'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_main_notebook_switch_page'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_eventbox_trim_button_press_event'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_capture_page_button_released'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_main_window_key_release_event'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_button_export_stills_file_clicked'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_capture_page_snapshot_button_clicked'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_menuitem_trim_insert_activate'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_button_trim_out_reset_clicked'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_preferences_dialog_cancel_button_clicked'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_video_end_scene_button_clicked'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_join_scenes_activate'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_video_forward_button_clicked'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_menuitem_trim_activate'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_spinbutton_trim_in_focus_in_event'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_button_trim_insert_before_clicked'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_save_as_activate'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_hscale_shuttle_button_press_event'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_entry_timeline_end_activate'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_entry_timeline_start_activate'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_spinbutton_export_range_start_end_changed'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_capture_activate'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_button_export_avi_file_clicked'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_time_format_ms_activate'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_50percent_activate'.

(kino:21107): libglade-WARNING **: could not find signal handler
'on_eventbox_edit_drawingarea_button_press_event'.

(kino:21107): 

[gentoo-user] ipw200 wireless config problem

2006-08-18 Thread Richard Watson



Hi can anyone help me resolve this problem. I'm 
running kernel-genkernel-x86-2.6.16-gentoo-r9. I've built in support for the 
ipw2200 driver and installed fimrware image ipw2200-firmware-2.4 as the forums 
say the latest firmware image is not supported with my kernel version. I've got 
problems ... when I try and install. wireless-tools installs OK but no interface 
is present when running iwconfig. I get the following error on 
dmesg.

# dmesg | grep ipw
ipw2200: no version for 
"ieee80211_wx_get_encodeext" found: kernel tainted.ipw2200: Intel(R) 
PRO/Wireless 2200/2915 Network Driver, 1.1.3mprqipw2200: Copyright(c) 
2003-2006 Intel Corporationipw2200: Detected Intel PRO/Wireless 2200BG 
Network Connectionipw2200: ipw2200-bss.fw request_firmware failed: Reason 
-2ipw2200: Unable to load firmware: -2ipw2200: failed to register 
network deviceipw2200: probe of :02:04.0 failed with error 
-5
How do I check that ieee80211 is installed 
correctly in my kernel (not as a module I assume since ipw2200 is installed). 
any other tips would be really appreciated as I've been trying to figure this 
out for ages.

Thanks, Richard


[gentoo-user] No sound after kernel upgrade

2006-08-16 Thread Richard Watson
I used to have sound running with no problems but since I've updated my
kernel and re emerging Alsa I'm getting the following errors in dmesg.
Can anyone tell me what it means ... Thanks, Richard



ndler
snd_vx222: Unknown symbol snd_vx_create
snd_vx222: Unknown symbol snd_vx_suspend
snd_vx222: Unknown symbol snd_vx_dsp_load
snd_vx222: Unknown symbol snd_vx_dsp_boot
snd_vx222: Unknown symbol snd_vx_resume
snd_seq_device: disagrees about version of symbol snd_info_register
snd_seq_device: Unknown symbol snd_info_register
snd_seq_device: disagrees about version of symbol
snd_info_create_module_entry
snd_seq_device: Unknown symbol snd_info_create_module_entry
snd_seq_device: disagrees about version of symbol snd_info_free_entry
snd_seq_device: Unknown symbol snd_info_free_entry
snd_seq_device: disagrees about version of symbol snd_seq_root
snd_seq_device: Unknown symbol snd_seq_root
snd_seq_device: disagrees about version of symbol snd_device_new
snd_seq_device: Unknown symbol snd_device_new
snd_seq_device: disagrees about version of symbol snd_info_unregister
snd_seq_device: Unknown symbol snd_info_unregister
snd_rawmidi: disagrees about version of symbol snd_info_register
snd_rawmidi: Unknown symbol snd_info_register
snd_rawmidi: Unknown symbol snd_seq_device_new
snd_rawmidi: disagrees about version of symbol snd_info_free_entry
snd_rawmidi: Unknown symbol snd_info_free_entry
snd_rawmidi: disagrees about version of symbol snd_unregister_oss_device
snd_rawmidi: Unknown symbol snd_unregister_oss_device
snd_rawmidi: disagrees about version of symbol snd_register_oss_device
snd_rawmidi: Unknown symbol snd_register_oss_device
snd_rawmidi: disagrees about version of symbol snd_ctl_register_ioctl
snd_rawmidi: Unknown symbol snd_ctl_register_ioctl
snd_rawmidi: disagrees about version of symbol snd_card_file_add
snd_rawmidi: Unknown symbol snd_card_file_add
snd_rawmidi: disagrees about version of symbol snd_unregister_device
snd_rawmidi: Unknown symbol snd_unregister_device
snd_rawmidi: disagrees about version of symbol snd_device_new
snd_rawmidi: Unknown symbol snd_device_new
snd_rawmidi: disagrees about version of symbol snd_ctl_unregister_ioctl
snd_rawmidi: Unknown symbol snd_ctl_unregister_ioctl
snd_rawmidi: disagrees about version of symbol snd_info_create_card_entry
snd_rawmidi: Unknown symbol snd_info_create_card_entry
snd_rawmidi: disagrees about version of symbol snd_device_free
snd_rawmidi: Unknown symbol snd_device_free
snd_rawmidi: disagrees about version of symbol snd_card_file_remove
snd_rawmidi: Unknown symbol snd_card_file_remove
snd_rawmidi: disagrees about version of symbol snd_info_unregister
snd_rawmidi: Unknown symbol snd_info_unregister
snd_rawmidi: disagrees about version of symbol snd_device_register
snd_rawmidi: Unknown symbol snd_device_register
snd_rawmidi: disagrees about version of symbol snd_register_device
snd_rawmidi: Unknown symbol snd_register_device
snd_mpu401_uart: Unknown symbol snd_rawmidi_receive
snd_mpu401_uart: Unknown symbol snd_rawmidi_transmit_ack
snd_mpu401_uart: Unknown symbol snd_rawmidi_transmit_peek
snd_mpu401_uart: Unknown symbol snd_rawmidi_new
snd_mpu401_uart: Unknown symbol snd_rawmidi_set_ops
snd_mpu401_uart: disagrees about version of symbol snd_device_free
snd_mpu401_uart: Unknown symbol snd_device_free
snd_hwdep: disagrees about version of symbol snd_info_register
snd_hwdep: Unknown symbol snd_info_register
snd_hwdep: disagrees about version of symbol snd_info_create_module_entry
snd_hwdep: Unknown symbol snd_info_create_module_entry
snd_hwdep: disagrees about version of symbol snd_info_free_entry
snd_hwdep: Unknown symbol snd_info_free_entry
snd_hwdep: disagrees about version of symbol snd_unregister_oss_device
snd_hwdep: Unknown symbol snd_unregister_oss_device
snd_hwdep: disagrees about version of symbol snd_register_oss_device
snd_hwdep: Unknown symbol snd_register_oss_device
snd_hwdep: disagrees about version of symbol snd_ctl_register_ioctl
snd_hwdep: Unknown symbol snd_ctl_register_ioctl
snd_hwdep: disagrees about version of symbol snd_card_file_add
snd_hwdep: Unknown symbol snd_card_file_add
snd_hwdep: disagrees about version of symbol snd_unregister_device
snd_hwdep: Unknown symbol snd_unregister_device
snd_hwdep: disagrees about version of symbol snd_device_new
snd_hwdep: Unknown symbol snd_device_new
snd_hwdep: disagrees about version of symbol snd_ctl_unregister_ioctl
snd_hwdep: Unknown symbol snd_ctl_unregister_ioctl
snd_hwdep: disagrees about version of symbol snd_card_file_remove
snd_hwdep: Unknown symbol snd_card_file_remove
snd_hwdep: disagrees about version of symbol snd_info_unregister
snd_hwdep: Unknown symbol snd_info_unregister
snd_hwdep: disagrees about version of symbol snd_register_device
snd_hwdep: Unknown symbol snd_register_device
snd_timer: disagrees about version of symbol snd_info_register
snd_timer: Unknown symbol snd_info_register
snd_timer: disagrees about version of symbol snd_info_create_module_entry

[gentoo-user] I'm a genkernel user ... Is it OK to manually edit /usr/src/linux/.config with nano?

2006-08-13 Thread Richard Watson
Hi - I'm a genkernel user ... Is it OK to manually edit
/usr/src/linux/.config with nano? It's quicker than going through
he  --menuconfig menu sets at times. Thanks, Richard

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] I'm a genkernel user ... Is it OK to manually edit /usr/src/linux/.config with nano?

2006-08-13 Thread Richard Watson
 Yes.
 Make sure next time you run genkernel on that kernel source you 
 specify --no-clean and --no-mrproper, or copy the .config 
 to /etc/kernels/kernel-config-version, otherwise it will wipe out your 
 changes.
 
 p.s. Don't reply to an old mail just to keep the To:.


Thanks Mike
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Throttling State won't change from command in Gentoo Power Management Guide

2006-08-11 Thread Richard Watson
Hi Tobias

$cpufreq-set -u 80 worked great but I finally settled on $cpufreq-set -g
ondemand.

Good tip, thanks Richard

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Throttling State won't change from command in Gentoo Power Management Guide

2006-08-09 Thread Richard Watson



Hi - I've been setting my laptop for power 
management by following the Power Management Guide and have successfully got 
cpufreqd running. However the CPU still gets hot on large compiles. I thought 
maybe changing the throttling state would cool things off but when I run the 
command from the power management guide 

echo -n "0:T1"  /proc/acpi/processor/C000/limit 


it returns the error 

-bash: echo: write error: Invalid 
argument

I tried opening the file with nano -w and got the 
same message when saving the changes. Can anybody give me any help? 


Thanks, Richard


Re: [gentoo-user] GCC Upgrade Problems - Why does emerge --sync not work

2006-08-05 Thread Richard Watson
Well I've wasted everybodt's timeon this ... sorry. It was a kernel problem.
I had created a new one when configuring for cpufreqd and used the wrong
processor type. Richard

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] GCC Upgrade Problems - Why does emerge --sync not work

2006-08-04 Thread Richard Watson

Hi there, I've been trying to upgrade my Gentoo Laptop to 3.4.6 with the
upgrade guide.. Everything seemed to go OK except now when I issue
emerge --sync I get the message


Starting retry 3 of 3 with rsync://140.211.166.165/gentoo-portage
Checking server timestamp ...

rsync: failed to connect to 140.211.166.165: Connection refused (111)
rsync error: error in socket IO (code 10) at clientserver.c(107)
[receiver=2.6.8]
.

I thought maybe I would repeat the upgrade process but can't get passed
emerge --oneshot sys-libs/libstdc++-v3. The compilation starts and then
always seems to freeze at

In file included from
/var/tmp/portage/libstdc++-v3-3.3.4/work/gcc-3.3.4/gcc/expr.c:39
/var/tmp/portage/libstdc++-v3-3.3.4/work/gcc-3.3.4/gcc/recog.h:227: warning
type of bit-field mode is a GCC extension.

I have a feeling I removed all the old GCC versions previously with
emerge -aC =sys-devel/gcc-3.3* which is why it keeps failing.

Another problem is that my laptop randomly freezes solid since upgrading GCC
necessating a power cycle in order to get going again.

I'm sort of thinking of rebuilding my system from scratch (presumably with
emerge -e system and then emerge -e world) or am I just wasting lots of
time.

I susppect I've done something stupid ...

Thanks anyone, Richard

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] GCC Upgrade Problems - Why does emerge --sync not work

2006-08-04 Thread Richard Watson
Starting retry 3 of 3 with rsync://140.211.166.165/gentoo-portage
 Checking server timestamp ...
   
 rsync: failed to connect to 140.211.166.165: Connection refused (111)
 rsync error: error in socket IO (code 10) at clientserver.c(107)
 [receiver=2.6.8]
 

 The server is refusing the connection, there's nothing wrong at your end
 except you need to try a different rsync server.


   
Thanks ... I figured this bit out last night ... Sorry. I'm still
puzzled why my lap top keeps freezing. Usually when the screen saver
cuts in. The last things I've done are upgrade GCC and follow the power
managment guide for my laptop. Are there any obvious mistakes that would
cause this? Thank, Richard

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] My CPU seems to run hotter with Gentoo as opposed to Windows XP

2006-07-13 Thread Richard Watson
Hi all, I've loaded Gentoo on a Compaq nx 6150 notebook which reports a
Intel (R) Pentium (R) M Processor 1.73GHz Stepping 08 CPU at dmesg.

For some reason the CPU seems to run very hot with a lot of fan activity
compared to when I boot XP, plus overall performance seems slow in
comparisom to XP with Gnome freezing for a few seconds on occasion as
though the system is stretched.

Does this make sense to anyone? Is there a way of cooling how the CPU runs?

Thanks, Richard

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] xine compile failed

2006-06-23 Thread Richard Watson
I'm running 3.4.6-r1 and I still have the problem. I've emerge --sync again 
with no luck. Anything else I might check? Thanks.


The suggestion was to upgrade to gcc 3.4.  That's what the bug report 
says.



--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] xine compile failed

2006-06-16 Thread Richard Watson
Hi ... I've got exactly the same problem with after syncing. I've tried 
resyncing a few times. Any help would be great. Thanks, Richard.


My output is:
===
cc1: error: unrecognized option `-fvisibility=hidden'

make[3]: *** [xineplug_ao_out_none_la-audio_none_out.lo] Error 1

make[3]: Leaving directory 
`/var/tmp/portage/xine-lib-1.1.2_pre20060328-r9/work/xine-lib-1.1.2cvs/src/audio_out'


make[2]: *** [all-recursive] Error 1

make[2]: Leaving directory 
`/var/tmp/portage/xine-lib-1.1.2_pre20060328-r9/work/xine-lib-1.1.2cvs/src'


make[1]: *** [all-recursive] Error 1

make[1]: Leaving directory 
`/var/tmp/portage/xine-lib-1.1.2_pre20060328-r9/work/xine-lib-1.1.2cvs'


make: *** [all] Error 2

!!! ERROR: media-libs/xine-lib-1.1.2_pre20060328-r9 failed.

Call stack:

ebuild.sh, line 1539: Called dyn_compile

ebuild.sh, line 939: Called src_compile

xine-lib-1.1.2_pre20060328-r9.ebuild, line 235: Called die

== emerge --info output ==

Portage 2.1 (default-linux/x86/2006.0, gcc-3.3.6, glibc-2.3.6-r3, 
2.6.16-gentoo-r7 i686)


=

System uname: 2.6.16-gentoo-r7 i686 Intel(R) Pentium(R) 4 CPU 1.70GHz

Gentoo Base System version 1.6.14

distcc 2.18.3 i686-pc-linux-gnu (protocols 1 and 2) (default port 3632) 
[disabled]


dev-lang/python: 2.3.5-r2, 2.4.2

dev-python/pycrypto: 2.0.1-r5

dev-util/ccache: [Not Present]

dev-util/confcache: [Not Present]

sys-apps/sandbox: 1.2.17

sys-devel/autoconf: 2.13, 2.59-r7

sys-devel/automake: 1.4_p6, 1.5, 1.6.3, 1.7.9-r1, 1.8.5-r3, 1.9.6-r1

sys-devel/binutils: 2.16.1-r2

sys-devel/gcc-config: 1.3.13-r2

sys-devel/libtool: 1.5.22

virtual/os-headers: 2.6.11-r2

ACCEPT_KEYWORDS=x86

AUTOCLEAN=yes

CBUILD=i686-pc-linux-gnu

CFLAGS=-march=pentium4 -O2 -pipe -fomit-frame-pointer

CHOST=i686-pc-linux-gnu

CONFIG_PROTECT=/etc /usr/kde/3.4/env /usr/kde/3.4/share/config 
/usr/kde/3.4/shutdown /usr/kde/3.5/env /usr/kde/3.5/share/config 
/usr/kde/3.5/shutdown /usr/lib/X11/xkb /usr/lib/mozilla/defaults/pref 
/usr/share/config


CONFIG_PROTECT_MASK=/etc/env.d /etc/gconf /etc/revdep-rebuild 
/etc/terminfo


CXXFLAGS=-march=pentium4 -O2 -pipe -fomit-frame-pointer

DISTDIR=/usr/portage/distfiles

FEATURES=autoconfig distlocks metadata-transfer sandbox sfperms strict

GENTOO_MIRRORS=http://gentoo.osuosl.org/ http://adelie.polymtl.ca/ 
ftp://cs.ubishops.ca/pub/gentoo ftp://gentoo.risq.qc.ca/ 
http://gentoo.chem.wisc.edu/gentoo/ ftp://gentoo.chem.wisc.edu/gentoo/ 
http://ftp.heanet.ie/pub/gentoo/ ftp://ftp.heanet.ie/pub/gentoo/ 
http://gentoo.blueyonder.co.uk ftp://mirrors.blueyonder.co.uk/mirrors/gentoo 
http://www.mirrorservice.org/sites/www.ibiblio.org/gentoo/ 
ftp://ftp.mirrorservice.org/sites/www.ibiblio.org/gentoo/ 
ftp://public.planetmirror.com/pub/gentoo/ 
ftp://mirror.pacific.net.au/linux/Gentoo 
http://mirror.isp.net.au/pub/gentoo/ ftp://mirror.isp.net.au/pub/gentoo/ 
http://mirror.gentoo.gr.jp http://gentoo.gg3.net/ 
http://gentoo.channelx.biz/ ftp://mirror.averse.net/pub/gentoo 
http://mirror.averse.net/pub/gentoo/;


MAKEOPTS=-j2

PKGDIR=/usr/portage/packages

PORTAGE_RSYNC_OPTS=--recursive --links --safe-links --perms --times --compress 
--force --whole-file --delete --delete-after --stats --timeout=180 --exclude='/distfiles' 
--exclude='/local' --exclude='/packages'


PORTAGE_TMPDIR=/var/tmp

PORTDIR=/usr/portage

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

USE=X a52 aac aalib alsa apache2 apm arts audiofile avi bash-completion 
berkdb bitmap-fonts bonobo bzip2 cdparanoia cdr cli crypt cups dbm div4linux 
dri dv dvb dvd dvdr dvdread eds emboss encode esd examples exif fbcon fdftk 
ffmpeg flash foomaticdb fortran ftp gb gd gdbm gif gnome gphoto2 gpm 
gstreamer gtk gtk2 gtkhtml hal howl ieee1394 imlib ipv6 isdnlog jack 
joystick jpeg kde libg++ libwww mad matrox mikmod mime ming motif mozilla 
mp3 mpeg msn mysql mysqli nas ncurses nls nocd nptl ogg oggvorbis openal 
opengl osc oss pam pcre pdflib perl png portaudio ppds pppd python qt 
quicktime readline reflection samba sdl session slp sox speex spell spl szip 
tcpd tetex tiff truetype truetype-fonts type1-fonts udev usb v4l vcd videos 
vorbis win32codecs x86 xine xinerama xml xmms xorg xv xvid yahoo zlib 
elibc_glibc kernel_linux userland_GNU


Unset: CTARGET, EMERGE_DEFAULT_OPTS, INSTALL_MASK, LANG, LC_ALL, LDFLAGS, 
LINGUAS, PORTAGE_RSYNC_EXTRA_OPTS, PORTDIR_OVERLAY


--
gentoo-user@gentoo.org mailing list



[gentoo-user] cannot login after emerge --update --deep --newuse world crashed

2006-06-05 Thread Richard Watson
Hi all - I was running emerge --update --deep --newuse world over the
weekend when I had a power outage and my computer crashed.  For some reason
ever since then I cannot login. If I enter Root at the login prompt the
computer thinks about it and then just returns to the login prompt.
Obviously something has gone wrong with my authentication and I'm just
wondering whether anyone can give me guidance on how to fix this.  

I was able to boot from the Gentoo Stage 1 Livecd and chroot into my system
but resetting the password with passwd didn't work. I suspect I need to
emerge the relevant modules again but don't know which ones.

Any help would be really appreciated, thanks. Richard



-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.8.1/355 - Release Date: 2/06/2006
 

-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] How do I create /dev/ieee1394/dv/host0/PAL/out so I can write back to tape with Kino

2006-05-15 Thread Richard Watson
Hi - Just answering my own post if anyone's interested. I figured it out by
creating the following script to create the relevant nodes to capture and
write DV video from my camcorder:

--

rm /dev/video1394/0
rmdir /dev/video1394
rm /dev/raw1394
mkdir /dev/video1394
mknod -m 666 /dev/video1394/0 c 171 16
mknod -m 666 /dev/raw1394 c 171 0

rm /dev/ieee1394/dv/host0/PAL/out
rmdir /dev/ieee1394/dv/host0/PAL
rmdir /dev/ieee1394/dv/host0
rmdir /dev/ieee1394/dv
rmdir /dev/ieee1394

mkdir /dev/ieee1394
mkdir /dev/ieee1394/dv
mkdir /dev/ieee1394/dv/host0
mkdir /dev/ieee1394/dv/host0/PAL
mknod -m 666 /dev/ieee1394/dv/host0/PAL/out c 171 35

--

-Original Message-
From: Richard Watson [mailto:[EMAIL PROTECTED] 
Sent: Sunday, 7 May 2006 2:18 PM
To: gentoo-user@lists.gentoo.org
Subject: [gentoo-user] How do I create /dev/ieee1394/dv/host0/PAL/out so I
can write back to tape with Kino

Hi – Can anyone tell me how to create /dev/ieee1394/dv/host0/PAL/out so I
can write back to DV tape on my video camera with Kino? I assume it’s some
form of mknod command but I don’t really understand the syntax. It's not
currently listed in my /dev.
--
Thanks, Richard

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.392 / Virus Database: 268.5.5/333 - Release Date: 5/05/2006
 


-- 
gentoo-user@gentoo.org mailing list

-- 
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.392 / Virus Database: 268.5.5/333 - Release Date: 5/05/2006
 

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.392 / Virus Database: 268.5.6/340 - Release Date: 15/05/2006
 


-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] How do I create /dev/ieee1394/dv/host0/PAL/out so I can write back to tape with Kino

2006-05-06 Thread Richard Watson
Hi – Can anyone tell me how to create /dev/ieee1394/dv/host0/PAL/out so I
can write back to DV tape on my video camera with Kino? I assume it’s some
form of mknod command but I don’t really understand the syntax. It's not
currently listed in my /dev.
--
Thanks, Richard

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.392 / Virus Database: 268.5.5/333 - Release Date: 5/05/2006
 


-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Wireless woes after upgrading kernel from kernel-genkernel-x86-2.6.15-gentoo-r1 to kernel-genkernel-x86-2.6.13-gent

2006-03-18 Thread Richard Watson
Hi - my original kernel-genkernel-x86-2.6.15-gentoo-r1 runs wireless
fine with ipw2200 and ipw2200-firmware. After upgrading to
kernel-genkernel-x86-2.6.13-gentoo-r5 I was experiencing conflicts as in
order to continue using these tools I had to disable the IEEE802.11
subsystem and rebuild my kernel. I've tried very configuration I can
think of (without success). Below is my latest effort can, anyone offer
advice? Many thanks, Richard

-- Relevent /usr/src/linux/.config section 
#CONFIG_NET_PKTGEN is not set
# CONFIG_HAMRADIO=y

#
# Packet Radio protocols
#
# CONFIG_AX25 is not set
# CONFIG_IRDA is not set
# CONFIG_BT is not set
# CONFIG_IEEE80211 is not set

--- Result displayed by modprobe ipw2200 after emerging ipw2200
ipw2200-firmware ---
# modprobe ipw2200
WARNING: Error inserting ieee80211
(/lib/modules/2.6.15-gentoo-r1/net/ieee80211/ieee80211.ko): Unknown
symbol in module, or unknown parameter (see dmesg)
FATAL: Error inserting ipw2200
(/lib/modules/2.6.15-gentoo-r1/net/wireless/ipw2200.ko): Unknown symbol
in module, or unknown parameter (see dmesg)

--- Output from dmesg ---
ieee80211: disagrees about version of symbol per_cpu__softnet_data
ieee80211: Unknown symbol per_cpu__softnet_data
ieee80211: disagrees about version of symbol free_netdev
ieee80211: Unknown symbol free_netdev
ieee80211: disagrees about version of symbol netif_rx
ieee80211: Unknown symbol netif_rx
ipw2200: Unknown symbol ieee80211_wx_get_encodeext
ipw2200: Unknown symbol ieee80211_wx_set_encode
ipw2200: Unknown symbol ieee80211_wx_get_encode
ipw2200: Unknown symbol ieee80211_txb_free
ipw2200: Unknown symbol ieee80211_wx_set_encodeext
ipw2200: Unknown symbol ieee80211_wx_get_scan
ipw2200: Unknown symbol escape_essid
ipw2200: Unknown symbol ieee80211_rx
ipw2200: Unknown symbol ieee80211_rx_mgt
ipw2200: Unknown symbol free_ieee80211
ipw2200: Unknown symbol alloc_ieee80211
ieee80211: disagrees about version of symbol per_cpu__softnet_data
ieee80211: Unknown symbol per_cpu__softnet_data
ieee80211: disagrees about version of symbol free_netdev
ieee80211: Unknown symbol free_netdev
ieee80211: disagrees about version of symbol netif_rx
ieee80211: Unknown symbol netif_rx
ipw2200: Unknown symbol ieee80211_wx_get_encodeext
ipw2200: Unknown symbol ieee80211_wx_get_scan
ipw2200: Unknown symbol escape_essid
ipw2200: Unknown symbol ieee80211_rx
ipw2200: Unknown symbol ieee80211_rx_mgt
ipw2200: Unknown symbol free_ieee80211
ipw2200: Unknown symbol alloc_ieee80211
mtrr: no more MTRRs available
tg3: eth1: Link is up at 100 Mbps, full duplex.
tg3: eth1: Flow control is off for TX and off for RX.
ieee80211: disagrees about version of symbol per_cpu__softnet_data
ieee80211: Unknown symbol per_cpu__softnet_data
ieee80211: disagrees about version of symbol free_netdev
ieee80211: Unknown symbol free_netdev
ieee80211: disagrees about version of symbol netif_rx
ieee80211: Unknown symbol netif_rx
ipw2200: Unknown symbol ieee80211_wx_get_encodeext
ipw2200: Unknown symbol ieee80211_wx_set_encode
ipw2200: Unknown symbol ieee80211_wx_get_encode
ipw2200: Unknown symbol ieee80211_txb_free
ipw2200: Unknown symbol ieee80211_wx_set_encodeext
ipw2200: Unknown symbol ieee80211_wx_get_scan
ipw2200: Unknown symbol escape_essid
ipw2200: Unknown symbol ieee80211_rx
ipw2200: Unknown symbol ieee80211_rx_mgt
ipw2200: Unknown symbol free_ieee80211
ipw2200: Unknown symbol alloc_ieee80211



-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] Problem with cracking keys with libdvdcss

2006-01-06 Thread Richard Watson
I think it was a Use flag issue. I'm not really sure which one as I took
them all from another machine I run Gentoo on and everything is fine now.
--
Thanks, Richard

--
Hi – I’m just wondering under what circumstances libdvdcss will not work
correctly when trying to back up a movie DVD. I’m running 1.2.8 on my
desktop unit at home fine but 1.2.9 on my laptop keeps returning the error. 

libdvdread: Get key for /VIDEO_TS/VTS_02_0.VOB at 0x00293bd4
libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_02_0.VOB (0x00293bd4)



-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.371 / Virus Database: 267.14.15/223 - Release Date: 6/01/2006
 


-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Problem with cracking keys with libdvdcss

2006-01-04 Thread Richard Watson
Hi – I’m just wondering under what circumstances libdvdcss will not work
correctly when trying to back up a movie DVD. I’m running 1.2.8 on my
desktop unit at home fine but 1.2.9 on my laptop keeps returning the error. 

libdvdread: Get key for /VIDEO_TS/VTS_02_0.VOB at 0x00293bd4
libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_02_0.VOB (0x00293bd4)
--
Thanks, Richard

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.371 / Virus Database: 267.14.12/220 - Release Date: 3/01/2006
 


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Bit puzzled over Kernel Upgrade with Genkernel - No Sound or Wireless Connectivity

2005-11-23 Thread Richard Watson

 On Tue, Nov 22, 2005 at 09:20:10AM +1000, Richard Watson wrote:
  Hi - I just upgraded my kernel-genkernel-x86-2.6.12-gentoo-r10 to
  kernel-genkernel-x86-2.6.14-gentoo-r2. So far I have no sound (Alsa) or
  wireless connectivity (ipw2100). Do I need to re-emerge the relevant
  packages? And if I do will this remove the functionality from the old
 
 yes. no.
 
 You need to recompile the kernel modules against the new kernel for
 them to work. And /lib/modules is protected so that recompiling kernel
 modules for new kernels won't remove the modules for the old kernel.
 (Hint: there is a reason that /lib/modules has subdirectories numbered
 by kernel versions.)
 
  kernel. I can boot the old kernel fine with sound and everything.
 
 HTH, 
 
Thanks .. A really good  explanation for a novice (as in me). Richard

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Bit puzzled over Kernel Upgrade with Genkernel - No Sound or Wireless Connectivity

2005-11-21 Thread Richard Watson
Hi - I just upgraded my kernel-genkernel-x86-2.6.12-gentoo-r10 to
kernel-genkernel-x86-2.6.14-gentoo-r2. So far I have no sound (Alsa) or
wireless connectivity (ipw2100). Do I need to re-emerge the relevant
packages? And if I do will this remove the functionality from the old
kernel. I can boot the old kernel fine with sound and everything.
--
Thanks, Richard


-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] emerge avifile -0.7.41.20041001-r1 failed

2005-11-09 Thread Richard Watson
Hi - can anyone tell from the attached why
media-video/avifile-0.7.41.20041001-r1 failed? I'm a bit stuck at the
moment. I'm trying to emerge kino and this is one of the required
packages. I'm not good enough to diagnose the problem so any help would
be great.
--
Thanks, Richard


I. -I../../include   -DHAVE_AV_CONFIG_H -I./../libavcodec -I./.. -Wall
-Wno-unused -I../../include  -O2 -march=pentium3 -mmmx -msse -msse2
-mfpmath=sse,387 -pipe -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
-D_GNU_SOURCE -pipe -c flvdec.c
 i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I../../include
-DHAVE_AV_CONFIG_H -I./../libavcodec -I./.. -Wall -Wno-unused
-I../../include -O2 -march=pentium3 -mmmx -msse -msse2 -mfpmath=sse,387
-pipe -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -pipe -c
flic.c  -fPIC -DPIC -o .libs/flic.o
 i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I../../include
-DHAVE_AV_CONFIG_H -I./../libavcodec -I./.. -Wall -Wno-unused
-I../../include -O2 -march=pentium3 -mmmx -msse -msse2 -mfpmath=sse,387
-pipe -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -pipe -c
flvdec.c  -fPIC -DPIC -o .libs/flvdec.o
/bin/sh ../../libtool --mode=compile i686-pc-linux-gnu-gcc
-DHAVE_CONFIG_H -I. -I. -I../../include   -DHAVE_AV_CONFIG_H
-I./../libavcodec -I./.. -Wall -Wno-unused -I../../include  -O2
-march=pentium3 -mmmx -msse -msse2 -mfpmath=sse,387 -pipe
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -pipe -c
flvenc.c
flvdec.c: In function `flv_read_packet':
flvdec.c:63: warning: `st' might be used uninitialized in this function
/bin/sh ../../libtool --mode=compile i686-pc-linux-gnu-gcc
-DHAVE_CONFIG_H -I. -I. -I../../include   -DHAVE_AV_CONFIG_H
-I./../libavcodec -I./.. -Wall -Wno-unused -I../../include  -O2
-march=pentium3 -mmmx -msse -msse2 -mfpmath=sse,387 -pipe
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -pipe -c
framehook.c
 i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I../../include
-DHAVE_AV_CONFIG_H -I./../libavcodec -I./.. -Wall -Wno-unused
-I../../include -O2 -march=pentium3 -mmmx -msse -msse2 -mfpmath=sse,387
-pipe -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -pipe -c
flvenc.c  -fPIC -DPIC -o .libs/flvenc.o
/bin/sh ../../libtool --mode=compile i686-pc-linux-gnu-gcc
-DHAVE_CONFIG_H -I. -I. -I../../include   -DHAVE_AV_CONFIG_H
-I./../libavcodec -I./.. -Wall -Wno-unused -I../../include  -O2
-march=pentium3 -mmmx -msse -msse2 -mfpmath=sse,387 -pipe
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -pipe -c gif.c
 i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I../../include
-DHAVE_AV_CONFIG_H -I./../libavcodec -I./.. -Wall -Wno-unused
-I../../include -O2 -march=pentium3 -mmmx -msse -msse2 -mfpmath=sse,387
-pipe -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -pipe -c
framehook.c  -fPIC -DPIC -o .libs/framehook.o
/bin/sh ../../libtool --mode=compile i686-pc-linux-gnu-gcc
-DHAVE_CONFIG_H -I. -I. -I../../include   -DHAVE_AV_CONFIG_H
-I./../libavcodec -I./.. -Wall -Wno-unused -I../../include  -O2
-march=pentium3 -mmmx -msse -msse2 -mfpmath=sse,387 -pipe
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -pipe -c
gifdec.c
 i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I../../include
-DHAVE_AV_CONFIG_H -I./../libavcodec -I./.. -Wall -Wno-unused
-I../../include -O2 -march=pentium3 -mmmx -msse -msse2 -mfpmath=sse,387
-pipe -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -pipe -c
gif.c  -fPIC -DPIC -o .libs/gif.o
 i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I../../include
-DHAVE_AV_CONFIG_H -I./../libavcodec -I./.. -Wall -Wno-unused
-I../../include -O2 -march=pentium3 -mmmx -msse -msse2 -mfpmath=sse,387
-pipe -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -pipe -c
gifdec.c  -fPIC -DPIC -o .libs/gifdec.o
/bin/sh ../../libtool --mode=compile i686-pc-linux-gnu-gcc
-DHAVE_CONFIG_H -I. -I. -I../../include   -DHAVE_AV_CONFIG_H
-I./../libavcodec -I./.. -Wall -Wno-unused -I../../include  -O2
-march=pentium3 -mmmx -msse -msse2 -mfpmath=sse,387 -pipe
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -pipe -c http.c
/bin/sh ../../libtool --mode=compile i686-pc-linux-gnu-gcc
-DHAVE_CONFIG_H -I. -I. -I../../include   -DHAVE_AV_CONFIG_H
-I./../libavcodec -I./.. -Wall -Wno-unused -I../../include  -O2
-march=pentium3 -mmmx -msse -msse2 -mfpmath=sse,387 -pipe
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -pipe -c
idcin.c
 i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I../../include
-DHAVE_AV_CONFIG_H -I./../libavcodec -I./.. -Wall -Wno-unused
-I../../include -O2 -march=pentium3 -mmmx -msse -msse2 -mfpmath=sse,387
-pipe -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -pipe -c
http.c  -fPIC -DPIC -o .libs/http.o
 i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I../../include
-DHAVE_AV_CONFIG_H -I./../libavcodec -I./.. -Wall -Wno-unused
-I../../include -O2 -march=pentium3 -mmmx -msse -msse2 -mfpmath=sse,387
-pipe -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -pipe -c
idcin.c  -fPIC -DPIC -o 

Re: [gentoo-user] emerge avifile -0.7.41.20041001-r1 failed

2005-11-09 Thread Richard Watson

 --newuse doesn't take CFLAGS into account.  If you really want to
 rebuild your whole system, the standard way is:
 
 emerge -e world
 
 But I don't think it is really necessary.  These flags can cause build
 failures, but not really any runtime problems, AFAIK.
 
 -Richard

Thank you very much for your assistance.
--
Richard

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] emerge kino problem

2005-11-08 Thread Richard Watson
Hi, I'm trying to emerge Kino. One of the packages required
media-video/avifile-0.7.41.20041001-r1 is failing with the attached
error. I'm a bit stuck at the moment ... Can anyone help? 
--
Thanks, Richard


make[3]: Leaving directory
`/var/tmp/portage/avifile-0.7.41.20041001-r1/work/avifile-0.7-0.7.41/ffmpeg/libavcodec/i386'

make[2]: *** [all-recursive] Error 1

make[2]: Leaving directory
`/var/tmp/portage/avifile-0.7.41.20041001-r1/work/avifile-0.7-0.7.41/ffmpeg/libavcodec'

make[1]: *** [all-recursive] Error 1

make[1]: Leaving directory
`/var/tmp/portage/avifile-0.7.41.20041001-r1/work/avifile-0.7-0.7.41/ffmpeg'

make: *** [all-recursive] Error 1

!!! ERROR: media-video/avifile-0.7.41.20041001-r1 failed.

!!! Function src_compile, Line 138, Exitcode 2

!!! (no error message)

!!! If you need support, post the topmost build error, NOT this status
message.



-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] How do I restore Evolution Mail?

2005-11-07 Thread Richard Watson


On Tue, 2005-11-08 at 06:50 +0100, Heinz Sporn wrote:
 Am Dienstag, den 08.11.2005, 13:24 +1000 schrieb Richard Watson:
  Hi,
  
  I need to migrate my Gnome Evolution mail to a new PC I've just got. I
  tried copying everything from the .evolution folder into the new
  machine .evolution folder but the results are very eratic with only some
  of my mail recovering. Plus none of the addresses come across at all. Am
  I missing something obvious?
 
 Well, that depends on your local configuration. For email I'd check if
 there are folders like ~/.maildir, ~/.mail etc. etc. and copied those as
 well.
 The standard Evolution addressbook is stored in
 ~/.evolution/addressbook/addressbook.db. Did you copy that one? Are you
 using other addressbooks e.g. on a LDAP server?

I'm only running POP mail accounts, nothing on LDAP. I create mail
folders to store the various account incoming by using filters. Where
would all the POP messages be stored? 

I couldn't get my address information but your suggestion worked ...
Thanks!
--
Regards, Richard

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Using tar to backup my system

2005-11-03 Thread Richard Watson
Hi ... I've just spent ages compiling my laptop. I'm really happy with
the result ... So fast ...

What I want to is create a directory called /backup and then create a
tarball using the command

# tar -zcvf /backup/mylaptop.tar /[all directories] except /backup (as I
don't want to go in circles).

I'm then going to copy off the resulting tarball to my server in case my
laptop dies (I'd rather not have to recompile everything). Does this
sound OK?If I ever had to restore I would copy the file to / and run the
command.

# tar -zxvf mylaptop.tar
--
Thanks, Richard
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Using tar to backup my system

2005-11-03 Thread Richard Watson

On Thu, 2005-11-03 at 19:41 -0500, Dave Nebinger wrote:
 I guess really what I'm saying is no, it is not a good idea.  There's plenty 
 of other backup solutions out there that would work better than this scheme. 
 If you have a server and space for the file, rsync would even be a better 
 solution.

I'm going to try something I found on the Gentoo Wiki:

# emerge netcat

Remote machine runs
# nc -l -p 1  image.gz

Machine I'm backing up:
# dd if=/dev/hda1 | gzip | nc -w 5 remote_ip 1

What do you think? I'm a bit puzzled by rsync at the moment so this
seems to be a simple short term fix. Thanks, Richard




-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] The Root Block Device is unspecified or not detected - PCMCIA card CD Boot on Sony Vaio

2005-10-30 Thread Richard Watson
On Sun, 2005-10-30 at 02:36 +, Stroller wrote:
 On Oct 29, 2005, at 10:52 pm, A. Khattri wrote:
  On Sun, 30 Oct 2005, Richard Watson wrote:
 
  Hi - I have an old Sony Vaio I thought to run Gentoo on with X. The CD
  drive is attached to a PCMCIA card. When the LiveCD boots it seems to 
  go
  OK up until mounting root at which point I get the error The Root 
  Block
  Device is unspecified or not detected  and then I'm offerred to 
  either
  shell or specify a /dev. I've tried gentoo-nofb dopcmcia ide=nodma but
  no luck. I'm a bit stuck at this point does anyone have any 
  suggestions
  how I could make the install CD boot? Thanks, Richard
 
  What sort of PCMCIA card? SCSI?
 
 I have this idea it's not SCSI.
 
 Sony sold this CD-ROM-on-a-string for their sub-notebook Viaos of the 
 PII - PIII era. I think the PMCIA card  optical driver were both 
 hardwired to the cable and it was certainly never implied that the 
 PCMCIA card might be used with any other kind of drive. Google finds a 
 photo at http://www.allnotebooks.ru/img/compl/51.gif
 
 I installed Gentoo on a Pentium II 400 Vaio Picturebook, the Sony 
 with a 6 widescreen (1024 x 480??) but never had one of these CD-Roms 
 available, only the floppy drive. In fact I cheated  resorted to 
 removing the hard-drive  installing Gentoo on it using a desktop PC 
 before returning the drive to the laptop. I think it might be possible 
 to avoid this by installing from stage 3 - that mostly just needs to be 
 unpacked onto a Linux-formatted partition, doesn't it? There are surely 
 Linux distros that'll boot on this device so a pre-compiled kernel 
 could be copied across from another machine and then only grub needs to 
 be run, I think.
 
 Richard: does Knoppix boot from this CD-Rom drive? An Ubuntu LiveCD? 
 Perhaps it might be worth trying an older (2003, 2004) Gentoo install 
 CD. A Google for parallel port cd-rom linux returns, amongst others, 
 this page http://cyberelk.net/tim/parport/paride.html so I reckon your 
 drive is probably supported by the kernel.
 
 Stroller.
 
Hey Stroller ... You got the model in 1 ...! I think you're correct. I'm going 
to try and 
use partition magic under Windows 2000 which is the OS it came with to create 
my partitions and install
a stage 3. I'll let you know how I go. Hopefully having an EXT2
partition will help Knoppix start properly. Thanks, Richard

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] The Root Block Device is unspecified or not detected - PCMCIA card CD Boot on Sony Vaio

2005-10-29 Thread Richard Watson
Hi - I have an old Sony Vaio I thought to run Gentoo on with X. The CD
drive is attached to a PCMCIA card. When the LiveCD boots it seems to go
OK up until mounting root at which point I get the error The Root Block
Device is unspecified or not detected  and then I'm offerred to either
shell or specify a /dev. I've tried gentoo-nofb dopcmcia ide=nodma but
no luck. I'm a bit stuck at this point does anyone have any suggestions
how I could make the install CD boot? Thanks, Richard

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] CFLAGS setting for Intel(R) Pentium(R) M processor 1.73GHZ stepping 08

2005-10-22 Thread Richard Watson
I've just got a new laptop I'm installing Gentoo on and was wondering if
anyone could advise on the CFLAG setting I'm using. The CPU is a
Intel(R) Pentium(R) M processor 1.73GHZ stepping 08. Currently I've set
CFLAGS=-02 -mcpu=pentium -pipe
--
Thanks, Richard

-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] X will NOT run in framebuffer mode

2005-10-15 Thread Richard Watson
Knowing what video chip is involved, what kernel module you're trying to
use with it, and what settings you have in Xorg (the contents of
/etc/X11/xorg.conf and /var/log/Xorg.0.log would be good here), would be
useful info to have in order to attempt to help; we are not psychic
(this week, as far as I know).

Also, are you trying to run in framebuffer mode (and it's not working,
obviously), or are you not supposed to be running in framebuffer mode
(so you're making an incorrect request when starting the X server, which
needs to be corrected)?

Holly

I finally got around to rreading the X.org site ... Basically I was being lazy 
... I ran the text based setup utility xorgconfig and tracked down the video 
card and monitor hsync and vsync and everything's fine. Sorry for wasting your 
time. Richard

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.14/131 - Release Date: 12/10/2005
 


-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] How do I use the PACKAGE CD contents

2005-10-15 Thread Richard Watson
I'm trying to use the contents of the 2005.1 packages CD. This may be a
silly question but do I simply copy the files I want to use into the
directory /usr/portage/distfiles or is there a emerge command that allows me
to take them directly off the CD? Thanks, Richard
--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.14/131 - Release Date: 12/10/2005

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] X will NOT run in framebuffer mode

2005-10-13 Thread Richard Watson
Hi - When trying to run X I'm getting the message Fatal server error:
Cannot run in framebuffer mode. Please specifiy bus IDs for all framebuffer
devices. I'm running an IBM pentium 2 laptop, with the genkernel from
2005.1 stage 3 install. Any help would be really appreciated. Thanks,
Richard
--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.14/131 - Release Date: 12/10/2005

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] A simple explanation on how to get wireless working on my laptop ...

2005-10-07 Thread Richard Watson
Hi - Can anyone explain to a complete idiot (me) simply how to get my
internal wireless adaptor going. I know it works as I've got it running off
the Livecd and XP on an unsecured network. I went through creating:

# ln -s net.lo net.eth0 (Wirelesss card - reports wireless extensions not
found)
# ln -s net.lo net.eth1 (Seen as NIC and gets IP from DHCP server)
# rc-update add net.eth0 default
# rc-update add net.eth1 default
Everything in /etc/conf.d/net is set for dhcpcd
So far I've emerged wireless-tools and ndiswrapper but I think I'm missing
something fundamental ...

# iwconfig eth1 says wireless extensions not found

Any help would be really appreciated.

Thanks, Richard
--
Internal Virus Database is out-of-date.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.9/116 - Release Date: 30/09/2005

-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] A simple explanation on how to get wireless working on my laptop ...

2005-10-07 Thread Richard Watson

what is the output of

# lspci


:02:02.0 Network controller: Intel Corporation PRO/Wireless LAN 2100 3B
Mini PCI Adapter (rev 04)
Subsystem: Intel Corporation MIM2000/Centrino
Flags: bus master, medium devsel, latency 128, IRQ 11
Memory at 9000 (32-bit, non-prefetchable) [size=4K]
Capabilities: [dc] Power Management version 2


:02:01.0 Ethernet controller: Realtek Semiconductor Co., Ltd.
RTL-8139/8139C/8139C+ (rev 20)
Subsystem: Compaq Computer Corporation: Unknown device 0860
Flags: bus master, medium devsel, latency 128, IRQ 10
I/O ports at 2000 [size=256]
Memory at 9030 (32-bit, non-prefetchable) [size=256]
Capabilities: [50] Power Management version 2

Thanks for the reply, above is the (relevant) output od lspci -v.

Richard
--
Internal Virus Database is out-of-date.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.9/116 - Release Date: 30/09/2005

-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] A simple explanation on how to get wireless working on my laptop ...

2005-10-07 Thread Richard Watson
OK ... You're a genius thanks ...!!! The following worked ...

# emerge -s 2100 returned net-wireless/ipw2100 and
net-wireless/ipw2100-firmware
# emerge -av ipw2100 ipw2100-firmware

I rebooted .. then after turning encryption back on and then:

# iwconfig returned new interface eth2
# iwconfig essid XX
# iwconfig key X
# dhcpcd eth2

Everything works ... So ... how do I enter this into /etc/conf.d/net so
it happens automatically at boot.

Richard
--
Internal Virus Database is out-of-date.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.9/116 - Release Date: 30/09/2005

-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] What's happened to gnome ... I'm very frustrated

2005-10-05 Thread Richard Watson
Thanks for everybody's input. I'm going to back my data up and do a complete
re-install. It's probably cleaner in the long run. Richard

--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.9/116 - Release Date: 30/09/2005

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] What's happened to gnome ... I'm very frustrated

2005-10-04 Thread Richard Watson
I recently ran:

# emerge --synce
# emerge --update --deep --newuse world
# emerge --depclean
# revdep-rebuild

Afterwards whenever I log into Gnome that's fine, but when I log out the
screen goes blank and I have to power cycle the machine. Other symtoms are
Gnome apps (such as evolution) freezing. x11-xorg runs ok on it's own. At
this stage I'm considering reinstalling gnome (if I knew how). Any help
would be really appreciated.

Thanks, Richard
--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.9/116 - Release Date: 30/09/2005

-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] What's happened to gnome ... I'm very frustrated

2005-10-04 Thread Richard Watson

I'm not having any problems and I just rebuilt xorg-x11.  Are you x86 or 
~x86?

I'm running X86 - Thanks for replying. How would I force a Gnoe re-install?
-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.9/116 - Release Date: 30/09/2005

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] error while loading shared libraries: libdc1394_control.so.9

2005-10-02 Thread Richard Watson

 You should run revdep-rebuild after updates.  It's also a good idea to run 
 emerge -a depclean before revdep-rebuild and add depclean packages to 
 /var/lib/portage/world if you want to keep them.
 
 Zac

Thanks ... good advice. I reinstalled ffmpeg and the problem dissapeared
so your advice is very solid. Richard

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] error while loading shared libraries: libdc1394_control.so.9

2005-10-01 Thread Richard Watson
I'm trying to run a script to convert avi files to vob. I'm getting an
error I can't track down. I know the script works as I have another
Gentoo box that runs it fine. The error is:

ffmpeg: error while loading shared libraries: libdc1394_control.so.9:
cannot open shared object file: No such file or directory


I ran  emerge -s libdc which shows I have media-libs/libdc1394
Latest version available: 1.0.0

Any ideas? Thanks, Richard


-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] What /devTTY? is the modem normally under?

2005-09-28 Thread Richard Watson
Hi again. I installed slmodem but it's looking for /dev/ttySL0. Presumably I
need to create this manually. Can anyone tell me what command I should use
to create this. Thanks, Richard



--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.8/114 - Release Date: 28/09/2005

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] What /devTTY? is the modem normally under?

2005-09-27 Thread Richard Watson
Hi, I have an internal modem on my laptop (Compaq nx7000). I was wondering
if anyone can tell what the /dev/tty is likely to be under udev. Thanks,
Alan
--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.7/112 - Release Date: 26/09/2005

-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] What /devTTY? is the modem normally under?

2005-09-27 Thread Richard Watson
Thanks to everyone for their feedback on this. Richard

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.7/112 - Release Date: 26/09/2005

-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] Correct CHOST setting for Intel(R) Pentium(R) 4 CPU 1.70GHz stepping 02

2005-08-05 Thread Richard Watson
Colin ... I never thanked you on this ... thanks,
--
Regards, Richard


---
This is definitely a case of flaky hardware or insufficient cooling.   
Don't bother recompiling your system, work on finding the culprit.  I  
recommend a thorough dusting, inside and out, followed by a couple  
passes of memtest86.

But if you do want to recompile, re-bootstrap and emerge your system  
first:
  cd /usr/portage
  scripts/bootstrap.sh
  emerge -Davenut system  # no offense to any Daves, this is just  
easy to remember.  It's your stuff plus --emptytree.
  emerge -Davenut world
  Rebuild your kernel.
--
Colin
-- 


-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.338 / Virus Database: 267.10.1/64 - Release Date: 4/08/2005
 

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Correct CHOST setting for Intel(R) Pentium(R) 4 CPU 1.70GHz stepping 02

2005-08-03 Thread Richard Watson
Hi - I'm installing Gentoo on a Intel(R) Pentium(R) 4 CPU 1.70GHz stepping
02. Can anyone advise me as to the correct CHOST setting. I'm a bit confused
on this ..
--
Thanks, Richard




-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.338 / Virus Database: 267.10.0/63 - Release Date: 3/08/2005
 


-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] Correct CHOST setting for Intel(R) Pentium(R) 4 CPU 1.70GHz stepping 02

2005-08-03 Thread Richard Watson
 Hi - I'm installing Gentoo on a Intel(R) Pentium(R) 4 CPU 1.70GHz  
 stepping
 02. Can anyone advise me as to the correct CHOST setting. I'm a bit  
 confused
 on this ..

 Pentium II and newer processors (and other i686-compatibles) simply  
 use i686-pc-linux-gnu.  Why this is, I don't know exactly;  it  
 deals with the processor's architecture and how it compiles code.

 Also, set your CFLAGS to -O2 -march=pentium4 -mfpmath=sse,387 -pipe - 
 fomit-frame-pointer for a good mix of speed and stability.

Thanks Colin, I've (unfortunately) already compiled my system. Can I
re-compile everything with:

# emerge --update --ask --deep --verbose --newuse --tree world

The reason I'm looking into this is Kino keeps crashing, as do other data
intensive, high CPU applications.
--
Thanks, Richard

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.338 / Virus Database: 267.10.0/63 - Release Date: 3/08/2005
 

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Copying contents /boot from /dev/hdb1 to /dev/hda2

2005-07-27 Thread Richard Watson
Can anyone tell me if it's possible to move (or copy) the complete contents
of /boot located on /dev/hdb1 to /dev/hda2. If so would anyone know the
correct command so I pick up any hidden files ,etc.

--
Thanks, Richard

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.338 / Virus Database: 267.9.5/58 - Release Date: 25/07/2005
 

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] /dev/hdb performance really sucks ...

2005-07-25 Thread Richard Watson
Hi - I'm getting vastly different performance results on hda (master) as
opposed to hdb (slave). Basically when my root partition mounts (/dev/hdb)
I'm warned that DMA is off, yet hdparm -i shows udma as active. Basically
/dev/hdb performance sucks ... I've bought both drives in the last few
months. The motherboard is quite old (3 years .. I think).

Any suggestions would be appreciated. 
--
Thanks - Richard

=

/dev/hda:
 Timing cached reads:   1360 MB in  2.00 seconds = 678.75 MB/sec
 Timing buffered disk reads:  146 MB in  3.03 seconds =  48.22 MB/sec

/dev/hdb:
 Timing cached reads:   1376 MB in  2.00 seconds = 687.42 MB/sec
 Timing buffered disk reads:   10 MB in  3.51 seconds =   2.85 MB/sec

/dev/hda:

 Model=Maxtor 6Y120P0, FwRev=YAR41BW0, SerialNo=Y36DHLVE
 Config={ Fixed }
 RawCHS=16383/16/63, TrkSize=0, SectSize=0, ECCbytes=57
 BuffType=DualPortCache, BuffSize=7936kB, MaxMultSect=16, MultSect=16
 CurCHS=16383/16/63, CurSects=16514064, LBA=yes, LBAsects=240121728
 IORDY=on/off, tPIO={min:120,w/IORDY:120}, tDMA={min:120,rec:120}
 PIO modes:  pio0 pio1 pio2 pio3 pio4 
 DMA modes:  mdma0 mdma1 mdma2 
 UDMA modes: udma0 udma1 udma2 udma3 udma4 *udma5 udma6 
 AdvancedPM=yes: disabled (255) WriteCache=enabled
 Drive conforms to: (null): 

 * signifies the current active mode


/dev/hdb:

 Model=ST3200826A, FwRev=3.03, SerialNo=5ND0CVYX
 Config={ HardSect NotMFM HdSw15uSec Fixed DTR10Mbs RotSpdTol.5% }
 RawCHS=16383/16/63, TrkSize=0, SectSize=0, ECCbytes=4
 BuffType=unknown, BuffSize=8192kB, MaxMultSect=16, MultSect=16
 CurCHS=65535/1/63, CurSects=4128705, LBA=yes, LBAsects=268435455
 IORDY=on/off, tPIO={min:240,w/IORDY:120}, tDMA={min:120,rec:120}
 PIO modes:  pio0 pio1 pio2 pio3 pio4 
 DMA modes:  mdma0 mdma1 mdma2 
 UDMA modes: udma0 udma1 udma2 udma3 udma4 *udma5 
 AdvancedPM=no WriteCache=enabled
 Drive conforms to: device does not report version: 

 * signifies the current active mode


-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.338 / Virus Database: 267.9.4/57 - Release Date: 22/07/2005
 

-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] I think I messed up USE flag by using -alsa as Gnome has no sound

2005-07-12 Thread Richard Watson
 At this stage I'm doing 
 # emerge --update --ask --deep --verbose --newuse --tree world 
 as setting alsa on is asking quite few items to want to recompile.

OK, stop where you are. Hands off the 'Enter' key ;-)

Hi Holly - To late ... I'd already hit enter ... When I looked at my system
afterwards I had sound ..!! Everything seems to work OK at the moment.
Obviously recompiling with USE=alsa worked. 

I am however going to work through your very informative post. I'm a
genkernel user for no other reason than I just have not made the time to
build a kernel manually (Young children play havoc with time management).

Regards and thanks, Richard


-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.323 / Virus Database: 267.8.13/47 - Release Date: 12/07/2005
 

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] I think I messed up USE flag by using -alsa as Gnome has no sound

2005-07-11 Thread Richard Watson
Hi - I've just finished compiling Gnome and have no sound whatsoever.
Looking at my USE flags I noticed I had inadvertently set -alsa as a flag.

At this stage I've changed the flag to alsa and re-run genkernel. But still
no sound. Do I have to recompile everything from scratch or have I made an
incorrect diagnosis of the problem?

As always any help would be appreciated
--
Regards, Richard
ECRM Imaging Systems




-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.323 / Virus Database: 267.8.12/46 - Release Date: 11/07/2005
 

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Totem will not start - gives /dev/dsb does not exist error

2005-07-10 Thread Richard Watson
Hi - I just installed Totem as part of a Gnome install. I'm getting an error
/dev/dsb does not exist when trying to start the programme. Totem then
quits. Can anyone offer any suggestions.
--
Many thanks, Richard


-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.323 / Virus Database: 267.8.11/45 - Release Date: 9/07/2005
 

-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] Windows XP - Gentoo - Lilo Loader Question

2005-06-28 Thread Richard Watson
Hi Holly, thanks for your reply

 Basically my question here is why exactly did you install the bootloader
 to hdb instead of hda?

I installed  to hdb as I only have 1 NTFS partition on /dev/hda and don't
want to muck around with my XP install as my family will kill me if I muck
it up ...

 Do you want to keep the Windows bootloader for some reason? 

See above ... Anyway I figured out how to use XP boot.ini and dd
if=/dev/hdb1 bs=512 count=1 of= /mnt/floppy/linux.bin to copy the lilo boot
sector. I then copy this to c:\ on /dev/hda and make sure it is referenced
in boot.ini.

I've now got a different issue (I think) ... The XP loader activates lilo on
/dev/hdb but it stalls. Basically starts to write LILO to screen but stalls
at L freezes and goes no further. I've seen this before somewhere and
thought it was disk related. So far I've tried to fix it by removing
substituting lba32 / compact / linear from /etc/lilo.conf (yes I /sbin/lilo
and recreate the linux.bin file for the XP bootloader). The drive is a 200MB
Seagate.

Anybody any ideas ...?

Thanks (as usual), Richard



-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.323 / Virus Database: 267.8.5/32 - Release Date: 27/06/2005
 


-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] Application to capture Digital Video

2005-06-15 Thread Richard Watson
Thank you for the information on Kino. Looks like what I need. Dvgrab also
looks useful for what I need.
--
Regards, Richard
 

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.323 / Virus Database: 267.7.5/18 - Release Date: 15/06/2005
 

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Application to capture Digital Video

2005-06-14 Thread Richard Watson
Hi - I have a PC with an IE13944 interface. Can anyone recommend an
application to capture and edit Digital Video from a Sony Digital camcorder?
--
Thanks, Richard


-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.323 / Virus Database: 267.7.3/15 - Release Date: 14/06/2005
 


-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] Perl Upgrade Problem

2005-06-02 Thread Richard Watson
I believe that you are mistaken about what is blocking the Perl upgrade
(no fault of your own, block messages are hard to read).

I think that the blocking (currently installed) package is
perl-core/File-Spec-0.87
not Perl 5.8.5 whatever.
So that is what I would unmerge, not Perl, then try the emerge again.

It sometimes happens that a *module* can block the upgrade of a language
because the module is installed with the upgrade or something along
those lines.

Hope this helps,
Holly

Thanks Holly. I'm obviously doing something wrong ... I can't seem to get
emerge to remove the offending package. Below is the output I'm getting. I'm
probably making an obvious mistake ... Regards Alan

# qpkg -i File-Spec-0.87
perl-core/File-Spec-0.87
Handling files and directories portably [ http://www.cpan.org/modules/by
-authors/id/K/KW/KWILLIAMS/.readme ]

# emerge -C File-Spec-0.87
--- Couldn't find File-Spec-0.87 to unmerge.
 unmerge: No packages selected for removal.

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.322 / Virus Database: 267.4.0 - Release Date: 1/06/2005
 


-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Perl Upgrade Problem

2005-06-01 Thread Richard Watson
Hi - I'm trying to upgrade portage. My existing version of perl comes up as
a block. When I tried to remove the package I received a warning about
damaging the system. Can anyone tell me if it's OK to proceed.

Output below.

Thanks a lot, Alan

==
# emerge --pretend perl

These are the packages that I would merge, in order:

Calculating dependencies ...done!
[blocks B ] perl-core/File-Spec-0.87 (from pkg dev-lang/perl-5.8.6-r4)
[ebuild U ] sys-devel/libperl-5.8.6 [5.8.5-r1]
[ebuild U ] dev-lang/perl-5.8.6-r4 [5.8.5]

pisces alan # emerge -C perl


!!! Trying to unmerge package(s) in system profile. 'dev-lang/perl'
!!! This could be damaging to your system.

 Waiting 10 seconds before starting...
 (Control-C to abort)...
Press Ctrl-C to Stop in: 10 9 8 7 6

Exiting on signal 2
# 


-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.322 / Virus Database: 267.4.0 - Release Date: 1/06/2005
 

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Configuring /etc/cups/cupsd.conf for external client printing

2005-06-01 Thread Richard Watson
This is for any newbies out there like me ... I spent days trying to figure
out how to get a Gentoo linux laptop to print to a Gentoo server through
Cups. I was consistently getting connection refused messages from the
print server. 

In order for the Cups server to accept incoming requests it is necessary to
change Listen 127.0.0.1:631 to Port 631.  The default configuration
binds the 631 port to Localhost resulting in all external port requests
being refused. After making this change then edit /etc/cups/cupsd.conf for
the security settings you want to allow for external access.

This may be obvious to most of you, but it drove me crazy until I figured it
out ...

Alan

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.322 / Virus Database: 267.4.0 - Release Date: 1/06/2005
 


-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] foomatic-configure problems

2005-05-20 Thread Richard Watson
I've been able to print to a Gentoo Samba server (running a HP510) for ages
from Windows workstations (98 and XP), and still can from Windows. 

I have an old laptop that I recently installed Gentoo and Gnome on as a
workstation. When I try and use foomatic-configure to set up cups to the
same printer it just doesn't work. I must have been through the Gentoo
Printing Guide a dozen times and still can't configure. Im obviously doing
something wrong 

The command I'm issuing is:

foomatic-configure -s cups -p HP-DeskJet_510 -c 
smb://user:[EMAIL PROTECTED]/HP510 -n dj510 -d gimp-print-ijs

The error I'm getting is:

Use of uninitialized value in substitution (s///) at 
/usr/lib/perl5/vendor_perl/5.8.5/Foomatic/DB.pm line 3427.
lpadmin: Unable to connect to server: Connection refused
Could not set up/change the queue dj510!

Can anyone help I would be really grateful ... !!  

Regards, Richard


-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.322 / Virus Database: 266.11.13 - Release Date: 19/05/2005
 


-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Trouble connecting Samba Server printer with Samba from Gentoo laptop

2005-05-15 Thread Richard Watson
Hi - I would really appreciate some help ... I'm getting an error when
trying to set-up my Gentoo laptop to print to a Gentoo Samba server with a
connected printer. If I run the command:

[EMAIL PROTECTED] foomatic-configure -s cups -p HP-DeskJet_510 -c 
smb://[EMAIL PROTECTED] -n hp510 -d gimp-print-ijs

I get the following error:

Use of uninitialized value in substitution (s///) at
/usr/lib/perl5/vendor_perl/5.8.5/Foomatic/DB.pm line 3427.
lpadmin: Unable to connect to server: Connection refused
Could not set up/change the queue hp510!

Any ideas would be really appreciated
Thanks, Richard

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.11.10 - Release Date: 13/05/2005
 

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Why won't X work anymore

2005-05-05 Thread Richard Watson
Hi - I've just done a emerge -Dup world after emerge sync(ing) a LiveCD I
bought last year. X is now complaining it won't work plus xf86cfg, XF86Setup
return file not found. Presumably I'm running a different version of X
(maybe..). Can anyone point me in the right direction to get this going.

Sorry to be a nuisance as I suspect there is an obvious answer ...  

Thanks, Richard


-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.11.5 - Release Date: 4/05/2005
 


-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Why won't X work anymore

2005-05-05 Thread Richard Watson

Hi - I've just done a emerge -Dup world after emerge sync(ing) a LiveCD I
bought last year. X is now complaining it won't work plus xf86cfg, XF86Setup
return file not found. Presumably I'm running a different version of X
(maybe..). Can anyone point me in the right direction to get this going.

Sorry to be a nuisance as I suspect there is an obvious answer ...  

Sorry ... just found

http://www.gentoo.org/doc/en/xorg-config.xml

I'll read this first ... Richard

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.11.5 - Release Date: 4/05/2005
 


-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] emerge gnome looking for automake-1.7

2005-05-02 Thread Richard Watson
did you try to use only 

emerge automake

Hi - Yes I did. Afterwards 

# ls /usr/bin/automak* 
/usr/bin/automake /usr/bin/automake-1.9

If I then rerun

# emerge gtk+ 

I get the same error. It seems I must have automake-1.7 to continue. I'm 
really stuck at the moment so any help would be really appreciated.


It's better to be thought a fool rather than open your mouth and prove it.
This quote is aimed at myself ... my system was not synced properly. 

When I:
# emerge sync
# emerge -Du world

All my problems went away. Sorry to waste everyone's time. 

Richard

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.11.2 - Release Date: 2/05/2005
 


-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] error exiting GDM on system halt

2005-05-01 Thread Richard Watson
Hi - I get error exiting GDM when shutting down my computer. I have xdm
running at default level with the display manager set to gdm. Anyone any
ideas. It's not a serious matter but it would be nice to know.  

Regards, Richard


-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.11.0 - Release Date: 29/04/2005
 

-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] emerge sync - portage: Update type slotmove not recognized. - !!! No profile directory; system mode unavailable.

2005-05-01 Thread Richard Watson
On Saturday 30 April 2005 22:18, Richard Watson wrote:
 Failed to write to mtimedb: 'module' object has no attribute
 'HIGHEST_PROTOCOL'

That would be due to running python-2.2. Although, the portage-2.0.51.19 
ebuild is meant to detect the use of python-2.2 and patch accordingly. 
Perhaps you have both 2.2 and 2.3 installed?

Well I think I got there ... Thanks for all your help. 
Richard

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.11.0 - Release Date: 29/04/2005
 

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Problem with blocked package on Gnome upgrade - [blocks B] gnome-extra/gnome-utils-2.3 (is blocking gnome-extra/gucharmap-1.4.3)

2005-05-01 Thread Richard Watson
Hi - can anyone help how I can clear this block. I'm trying to upgrade
Gnome.

# emerge -p gnome (edited)
[blocks B] gnome-extra/gnome-utils-2.3 (is blocking
gnome-extra/gucharmap-1.4.3)

I had some other blocks but all cleared with emerge -C, but not this one.
See below.

# emerge -p gnome-utils-2.3

These are the packages that I would merge, in order:

Calculating dependencies   

!!! Problem in gnome-extra/gnome-utils-2.3 dependencies.
!!! Specific key requires an operator (gnome-extra/gnome-utils-2.3) (try
adding an '=') exceptions

# emerge -C gnome-utils-2.3
--- Couldn't find gnome-utils-2.3 to unmerge.

 unmerge: No packages selected for removal.

Thanks, Richard

=== Full Output below 
# emerge -p gnome

These are the packages that I would merge, in order:

Calculating dependencies  done!
[blocks B ] gnome-extra/gnome-utils-2.3 (is blocking
gnome-extra/gucharmap-1.4.3)
[ebuild U ] dev-util/intltool-0.31.2 [0.26] 
[ebuild U ] gnome-base/gnome-mime-data-2.4.2 [2.2.1] 
[ebuild U ] x11-libs/gtk+-2.6.4-r1 [2.2.1-r1] 
[ebuild  N] gnome-base/gnome-keyring-0.4.1  
[ebuild  NS   ] gnome-base/orbit-2.12.1  
[ebuild U ] x11-misc/shared-mime-info-0.14-r2 [0.11] 
[ebuild U ] sys-devel/libperl-5.8.5 [5.8.0] 
[ebuild U ] sys-libs/gdbm-1.8.3-r1 [1.8.0-r5] 
[ebuild U ] dev-lang/perl-5.8.5-r5 [5.8.0-r12] 
[ebuild  N] dev-perl/Convert-ASN1-0.18  
[ebuild  N] dev-perl/MIME-Base64-3.05  
[ebuild  N] dev-perl/URI-1.35  
[ebuild  N] dev-perl/Net-SSLeay-1.25  
[ebuild  N] dev-perl/IO-Socket-SSL-0.96  
[ebuild  N] dev-perl/perl-ldap-0.31  
[ebuild  N] dev-perl/Digest-MD4-1.3  
[ebuild  N] dev-perl/Crypt-SmbHash-0.02  
[ebuild U ] net-fs/samba-3.0.10 [2.2.8a] 
[ebuild U ] gnome-base/gnome-vfs-2.8.4-r1 [2.2.5] 
[ebuild U ] gnome-base/libgnomeui-2.8.1-r1 [2.2.2] 
[ebuild  N] net-print/libgnomecups-0.1.14  
[ebuild U ] net-print/cups-1.1.23-r1 [1.1.19-r1] 
[ebuild U ] gnome-base/libgnomeprint-2.8.2 [2.2.1.3] 
[ebuild  N] x11-libs/gtksourceview-1.1.1  
[ebuild  N] dev-util/desktop-file-utils-0.9  
[ebuild U ] gnome-base/eel-2.8.2 [2.2.4] 
[ebuild  N] x11-themes/hicolor-icon-theme-0.5  
[ebuild U ] x11-themes/gnome-icon-theme-2.8.0 [1.0.8] 
[ebuild U ] gnome-base/libgnomeprintui-2.8.2 [2.2.1.3] 
[ebuild U ] gnome-base/libglade-2.4.2 [2.0.1] 
[ebuild U ] app-editors/gedit-2.8.3 [2.2.2] 
[ebuild U ] gnome-base/gnome-desktop-2.8.3 [2.2.2] 
[ebuild  N] x11-libs/libxklavier-1.04-r1  
[ebuild  NS   ] media-libs/gstreamer-0.8.9-r3  
[ebuild  NS   ] media-libs/gst-plugins-0.8.8  
[ebuild  N] media-plugins/gst-plugins-oss-0.8.8  
[ebuild  N] media-plugins/gst-plugins-esd-0.8.8  
[ebuild U ] x11-libs/startup-notification-0.8 [0.5] 
[ebuild  NS   ] x11-wm/metacity-2.8.13  
[ebuild U ] gnome-base/control-center-2.8.2 [2.2.2] 
[ebuild  N] media-plugins/gst-plugins-vorbis-0.8.8  
[ebuild  N] media-plugins/gst-plugins-ogg-0.8.8  
[ebuild  N] media-plugins/gst-plugins-mad-0.8.8  
[ebuild  N] x11-libs/libzvt-2.0.1-r2  
[ebuild  N] app-admin/gnomesu-0.3.1  
[ebuild  N] net-print/gnome-cups-manager-0.28  
[ebuild U ] gnome-base/libgnome-2.8.1 [2.2.3] 
[ebuild U ] gnome-base/nautilus-2.8.2-r1 [2.2.4] 
[ebuild U ] media-sound/esound-0.2.34 [0.2.29-r1] 
[ebuild U ] x11-libs/libwnck-2.8.1-r1 [2.2.2] 
[ebuild U ] gnome-base/gconf-2.8.1-r1 [2.2.1] 
[ebuild U ] gnome-base/gnome-panel-2.8.3 [2.2.2.2] 
[ebuild  N] sys-apps/apmd-3.2.1_p4  
[ebuild U ] gnome-base/libgtop-2.8.3 [2.0.4] 
[ebuild U ] dev-libs/atk-1.8.0-r1 [1.2.4] 
[ebuild U ] gnome-base/gail-1.8.2-r1 [1.2.1] 
[ebuild U ] gnome-base/gnome-applets-2.8.2 [2.2.2] 
[ebuild U ] gnome-extra/gnome2-user-docs-2.8.1 [2.0.6] 
[ebuild U ] gnome-base/gnome-session-2.8.1 [2.2.2] 
[ebuild  N] app-crypt/opencdk-0.5.5  
[ebuild  N] dev-libs/libtasn1-0.2.13  
[ebuild  N] dev-libs/lzo-1.08-r1  
[ebuild  N] net-libs/gnutls-1.2.3  
[ebuild  N] net-libs/libsoup-2.2.2  
[ebuild  N] dev-perl/PodParser-1.28  
[ebuild  N] dev-perl/digest-base-1.05  
[ebuild  N] dev-perl/Digest-MD5-2.33  
[ebuild  N] dev-perl/Digest-SHA1-2.07  
[ebuild  N] dev-perl/Digest-HMAC-1.01-r1  
[ebuild  N] dev-perl/Net-DNS-0.48  
[ebuild  N] dev-perl/DB_File-1.811  
[ebuild  N] dev-perl/HTML-Tagset-3.03-r2  
[ebuild  N] dev-perl/HTML-Parser-3.36-r1  
[ebuild  N] mail-filter/spamassassin-3.0.2-r1  
[ebuild  NS   ] gnome-extra/gal-2.2.5  
[ebuild  N] app-text/enchant-1.1.5  
[ebuild U ] app-text/gnome-spell-1.0.5-r2 [1.0.4] 
[ebuild U ] gnome-base/libbonobo-2.8.1 [2.2.3] 
[ebuild  N] gnome-extra/evolution-data-server-1.0.4  
[ebuild  NS   ] gnome-extra/libgtkhtml-3.2.5  
[ebuild U ] gnome-base/libbonoboui-2.8.1 [2.2.4] 
[ebuild U ] gnome-extra/yelp-2.6.5 [2.2.3] 
[ebuild  N] mail-client/evolution-2.0.4  
[ebuild  N] 

[gentoo-user] emerge gnome looking for automake-1.7

2005-05-01 Thread Richard Watson
Hi - emerge gnome is now giving me the following error

am-wrapper: /usr/bin/automake-1.7 is missing or not executable please try
emerging the correct version

I checked /usr/bin and automake-1.7 is not present. 1.5 and 1.9 are but
when I ...

# emerge sys-dev/automake-1.7

Calculating dependencies   

!!! Problem in sys-dev/automake-1.7 dependencies.
!!! Specific key requires an operator (sys-dev/automake-1.7) (try adding an
'=') exceptions

Any help would be really appreciated.

Thanks, Richard

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.11.0 - Release Date: 29/04/2005
 


-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] emerge gnome looking for automake-1.7

2005-05-01 Thread Richard Watson
did you try to use only 

emerge automake

Hi - Yes I did. Afterwards 

# ls /usr/bin/automak* 
/usr/bin/automake /usr/bin/automake-1.9

If I then rerun

# emerge gtk+ 

I get the same error. It seems I must have automake-1.7 to continue. I'm 
really stuck at the moment so any help would be really appreciated.

Thanks, Richard
 

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.11.0 - Release Date: 29/04/2005
 

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] emerge sync - portage: Update type slotmove not recognized. - !!! No profile directory; system mode unavailable.

2005-04-30 Thread Richard Watson
I just tried to emerge sync an install I did off a stage 3 LiveCD I bought
during 2004. I'm getting some strange results. Can anyone tell me what the
output below is telling me.  I tried running fixpackages but that did not
fix it. Now when I try and emerge any package portage keeps trying to sync
(again I think) and fails the package installation. The output I'm confused
about is:

portage: Update type slotmove not recognized.
!!! No profile directory; system mode unavailable.

I'm a bit stuck at the moment so any help would be greatly appreciated.

Regards, Richard

=== Output Below ===
Performing Global Updates: /usr/portage/profiles/updates/4Q-2004
(Could take a couple minutes if you have a lot of binary packages.)
  .='update pass'  *='binary update'  @='/var/db move'
.portage: Update type slotmove not recognized.
...portage: Update type slotmove not
recognized.
portage: Update type slotmove not recognized.


..*
 
Done.
 ** Skipping packages. Run 'fixpackages' or set it in FEATURES to fix the
tbz2's in the packages directory. Note: This can take a very long time.
portage: Update type slotmove not recognized.
!!! No profile directory; system mode unavailable.


-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.11.0 - Release Date: 29/04/2005
 


-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] emerge sync - portage: Update type slotmove not recognized. - !!! No profile directory; system mode unavailable.

2005-04-30 Thread Richard Watson
In either case, relink /etc/make.profile 
to /usr/portage/profiles/default-x86-2004.2. Then ignore the deprecation 
notice and above slotmove error until you've upgraded portage to 2.0.51.

Regards,
Jason Stubbs

Hi Jason - thanks. I did what you suggested and it sort of fixed the
problem. However when I now run (after updating portage) emerge -s portage I
get the following output. I'm interested in the message

Failed to write to mtimedb: 'module' object has no attribute
'HIGHEST_PROTOCOL'

Plus why does it keep streaming this output?

Thanks, Richard

 Start Output =
# emerge -s portage
 
 
Performing Global Updates: /usr/portage/profiles/updates/3Q-2002
(Could take a couple of minutes if you have a lot of binary packages.)
  .='update pass'  *='binary update'  @='/var/db move'
  s='/var/db SLOT move' S='binary SLOT move' p='update
/etc/portage/package.*'


Failed to write to mtimedb: 'module' object has no attribute
'HIGHEST_PROTOCOL'
 
 
Performing Global Updates: /usr/portage/profiles/updates/4Q-2002
(Could take a couple of minutes if you have a lot of binary packages.)
  .='update pass'  *='binary update'  @='/var/db move'
  s='/var/db SLOT move' S='binary SLOT move' p='update
/etc/portage/package.*'

...
Failed to write to mtimedb: 'module' object has no attribute
'HIGHEST_PROTOCOL'
 
 
Performing Global Updates: /usr/portage/profiles/updates/1Q-2003
(Could take a couple of minutes if you have a lot of binary packages.)
  .='update pass'  *='binary update'  @='/var/db move'
  s='/var/db SLOT move' S='binary SLOT move' p='update
/etc/portage/package.*'
..
Failed to write to mtimedb: 'module' object has no attribute
'HIGHEST_PROTOCOL'
 
 
Performing Global Updates: /usr/portage/profiles/updates/2Q-2003
(Could take a couple of minutes if you have a lot of binary packages.)
  .='update pass'  *='binary update'  @='/var/db move'
  s='/var/db SLOT move' S='binary SLOT move' p='update
/etc/portage/package.*'

Failed to write to mtimedb: 'module' object has no attribute
'HIGHEST_PROTOCOL'
 
 
Performing Global Updates: /usr/portage/profiles/updates/3Q-2003
(Could take a couple of minutes if you have a lot of binary packages.)
  .='update pass'  *='binary update'  @='/var/db move'
  s='/var/db SLOT move' S='binary SLOT move' p='update
/etc/portage/package.*'






..
Failed to write to mtimedb: 'module' object has no attribute
'HIGHEST_PROTOCOL'
 
 
Performing Global Updates: /usr/portage/profiles/updates/4Q-2003
(Could take a couple of minutes if you have a lot of binary packages.)
  .='update pass'  *='binary update'  @='/var/db move'
  s='/var/db SLOT move' S='binary SLOT move' p='update
/etc/portage/package.*'
.
Failed to write to mtimedb: 'module' object has no attribute
'HIGHEST_PROTOCOL'
 
 
Performing Global Updates: /usr/portage/profiles/updates/1Q-2004
(Could take a couple of minutes if you have a lot of binary packages.)
  .='update pass'  *='binary update'  @='/var/db move'
  s='/var/db SLOT move' S='binary SLOT move' p='update
/etc/portage/package.*'
.
Failed to write to mtimedb: 'module' object has no attribute
'HIGHEST_PROTOCOL'
 
 
Performing Global Updates: /usr/portage/profiles/updates/2Q-2004
(Could take a couple of minutes if you have a lot of binary packages.)
  .='update pass'  *='binary update'  @='/var/db move'
  s='/var/db SLOT move' S='binary SLOT move' p='update
/etc/portage/package.*'


Failed to write to mtimedb: 'module' object has no attribute
'HIGHEST_PROTOCOL'
 
 
Performing Global Updates: /usr/portage/profiles/updates/3Q-2004
(Could take a couple of minutes if you have a lot of binary packages.)
  .='update pass'  *='binary update'  @='/var/db move'
  s='/var/db SLOT move' S='binary SLOT move' p='update
/etc/portage/package.*'


.
Failed to write to mtimedb: 'module' object 

[gentoo-user] Laptop Internal Modem not recognised

2005-04-28 Thread Richard Watson
I don't think my internal modem on my IBM laptop is being recognised at
boot. I ran the following:

# lspci -v (edited)
00:06.0 Communication controller: Lucent Microelectronics WinModem 56k (rev
01)
Subsystem: CIS Technology Inc Lucent Win Modem
Flags: medium devsel, IRQ 11
Memory at f400 (32-bit, non-prefetchable) [size=256]
I/O ports at 10f0 [size=8]
I/O ports at 1400 [size=256]
Capabilities: [f8] Power Management version 2

# dmesg | grep IRQ
ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 14 15)
ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 *5 6 7 10 11 14 15)
ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 *11 14 15)
ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 *11 14 15)
PCI: Using ACPI for IRQ routing
uhci.c: USB UHCI at I/O 0x1060, IRQ 11

Can anyone help?  I'm trying to setup a dialup. I guess I need to set a
ttyS?. Is there a command I can run to see if the modem has already been
allocated a ttyS?.

Thanks, Richard





-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.10.4 - Release Date: 27/04/2005
 

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Samba start error

2005-04-28 Thread Richard Watson
When Samba starts I get the error lpstat: Unable to connect to server:
Connection refused. It actually doesn't seem to affect much as I can see
the shares I've created but I'm curious. Thanks, Richard
 

-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] Samba start error

2005-04-28 Thread Richard Watson
On 4/28/05, Richard Watson [EMAIL PROTECTED] wrote:
 When Samba starts I get the error lpstat: Unable to connect to server:
 Connection refused. It actually doesn't seem to affect much as I can see
 the shares I've created but I'm curious. Thanks, Richard

This has to do with the printing support of samba, your smb.conf is
probably configured to share printers as well as files, and when samba
tries to access the print spooler to find out what printers are
available it fails to connect.

Samba regards this as non-fatal as it can still provide useful
services by sharing files and directories.

You should be able to find more information about samba's printing
support in their HOWTO or FAQ documents.

Thanks ... All fixed ... Richard

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.10.4 - Release Date: 27/04/2005
 

-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] Kmail will not star KDInit Error

2005-04-26 Thread Richard Watson
[EMAIL PROTECTED] ~]$ qpkg -fp libpcreposix.so.0
dev-libs/libpcre

It looks like you need to (re)emerge libpcre

emerge -1av dev-libs/libpcre

-- 
Neil Bothwick

Hi Neil, 

Thanks for the suggestion. I'll give it a try. I always value your
suggestions.  

Regards, Richard

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.10.3 - Release Date: 25/04/2005
 

-- 
gentoo-user@gentoo.org mailing list



FW: [gentoo-user] Kmail will not star KDInit Error

2005-04-26 Thread Richard Watson

[EMAIL PROTECTED] ~]$ qpkg -fp libpcreposix.so.0
dev-libs/libpcre

It looks like you need to (re)emerge libpcre

emerge -1av dev-libs/libpcre

-- 
Neil Bothwick

Worked fine. Problem solved. Thanks, Richard

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.10.3 - Release Date: 25/04/2005
 

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] What can I safely delete from /tmp?

2005-04-26 Thread Richard Watson
I'm starting to get low on disk space and was wondering what I can safely
delete from the /tmp directory. How about everything? 

Thanks, Richard


-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.10.3 - Release Date: 25/04/2005
 

-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] Kmail will not star KDInit Error

2005-04-25 Thread Richard Watson
On Monday 25 April 2005 04:10, Richard Watson wrote:
 Hi - I've just installed a Stage 3 off my livecd. After installing KDE 
 I found Kmail will not start. It returns a KDInit error.

Hi - I've been able to establish that the error message I consistently get
is:

kmail: error while loading shared libraries: libpcreposix.so.0: cannot open
shared object file: No such file or directory

This error occurs whenever I try to run either Kmail or Konqueror. Kmail
quits and will not run whereas Konqueror runs but opens any Web page as the
html source. Anyone got any idea how I could fix this?

Many thanks, Richard 

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.10.3 - Release Date: 25/04/2005
 


-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Kmail will not star KDInit Error

2005-04-24 Thread Richard Watson
Hi - I've just installed a Stage 3 off my livecd. After installing KDE I
found Kmail will not start. It returns a KDInit error.

I made a mistake before installing KDE in that X was not configured
correctly and I'm wondering whether this has contributed to the problem. I
had not run xf86cfg before installing KDE.

Ideally I would like to uninstall KDE entirely and start again as when I
installed Gnome after running xf86cfg it runs perfectly with no errors at
all. I just can't figure out the command as although everything installed ok
with # emerge -k kde nothing uninstalls with # emerge -C kde. 

Any help would be really appreciated.

Thanks, Richard


-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.10.2 - Release Date: 21/04/2005
 


-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Fax Server that can email Tif image

2005-04-18 Thread Richard Watson
Hi - I'm interested in finding out if I can set-up my Gentoo box to replace
my fax machine. Can it then be set-up to email me the received faxes
automatically on receipt. I travel a lot for work and it would be REALLY
useful.  

Regards, Richard



-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.9.15 - Release Date: 16/04/2005
 

-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] Re: rc-update net.wlan0?

2005-04-18 Thread Richard Watson
I'm attempting to get wireless up and running. First time on
 Gentoo. I have used ndiswrapper on FC2 which this machine used to run
 so I have ESSIDs, mac addresses and keys that are known good.
 
I've emerge the wireless-tools stuff and have an edited
 /etc/conf.d/wireless file with my values in it. ndiswrapper is
 modprobed and ready to go. Now I want to start net.wlan0 but I don't
 have a file in /etc/init.d and nothing shows up in rc-update.


I've been watching this thread with interest as I'm trying to do the same
thing with a PCMCIA wireless Belkin Card. I 'm just confused about a couple
of items.

What does ndiswrapper on FC2 mean? Also what wireless tools packages are
emerged?

Ironically I installed PCMCIA card services, put in the card, edited
/etc/conf.d/net to make eth0 go up on DHCP and it sort of works. By that I
mean everything runs OK but I notice an error on boot where there is an
obvious conflict with eth0.

Regards, Richard

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.9.15 - Release Date: 16/04/2005
 


-- 
gentoo-user@gentoo.org mailing list



  1   2   >