Re: questions about lvm2

2009-01-21 Thread Ron Johnson

On 01/21/2009 11:30 PM, Matthew Moore wrote:

On Wednesday 21 January 2009 09:13:07 pm Ron Johnson wrote:

If I have lots of existing data in JBODs, would I create a PV and VG
on the new drive, mv all the data from the existing drives to the
new VG, then add my existing drives (while also enlarging the fs) to
the one-drive VG, thus making an uber-device?


That is exactly what I would do. Everyone warns about how cataclysmic things 
will happen because your new uber-device has the same failrate as a raid-0 
setup, but as long as you backup regularly (perhaps to another LV made from 
PV's on different disks) this isn't too much to worry about.


Backing up 2+ TB of data will require another 2x 1TB drives.  And 
*another* dual-drive external enclosure.


My wife will *not* be happy...


Also, what's a good HOWTO?  Everything I've found via Google seems
out-of-date.


When I first set up LVM I used the LVM2 howto here

http://tldp.org/HOWTO/LVM-HOWTO/

The "anatomy" and "common tasks" are really all you need.

Here are the notes I made when I set up LVM. First partition the drives you 
want to use. Make sure to set the type of the partitions as linux LVM. Next 
tell LVM2 about them with


$ pvcreate 

You can see what devices are seen by lvm2 with pvdisplay. Next make a VG

$ vgcreate...

At this point you might need to activate the volume group

$ vgchange -a y 

Next make a LV in the VG

$ lvcreate -n  -l  

You can get the number of extents available in a volume group with vgdisplay. 
There should now be a new device file at /dev// that you 
can put a filesystem on. You can only enter /dev/ as root, but the 
device-mapper framework puts links to the LV's in /dev/mapper/_name> when you it gets started at boot (this is the location most people 
point to in their fstab).


Thanks for the tips.  I'm going to save this.

Since you're already using the device-mapper, you also might want to set up 
encryption with cryptsetup.


:)

Nothing but (non-pr0n) videos...

--
Ron Johnson, Jr.
Jefferson LA  USA

"I am not surprised, for we live long and are celebrated poopers."


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: No video in iceweasel or konqueror (lenny standard install)

2009-01-21 Thread JoeHill
A. F. Cano wrote: 

> Am I the only one having trouble with youtube and any other video site?
> 
> I presume this is a flash issue.  This is a new Lenny install, not un
> upgrade of Etch.  I have done no customization to the browsers.
> Whereas I had no problem in Etch with iceape, I can't see any video
> with either konqueror or iceweasel.  Iceweasel reports that flash r9 r100
> is installed, and going to the adobe site it is recognized as such, but
> attempting to view any youtube video yields only a large circle with a
> triangle inside it.  Clicking on it results in a black screen.  In
> konqueror, there is no circle and triangle, but nothing happens until
> I click on where the video should be, then konqueror downloads it (the
> progress bar says so) but it is never displayed, no matter how many times
> I click the > (start) button.  I have tried this with a direct connection
> to the internet and (at first) via privoxy, which I've been using in Etch
> with no problem.  These are settings in the browsers.

Do you have the packaged version of Flash installed? What does this show?:

dpkg -l |grep -i flash |awk '{print $2}'

I would try removing any packaged version of flash (flashplugin-nonfree), and
install the per-user version from Adobe (ie. install as a regular user), and
see if that works.

Just download the tar.gz, extract, cd in and run the installer. Always works
for me.

> Has anyone had this problem?  Any solution?
> 
> There's something else that bugs me.  Konqueror pops up a window once
> in a while saying that it couldn't get the proxy script or something
> like that.  What exactly is it doing and why?

Not sure about that one.

-- 
J


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: How to force re-config of xorg?

2009-01-21 Thread Matthew Moore
On Wednesday 21 January 2009 10:08:54 pm s. keeling wrote:
> /etc/X11/xorg.conf_2009-01-21-21:19:20 (0) newmil [root] /root_
> dpkg-reconfigure xserver-xorg
> md5sum: /etc/X11/xorg.conf: No such file or directory
>
> As I say, I've been here before.  It's a simple problem, but I can't
> remember what the solution is/was.

The top of the xorg.conf file from the .deb says

# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

I guess the sidux xorg.conf is missing these comments?

MM




-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: questions about lvm2

2009-01-21 Thread Matthew Moore
On Wednesday 21 January 2009 09:13:07 pm Ron Johnson wrote:
> If I have lots of existing data in JBODs, would I create a PV and VG
> on the new drive, mv all the data from the existing drives to the
> new VG, then add my existing drives (while also enlarging the fs) to
> the one-drive VG, thus making an uber-device?

That is exactly what I would do. Everyone warns about how cataclysmic things 
will happen because your new uber-device has the same failrate as a raid-0 
setup, but as long as you backup regularly (perhaps to another LV made from 
PV's on different disks) this isn't too much to worry about.

> Also, what's a good HOWTO?  Everything I've found via Google seems
> out-of-date.

When I first set up LVM I used the LVM2 howto here

http://tldp.org/HOWTO/LVM-HOWTO/

The "anatomy" and "common tasks" are really all you need.

Here are the notes I made when I set up LVM. First partition the drives you 
want to use. Make sure to set the type of the partitions as linux LVM. Next 
tell LVM2 about them with

$ pvcreate 

You can see what devices are seen by lvm2 with pvdisplay. Next make a VG

$ vgcreate...

At this point you might need to activate the volume group

$ vgchange -a y 

Next make a LV in the VG

$ lvcreate -n  -l  

You can get the number of extents available in a volume group with vgdisplay. 
There should now be a new device file at /dev// that you 
can put a filesystem on. You can only enter /dev/ as root, but the 
device-mapper framework puts links to the LV's in /dev/mapper/_ when you it gets started at boot (this is the location most people 
point to in their fstab).

Since you're already using the device-mapper, you also might want to set up 
encryption with cryptsetup.

MM


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: How to force re-config of xorg?

2009-01-21 Thread s. keeling
Ken Teague :
>  s. keeling wrote:
> >   xserver-xorg postinst warning: overwriting possibly-customised
> >   configuration
> 
>  Your xorg.conf has been customized and dpkg-reconfigure doesn't want you
>  to lose those options when it attempts to reconfigure Xorg.  Back it up
>  by moving it:
>$ mv /etc/X11/xorg.conf /etc/X11/xorg.conf_`date +%F-%T`
>$ dpkg-reconfigure xserver-xorg

(234) newmil [root] /root_ mv /etc/X11/xorg.conf /etc/X11/xorg.conf_`date 
+%F-%T`
(0) newmil [root] /root_ all /etc/X11/xorg*
-rw-r--r-- 1 root root 1803 2009-01-18 22:04 /etc/X11/xorg.conf.20090118220406
-rw-r--r-- 1 root root 1154 2009-01-21 17:39 /etc/X11/xorg.conf.20090121173908
-rw-r--r-- 1 root root 1182 2009-01-21 17:40 /etc/X11/xorg.conf.20090121174015
-rw-r--r-- 1 root root 1154 2009-01-21 17:40 /etc/X11/xorg.conf.20090121174020
-rw-r--r-- 1 root root 1154 2009-01-21 17:40 /etc/X11/xorg.conf.20090121174053
-rw-r--r-- 1 root root 1182 2009-01-21 18:04 /etc/X11/xorg.conf.20090121180435
-rw-r--r-- 1 root root 1154 2009-01-21 18:04 
/etc/X11/xorg.conf_2009-01-21-21:19:20
(0) newmil [root] /root_ dpkg-reconfigure xserver-xorg
md5sum: /etc/X11/xorg.conf: No such file or directory

As I say, I've been here before.  It's a simple problem, but I can't
remember what the solution is/was.


-- 
Any technology distinguishable from magic is insufficiently advanced.
(*)http://blinkynet.net/comp/uip5.html  Linux Counter #80292
- -http://www.faqs.org/rfcs/rfc1855.htmlPlease, don't Cc: me.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Exim4 with a Goddady account

2009-01-21 Thread Nate Bargmann
I've used the esmtp package with Mutt for years but have noticed some
issues with GoDaddy's smptout.secureserver.net mail relay.  So, I
figured I'd give Exim4 a try (it's the Debian default so it should be
easy, right?  Heh, no).

Things seem to be getting tripped up somewhere and after a couple of
hours of reading the docs and trying to dig the depths of Google (with
many junk leads), I'm remembering why I punted Exim in the first place
(who's idea of a sick joke was Exim's inclusion into Debian anyway and
as the default MTA no less?).

Anyway, if there is no simple answer to getting Exim to play with my
GoDaddy SMTP server, then I shall look elswhere.  For your amusement,
here is the transaction when I attempt to force one of the frozen
messages:

exim -v -M 1LPq3H-00077w-MW
delivering 1LPq3H-00077w-MW
LOG: MAIN
  Unfrozen by forced delivery
R: smarthost for n...@n0nb.us
T: remote_smtp_smarthost for n...@n0nb.us
Transport port=25 replaced by host-specific port=80
Connecting to smtp.starfieldtech.com [64.202.165.58]:80 ... connected
  SMTP<< 220 smtpauth04.prod.mesa1.secureserver.net ESMTP
  SMTP>> EHLO merlin.n0nb.ampr.org
  SMTP<< 250-smtpauth04.prod.mesa1.secureserver.net
 250-AUTH LOGIN PLAIN
 250-8BITMIME
 250 PIPELINING
  SMTP>> MAIL FROM:<>
  SMTP>> RCPT TO:
  SMTP>> DATA
  SMTP<< 250 Sender accepted.
  SMTP<< 553 Sorry, that domain isn't in my list of allowed rcpthosts.
  SMTP<< 503 You must send RCPT TO: first
  SMTP>> QUIT
LOG: MAIN
  ** n...@n0nb.us F=<> P=<> R=smarthost T=remote_smtp_smarthost: SMTP error 
from remote mail server after RCPT TO:: host 
smtp.starfieldtech.com [64.202.165.58]: 553 Sorry, that domain isn't in my list 
of allowed rcpthosts.
LOG: MAIN
  Frozen (delivery error message)

- Nate >>

-- 

"The optimist proclaims that we live in the best of all
possible worlds.  The pessimist fears this is true."

Ham radio, Linux, bikes, and more: http://n0nb.us/index.html


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: questions about lvm2

2009-01-21 Thread Ron Johnson

On 01/21/2009 09:59 PM, Matthew Moore wrote:

On Wednesday 21 January 2009 08:43:02 pm Ron Johnson wrote:

1. Since sdX device names are non-deterministic, can I use it with
devices specified as UUIDs?  Or does lvm handle that for me on boot?


lvm stores volume identifiers in a header at the start of the physical 
volumes, so the device names/uuids don't matter.



2. Why should I partitioning this drive into smaller chunks if
they're all going to go into the same volume?


It doesn't make sense to partition the drive into multiple smaller partitions 
if they are all going onto the same volume group. If you want multiple volume 
groups then you will have to bust the drive up into multiple partitions. If 
you only want one volume group, then you can even get away with having no 
partitions on the drive (though the lvm docs recommend against this for 
compatibility with other lvm implementations).


Thanks.

If I have lots of existing data in JBODs, would I create a PV and VG 
on the new drive, mv all the data from the existing drives to the 
new VG, then add my existing drives (while also enlarging the fs) to 
the one-drive VG, thus making an uber-device?


