using a many-buttoned mouse

2006-05-18 Thread j-debian_lists
I just picked up a Logitech mx610 lefty mouse, and I now have more than five
buttons (twelve to be exact). Is there a way to make use of these in Debian
under KDE?
Thanks.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



X error after dist-upgrade

2006-02-16 Thread j-debian_lists
I ran an apt-get dist-upgrade last night (amd64 testing) and now X errors on
me saying (EE) Failed to load module "nvidia" (module does not exist, 0)
But when I run lsmod it's still there. I've tried rebooting, unloading &
reloading the module, and even installing a newer kernel
(2.6.15-1-em64t-p4-smp...I was on 2.6.12), but I still can't get X to start
properly.

Any suggestions?


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: X error after dist-upgrade

2006-02-16 Thread j-debian_lists
I found the solution after a few more hours on google.
If X says the nvidia module can't be loaded, when lsmod says it is, then
nvidia-glx probably isn't installed.
For some reason apt-get dist-upgrade removed nvidia-glx. I suppose that's
what I get for running "sleep 8h; apt-get -y dist-upgrade".


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: How to start an application automatically after X is started up?

2006-02-16 Thread j-debian_lists
> Maybe you have to add the line 
> 
> exec xscreensaver &
> 
> instead of just xscreensaver
No. The exec line should be the last line in the file where you start your
wm, such as

exec /usr/bin/enlightenment

And you don't need the & on the line, since you can't background an exec'd
process.

xscreensaver &

should work. Why don't you post your .xinitrc file?
Here's mine:
xset -display :0.0 +dpms m 1 s off
xscreensaver &
xhost + local:
gkrellm&
exec /usr/bin/enlightenment


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: [SOLVED] kernel compile question..

2006-02-16 Thread j-debian_lists
> 
> How do I make the modules to install?
> 
> make modules
> make modules_install
> 
> does not do anything!
If you're using the kernel package tool, it will build a .deb kernel
(including modules). When you install that, it will install the modules.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



using lpr to print to a cups printer

2006-02-21 Thread j-debian_lists
I used cups to set up a printer via ipp and it works for kde programs and
gtk programs, but anything that uses lpr (including firefox) does not work.
How can I get lpr to use the cups printer?
Thanks.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Exim rejecting _everything_ with spamassassin

2006-03-02 Thread j-debian_lists
I'm trying to set up spamassassin under exim. When I send an email to my
server, I see something like this in the rejectlog for the message:
  X-Spam_score: 0.6
  X-Spam_score_int: 6
  X-Spam_bar: /
  X-ACL-Warn: accept

But in the mainlog, I see a reject log like this for any incoming emails:
  2006-03-01 21:45:59 1FEfhB-75-3G H=murphy.debian.org [146.82.138.6]
  F=<[EMAIL PROTECTED]>
  rejected after DATA

Why is exim automatically rejecting everything?


Here's my exim4.conf file. I put "#Spamassassin" comments near every block I
added for spamassassin.

domainlist local_domains = iceman.rabid-hamster.com : rabid-hamster.com : 
teammajors.com : localhost : mail.teammajors.com
domainlist relay_to_domains =
hostlist   relay_from_hosts = 127.0.0.1 : 192.168.1.0/16 : 192.168.2.0/16
acl_smtp_rcpt = acl_check_rcpt
#Spamassassin
#acl_smtp_data = acl_check_data
#acl_not_smtp = acl_check_data
#Spamassassin


 qualify_domain = rabid-hamster.com
never_users = root
rfc1413_hosts = 
rfc1413_query_timeout = 30s
 sender_unqualified_hosts = *.rabid-hamster.com : rabid-hamster.com
 recipient_unqualified_hosts = *.rabid-hamster.com : rabid-hamster.com
ignore_bounce_errors_after = 2d
timeout_frozen_after = 7d
begin acl
acl_check_spam:
  deny dnslists = blackholes.mail-abuse.org