Also, what's a good HOWTO?  Everything I've found via Google seems 
out-of-date.


--
Ron Johnson, Jr.
Jefferson LA  USA

"I am not surprised, for we live long and are celebrated poopers."


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: questions about lvm2

2009-01-21 Thread Matthew Moore
On Wednesday 21 January 2009 08:43:02 pm Ron Johnson wrote:
> 1. Since sdX device names are non-deterministic, can I use it with
> devices specified as UUIDs?  Or does lvm handle that for me on boot?

lvm stores volume identifiers in a header at the start of the physical 
volumes, so the device names/uuids don't matter.

> 2. Why should I partitioning this drive into smaller chunks if
> they're all going to go into the same volume?

It doesn't make sense to partition the drive into multiple smaller partitions 
if they are all going onto the same volume group. If you want multiple volume 
groups then you will have to bust the drive up into multiple partitions. If 
you only want one volume group, then you can even get away with having no 
partitions on the drive (though the lvm docs recommend against this for 
compatibility with other lvm implementations).

MM


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



No video in iceweasel or konqueror (lenny standard install)

2009-01-21 Thread A. F. Cano
Am I the only one having trouble with youtube and any other video site?

I presume this is a flash issue.  This is a new Lenny install, not un
upgrade of Etch.  I have done no customization to the browsers.
Whereas I had no problem in Etch with iceape, I can't see any video
with either konqueror or iceweasel.  Iceweasel reports that flash r9 r100
is installed, and going to the adobe site it is recognized as such, but
attempting to view any youtube video yields only a large circle with a
triangle inside it.  Clicking on it results in a black screen.  In
konqueror, there is no circle and triangle, but nothing happens until
I click on where the video should be, then konqueror downloads it (the
progress bar says so) but it is never displayed, no matter how many times
I click the > (start) button.  I have tried this with a direct connection
to the internet and (at first) via privoxy, which I've been using in Etch
with no problem.  These are settings in the browsers.

Has anyone had this problem?  Any solution?

There's something else that bugs me.  Konqueror pops up a window once
in a while saying that it couldn't get the proxy script or something
like that.  What exactly is it doing and why?

Thanks.

A.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: Can't start X after upgrade to Lenny

2009-01-21 Thread Celejar
On Wed, 21 Jan 2009 19:27:05 +0100
Florian Kulzer  wrote:

...

> You can use the web interface of the BTS to send a follow-up message,

I know Florian knows this, but just FTR: this can also be accomplished
by simply sending mail to nnn...@bugs.debian.org

Celejar
--
mailmin.sourceforge.net - remote access via secure (OpenPGP) email
ssuds.sourceforge.net - A Simple Sudoku Solver and Generator


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Reality of SATA hotplug?

2009-01-21 Thread Ron Johnson

Hi,

If a loose SATA cable falls off of my DVD drive while the power is 
on, is it ok for me to just slide it back in?  Or should I power the 
machine down?


If SATA hotplug *does* work "on the desktop", does that also mean 
that I could plug a new hard drive in while the system is running?


--
Ron Johnson, Jr.
Jefferson LA  USA

"I am not surprised, for we live long and are celebrated poopers."


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




questions about lvm2

2009-01-21 Thread Ron Johnson

Hi,

I'm about to get a 1TB drive which I will use as the basis of an lvm
set.

1. Since sdX device names are non-deterministic, can I use it with
devices specified as UUIDs?  Or does lvm handle that for me on boot?

2. Why should I partitioning this drive into smaller chunks if 
they're all going to go into the same volume?


--
Ron Johnson, Jr.
Jefferson LA  USA

"I am not surprised, for we live long and are celebrated poopers."


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: Can't start X after upgrade to Lenny

2009-01-21 Thread Marc Shapiro

Florian Kulzer wrote:

On Tue, Jan 20, 2009 at 20:21:19 -0800, Marc Shapiro wrote:
  

Florian Kulzer wrote:


Maybe this is related:

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=474504
  
  
This seems to be exactly the problem that I am having.  If this problem  
has been around since at least April of last year and had not been  
resolved by August, you would think that there would be more emphasis on  
trying to resolve it.



  
You can use the web interface of the BTS to send a follow-up message,

stating that you have the problem, too. Ask if there is any possibility
that this can be addressed before the release of Lenny and what you can
do to help. The maintainers will let know what kind of information you
can contribute if someone starts working on the problem.

You can also check out http://bugs.freedesktop.org to see if anything
relevant has happened upstream since last May.
  

I have not, yet posted a bug report

Yon can try if Xorg from experimental and/or kernel 2.6.28 improve the
situation. (Did you try to put additional options into xorg.conf as I
suggested earlier?)
  
I have tried all options, one at a time, that seem to apply to my 
chipset.  I also tried the VESA driver with its options.  Unfortunately, 
none of this produced any change in behavior.

I would probably be tempted to buy an nvidia or ati card and dump the
sis driver.
  
It worked fine in Etch and I really don't want to spend money on a new 
card if I don't have to.


--
Marc Shapiro
mshapiro...@yahoo.com




--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: Thin clients

2009-01-21 Thread Fred Zinsli
Well I have been working on this for days now and I can't seem to get past
an error from the client saying pxelinuz.0 isn't a valid image.

At the fedup and grumpy stage now, but don't want to let it beat me.

I have googled and tried about everything I could find to get this to
work. So if anyone has a working howto for etch on this subject I would
like to get a copy.

I just don't have enough knowledge about linux so I do need to be spoon feed.

Regards

Fred

-Original Message-
From: Emanoil Kotsev 
To: debian-user@lists.debian.org
Date: Wed, 21 Jan 2009 20:18:30 +0100
Subject: Re: Thin clients

> Fred Zinsli wrote:
> 
> > The DHCP server on my network does have a "Network Boot Enable"
> option,
> > but when I turn it on the client still doesn't receive an IP from the
> > server.
> > 
> > Maybe I am missing something. I will go and find out from the
> suppliers of
> > the DHCP server I am using on our network.
> > 
> > Regards
> > 
> > Fred
> > 
> 
> Try the manual page or some howto, you'll find out that you need lines
> like
> this either in the global option or in the host configuration part for
> a
> specific host or group of hosts
> 
> 
>filename "pxelinux.0";
> #tftp boot server
>next-server 192.168.40.40;
>option
> root-path
> "192.168.40.40:/opt/remote/nfsroot,retry=1,rsize=8192,wsize=8192";
> 
> 
> I really preffer using flash drives lately as they became really cheap,
> about 2GB cost 15EUR or so and a customized deb system is about 100MB
> ;-)
> and may be less
> 
> regards
> 
> 
> -- 
> To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
> with a subject of "unsubscribe". Trouble? Contact
> listmas...@lists.debian.org
> 



-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: downloading hotmail emails

2009-01-21 Thread Andrew McGlashan

Hi,

Andrew McGlashan wrote:

I rarely use the hotmail account anyway, but using pop3 to it might
help a bit.


At fist I downloaded without "leave on server" checked and all emails
were moved to the deleted items folder.  You can move them back to
the inbox if you like.

Kind Regards
AndrewM

Andrew McGlashan
Broadband Solutions now including VoIP


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: How to force re-config of xorg?

2009-01-21 Thread Ken Teague
s. keeling wrote:
>   xserver-xorg postinst warning: overwriting possibly-customised
>   configuration

Your xorg.conf has been customized and dpkg-reconfigure doesn't want you
to lose those options when it attempts to reconfigure Xorg.  Back it up
by moving it:
  $ mv /etc/X11/xorg.conf /etc/X11/xorg.conf_`date +%F-%T`
  $ dpkg-reconfigure xserver-xorg


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: RT2560F wireless

2009-01-21 Thread Celejar
On Wed, 21 Jan 2009 20:55:51 +
Kevin Philp  wrote:

> I have been using a computer with a wireless card with an RT2560F chip 
> that works with network manager on Ubuntu Intrepid but does not work 
> under Debian Lenny. I am connecting to a wireless router with WPA-PSK.

http://catb.org/~esr/faqs/smart-questions.html

You need to tell us exactly what and how it doesn't work.

Celejar
--
mailmin.sourceforge.net - remote access via secure (OpenPGP) email
ssuds.sourceforge.net - A Simple Sudoku Solver and Generator


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: downloading hotmail emails

2009-01-21 Thread Andrew McGlashan

Hi,

thveillon.debian wrote:

Strange for smtp though, it works here on port 587 with ssl. Actually
it's the same port I use with smtp.gmail.com too.


Yes, it is strange.  I use port 465 and 995 with SSL on my own mail
server.

My Avast setup uses stunnel and everything works perfectly with my
server and incoming hotmail (via pop3.live.com) ... but outgoing, for
some odd reason won't work through avast/stunnel.

I rarely use the hotmail account anyway, but using pop3 to it might
help a bit.

Kind Regards
AndrewM

Andrew McGlashan
Broadband Solutions now including VoIP


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: wireless gui configuration utility

2009-01-21 Thread Emanoil Kotsev
> 
> Ah...that might be the problem, i'll check more on that
> 
> so far
> 
> eden:~# iwconfig eth1 txpower auto
> Error for wireless request "Set Tx Power" (8B26) :
> SET failed on device eth1 ; Invalid argument.
> 
>>
>>

'r u root (sudo) ?



-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



How to force re-config of xorg?

2009-01-21 Thread s. keeling
I've run into this before, but can't find the answer again (it's
buried by *buntu forum cruft).  With "dpkg-reconfigure xserver-xorg" I
get:

  xserver-xorg postinst warning: overwriting possibly-customised
  configuration

And it just kicks me out.  How to over-ride that?  I promise to write
it down this time.  This is Sidux, AMD64.


-- 
Any technology distinguishable from magic is insufficiently advanced.
(*)http://blinkynet.net/comp/uip5.html  Linux Counter #80292
- -http://www.faqs.org/rfcs/rfc1855.htmlPlease, don't Cc: me.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



No sound on HP dv4

2009-01-21 Thread Nigel Henry
Repost of info posted on the /dev/sndstat thread by s. keeling.

>I'm just adding my similar situation.  It's an HP dv4 AMD Turion dual
>core.  I've not heard a peep of sound from it yet.  Linux newmil
>2.6.28-0.slh.11-sidux-amd64 #1 SMP PREEMPT Thu Jan 15 22:48:01 UTC
>2009 x86_64 GNU/Linux.  Kernel is stock Sidux.

> >> $ lspci | grep Audio

>00:14.2 Audio device: ATI Technologies Inc SBx00 Azalia (Intel HDA)
>01:05.1 Audio device: ATI Technologies Inc RS780 Azalia controller

>Why are there two?

The first is for your actual soundcard, and the the second appears to be a 
sound component on the graphics card for HDMI. Both from a bit of googling 
appear to use the snd-hda-intel driver, but as your lsmod below shows, the 
snd-hda-intel module isn't loaded. Please go to the bottom of the post for 
some suggestions, which may, or may not work, but are worth trying.

> >> $ lsmod | grep snd

>snd_seq_oss37760  0
>snd_seq_midi   11648  0
>snd_rawmidi29568  1 snd_seq_midi
>snd_seq_midi_event 12544  2 snd_seq_oss,snd_seq_midi
>snd_seq62048  6 
snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_seq_midi_event
>snd_timer  28304  1 snd_seq
>snd_seq_device 12180  5 
snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_rawmidi,snd_seq
>snd73800  5 
snd_seq_oss,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
>soundcore  12960  1 snd

> >> # cat /dev/sndstat

>Sound Driver:3.8.1a-980706 (ALSA v1.0.18rc3 emulation code)
>Kernel: Linux newmil 2.6.28-0.slh.11-sidux-amd64 #1 SMP PREEMPT Thu Jan 15 
22:48:01 UTC 2009 x86_64
>Config options: 0

>Installed drivers:
>Type 10: ALSA emulation

>Card config:
>--- no soundcards ---

>Audio devices: NOT ENABLED IN CONFIG

>Synth devices: NOT ENABLED IN CONFIG

>Midi devices: NOT ENABLED IN CONFIG

>Timers:
>31: system timer

>Mixers: NOT ENABLED IN CONFIG

>  $ lspci -v -s00:06.1

>(0) newmil [root] /root_ lspci -v -s00:14.2
>00:14.2 Audio device: ATI Technologies Inc SBx00 Azalia (Intel HDA)
>Subsystem: Hewlett-Packard Company Device 30fb
>Flags: slow devsel, IRQ 16
>Memory at d250 (64-bit, non-prefetchable) [size=16K]
>Capabilities: [50] Power Management version 2
>Kernel modules: snd-hda-intel

>(0) newmil [root] /root_ lspci -v -s01:05.1
>01:05.1 Audio device: ATI Technologies Inc RS780 Azalia controller
>Subsystem: ATI Technologies Inc RS780 Azalia controller
>Flags: fast devsel, IRQ 19
>Memory at d241 (32-bit, non-prefetchable) [size=16K]
>Capabilities: [50] Power Management version 3
>Capabilities: [a0] Message Signalled Interrupts: Mask- 64bit+ 
Queue=0/0 Enable-
>Kernel modules: snd-hda-intel

First try loading the snd-hda-intel module as root. See below.
modprobe snd-hda-intel

If you are just returned to the prompt, then run, lsmod | grep snd again, and 
see if the snd-hda-intel module is listed. If modprobe complains that it 
can't load the module, it could possibly be due to the fact that both the 
soundcard, and the sound component in the graphics card for HDMI, are both 
using snd-hda-intel, and there is some sort of conflict.

if the modprobe snd-hda-intel does result in the module showing up in lsmod's 
output, add snd-hda-intel to /etc/modules. Reboot, and run lsmod | grep snd, 
and see if the snd-hda-intel module is there. Then run the commands below.

cat /proc/asound/cards
grep ^Codec /proc/asound/card?/codec*

I don't expect much success from my suggestions above, so let's try this. 
Having removed the line for snd-hda-intel from /etc/modules, add this line 
to /etc/modprobe.d/alsa-base. See below.

options snd-hda-intel probe_mask=1

This option will select only the first codec (the one for your soundcard), and 
ignore the one for the RS780 Azalia controller one, which also uses 
snd-hda-intel, and may be causing a problem.

Having set the above options line, reboot, and run the following commands 
again.

lsmod | grep snd
cat /proc/asound/cards
grep ^Codec /asound/card?/codec*

I  doubt whether any of this is going to get the sounds working, but worth a 
try.

Please post back all the output from the commands.

Is the HP dv4 a new machine? It's possible it's not supported yet with alsa.

All the best.

Nigel.






-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: Yet another misbehaving Sound System - HP Pavilion dv4 [long]

2009-01-21 Thread s. keeling
s. keeling :
>  Sorry for muddying up the other thread with my situation.  I thought
>  we were trying to learn more about the hardware.  This is Sidux on
>  AMD64 Turion dual core, stock Sidux kernel.  I've heard no sound from

FWIW, I just successfully tested using headphones, so the sound
delivery programs work.  Just not audio.


-- 
Any technology distinguishable from magic is insufficiently advanced.
(*)http://blinkynet.net/comp/uip5.html  Linux Counter #80292
- -http://www.faqs.org/rfcs/rfc1855.htmlPlease, don't Cc: me.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: downloading hotmail emails

2009-01-21 Thread thveillon.debian
Andrew McGlashan wrote :
> thveillon.debian wrote:
>> hotmail is now using pop3 too, details are :
>>
>> pop.live.com (995 ssl)
> 
> Okay, good tip, thanks!
> 
> BUT, I had to use pop3.live.com as pop.live.com wouldn't resolve IP.
> 
>> smtp.live.com (587 ssl)
> 
> I had weirdness with SMTP, I couldn't get it to work through Avast, but
> I could get it to work directly with my email client AND I had to use
> port 25 with SSL, not port 587 ?
> 
> Kind Regards
> AndrewM
> 
> Andrew McGlashan
> Broadband Solutions now including VoIP
> 
> 

Sorry, my mistake, it's definitely pop3.live.com :-(

Strange for smtp though, it works here on port 587 with ssl. Actually
it's the same port I use with smtp.gmail.com too.

Tom


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: How to see the output of a custom init script on Lenny?

2009-01-21 Thread Jeff D
On Tue, 20 Jan 2009, Sander Marechal wrote:

> Hello,
>
> I have written a simplistic custom init script that makes a backup of my
> entire system using `rsync -vv`. I have symlinked this script as
> /etc/rc0.d/K00backup and /etc/rc6.d/K00backup so that the backup occurs
> whenever I reboot or shut down.
>
> When I was using Etch I would see the output of rsync when I shut down
> my system. Now with Lenny I don;t see the output anymore. From what
> Google tells me this is because under Lenny the init scripts should use
> the lsb functions to output and that all normal output is now hidden.
>
> Making a backup of my system takes some time, hence my use of -vv and
> --progress on rsync so I can see how far it is. I would like to see that
> output when I shut down my system. There does not appear to be an lsb
> init function that I can simply pipe the output of rsync to.
>
> How do I make the rsync output appear when I shut down my system?
>
> Thanks in advance,
>
>

I just tested this out on my Lenny system and it appears to work:

#!/bin/sh

. /lib/lsb/init-functions

DESC="Backup Script"
PATH=/bin:/usr/bin:/sbin:/usr/sbin

stop () {
log_daemon_msg "Starting Backup sync"
log_progress_msg ; rsync -avr --progress /src/ /dest/
log_action_end_msg 0
}
case "$1" in
stop)
log_daemon_msg "Running $DESC" "$NAME"
if stop ; then
log_end_msg $?
else
log_end_msg $?
fi
;;
*)
echo "Usage: /etc/init.d/$NAME {stop}"
exit 3
;;

esac

exit 0

Upon shutdown or reboot, I see the output of rsync .. for more info on
the functions read through /lib/lsb/init-functions

hth
Jeff
-- 
8 out of 10 Owners who Expressed a Preference said Their Cats Preferred Techno.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: aptitude freezes after install

2009-01-21 Thread microwaverich
I guess we're done, Daniel.  I don't know why, but it ain't broke 
anymore, so we can't fix it  :-)


I'll try something else if you want.  I've learned quite a bit during 
this exercise and enjoyed it all.


Thanks.

 Rich


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: wireless gui configuration utility

2009-01-21 Thread Umarzuki Mochlis
2009/1/22 Emanoil Kotsev 

> Umarzuki Mochlis wrote:
>
> >
> > eden:~# iwconfig
> > lono wireless extensions.
> >
> > eth0  no wireless extensions.
> >
> > eth1  IEEE 802.11bg  ESSID:""  Nickname:""
> >   Mode:Managed  Frequency:2.412 GHz  Access Point: Not-Associated
> >   Bit Rate:54 Mb/s   Tx-Power:off
> >   Retry min limit:7   RTS thr:off   Fragment thr:off
> >   Power Managementmode:All packets received
> >   Link Quality=5/5  Signal level=0 dBm  Noise level=0 dBm
> >   Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
> >   Tx excessive retries:0  Invalid misc:0   Missed beacon:0
> >
> > ppp0  no wireless extensions.
> >
>
> I was just wondering why your tx-power is set Off
>
> with this wireless won't ever work ... I don't know if it's related to the
> original question though.
>
> regards
>

Ah...that might be the problem, i'll check more on that

so far

eden:~# iwconfig eth1 txpower auto
Error for wireless request "Set Tx Power" (8B26) :
SET failed on device eth1 ; Invalid argument.

>
>
> --
> To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
> with a subject of "unsubscribe". Trouble? Contact
> listmas...@lists.debian.org
>
>


-- 
Regards,

Umarzuki Mochlis
http://gameornot.net


Re: downloading hotmail emails

2009-01-21 Thread Andrew McGlashan

thveillon.debian wrote:

hotmail is now using pop3 too, details are :

pop.live.com (995 ssl)


Okay, good tip, thanks!

BUT, I had to use pop3.live.com as pop.live.com wouldn't resolve IP.


smtp.live.com (587 ssl)


I had weirdness with SMTP, I couldn't get it to work through Avast, but I 
could get it to work directly with my email client AND I had to use port 25 
with SSL, not port 587 ?


Kind Regards
AndrewM

Andrew McGlashan
Broadband Solutions now including VoIP


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: How to see the output of a custom init script on Lenny?

2009-01-21 Thread Andrew McGlashan

Hi,

Sander Marechal wrote:

Is there nobody who knows how to show the stdout ouput of an init
script during shutdown?


Could you perhaps "tee" the output to /dev/console or /dev/tty ?

Kind Regards
AndrewM

Andrew McGlashan
Broadband Solutions now including VoIP


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Yet another misbehaving Sound System - HP Pavilion dv4 [long]

2009-01-21 Thread s. keeling
Sorry for muddying up the other thread with my situation.  I thought
we were trying to learn more about the hardware.  This is Sidux on
AMD64 Turion dual core, stock Sidux kernel.  I've heard no sound from
it except when I accidentally booted into Win*.  alsaconf runs without
error, alsamixer says the levels are reasonable, I've tried fiddling
with "model=blah" in /etc/modprobe.d/sound, to no effect.


(0) newmil /home/keeling_ cat /proc/asound/version
Advanced Linux Sound Architecture Driver Version 1.0.18rc3.


This part has me suspicious that alsa's just picking up the wrong
device.  Why are there two:


 0 snd_hda_intel
 1 snd_hda_intel
 0 [SB ]: HDA-Intel - HDA ATI SB
  HDA ATI SB at 0xd250 irq 16
 1 [HDMI   ]: HDA-Intel - HDA ATI HDMI
  HDA ATI HDMI at 0xd241 irq 19



(0) newmil [root] /root_ head -n 1 /proc/asound/card0/codec*
Codec: IDT 92HD71B7X

(0) newmil [root] /root_ head -n 1 /proc/asound/card1/codec*
Codec: ATI ATI RS690/780 HDMI


I wonder if it's just a matter of blacklisting the first one?

More data:


(0) newmil /home/keeling_ cat /etc/modprobe.d/sound
alias snd-card-0 snd-hda-intel
options snd-hda-intel index=0



(0) newmil [root] /root_ head -n 1 /proc/asound/card0/codec*
Codec: IDT 92HD71B7X

(0) newmil [root] /root_ head -n 1 /proc/asound/card1/codec*
Codec: ATI ATI RS690/780 HDMI



cat /dev/sndstat