acl_check_rcpt:
  accept  hosts = :
  denylocal_parts   = [EMAIL PROTECTED]/|] : ^\\.
  accept  local_parts   = postmaster
  domains   = +local_domains
  accept  domains   = +local_domains
  endpass
  message   = unknown user
  verify= recipient
  accept  domains   = +relay_to_domains
  endpass
  message   = unrouteable address
  verify= recipient
  accept  hosts = +relay_from_hosts
  accept  authenticated = *
  denymessage   = relay not permitted

#Spamassassin
acl_check_data:
  warn  spam = mail
  message = X-is-spam: over spam threshold\n\
X-Spam_flag: yes

  warn  message = X-Spam_score: $spam_score\n\
X-Spam_score_int: $spam_score_int\n\
X-Spam_bar: $spam_bar\n\
accept 
#Spamassassin

begin routers
dnslookup:
  driver = dnslookup
  domains = ! +local_domains
  transport = remote_smtp
  ignore_target_hosts = 0.0.0.0 : 127.0.0.0/8
  no_more
system_aliases:
  driver = redirect
  allow_fail
  allow_defer
  data = ${lookup{$local_part}lsearch{/etc/aliases}}
  file_transport = address_file
  pipe_transport = address_pipe

#Spamassassin
spamcheck_router:
  no_verify
  check_local_user
  # When to scan a message :
  #   -   it isn't already flagged as spam
  #   -   it isn't already scanned
  condition = "${if and { {!def:h_X-Spam_flag:} {!eq 
{$received_protocol}{spam-scanned}}} {1}{0}}"
  driver = accept
  transport = spamcheck 
#Spamassassin

userforward:
  driver = redirect
  check_local_user
  file = $home/.forward
  no_verify
  no_expn
  check_ancestor
  allow_filter
  file_transport = address_file
  pipe_transport = address_pipe
  reply_transport = address_reply
  directory_transport = address_directory
localuser:
  driver = accept
  check_local_user
  transport = local_delivery

begin transports
#Spamassassin
spamcheck:
driver = pipe
command = /usr/sbin/exim -oMr spam-scanned -bS
use_bsmtp = true
transport_filter = /usr/bin/spamc
home_directory = "/tmp"
current_directory = "/tmp"
# must use a privileged user to set $received_protocol on the way back in!
user = mail
group = mail
log_output = true
return_fail_output = true
return_path_add = false
message_prefix =
message_suffix = 
#Spamassassin

remote_smtp:
  driver = smtp
local_delivery:
  driver = appendfile
  directory = /home/${local_part}/.maildir
  delivery_date_add
  envelope_to_add
  return_path_add
address_directory:
  driver = appendfile
  maildir_format
  delivery_date_add
  envelope_to_add
  return_path_add
address_pipe:
  driver = pipe
  return_output
address_file:
  driver = appendfile
  delivery_date_add
  envelope_to_add
  return_path_add
address_reply:
  driver = autoreply
begin retry
*  *   F,2h,15m; G,16h,1h,1.5; F,4d,6h
begin rewrite
begin authenticators


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: firefox very slow since start of Feb

2006-03-02 Thread j-debian_lists
> Firefox has a serious memory leak issue, esspecially if you open more the 
> one tab. Make sure that your hard disk is not thrashing due to swap usage.
> I have to restart firefox every few hours due to this problem to cleanup 
> memory.
It's not a leak. It's a /feature/. ;)
http://developers.slashdot.org/article.pl?sid=06/02/14/2154224

But perhaps it could use an enable/disable checkbox for some (or a max cache
usage field).


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Accessing /dev/hdc under a chroot

2006-03-25 Thread j-debian_lists
I'm trying to use kaffeine under a 32-bit chroot to watch dvds on my amd64
box.
How can I give a chroot access to the /dev/hdc device? I tried a hard link
and I get an error:
  ln: creating hard link `/var/chroot/sid-ia32/dev/hdc' to `/dev/hdc': Invalid
  cross-device link


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]