Sound Driver:3.8.1a-980706 (ALSA v1.0.18rc3 emulation code)
Kernel: Linux newmil 2.6.28-0.slh.11-sidux-amd64 #1 SMP PREEMPT Thu Jan 15 
22:48:01 UTC 2009 x86_64
Config options: 0

Installed drivers:
Type 10: ALSA emulation

Card config:
HDA ATI SB at 0xd250 irq 16
HDA ATI HDMI at 0xd241 irq 19

Audio devices:
0: STAC92xx Analog (DUPLEX)

Synth devices: NOT ENABLED IN CONFIG

Midi devices: NOT ENABLED IN CONFIG

Timers:
31: system timer

Mixers:
0: IDT 92HD71B7X
1: ATI ATI RS690/780 HDMI



lsmod | grep snd | sort

snd73800  12 
snd_hda_intel,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_hwdep,snd_seq_oss,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
snd_hda_intel 532020  1
snd_hwdep  12936  1 snd_hda_intel
snd_mixer_oss  21248  1 snd_pcm_oss
snd_page_alloc 14736  2 snd_hda_intel,snd_pcm
snd_pcm90888  2 snd_hda_intel,snd_pcm_oss
snd_pcm_oss47616  0
snd_rawmidi29568  1 snd_seq_midi
snd_seq62048  6 
snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_seq_midi_event
snd_seq_device 12180  5 
snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_rawmidi,snd_seq
snd_seq_dummy   7428  0
snd_seq_midi   11648  0
snd_seq_midi_event 12544  2 snd_seq_oss,snd_seq_midi
snd_seq_oss37760  0
snd_timer  28304  2 snd_pcm,snd_seq
soundcore  12960  1 snd



snd_hda_intel: Unknown parameter `snd_seq'
HDA Intel :00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
input: HDA Digital PCBeep as /devices/pci:00/:00:14.2/input/input12
HDA Intel :01:05.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
HDA Intel :01:05.1: setting latency timer to 64
hda-intel: Invalid position buffer, using LPIB read method instead.



00:14.2 Audio device: ATI Technologies Inc SBx00 Azalia (Intel HDA)
01:05.1 Audio device: ATI Technologies Inc RS780 Azalia controller



(0) newmil [root] /root_ lspci -v -s00:14.2
00:14.2 Audio device: ATI Technologies Inc SBx00 Azalia (Intel HDA)
Subsystem: Hewlett-Packard Company Device 30fb
Flags: bus master, slow devsel, latency 64, IRQ 16
Memory at d250 (64-bit, non-prefetchable) [size=16K]
Capabilities: [50] Power Management version 2
Kernel driver in use: HDA Intel
Kernel modules: snd-hda-intel

(0) newmil [root] /root_ lspci -v -s01:05.1
01:05.1 Audio device: ATI Technologies Inc RS780 Azalia controller
Subsystem: ATI Technologies Inc RS780 Azalia controller
Flags: bus master, fast devsel, latency 0, IRQ 19
Memory at d241 (32-bit, non-prefetchable) [size=16K]
Capabilities: [

Re: Heavy disk io spasms (2.6.28, ext4) (solved)

2009-01-21 Thread Kelly Clowers
On Mon, Jan 19, 2009 at 18:29, Kelly Clowers  wrote:
>
> I have searching for more info, and I saw some suggestions
> that atime or swappiness could be involved. So I turned on
> noatime for some partitions. So far everything has been fine,
> but it hasn't really been long enough to tell for sure. I did
> have noatime on my old computer.


I haven't had this problem since I set noatime, so I guess that
was it. It seems like the default setting shouldn't cause a problem
like that, but at least is is fixed now.


Cheers,
Kelly Clowers


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: RT2560F wireless

2009-01-21 Thread Michael Shuler
On 01/21/2009 02:55 PM, Kevin Philp wrote:
> I have been using a computer with a wireless card with an RT2560F chip
> that works with network manager on Ubuntu Intrepid but does not work
> under Debian Lenny. I am connecting to a wireless router with WPA-PSK.
> 
> Does anyone have experience of this chip and how to get it working under
> Lenny?

I do not have this chipset, but an 'apt-cache search ralink' shows some
interesting packages, and the upstream docs look promising.

http://rt2x00.serialmonkey.com/wiki/index.php/Debian_rt2500_Howto

-- 
Kind Regards,
Michael


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: How to see the output of a custom init script on Lenny?

2009-01-21 Thread Ken Irving
On Wed, Jan 21, 2009 at 10:21:55PM +0100, Sander Marechal wrote:
> Is there nobody who knows how to show the stdout ouput of an init script
> during shutdown?

My guess is that the answer is "no".

Output should just show up on the console after you initiate shutdown
from there.  Until the console itself goes away I don't see why output
from an init script would be handled differently from any other script.
Or perhaps you're assuming (but not stating) some other factors that
might have bearing on your question.   If you're not able to see it
on the console, and given that it's a custom script, perhaps you could
write output to some non-volatile location and look at it later.

Ken

-- 
Ken Irving


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: sound card not detected

2009-01-21 Thread Tamas Hegedus



i A linux-image-2.6.26-1-686- Linux
2.6.26 image on PPro/Celeron/PII/PIII/P4

I rebooted with a 486 kernel.
Removed and installed the linux-image-2.6.26-686
I rebooted with the 686 kernel.

alsa started AND:

lsmod | grep snd
snd_intel8x0   26268  0
snd_ac97_codec 88484  1 snd_intel8x0
ac97_bus1728  1 snd_ac97_codec
snd_pcm62596  2 snd_intel8x0,snd_ac97_codec
snd_seq41456  0
snd_timer  17800  2 snd_pcm,snd_seq
snd_seq_device  6380  1 snd_seq
snd45604  6 
snd_intel8x0,snd_ac97_codec,snd_pcm,snd_seq,snd_timer,snd_seq_device

soundcore   6368  1 snd
snd_page_alloc  7816  2 snd_intel8x0,snd_pcm


BUT I still do not have sound.

0. alsamixer checked
1. aplay example.wav gives only noise
2. In the gnome environment: "No volume control GStreamer plugins and/or 
devices found."


I have no idea what to troubleshoot. After that I may be able to find 
out how to troubleshoot.


???

Thanks,
tamas


--
Tamas Hegedus, PhD  | phone: (1) 919-966 0329
UNC - Biochem & Biophys | fax:   (1) 919-966 5178
6107 Thurston-Bowles Bldg   | mailto:hege...@med.unc.edu
Chapel Hill, NC, 27599-7248 | http://biohegedus.org


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: How to see the output of a custom init script on Lenny?

2009-01-21 Thread Sander Marechal
Is there nobody who knows how to show the stdout ouput of an init script
during shutdown?

Kind regards,

-- 
Sander Marechal


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



RT2560F wireless

2009-01-21 Thread Kevin Philp
I have been using a computer with a wireless card with an RT2560F chip 
that works with network manager on Ubuntu Intrepid but does not work 
under Debian Lenny. I am connecting to a wireless router with WPA-PSK.


Does anyone have experience of this chip and how to get it working under 
Lenny?



Thanks

Kevin.


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: using different root option in alternate kernel option in grub

2009-01-21 Thread Adrian Levi
2009/1/22 Micha Feigin :
> I'm trying the setup my grub menu.lst to automatically setup two alternate
> kernel options
> 1. using nfsroot so it needs to have root=/dev/nfs
> 2. boot localy so it needs to have root=/dev/sda1
>
> so I tried to set
> KOPT=ro
> defoptions=root=/dev/nfs
> altoptions=root=/dev/sda1

>From a quick google, altoptions looks to support adding options to the
kopt line.

What I'd do is create a grub boot stanza and try point it to the
vmlinuz symlinks in /
This should pickup the new kernel each time.

Adrian

-- 
24x7x365 != 24x7x52 Stupid or bad maths?
 hm. I've lost a machine.. literally _lost_. it responds to
ping, it works completely, I just can't figure out where in my
apartment it is.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: wireless gui configuration utility

2009-01-21 Thread Boyd Stephen Smith Jr.
On Wednesday 2009 January 21 13:46:04 Ismael Scalcon wrote:
>I use network manager, but wanted to know if there's an manager with
>GUI that allows me to configure IPs for each wireless connection.
>Using network manager, I need to change my IP address manually each
>time I connect in a wireless network that don't give away DHCP

I use KNetworkManager and when configuring a new connection, it allows you to 
provide static IP information, the the case the network does not use DHCP.  
I'm not sure if it shares this information with the rest of the 
NetworkManager infrastructure.  You can also reconfigure existing connections 
to use static IP information by using the Edit Connections dialog.
-- 
Boyd Stephen Smith Jr. ,= ,-_-. =. 
b...@iguanasuicide.net ((_/)o o(\_))
ICQ: 514984 YM/AIM: DaTwinkDaddy   `-'(. .)`-' 
http://iguanasuicide.net/  \_/ 


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


Re: reinserting USB plug via software

2009-01-21 Thread Tzafrir Cohen
On Wed, Jan 21, 2009 at 01:40:04PM -0600, Stackpole, Chris wrote:
> > From: Henrique de Moraes Holschuh [mailto:h...@debian.org]
> > Sent: Tuesday, January 20, 2009 12:19 PM
> > Subject: Re: reinserting USB plug via software

> > rmmod uhci-hcd; rmmod ehci-hcd; sleep 1; modprobe ehci-hcd; \
> > modprobe uhci-hcd
> > 
> > (you may also need ohci-hcd, but the above is the most common setup)
> > 
> > If you do something stupid with that, like running it with usb-storage
> > filesystems mounted, and the kernel happens to let you do it, you may
> > suffer data-loss.  You have been warned.   It will bring down 
> > (logically) all USB buses, then bring them up again.
> 
> Wait. It will bring down _all_ USB buses? Hrm. I think I will just stick
> with unplugging and plugging it back in. 

Alternatively: rmmod usb_storage

(but this will also disconnect other USB disks)

See also the following:
http://blog.andrew.net.au/2009/01/17#usb_power_control2
Maybe it will provide you some hints, though it seems to deal with
devices that are USB hubs themselves.

-- 
Tzafrir Cohen | tzaf...@jabber.org | VIM is
http://tzafrir.org.il || a Mutt's
tzaf...@cohens.org.il ||  best
ICQ# 16849754 || friend


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



RE: Unibrain Fire-i with kernel 2.6.26-1-686

2009-01-21 Thread Peter Crawford

> Date: Tue, 13 Jan 2009 20:43:40 -0600
> From: ron.l.john...@cox.net
> Subject: Re: Unibrain Fire-i with kernel 2.6.26-1-686
> "IOW, nothing in syslog or dmesg?"

Found that the TSB43AB23 chipset on the Adaptec 
1394-PCI card isn't supported.  Ref. 

http://www.linux1394.org/

Installing another card solved it.

Thanks, ... p. crawford


_


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: [Offtopic?] IRC blocked at school

2009-01-21 Thread Michael Pobega
On Wed, Jan 21, 2009 at 09:00:28AM -0800, Paul Johnson wrote:
> Michael Pobega wrote:
> > I just got into my new dorm room, only to find out that they block all
> > IRC clients. I find this pretty disheartening since I often lurk on
> > #debian and #debian-eeepc
> > 
> > Is there any good way to tunnel or encrypt my data, or something
> > similar? I am looking for something feasible, considering I can't afford
> > to run my own tunnel or proxy.
> > 
> You could always use XMPP to connect to IRC.  Some site implementations
> support for connecting to protocols it obsoleted, such as IRC, AIM, MSN,
> etc.
> 

Do you know of any XMPP servers with an IRC transport? I've never heard
of that. I mean, I've heard of AIM/MSN/etc, but never IRC.

-- 
  http://pobega.wordpress.com
http://identica/mpobega


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: wireless gui configuration utility

2009-01-21 Thread Ismael Scalcon
I use network manager, but wanted to know if there's an manager with
GUI that allows me to configure IPs for each wireless connection.
Using network manager, I need to change my IP address manually each
time I connect in a wireless network that don't give away DHCP


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



RE: reinserting USB plug via software

2009-01-21 Thread Stackpole, Chris
> From: Henrique de Moraes Holschuh [mailto:h...@debian.org]
> Sent: Tuesday, January 20, 2009 12:19 PM
> Subject: Re: reinserting USB plug via software
> 
> On Tue, 20 Jan 2009, Stackpole, Chris wrote:
> > > What commands would be the equivalent to pulling the USB connector
out
> > > of the computer, waiting a second, and then putting it back in?
> 
> rmmod uhci-hcd; rmmod ehci-hcd; sleep 1; modprobe ehci-hcd; \
> modprobe uhci-hcd
> 
> (you may also need ohci-hcd, but the above is the most common setup)
> 
> If you do something stupid with that, like running it with usb-storage
> filesystems mounted, and the kernel happens to let you do it, you may
> suffer
> data-loss.  You have been warned.   It will bring down (logically) all
USB
> buses, then bring them up again.

Wait. It will bring down _all_ USB buses? Hrm. I think I will just stick
with unplugging and plugging it back in. I just have an external hard
drive that refuses to go into standby mode/sleep unless I unmount it.
However, once it goes to sleep, I haven't been able to bring it out of
sleep unless I unplug and plug it back in. It is annoying to have to
stand up and go to the computer to mess around with it when I need it,
but since I rarely use it that alternative is slightly less annoying
then having it constantly whirring. 

Thanks anyway though! It is another set of commands that I will have to
remember.

~Stack~



--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: Thin clients

2009-01-21 Thread Emanoil Kotsev
Fred Zinsli wrote:

> The DHCP server on my network does have a "Network Boot Enable" option,
> but when I turn it on the client still doesn't receive an IP from the
> server.
> 
> Maybe I am missing something. I will go and find out from the suppliers of
> the DHCP server I am using on our network.
> 
> Regards
> 
> Fred
> 

Try the manual page or some howto, you'll find out that you need lines like
this either in the global option or in the host configuration part for a
specific host or group of hosts


   filename "pxelinux.0";
#tftp boot server
   next-server 192.168.40.40;
   option
root-path "192.168.40.40:/opt/remote/nfsroot,retry=1,rsize=8192,wsize=8192";


I really preffer using flash drives lately as they became really cheap,
about 2GB cost 15EUR or so and a customized deb system is about 100MB ;-)
and may be less

regards


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: sound card not detected

2009-01-21 Thread Boyd Stephen Smith Jr.
On Wednesday 21 January 2009, Tamas Hegedus  wrote 
about 'Re: sound card not detected':
> From Boyd:
>> That's because you don't have the right kernel package installed. 
>> Please run:
>> aptitude search '^linux-image-.*-686$'
>> and post the output to the list.
>
>aptitude search '^linux-image-.*-686$'
>
>i A linux-image-2.6.26-1-686- Linux
>2.6.26 image on PPro/Celeron/PII/PIII/P4

That's the one you need to reinstall.

>I tried this, too.
>I think a remove then install would work - how to do it in a safe/normal
>way?
>
>aptitude reinstall linux-image-2.6.26-1-686
>Reading package lists... Done
>Building dependency tree
>Reading state information... Done
>Reading extended state information
>Initializing package states... Done
>Reading task descriptions... Done
>The following packages will be REINSTALLED:
>   linux-image-2.6.26-1-686
>0 packages upgraded, 0 newly installed, 1 reinstalled, 0 to remove and
>330 not upgraded.
>Need to get 0B of archives. After unpacking 0B will be used.
>E: I wasn't able to locate file for the linux-image-2.6.26-1-686
>package. This might mean you need to manually fix this package.
>Writing extended state information... Done
>E: I wasn't able to locate file for the linux-image-2.6.26-1-686
>package. This might mean you need to manually fix this package.
>E: Internal error: couldn't generate list of packages to download

Hrm, I haven't seen this before.  It looks like it doesn't try to download 
the .deb, which normally only happens when the package is already 
downloaded.  But then, when it tries to install it can't find the .deb.

A remove followed by an install might work, but during the removal, 
aptitude is probably going to want to get rid of a few packages.  You 
could try:
aptitude install linux-image-2.6.26-1-xen-686 linux-image-2.6.26-1-686_
then:
aptitude install linux-image-2.6.26-1-686 linux-image-2.6.26-1-xen-686_
The old-style Xen kernel should satisfy the dependencies long enough to 
remove and then install the normal kernel.

(Alternatively, there's probably a --force-* flag to dpkg that will let you 
purge the package while leaving dependencies broken.  Then, you could try 
the install from aptitude.  I can't recall how to do it right now, and 
it's significantly more dangerous -- it leaves your system completely 
without a kernel for a while.)
-- 
Boyd Stephen Smith Jr. ,= ,-_-. =. 
b...@iguanasuicide.net ((_/)o o(\_))
ICQ: 514984 YM/AIM: DaTwinkDaddy   `-'(. .)`-' 
http://iguanasuicide.net/  \_/ 


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


Re: wireless gui configuration utility

2009-01-21 Thread Emanoil Kotsev
Umarzuki Mochlis wrote:

> 
> eden:~# iwconfig
> lono wireless extensions.
> 
> eth0  no wireless extensions.
> 
> eth1  IEEE 802.11bg  ESSID:""  Nickname:""
>   Mode:Managed  Frequency:2.412 GHz  Access Point: Not-Associated
>   Bit Rate:54 Mb/s   Tx-Power:off
>   Retry min limit:7   RTS thr:off   Fragment thr:off
>   Power Managementmode:All packets received
>   Link Quality=5/5  Signal level=0 dBm  Noise level=0 dBm
>   Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
>   Tx excessive retries:0  Invalid misc:0   Missed beacon:0
> 
> ppp0  no wireless extensions.
> 

I was just wondering why your tx-power is set Off

with this wireless won't ever work ... I don't know if it's related to the
original question though.

regards


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: [OT] Sidux. SMTP wizards, help a Postfix noob? [Solution]

2009-01-21 Thread Ron Johnson

On 01/21/2009 12:46 PM, mouss wrote:

Ron Johnson a écrit :

[snip]



Does this mean that there is a Suggests/Recommends/Depends bug in Postfix?



In postfix, no. most people don't need cyrus-sasl.

whether there is a packaging "descrepancy" in cyrus-sasl is a different
story. I am too lazy to search for the reasons why things are done this
way.


Silly me should have looked before I wrote, since Sid postfix 
already Suggests sasl2-bin & libsasl2-modules.


--
Ron Johnson, Jr.
Jefferson LA  USA

"I am not surprised, for we live long and are celebrated poopers."


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: [OT] Sidux. SMTP wizards, help a Postfix noob? [Solution]

2009-01-21 Thread mouss
Ron Johnson a écrit :
> On 01/20/2009 09:57 PM, s. keeling wrote:
>> I was missing libsasl2-modules and sasl2-bin.  This was helpful:
>>
>>http://tribulaciones.org/docs/postfix-sasl-tls-howto/
>>

do read the official docs however:
http://www.postfix.org/SASL_README.html
http://www.postfix.org/TLS_README.html

and more generally
http://www.postfix.org/documentation.html
is the right place. These are official and thus:
- get updated
- are supported by Wietse

> 
> Does this mean that there is a Suggests/Recommends/Depends bug in Postfix?
> 

In postfix, no. most people don't need cyrus-sasl.

whether there is a packaging "descrepancy" in cyrus-sasl is a different
story. I am too lazy to search for the reasons why things are done this
way.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: Can't start X after upgrade to Lenny

2009-01-21 Thread Florian Kulzer
On Tue, Jan 20, 2009 at 20:21:19 -0800, Marc Shapiro wrote:
> Florian Kulzer wrote:
>> Maybe this is related:
>>
>> http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=474504
>>   
> This seems to be exactly the problem that I am having.  If this problem  
> has been around since at least April of last year and had not been  
> resolved by August, you would think that there would be more emphasis on  
> trying to resolve it.

Nobody had time to look into in April/May, and then it probably got
forgotten, as new bugs and work came in for the X maintainers. The
release freeze does not help either.

>I would think that others would have come across  
> this bug and want to have it fixed.

The fact that nobody inquired about the status or sent a "me too" report
probably contributed to the fact that the bug was not given a higher
priority.

>  It makes things much harder in my  
> household, that's for sure.  How do I follow up on this and try to get  
> it resolved.  I have never had to file a bug report, so I really don't  
> know how to proceed.

You can use the web interface of the BTS to send a follow-up message,
stating that you have the problem, too. Ask if there is any possibility
that this can be addressed before the release of Lenny and what you can
do to help. The maintainers will let know what kind of information you
can contribute if someone starts working on the problem.

You can also check out http://bugs.freedesktop.org to see if anything
relevant has happened upstream since last May.

Yon can try if Xorg from experimental and/or kernel 2.6.28 improve the
situation. (Did you try to put additional options into xorg.conf as I
suggested earlier?)

I would probably be tempted to buy an nvidia or ati card and dump the
sis driver.

-- 
Regards,| http://users.icfo.es/Florian.Kulzer
  Florian   |


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: [OT] Sidux. SMTP wizards, help a Postfix noob? [Solution]

2009-01-21 Thread s. keeling
Ron Johnson :
>  On 01/20/2009 09:57 PM, s. keeling wrote:
> > I was missing libsasl2-modules and sasl2-bin.  This was helpful:
> > 
> >http://tribulaciones.org/docs/postfix-sasl-tls-howto/
> 
>  Does this mean that there is a Suggests/Recommends/Depends bug in 
>  Postfix?

*I* would not say that just yet.  I'm stumbling around bumping into
the walls with this stuff, and the problem certainly could have been
my doing.  The online dox on this stuff are often old/out of
date/broken.  FI, one you mentioned the other day said you need
postfix-tls.  That's a virtual package supplied by postfix itself.

I think the link above is talking about Sarge.


-- 
Any technology distinguishable from magic is insufficiently advanced.
(*)http://blinkynet.net/comp/uip5.html  Linux Counter #80292
- -http://www.faqs.org/rfcs/rfc1855.htmlPlease, don't Cc: me.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: [Offtopic?] IRC blocked at school

2009-01-21 Thread Paul Johnson
Michael Pobega wrote:
> I just got into my new dorm room, only to find out that they block all
> IRC clients. I find this pretty disheartening since I often lurk on
> #debian and #debian-eeepc
> 
> Is there any good way to tunnel or encrypt my data, or something
> similar? I am looking for something feasible, considering I can't afford
> to run my own tunnel or proxy.
> 
You could always use XMPP to connect to IRC.  Some site implementations
support for connecting to protocols it obsoleted, such as IRC, AIM, MSN,
etc.



signature.asc
Description: OpenPGP digital signature


Re: sound card not detected

2009-01-21 Thread Tamas Hegedus


From Rob:
> Have you run 'updatedb' lately (or through cron), such that 'locate'
> database is up to date?
YES. I have done.

From Boyd:
That's because you don't have the right kernel package installed.  Please 
run:

aptitude search '^linux-image-.*-686$'
and post the output to the list.


aptitude search '^linux-image-.*-686$'

i   linux-image-2.6-686 - Linux 2.6 
image on PPro/Celeron/PII/PIII/P4


p   linux-image-2.6-openvz-686  - Linux 2.6 
image on PPro/Celeron/PII/PIII/P4, OpenVZ support


p   linux-image-2.6-vserver-686 - Linux 2.6 
image on PPro/Celeron/PII/PIII/P4, Linux-VServer suppor


p   linux-image-2.6-xen-686 - Linux 2.6 
image on i686, oldstyle Xen support


i A linux-image-2.6.26-1-686- Linux 
2.6.26 image on PPro/Celeron/PII/PIII/P4


p   linux-image-2.6.26-1-openvz-686 - Linux 
2.6.26 image on PPro/Celeron/PII/PIII/P4, OpenVZ support


p   linux-image-2.6.26-1-vserver-686- Linux 
2.6.26 image on PPro/Celeron/PII/PIII/P4, Linux-VServer sup


p   linux-image-2.6.26-1-xen-686- Linux 
2.6.26 image on i686, oldstyle Xen support


p   linux-image-openvz-686  - Linux 
image on PPro/Celeron/PII/PIII/P4, OpenVZ support


p   linux-image-vserver-686 - Linux 
image on PPro/Celeron/PII/PIII/P4, Linux-VServer support


p   linux-image-xen-686 - Linux 
image on i686, oldstyle Xen support



--
I tried this, too.
I think a remove then install would work - how to do it in a safe/normal 
way?


aptitude reinstall linux-image-2.6.26-1-686
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading extended state information
Initializing package states... Done
Reading task descriptions... Done
The following packages will be REINSTALLED:
  linux-image-2.6.26-1-686
0 packages upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 
330 not upgraded.

Need to get 0B of archives. After unpacking 0B will be used.
E: I wasn't able to locate file for the linux-image-2.6.26-1-686 
package. This might mean you need to manually fix this package.

Writing extended state information... Done
E: I wasn't able to locate file for the linux-image-2.6.26-1-686 
package. This might mean you need to manually fix this package.

E: Internal error: couldn't generate list of packages to download


--
Tamas Hegedus, PhD  | phone: (1) 919-966 0329
UNC - Biochem & Biophys | fax:   (1) 919-966 5178
6107 Thurston-Bowles Bldg   | mailto:hege...@med.unc.edu
Chapel Hill, NC, 27599-7248 | http://biohegedus.org


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: sound card not detected

2009-01-21 Thread Boyd Stephen Smith Jr.
On Wednesday 21 January 2009, Tamas Hegedus  wrote 
about 'Re: sound card not detected':
>subscriptions wrote:
>> On Wed, 2009-01-21 at 16:59 +0100, Tamas Hegedus wrote:
>>> But I did now again:
>>> aptitude reinstall linux-image-2.6-686

This is going to do *nothing* with modules.  They aren't in that package.  
They would be in a package like: linux-image-2.6.26-1-686.  the longer 
version number with a Debian revision is key.  The package you keep   
reinstalling just has a few files (no modules) and Depends on the latest 
version of the 2.6-686 image.

>I really do not have the module.

That's because you don't have the right kernel package installed.  Please 
run:
aptitude search '^linux-image-.*-686$'
and post the output to the list.
-- 
Boyd Stephen Smith Jr. ,= ,-_-. =. 
b...@iguanasuicide.net ((_/)o o(\_))
ICQ: 514984 YM/AIM: DaTwinkDaddy   `-'(. .)`-' 
http://iguanasuicide.net/  \_/ 


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


Re: sound card not detected

2009-01-21 Thread subscriptions
On Wed, 2009-01-21 at 17:22 +0100, Tamas Hegedus wrote:
> 
> I really do not have the module.
...
> This does not return anything on my computer:
> locate snd-intel8x0 | grep 686

Have you run 'updatedb' lately (or through cron), such that 'locate'
database is up to date?

Best,

Rob



-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: sound card not detected

2009-01-21 Thread Tamas Hegedus

I really do not have the module.

I would like to solve by debian way (to learn the debian way) and not to 
try again the alsa source from alsaproject.org


This does not return anything on my computer:
locate snd-intel8x0 | grep 686

ls -1 /lib/modules/2.6.26-1-686/kernel/sound/
oss
soundcore.ko
sound_firmware.ko


subscriptions wrote:

On Wed, 2009-01-21 at 16:59 +0100, Tamas Hegedus wrote:

First of all thanks for the efforts!
---
But I did now again:
aptitude reinstall linux-image-2.6-686

Same thing, modules are not reinstalled:
modprobe -v snd-intel8x0
install /sbin/modprobe --ignore-install snd-intel8x0  &&
/lib/alsa/modprobe-post-install snd-intel8x0
FATAL: Module snd_intel8x0 not found.
FATAL: Error running install command for snd_intel8x0


Strange,
rdegr...@mycomp:~$ locate snd-intel8x0 | grep 686
/lib/modules/2.6.26-1-686/kernel/sound/pci/snd-intel8x0.ko
/lib/modules/2.6.26-1-686/kernel/sound/pci/snd-intel8x0m.ko

Try rebuilding the dependencies, by 'depmod -a'.

Best,

Rob



--
Tamas Hegedus, PhD  | phone: (1) 919-966 0329
UNC - Biochem & Biophys | fax:   (1) 919-966 5178
6107 Thurston-Bowles Bldg   | mailto:hege...@med.unc.edu
Chapel Hill, NC, 27599-7248 | http://biohegedus.org


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: sound card not detected

2009-01-21 Thread Tamas Hegedus

First of all thanks for the efforts!

From my original msg about reinstalling the kernel&alsa pkgs:

aptitude reinstall|[remove&install]
linux-headers-2.6.26-1-686
linux-image-2.6-686
linux-libc-dev

---
But I did now again:
aptitude reinstall linux-image-2.6-686

Same thing, modules are not reinstalled:
modprobe -v snd-intel8x0
install /sbin/modprobe --ignore-install snd-intel8x0  && 
/lib/alsa/modprobe-post-install snd-intel8x0

FATAL: Module snd_intel8x0 not found.
FATAL: Error running install command for snd_intel8x0

--
This is a little bit strange for me (the short file list for the 
linux-image package):


>> Debian  >> Packages  >> lenny >> linux-image-2.6-686 >> i386 >> Filelist
http://packages.debian.org/lenny/i386/linux-image-2.6-686/filelist

Filelist of package linux-image-2.6-686 in lenny of architecture i386

/usr/share/doc/linux-image-2.6-686/changelog.gz
/usr/share/doc/linux-image-2.6-686/copyright

--
Since I thought that only virtual packages exists for linux-modules, 
then everything is in the xen package (yes, stupid me).


Thanks again,
tamas

Daniel Burrows wrote:

On Wed, Jan 21, 2009 at 08:31:03AM +0100, Rainer Kluge  was 
heard to say:

Tamas Hegedus schrieb:

---
2. I tried to reinstall the essential kernel packages what I think might
have been affected by the manual alsa compile.

aptitude reinstall|[remove&install]
linux-headers-2.6.26-1-686
!!
I do not have the driver

I had the same problem some days ago. I reinstalled the kernel with
synaptic and /lib/modules/2.6.26-1-686/kernel/sound/pci/snd-intel8x0.ko
was back again. Maybe you should give synapptic a try.


  aptitude and synaptic will both just call dpkg to reinstall the
kernel, so I doubt that this is the cause of his problems.

  However, there is a difference between what you did and what he did:
I didn't see the kernel in the list of packages he reinstalled.  It
might be worthwhile for him to try reinstalling the kernel itself:

aptitude reinstall linux-image-2.6.26-1-686

  (I don't know how to get his sound back, but that should fix some of
the weirdness about which modules are available)

  Daniel




--
Tamas Hegedus, PhD  | phone: (1) 919-966 0329
UNC - Biochem & Biophys | fax:   (1) 919-966 5178
6107 Thurston-Bowles Bldg   | mailto:hege...@med.unc.edu
Chapel Hill, NC, 27599-7248 | http://biohegedus.org


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: aptitude freezes after install

2009-01-21 Thread microwaverich

Daniel Burrows wrote:

On Wed, Jan 21, 2009 at 07:16:06AM -0500, microwaverich  was 
heard to say:

r...@peninsula:~/aptitudetests/aptitude$ /usr/bin/aptitude --version
aptitude 0.4.11 compiled at Mar 16 2008 17:32:32
Compiler: g++ 4.2.3 (Debian 4.2.3-2)

NCurses version: 5.6
libsigc++ version: 2.0.18
Ept support enabled.


  Ah, I forgot that I told you to downgrade to a working version.  What
if you upgrade it by running "aptitude install aptitude" first?

  Daniel




Ok, did that.  The new aptitude did not freeze.  Tried it twice.  Here's 
what I've got now:


r...@peninsula:~/aptitudetests/aptitude$ aptitude --version
aptitude 0.4.11.11 compiled at Dec  5 2008 02:43:34
Compiler: g++ 4.3.2
Compiled against:
  apt version 4.6.0
  NCurses version 5.6
  libsigc++ version: 2.0.18
  Ept support enabled.

Current library versions:
  NCurses version: ncurses 5.7.20081213
  cwidget version: 0.5.12
  Apt version: 4.6.0


 Rich


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: ssh

2009-01-21 Thread David A. Parker

Francesco Pietra wrote:

That's odd.  I am able to get commands to work over SSH without a
password.
 I copied the contents of ~/.ssh/id_rsa.pub on my work computer into
~/.ssh/authorized_keys on my home computer.  Now I can SSH from my work
computer to my home computer like this:

ssh m...@myhomepc date

And it logs into my home computer and then runs the date command.  I did
not
have to do anything with the authorized_keys file on my work computer to
make this happen.

That's all appropriate.

You only need to modify authorized_keys in both places if you want the
symmetric relationship that either machine can log into the other.


Correct.

I mentioned that I did not have to alter the authorized_keys file on my work
PC in response to the OP's statement:


I know how to solve the issue, i.e. by cross appending the
authorized_keys files, in order that each machine knows itself. But
there must be a simpler way.

I have no idea why you would need to do something like that.  I have never
had to "cross-append" anything in order to make this work.  I just wanted to
clarify for the OP that the keys only need to be shared in one direction to
do this.

He seems to indicate that the passwordless login works just fine unless he
tries to run a command through the ssh command line.  I don't know why that
would make a difference.


Big difference for me. As I said in my original post, certain
computational parallelized codes (from major supercomputer centers,
latest versions) do not work unless the two machines talking to one
another also know themselves. Usually, the "two machines" are my
desktop (let say deb32) and my parallel computer (let say deb64)
talking to one another via a router.The only way I found (perhaps
suggested by the author of the code, I don't remember) to login
passwordless (my arrangement is also passfraseless) to the parallel
computer - and vice versa - while requesting the date, is to take the
deb32 keys from deb64 and append them to those of deb32 itself, and
vice versa. I admit that most codes do not care about that, but it
happens that I am using "at this very moment" a code that has such
idiosyncrasy.

When I said "there must be a simpler way", I meant to make that
appending intrinsic in the configuration of ssh. Otherwise, I have to
stay to ssh if I want (as I need) also to access supercomputers.

I am surprised that others are able to login while running a command
by simply sending "one-way" the keys. As I am no system expert, I
assume that I am not setting up correctly ssh.

regards
francesco



Francesco,

If I understand you correctly, you are trying to ssh from your PC 
running 32-bit Lenny to a node in a parallel computing cluster running 
64-bit Lenny.  Is this correct?


I'm not sure why a simple one-way shared key would not work if you are 
trying to run a command on the parallel computer from your PC.  You 
shouldn't need two-way authentication unless the parallel computer needs 
to run something on your machine using the same tunnel.  But I might be 
misunderstanding how you have things set up.


- Dave

P.S.  I sent this reply back to the lists so this conversation wouldn't 
go completely off-list, in case someone else is interested too.


--

Dave Parker
Utica College
Integrated Information Technology Services
(315) 792-3229
Registered Linux User #408177


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: aptitude freezes after install

2009-01-21 Thread Daniel Burrows
On Wed, Jan 21, 2009 at 07:16:06AM -0500, microwaverich  was 
heard to say:
> r...@peninsula:~/aptitudetests/aptitude$ /usr/bin/aptitude --version
> aptitude 0.4.11 compiled at Mar 16 2008 17:32:32
> Compiler: g++ 4.2.3 (Debian 4.2.3-2)
>
> NCurses version: 5.6
> libsigc++ version: 2.0.18
> Ept support enabled.

  Ah, I forgot that I told you to downgrade to a working version.  What
if you upgrade it by running "aptitude install aptitude" first?

  Daniel


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: sound card not detected

2009-01-21 Thread Daniel Burrows
On Wed, Jan 21, 2009 at 08:31:03AM +0100, Rainer Kluge  was 
heard to say:
> Tamas Hegedus schrieb:
> > ---
> > 2. I tried to reinstall the essential kernel packages what I think might
> > have been affected by the manual alsa compile.
> > 
> > aptitude reinstall|[remove&install]
> > linux-headers-2.6.26-1-686
> 
> > !!
> > I do not have the driver
> 
> I had the same problem some days ago. I reinstalled the kernel with
> synaptic and /lib/modules/2.6.26-1-686/kernel/sound/pci/snd-intel8x0.ko
> was back again. Maybe you should give synapptic a try.

  aptitude and synaptic will both just call dpkg to reinstall the
kernel, so I doubt that this is the cause of his problems.

  However, there is a difference between what you did and what he did:
I didn't see the kernel in the list of packages he reinstalled.  It
might be worthwhile for him to try reinstalling the kernel itself:

aptitude reinstall linux-image-2.6.26-1-686

  (I don't know how to get his sound back, but that should fix some of
the weirdness about which modules are available)

  Daniel


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: [Offtopic?] IRC blocked at school

2009-01-21 Thread Michael Pobega
On Wed, Jan 21, 2009 at 09:58:04AM +0530, Kousik Maiti wrote:
> Hello everybody,
> For IRC check http://www.mibbit.com/..
> Enjoy
> 

I don't know if you read the rest of the thread but I stated at one
point that I'd like to avoid web-based IRC services. I appreciate the
effort though.

-- 
  http://pobega.wordpress.com
http://identica/mpobega


signature.asc
Description: Digital signature


iscsi multipathed disks are slow

2009-01-21 Thread Stephan Seitz

Hi!

I’m trying to connect a Dell server to an Eqlogic 5000E iSCSI device. The 
open-iscsi package is configured and working. Using the devices dd shows 
good results (~100MB/s for reading, ~85MB/s for writing) over one gigabit 
interface.


Using the multipath devices the numbers are only half as good (~50MB/s 
for reading) but now the system is using two gigabit interfaces.


Now I’m wondering why? Hints are welcome!

My configuration:
- Debian Lenny
- open-scsi 2.0.870~rc3-0.3
- multipath-tools 0.4.8-13
- dmsetup 2:1.02.27-4

Test kernels were the Lenny kernel (2.6.26-13) and a self-compiled 
2.6.28.1. The architecture is amd64.


The hardware is a Dell PowerEdge 1850 with two Intel Gigabit NICs onboard 
(Intel Corporation 82541GI Gigabit Ethernet Controller), MTU is set to 
9000.


/etc/multipath.conf:
blacklist {
devnode "^sda"
}

defaults {
  #path_grouping_policy group_by_prio
  path_grouping_policy multibus
  features "1 queue_if_no_path"
  path_checker readsector0
  failback immediate
  getuid_callout "/lib/udev/scsi_id -g -u -s /block/%n"
}

multipaths {
  multipath {
wwid 36090a03820e51cc5d193945d0007
alias  my-lun0
  }
  multipath {
wwid 36090a03820e56c17d193645d20f0
alias  my-lun1
  }
}

devices {
  device {
vendor "EQLOGIC"
product "5000E"
  }
}


multipath -ll shows:

my-lun1 (36090a03820e56c17d193645d20f0) dm-8 ,
[size=1.0T][features=1 queue_if_no_path][hwhandler=0]
\_ round-robin 0 [prio=2][active]
 \_ #:#:#:# sdd 8:48  [active][ready]
 \_ #:#:#:# sde 8:64  [active][ready]
my-lun0 (36090a03820e51cc5d193945d0007) dm-6 ,
[size=2.0T][features=1 queue_if_no_path][hwhandler=0]
\_ round-robin 0 [prio=2][active]
 \_ #:#:#:# sdc 8:32  [active][ready]
 \_ #:#:#:# sdb 8:16  [active][ready]


Using the same system with Windows Server OS, the multipath resulats are 
much better (~180MB/s for reading).


Shade and sweet water!

Stephan

--
| Stephan Seitz E-Mail: s...@fsing.rootsland.net |
| PGP Public Keys: http://fsing.rootsland.net/~stse/pgp.html |


signature.asc
Description: Digital signature


using different root option in alternate kernel option in grub

2009-01-21 Thread Micha Feigin
I'm trying the setup my grub menu.lst to automatically setup two alternate
kernel options
1. using nfsroot so it needs to have root=/dev/nfs
2. boot localy so it needs to have root=/dev/sda1

so I tried to set
KOPT=ro
defoptions=root=/dev/nfs
altoptions=root=/dev/sda1

The regular option works great but the altoptions ignores the root=... and only
uses the rest of the line.

Is there any way to achieve what I want without tweaking the results after each
kernel upgrade?


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: wireless gui configuration utility

2009-01-21 Thread Umarzuki Mochlis
2009/1/21 Micha Feigin 

> On Tue, 20 Jan 2009 23:17:57 +0800
> "Umarzuki Mochlis"  wrote:
>
> ...
>
> > > > >> Looks from this thread
> > > > >> http://ubuntuforums.org/showthread.php?t=790778
> > > > >> that the driver may be problematic, he recommends using
> ndiswrapper.
> > > see
> > > > >> if
> > > > >> that makes iwlist work for you
> > > > >>
> > > > >
> > > > > when i got to the last step to load the .inf file, it says i didn't
> > > install
>
> Just thought about it, did you make sure that the original module (the one
> that
> is supposed to be blacklisted) is not loaded? Otherwise it will claim the
> wireless card first and it's not ndiswrapper that is in control for the
> test
>
> ...
>

I gues it is not. please take a look

Module  Size  Used by
ppp_deflate 9216  0
zlib_deflate   23960  1 ppp_deflate
zlib_inflate   18944  1 ppp_deflate
bsd_comp9600  0
ppp_async  13056  1
crc_ccitt   6528  1 ppp_async
ppp_generic27816  7 ppp_deflate,bsd_comp,ppp_async
slhc   10112  1 ppp_generic
binfmt_misc13580  1
fglrx2025780  25
vboxnetflt 85868  0
option 17408  1
usbserial  36720  4 option
ppdev  11656  0
parport_pc 31016  0
lp 14724  0
parport41776  3 ppdev,parport_pc,lp
ipv6  288328  24
vboxdrv  1684268  1 vboxnetflt
loop   19468  0
joydev 14848  0
psmouse42268  0
pcspkr  7040  0
uvcvideo   55560  0
serio_raw   9860  0
compat_ioctl32 12288  1 uvcvideo
i2c_piix4  13072  0
videodev   35840  2 uvcvideo,compat_ioctl32
usbhid 45792  0
snd_hda_intel 434904  7
i2c_core   27936  1 i2c_piix4
v4l1_compat17284  2 uvcvideo,videodev
hid41792  1 usbhid
usb_storage94528  0
ff_memless  9224  1 usbhid
snd_pcm81672  3 snd_hda_intel
snd_seq54304  0
snd_timer  25744  4 snd_pcm,snd_seq
snd_seq_device 11668  1 snd_seq
jmb38x_ms  13060  0
memstick   15792  1 jmb38x_ms
snd63688  15
snd_hda_intel,snd_pcm,snd_seq,snd_timer,snd_seq_device
soundcore  12064  1 snd
snd_page_alloc 13072  2 snd_hda_intel,snd_pcm
battery16904  0
video  24212  0
output  7808  1 video
wmi11712  0
ac  9352  0
button 11680  0
shpchp 34080  0
pci_hotplug32056  1 shpchp
evdev  14208  8
ext3  125072  1
jbd51240  1 ext3
mbcache12804  1 ext3
ide_pci_generic 9220  0 [permanent]
sg 36448  0
sd_mod 29376  3
sr_mod 19652  0
cdrom  37928  1 sr_mod
atiixp  8324  0 [permanent]
ide_core  128284  2 ide_pci_generic,atiixp
ata_generic10116  0
ahci   33036  2
libata165472  2 ata_generic,ahci
scsi_mod  160760  5 usb_storage,sg,sd_mod,sr_mod,libata
ehci_hcd   36108  0
dock   14112  1 libata
r8169  31492  0
ohci_hcd   25092  0
sdhci  19460  0
mmc_core   52448  1 sdhci
thermal22688  0
processor  42304  1 thermal
fan 9352  0
thermal_sys17728  4 video,thermal,processor,fan


Now I'm not too sure whether my wifi card is 4315 or 4312

09:00.0 Network controller [0280]: Broadcom Corporation BCM4312 802.11b/g
[14e4:4315] (rev 01)

>
> > > > >
> > > > did that, still iwlist eth1 scan produced the same output as before
> > > >
> > >
> > > does iwconfig say that you are still getting eth1 as the wireless
> > > interface?
> > > changing drivers can change the interface name
> > >
> >
> > yes it does
> >
>
> [...]
>
>
> --
> To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
> with a subject of "unsubscribe". Trouble? Contact
> listmas...@lists.debian.org
>
>


-- 
Regards,

Umarzuki Mochlis
http://gameornot.net


Re: wireless gui configuration utility

2009-01-21 Thread Micha Feigin
On Tue, 20 Jan 2009 23:17:57 +0800
"Umarzuki Mochlis"  wrote:

...

> > > >> Looks from this thread
> > > >> http://ubuntuforums.org/showthread.php?t=790778
> > > >> that the driver may be problematic, he recommends using ndiswrapper.
> > see
> > > >> if
> > > >> that makes iwlist work for you
> > > >>
> > > >
> > > > when i got to the last step to load the .inf file, it says i didn't
> > install

Just thought about it, did you make sure that the original module (the one that
is supposed to be blacklisted) is not loaded? Otherwise it will claim the
wireless card first and it's not ndiswrapper that is in control for the test

...

> > > >
> > > did that, still iwlist eth1 scan produced the same output as before
> > >
> >
> > does iwconfig say that you are still getting eth1 as the wireless
> > interface?
> > changing drivers can change the interface name
> >
> 
> yes it does
> 

[...]


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: downloading hotmail emails

2009-01-21 Thread Pedro Insua
On Wed, Jan 21, 2009 at 11:00:54PM +1100, Daniel Dalton wrote:
> Hi,
> 
> Could someone please give me some hints on setting up fetchmail with the
> hotmail pop3 server provided in a reply to this thread? Eg. how do I
> enable ssl in fetchmail, and establish an ssl connection with fetchmail
> and get the required pem files or whatever from hotmail?

  1) Install `fetchmail'

 apt-get install fetchmail

  2) Read the doc in /usr/share/doc/fetchmail
 Read de manual `man fetchmail'

  3) Create '~/.fetchmailrc' and set it `chmod 0600'

  Now you have to put something like this in '~/.fetchmailrc' to
  retrieve the hotmail mail: 

 # hotmail.com
poll pop3.live.com
proto pop3
port 995
user "yourem...@hotmail.com"
pass "yourpassword"
is your_home
fetchall
ssl

  Well, i don't use hotmail, but.. i think will be something like
  this...


-- 
Porqu� loitar e matar, se podes amar e sonhar

/"\
\ /  CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
 X   ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
/ \


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: how to create a cache for squid

2009-01-21 Thread Bob Cox
On Wed, Jan 21, 2009 at 13:05:43 +0100, abdelkader belahcene 
(abelahc...@gmail.com) wrote: 

> hi everybody,
> I want to create a cache using squid, just a cache not filtering anything,
> have I to change the http_port to say 8080 and writing iptables for redirect
> 80 to 8080
> or it is done by default without changing anything in squid.conf
> thanks for help
> bela

[ Please try to lose the html part of your message.  Just send in plain
text only. Thank you ]

Your answer is probably here:  http://wiki.squid-cache.org/SquidFaq

-- 
Bob Cox.  Stoke Gifford, near Bristol, UK.
Please reply to the list only.  Do NOT send copies directly to me.
Debian on the NSLU2: http://bobcox.com/slug/


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: aptitude freezes after install

2009-01-21 Thread microwaverich

Daniel Burrows wrote:







  Hmmm.  That's the most recent update to the source tree.  Which would
mean aptitude doesn't freeze for you.  Yay!  We solved your problem and
we didn't even change any code!  :-D

  

  Did you get any freezes during your test, or did everything work for
you?  Also, just to check: /usr/bin/aptitude still exhibits the bug,
right?

  Daniel




I got no freezes during the test.  Everything worked Ok.

/usr/bin/aptitude DOES NOT still exhibit the bug!  It works Ok!

Some potentially non-trivial differences in the versions:


r...@peninsula:~/aptitudetests/aptitude$ ./src/aptitude --version
aptitude 0.4.11.10 compiled at Jan 19 2009 14:37:47
Compiler: g++ 4.3.2
Compiled against:
  apt version 4.6.0
  NCurses version 5.7
  libsigc++ version: 2.0.18
  Ept support disabled.

Current library versions:
  NCurses version: ncurses 5.7.20081213
  cwidget version: 0.5.12
  Apt version: 4.6.0

r...@peninsula:~/aptitudetests/aptitude$ /usr/bin/aptitude --version
aptitude 0.4.11 compiled at Mar 16 2008 17:32:32
Compiler: g++ 4.2.3 (Debian 4.2.3-2)

NCurses version: 5.6
libsigc++ version: 2.0.18
Ept support enabled.


Do we declare victory, or does this lead somewhere else?

 Rich


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




how to create a cache for squid

2009-01-21 Thread abdelkader belahcene
hi everybody,
I want to create a cache using squid, just a cache not filtering anything,
have I to change the http_port to say 8080 and writing iptables for redirect
80 to 8080
or it is done by default without changing anything in squid.conf
thanks for help
bela


TREAT VERY URGENT

2009-01-21 Thread amed Hassin
I have a new email address!You can now email me at: amed_has...@yahoo.com



- From The Desk Of   Mr AMED  HASSIN  The Head Of File Department, 



Re: downloading hotmail emails

2009-01-21 Thread Daniel Dalton
Hi,

Could someone please give me some hints on setting up fetchmail with the
hotmail pop3 server provided in a reply to this thread? Eg. how do I
enable ssl in fetchmail, and establish an ssl connection with fetchmail
and get the required pem files or whatever from hotmail?

Thanks,

Daniel


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: downloading hotmail emails

2009-01-21 Thread Javier Barroso
On Wed, Jan 21, 2009 at 9:48 AM, Daniel Dalton  wrote:
> Hi,
>
> Has anyone had any luck with gotmail and hotmail? Or what other programs
> do this? Can someone tell me the best way to download my hotmail emails
> into the mbox format locally on my computer?
with getlive you can get your mail if your account was 'upgraded' to live

It works, read README file in usr share doc

Regards


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: downloading hotmail emails

2009-01-21 Thread Daniel Dalton
Yep, I get same error, will try pop3 though.

Thanks for the reply,

Daniel


On Wed, Jan 21, 2009 at 01:08:56PM +0200, Juha Tuuna wrote:
> Daniel Dalton wrote:
> > Hi,
> > 
> > Has anyone had any luck with gotmail and hotmail? Or what other programs
> > do this? Can someone tell me the best way to download my hotmail emails
> > into the mbox format locally on my computer?
> > If you are using gotmail, could you please either provide a config file
> > or the command line arguments you invoke gotmail or whatever tool you
> > are using with?
> > 
> > Thanks for any help,
> > 
> > Daniel.
> 
> Quoting the package information:
> "Although the team behind Gotmail tries to keep it working, every few
> months Hotmail makes changes which break this until they have time to
> fix it. Have a backup plan for email access in case that happens."
> 
> I myself get this error: Page doesn't contain any form action field!
> 
> Maybe something has changed (again).
> 
> -- 
> Juha Tuuna
> 
> 
> -- 
> To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
> with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: downloading hotmail emails

2009-01-21 Thread Daniel Dalton
> hotmail is now using pop3 too, details are :

Excellent, thanks very much will give it ago.

Daniel


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: downloading hotmail emails

2009-01-21 Thread thveillon.debian
Juha Tuuna a écrit :
> Daniel Dalton wrote:
>> Hi,
>>
>> Has anyone had any luck with gotmail and hotmail? Or what other programs
>> do this? Can someone tell me the best way to download my hotmail emails
>> into the mbox format locally on my computer?
>> If you are using gotmail, could you please either provide a config file
>> or the command line arguments you invoke gotmail or whatever tool you
>> are using with?
>>
>> Thanks for any help,
>>
>> Daniel.
> 
> Quoting the package information:
> "Although the team behind Gotmail tries to keep it working, every few
> months Hotmail makes changes which break this until they have time to
> fix it. Have a backup plan for email access in case that happens."
> 
> I myself get this error: Page doesn't contain any form action field!
> 
> Maybe something has changed (again).
> 
Hi,

hotmail is now using pop3 too, details are :

pop.live.com (995 ssl)
smtp.live.com (587 ssl)


So no need for nasty tricks anymore.


Tom


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: downloading hotmail emails

2009-01-21 Thread Juha Tuuna
Daniel Dalton wrote:
> Hi,
> 
> Has anyone had any luck with gotmail and hotmail? Or what other programs
> do this? Can someone tell me the best way to download my hotmail emails
> into the mbox format locally on my computer?
> If you are using gotmail, could you please either provide a config file
> or the command line arguments you invoke gotmail or whatever tool you
> are using with?
> 
> Thanks for any help,
> 
> Daniel.

Quoting the package information:
"Although the team behind Gotmail tries to keep it working, every few
months Hotmail makes changes which break this until they have time to
fix it. Have a backup plan for email access in case that happens."

I myself get this error: Page doesn't contain any form action field!

Maybe something has changed (again).

-- 
Juha Tuuna


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



extract-ikconfig. - help

2009-01-21 Thread Antonio Macchi

I need extract .config file from a kernel-image... but... as a test...




$ make allnoconfig

$ make menuconfig
General setup  --->
  [*] Kernel .config support (yes)

$ make

$ ./scripts/extract-ikconfig arch/x86/boot/bzImage

zcat: stdin: decompression OK, trailing garbage ignored
ERROR: Unable to extract kernel configuration information.
   This kernel image may not have the config info.





Why this error?


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




LVM on iscsi multipathed disks fails to shutdown

2009-01-21 Thread Javier Barroso
Hi,

I tried to get a response from pkg-lvm-maintainers, but nobody answer,
so I'm asking here.

Currently on lenny, I have next config:

multipath is used for get two iscsi path like a disk.

This disk is a pv, and is the uniq pv in my vg. My vg has a lv who is
mounted on /home

I had to change iscsi scripts [1] for get /home working at system start.

But my system is hanging on lvchange process when it is shutdowing (or
rebooting). It is likely it is waiting for the device who multipath down
before.

I search in bugs.debian.org/lvm2, and then I could read a bug related [2]

I had to comment vgchange line from /etc/init.d/lvm2 in stop function,
so my system is rebooting fine.

Do you think this change could cause troubles for the future, is
possible corruption? I think if my lvm system were clustered, lvchange
-an must be activate, but if my system is standalone, is it necessary ?

So do you have any tip ?

[1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=498616
[2] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=452360

Thank you

Sorry for my english

Debian Rocks!


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: Ext4 vs Ext3, is it really stable ?

2009-01-21 Thread Ron Johnson

On 01/21/2009 01:15 AM, David Baron wrote:
For booting, one can do as one does using LVM. Keep the needed small 
partitions in ext3 and put everything else in ext4.


Is it possible to change existing partitions or logical LVM partitions using 
tune2fs or similar?


Yes.

http://kernelnewbies.org/Ext4#head-634429ff2676cfc0e86fe9acd7bfa1d2237f2910

--
Ron Johnson, Jr.
Jefferson LA  USA

"I am not surprised, for we live long and are celebrated poopers."


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: [OT] Sidux. SMTP wizards, help a Postfix noob? [Solution]

2009-01-21 Thread Ron Johnson

On 01/20/2009 09:57 PM, s. keeling wrote:

I was missing libsasl2-modules and sasl2-bin.  This was helpful:

   http://tribulaciones.org/docs/postfix-sasl-tls-howto/



Does this mean that there is a Suggests/Recommends/Depends bug in 
Postfix?


--
Ron Johnson, Jr.
Jefferson LA  USA

"I am not surprised, for we live long and are celebrated poopers."


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




downloading hotmail emails

2009-01-21 Thread Daniel Dalton
Hi,

Has anyone had any luck with gotmail and hotmail? Or what other programs
do this? Can someone tell me the best way to download my hotmail emails
into the mbox format locally on my computer?
If you are using gotmail, could you please either provide a config file
or the command line arguments you invoke gotmail or whatever tool you
are using with?

Thanks for any help,

Daniel.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org