Date: Sun, 09 Dec 2007 20:01:49 +0100
From: Andrew Henry <adhenry@bredband.net>
To: debian-user@lists.debian.org
Subject: xsane-0.993 backport for Etch?
Message-ID: <475C3B9D.2050902@bredband.net>
Content-Type: text/plain; charset=ISO-8859-15
Content-Transfer-Encoding: 7bit
I have installed Etch on a laptop being used as a SSH server and
printer/scanner server but I need xsane 0.993 to be able to use my Canon
Pixma MP450 multifunction printer and Etch comes with 0.991.
Does anyone know if there is a DEB for a later version of Xsane out
there on the net? Yes I have looked and doesn't seem to be in Etch
backports either, but maybe someone else knows of a personal repository
out there that has this.
Otherwise, if i download the source I can build it myself, but would
prefer not to... Aren't there loads of dependencies for Sane?
--andrew
--
GnuPG Key ID: ECB18ABA
Fingerprint: FDF3 91FC F5BC 1164 E217 315E 337E 219B ECB1 8ABA
Date: Fri, 7 Dec 2007 20:02:26 -0800
From: cls@truffula.sj.ca.us
To: debian-user@lists.debian.org
Subject: Re: Preferred Backup Method?
Message-ID: <slrnflk5qi.v3.spambait@truffula.sj.ca.us>
[This message has also been posted to linux.debian.user.]
On Wed, Dec 05, 2007 at 03:35:46PM -0800, David Brodbeck wrote:
>
> On Dec 5, 2007, at 3:16 PM, Michael Pobega wrote:
>> tar cvvf foo.tar bar | ssh user@dest "cat > foo.tar"
>>
>> Or am I doing it wrong (I most likely am)? I've never done any sort of
>> piping through SSH before, so any sort of help would be appreciated.
>
> You're close. Try this:
>
> tar cvvf - bar | ssh -e none user@dest "cat >foo.tar"
>
> Using - as the filename tells tar to output to stdout. "-e none" disables
> SSH's escape character, making the session fully transparent -- otherwise
> SSH will go into command mode if your tar output happens to contain a line
> that starts with ~.
What? I've moved many gigabytes through
tar cf - stuff | ssh remotebox tar xf -
If there were a problem with tilde dot in the stream I would
have seen it by now. Let's try an experiment with
Debian boxes truffula (local) and oobleck (remote).
truffula$ cat | ssh oobleck "cat > foo.bar"
this is a line
~.
this is another line
<control-D>
You have new mail in /home/cls/.mbox
truffula$
truffula$ ssh oobleck grep -n "''" foo.bar
1:this is a line
2:~.
3:this is another line
You have new mail in /home/cls/.mbox
truffula$
Well that seems to have worked. (grep -n '' is a trick
for numbering the lines of a text file.)
truffula$ ssh oobleck
Linux oobleck.example.org 2.6.18-5-686 #1 SMP Sun Aug 12 21:57:02 UTC 2007 i686 GNU/Linux
No mail.
Last login: Sat Nov 24 19:01:19 2007 from 192.168.1.221
oobleck$ pwd
/a8/home/cls
oobleck$ <tilde><dot>Connection to oobleck closed.
truffula$
That shows tilde dot works as advertised when you're
talking into a default shell. Wnat if you call a login
shell like any other command?
truffula$ ssh oobleck bash -l -i
cls@oobleck:/a8/home/cls$ uname -n
oobleck.example.org
cls@oobleck:/a8/home/cls$ ~.
bash: line 2: ~.: command not found
cls@oobleck:/a8/home/cls$ exit
You have new mail in /home/cls/.mbox
truffula$
So "ssh host" cares about ~. but "ssh host command" doesn't.
No wonder I've been getting away with tar | ssh tar.
The "-e none" is not necessary.
Cameron
Date: Fri, 7 Dec 2007 19:03:23 -0800
From: cls@truffula.sj.ca.us
To: debian-user@lists.debian.org
Subject: Re: Installation help
Message-ID: <slrnflk2br.v3.spambait@truffula.sj.ca.us>
[This message has also been posted to linux.debian.user.]
In article <9xSj4-6zc-1@gated-at.bofh.it>, Aumnayan D'Letti wrote:
> I am installing the latest stable version of Debian (40rl) and am
> having an issue with how it's seeing my primary HD.
>
> It's set up as the master on the primary IDE chain, which to me
> signifies that it should be seen as IDE1, or HDA. However, the
> partitioner is picking it up as IDE5 (hde). Which posses no problems
> for me until the installation is completed, as there is no /dev/hde.
Welcome to the brave new world of udev.
Device names in /dev are no longer stable. They get created
on the fly as needed, and they don't always get created
in the same order from one boot to the next.
There's a persistence mechanism but you can't rely
on it yet.
In your case, the debian-installer kernel saw that drive
as hde, but the real kernel sees it as, perhaps, hda.
If you do a kernel update, it might be hde again.
Or if you replace a burned out motherboard.
I've had the installers in Debian-4.0r1 and
Ubuntu-7.10 fail because of this problem.
If you don't know what's going on, it's a show-stopper.
In the case of drives with file systems on them, the best
workaround is to add a volume label to each file system.
Then refer to them by volume label in /etc/fstab
and /boot/grub/menu.lst, not by device name. When you
call mount, the kernel will search every disk it can find
looking for the matching file system.
Give your swap partition a volume label, too.
This problem afflicts network interfaces, too. They don't
have volume labels, but they have MAC addresses.
If you only have one Ethernet interface it doesn't matter,
but on a router you should tie the interface names to
MAC addresses. I created a file
/etc/udev/rules.d/z25_persistent-net.rules containing
these lines
SUBSYSTEM=="net", DRIVERS=="?*", ATTRS{address}=="00:30:05:5e:8f:0d", NAME="eth0"
SUBSYSTEM=="net", DRIVERS=="?*", ATTRS{address}=="00:e0:29:6a:d7:63", NAME="eth1"
The double equals are tests for matching. Commas
between tests are logical "and" operators. A single
equals is an assignment.
If you replace an Ethernet card, remember to add another
line for the new MAC address.
For other devices, look in the /sys directory for the
device and then use udevinfo -a -p to discover its
usable attributes.
I tried to force the kernel to see devices in the same
order every time by listing their drivers in /etc/modules.
It's not worth it. Use udev/rules.d. See
http://www.reactivated.net/writing_udev_rules.html and
the remarkably unhelpful
http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev-FAQ
You might also get some clues from how they handle it
in Gentoo.
http://webpages.charter.net/decibelshelp/LinuxHelp_UDEVPrimer.html
and http://forums.debian.net/viewtopic.php?t=259 (sort of a Howto)
and http://www.debianadmin.com/rename-network-interface-using-udev-in-linux.html
Cameron
Date: Mon, 10 Dec 2007 16:01:05 +0200
From: "Dotan Cohen" <dotancohen@gmail.com>
To: debian-user <debian-user@lists.debian.org>
Subject: Putting ext3 journal on separate drive
Message-ID: <880dece00712100601h696b1ee2scad5b979a65143f8@mail.gmail.com>
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: base64
Content-Disposition: inline
SSB3YXMgcmVjZW50bHkgYWR2aXNlZCB0byBwdXQgdGhlIGpvdXJuYWwgb2YgYSBwYXJ0aWN1bGFy
IHBhcnRpdGlvbiBvbgphIHNlcGFyYXRlIGRyaXZlLiBIb3cgaXMgdGhhdCBkb25lPyBTcGVjaWZp
Y2FsbHksIEkgaGF2ZSB0aGUgcGFydGl0aW9uCi9ob21lL3VzZXIvLnRodW1ibmFpbHMgb24gL2Rl
di9oZGEzIGFuZCB0byBzcGVlZCBhY2Nlc3MgdG8gdGhlCn4vLnRodW1ibmFpbHMgZGlyZWN0b3J5
IEkgd2FzIGFkdmlzZWQgdGhhdCB0aGUgam91cm5hbCBmb3IgL2Rldi9oZGEzCnNob3VsZCBiZSBv
biAvZGV2L2hkYi4gSG93IHRvIGRvIHRoYXQ/CgpUaGFua3MgaW4gYWR2YW5jZS4KCkRvdGFuIENv
aGVuCgpodHRwOi8vd2hhdC1pcy13aGF0LmNvbQpodHRwOi8vZ2liYmVyaXNoLmNvLmlsCteQLdeR
LdeSLdeTLdeULdeVLdeWLdeXLdeYLdeZLdeaLdebLdecLdedLdeeLdefLdegLdehLdeiLdejLdek
LdelLdemLdenLdeoLdepLdeqCgpBOiBCZWNhdXNlIGl0IG1lc3NlcyB1cCB0aGUgb3JkZXIgaW4g
d2hpY2ggcGVvcGxlIG5vcm1hbGx5IHJlYWQgdGV4dC4KUTogV2h5IGlzIHRvcC1wb3N0aW5nIHN1
Y2ggYSBiYWQgdGhpbmc/Cg==
Date: Sat, 08 Dec 2007 15:09:45 -0500
From: Ralph Katz <ralph.katz@rcn.com>
To: debian-user <debian-user@lists.debian.org>
Subject: Re: SSH - Relay?
Message-ID: <475AFA09.7090305@rcn.com>
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
On 12/08/2007 11:37 AM, Hal Vaughan wrote:
> There are times when I'm at a client's system and I need to access my
> home computer to tell it to resend data or do something similar so I've
> just ssh'ed in to my home computer from outside.
> I don't want to go into issues with my current ISP, but I would like to
> switch to Verizon FiOS for a number of reasons. I'd rather not have to
> pay the extra for a static IP and the ability to run a web server.
> The one issue with Verizon is that I see in their ToS that I can't run
> any kind of server on my account and I know they block at least port
> 80. I don't plan to use port 80, but if I lost the ability to ssh into
> my home computer, it'd hurt in terms of extra on-sight trips.
> If that can't be done, I'm open to other suggestions.
Hal, You may find some useful help on this fios forum:
http://www.dslreports.com/forum/vzfiber
I've found their rcn forum helpful; for example, rcn also has a
no-server clause, but ssh seems to be ok, at least for me and others.
The ISPs are really worried about web and ftp hosting, imo.
Good luck
Ralph
Date: Mon, 10 Dec 2007 09:58:46 -0500
From: Mark Neidorff <mark@neidorff.com>
To: "John Fleming" <john@wa9als.com>
Cc: debian-user@lists.debian.org
Subject: Re: ATTN Mondo users - pse help cdrom Mondo probs
Message-Id: <200712100958.46502.mark@neidorff.com>
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline
John,
This reply was posted on the Mondo Devel list. Sorry that you missed seeing=
=20
it. I hope it helps you.
=20
I had a similar problem. I created a Mondo DVD (from Debian Etch =A0
stable) and received the same "copy to floppies" message when =A0
attempting to boot. I solved the problem by creating a new Mondo ISO =A0
image *while a CD was mounted*. With a CD mounted, the modules needed =A0
to support the CD drive will be included in the ISO. After the ISO is =A0
created, unmount the CD and use a blank CD/DVD to burn the ISO image. =A0
There are instructions for using the "cdrecord" command in the Mondo =A0
how-to.
http://www.mondorescue.org/docs/mondorescue-howto.html
Judging from a search of the Mondo mailing list archive, this seems =A0
to be a common error message. I believe there have been other causes =A0
for it. I am definitely not a Mondo expert.
On Sunday 09 December 2007 06:03 pm, John Fleming wrote:
> I'm not getting the answer on Mondo-devel, so please indulge me here - I
> really need some help.
>
> Using Mondo in Debian Etch, I burn any of the formats - DVD/CD/ISO. When=
I
> reboot with any of these, and indicate "nuke", shortly after the usual
> "vmlinuz........." message, I see several screens of errors fly by. It
> finally stops and tells me I need to burn the mindi images to floppies
> because it can't find the cdrom. Normally, my cdrom is mounted as
> /dev/hde /media/cdrom0
>
> I can post my mindi.log if someone thinks they can help. (I'm not sure I
> can attach here.) Has anyone else seen this and have some suggestions
> about where to start? This relative newbie doesn't find the answer in the
> logs, the mondo FAQ, or googling.
>
> Mondo is my main means of server backup, and I'm more than a little nervo=
us
> now that I know I can't easily restore from DVD.
>
> Thanks! - John
Date: Mon, 10 Dec 2007 11:12:21 -0600
From: Sam Leon <sam@datanet.ath.cx>
To: debian-user@lists.debian.org
Subject: Re: konqueror won't start
Message-ID: <475D7375.7070403@datanet.ath.cx>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
Bogdan Marian wrote:
> Hello,
>
> I'm running Debian Etch -> Nvidia FX 5200. Everything used to work out
> fine but suddenly, Konqueror won't start...
>
> Bogdan
>
>
What happens if you type " konqueror " in the console?
Sam
Date: Mon, 10 Dec 2007 21:50:17 -0500
From: Ralph Katz <ralph.katz@rcn.com>
To: debian-user <debian-user@lists.debian.org>
Subject: Re: thunderbird webmail in etch version issue
Message-ID: <475DFAE9.5060108@rcn.com>
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
On 12/10/2007 07:49 PM, Hugo Wau wrote:
> How can I get in Debian my mails from YAHOO into
> thunderbird or into a
> mailclient, which is compatible with the WIN$$$
> version of thunderbird?
I use fetchyahoo to read yahoo mail in icedove (thunderbird) on etch.
$ apt-cache show fetchyahoo icedove
However, for Etch, you will need to manually update fetchyahoo to the
current version 2.11.2 from http://fetchyahoo.sourceforge.net for useful
results. Just untar the tarball, then as root, move the executable
fetchyahoo to /usr/bin and you're done.
On icedove or thunderbird, File -> New -> Account -> Unix Mailspool
(Movemail).
This has worked great for me for years. Have fun!
Ralph
Date: Sat, 8 Dec 2007 15:05:08 -0500
From: "Kevin Mark" <kevix.nyc@gmail.com>
To: debian-user@lists.debian.org
Subject: how to get debian.org to accept my yahoo.com email
Message-ID: <588533c60712081205s29e17d1fu2fef30235169b4d8@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Hi debian-users,
my ISP is verizon which uses yahoo.com for sending email. Recently my
email from my .verizon.net account is not being shown on any
.debian.org list. From what I understand debian.org does not want to
receive any of my email because my mail is sent through yahoo.com
which rfc-ignorant.org has listed as a spammer. I don't think there is
anything I can do to stop yahoo from being a spammer. So can I get
Debian to stop using the service of rfc-ignorant.org (I assume not)?
Would the debian-whitelist fix this? Any suggestions?
Kev
ps . I can only use my gmail account to respond to any questions until
this is fixed or email you directly.
----- Forwarded message from MAILER-DAEMON@yahoo.com -----
Date: Mon, 03 Dec 2007 20:38:45 +0000
To: kevin.mark@verizon.net
X-FOLDER: .cron/
X-procmail: spamc
Hi. This is the qmail-send program at yahoo.com.
I'm afraid I wasn't able to deliver your message to the following
addresses.
This is a permanent error; I've given up. Sorry it didn't work out.
<debian-user@lists.debian.org>:
82.195.75.100 does not like recipient.
Remote host said: 550 5.7.1 <debian-user@lists.debian.org>: Recipient
address rejected: Mail appeared to be SPAM or forged. Ask your
Mail/DNS-Administrator to correct HELO and DNS MX settings or to get
removed from DNSBLs; in postmaster.rfc-ignorant.org; in
+abuse.rfc-ignorant.org
Giving up on 82.195.75.100.
--- Below this line is a copy of the message.
Return-Path: <kevin.mark@verizon.net>
Received: (qmail 31568 invoked from network); 3 Dec 2007 20:38:42
-0000
Received: from unknown (HELO horacrux)
(kevin.mark@verizon.net@151.204.138.157 with plain)
by smtp101.vzn.mail.dcn.yahoo.com with SMTP; 3 Dec 2007 20:38:42
-0000
X-YMail-OSG: JpXBYlQVM1mTFXSp5CYqphhVfAf4sQNbXVmxyXbsCsyhwKtzJDUVgIF6KlwffY5MkAFlfrmXWSM9.8TL6oW8P.qoi.7o6Iy5VlQAsWtXvRHH_CrtbYk5
Received: from kevin by horacrux with local (Exim 4.67)
(envelope-from <kevin.mark@verizon.net>)
id 1IzI3n-0005aS-C1
for debian-user@lists.debian.org; Mon, 03 Dec 2007 15:38:35
-0500
Date: Mon, 3 Dec 2007 15:38:35 -0500
From: Kevin Mark <kevin.mark@verizon.net>
To: debian-user@lists.debian.org
Subject: Re: Dual EMC Installation
Message-ID: <20071203203835.GH15182@horacrux>
Mail-Followup-To: Kevin Mark <kevin.mark@verizon.net>,
debian-user@lists.debian.org
References: <4753325F.3010502@verizon.net>
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable
In-Reply-To: <4753325F.3010502@verizon.net>
User-Agent: Mutt/1.5.15+20070412 (2007-04-11)
On Sun, Dec 02, 2007 at 05:31:59PM -0500, Peter Skerda wrote:
Date: Sat, 8 Dec 2007 02:30:29 -0500
From: "Peter Kay" <pkay42@gmail.com>
To: debian-user@lists.debian.org
Subject: FAQ about encrypting harddrive using key on USB key?
Message-ID: <ed7521e20712072330s6c00fc3ei40a44dcadf04a251@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Hello everyone,
I'm trying to become a new debian user, and am still kinda fuzzy on
where the best place to go for FAQs and help are, so bear with me...
I'm trying to set up my laptop with debian on an encrypted / partition
(and I'll have encrypted swap, too). I would like the encryption key
to be stored on an encrypted USB drive that can boot enough of the
system to run debian. So I want to need 2 things to boot: the USB
stick (which will be bootable and take control from the OS) and a
passphrase to unencrypt the USB drive.
I had found a FAQ on how to do this a long time ago, but my desktop
died, so I lost the link. Searching recently, I found what seemed to be
an appropriate link to it (using google) on http://debianhelp.org/, but that
website seemed to be down, so I'm not sure where to go.
In the meantime, of course, the cat ate my power cable (again), so my
laptop is currently DOA and I lost my 1st attempt to post this, but once
I get a replacement adapter, I'd like to get debian up and running!
Does anyone know of a mirror to debianhelp.org, or what happened to it?
Is there a different FAQ I should be using?
Thanks all, and I hope to soon join you in debian-land.
--Peter
Date: Mon, 10 Dec 2007 05:36:08 -0600
From: Hugo Vanwoerkom <hvw59601@care2.com>
To: debian-user@lists.debian.org
Subject: Re: ATTN Mondo users - pse help cdrom Mondo probs
Message-ID: <fjj8b8$h2g$1@ger.gmane.org>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
John Fleming wrote:
> I'm not getting the answer on Mondo-devel, so please indulge me here - I
> really need some help.
>
> Using Mondo in Debian Etch, I burn any of the formats - DVD/CD/ISO.
> When I reboot with any of these, and indicate "nuke", shortly after the
> usual "vmlinuz........." message, I see several screens of errors fly
> by. It finally stops and tells me I need to burn the mindi images to
> floppies because it can't find the cdrom. Normally, my cdrom is mounted as
> /dev/hde /media/cdrom0
>
> I can post my mindi.log if someone thinks they can help. (I'm not sure
> I can attach here.) Has anyone else seen this and have some suggestions
> about where to start? This relative newbie doesn't find the answer in
> the logs, the mondo FAQ, or googling.
>
> Mondo is my main means of server backup, and I'm more than a little
> nervous now that I know I can't easily restore from DVD.
Did you try booting that CD/DVD with a 'noapic' parameter? I have to use
that and I never use 'nuke' but always 'interactive'.
Hugo
Date: Sat, 8 Dec 2007 11:35:42 -0600
From: Owen Heisler <owenh000@gmail.com>
To: debian-user@lists.debian.org
Subject: Re: random keystrokes ignored on console
Message-ID: <20071208173542.GA13265@owenh.hopto.org>
Content-Type: multipart/signed; micalg=pgp-sha1;
protocol="application/pgp-signature"; boundary="liOOAslEiF7prFVr"
Content-Disposition: inline
Content-Language: en
--liOOAslEiF7prFVr
Content-Type: text/plain; charset=utf-8
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable
On Tue, 2007.12.04 08:51, Douglas A. Tutty wrote:
> On Sun, Dec 02, 2007 at 09:28:59PM -0600, Owen Heisler wrote:
> > On Sat, 2007.12.01 06:27, Gabriel Parrondo wrote:
> > > El vie, 30-11-2007 a las 17:16 -0600, Owen Heisler escribi??:
> > > > On Thu, 2007.11.29 22:39, Owen Heisler wrote:
> > > > > On Thu, 2007.11.29 21:32, Owen Heisler wrote:
> > > > > > Sometimes, when I type in the console, about 40% of the
> > > > > > keystrokes are ignored. If I type (for example) "startx" and
> > > > > > hit enter, I'll see "sart" or somesuch and the command fails.
> > > > > > In that same case, typing "sttartxx" and enter probably would
> > > > > > have worked, with "startx" being run. The enter key is also
> > > > > > affected, so maybe I'd have had to hit it twice. This is
> > > > > > frustrating, obviously. This - does not seem to be related to
> > > > > > system temperature, - does not happen in X, - doesn't seem to
> > > > > > be happening consistently, - and affects logging in (username
> > > > > > & password) too.
> > > > >=20
> > > > > I fixed this by upgrading dbus from 1.0.2-1 to 1.1.1-3.
> > > >=20
> > > > Actually, this didn't fix the problem. After the system is
> > > > booted, there are three dbus processes running: two 'dbus-daemon'
> > > > and one 'dbus-launch'. Killing the 'dbus-launch' process fixes
> > > > the problem (until the next reboot, of course).
> > >=20
> > > dbus-launch is used to launch a program within a session bus
> > > instance. Try checking the init scripts to see what program is
> > > being run, that program may be the cause of the problem and not dbus
> > > itself.
> >=20
> > wpa-ifupdown is the only init script that references dbus, and
> > disabling it has no effect. Now I'm only seeing one dbus-daemon
> > process instead of two, though, along with dbus-launch.
>=20
> There's /etc/init.d/dbus which is run in runlevel 2.
Yeah, that too. :)
I've disabled both wpa-ifupdown and dbus and still get two dbus processes=
=20
running after a boot.
--liOOAslEiF7prFVr
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: Digital signature
Content-Disposition: inline
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
iD8DBQFHWtXu9XC8Sh1vpNARAuKpAKDgLKuOS0Y8bievVgeoUMJ7hYqMBQCfaxVP
B598VwR85FwgaCOW+3Z/KRM=
=T7Wd
-----END PGP SIGNATURE-----
--liOOAslEiF7prFVr--
Date: Mon, 10 Dec 2007 22:40:33 +0200
From: "Tshepang Lekhonkhobe" <tshepang@gmail.com>
To: Celejar <celejar@gmail.com>
Cc: debian-user@lists.debian.org
Subject: Re: results: debian-user's favourite FLOSS
Message-ID: <857993970712101240w572dbf08n5376b2b20f987a7f@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
On Dec 3, 2007 12:57 AM, Celejar <celejar@gmail.com> wrote:
> On Sun, 2 Dec 2007 19:36:08 +0200
> "Tshepang Lekhonkhobe" <tshepang@gmail.com> wrote:
>
> [snip]
>
> > Tomboy. The most favourite non-free piece remains Adobe Acrobat, and
> > one wonders when Evince and other free equivalents will catch up.
>
> http://www.linux.com/feature/122195
> http://gnupdf.org/
Thanks for the links...
--
my place on the web:
floss-and-misc.blogspot.com
Date: Sat, 8 Dec 2007 12:30:46 -0800
From: Raquel <raquel@thericehouse.net>
To: debian-user@lists.debian.org
Cc: kevix.nyc@gmail.com
Subject: Re: how to get debian.org to accept my yahoo.com email
Message-Id: <20071208123046.eca4b2c2.raquel@thericehouse.net>
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
On Sat, 8 Dec 2007 15:05:08 -0500
"Kevin Mark" <kevix.nyc@gmail.com> wrote:
> Hi debian-users,
> my ISP is verizon which uses yahoo.com for sending email. Recently
> my email from my .verizon.net account is not being shown on any
> .debian.org list. From what I understand debian.org does not want to
> receive any of my email because my mail is sent through yahoo.com
> which rfc-ignorant.org has listed as a spammer. I don't think there
> is anything I can do to stop yahoo from being a spammer. So can I
> get Debian to stop using the service of rfc-ignorant.org (I assume
> not)? Would the debian-whitelist fix this? Any suggestions?
> Kev
> ps . I can only use my gmail account to respond to any questions
> until this is fixed or email you directly.
Perhaps there's a different problem? I use dsn.rfc-ignorant.org on
my mail server and seem to have no problem getting yahoo mail.
--
Raquel
============================================================
Since when do you have to agree with people to defend them from
injustice? --Lillian Hellman
Date: Sun, 9 Dec 2007 12:53:31 -0500
From: "Michael Marsh" <michael.a.marsh@gmail.com>
To: "Debian User Mailinglist" <debian-user@lists.debian.org>
Subject: Re: How to send a function when the laptop Lid is closed ?(acpi)
Message-ID: <ceb0ad00712090953l38619455lf9c2440ef19e0dca@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
This probably should have gone to debian-laptop, rather than
debian-user. However...
On Dec 9, 2007 6:36 AM, Jabka Atu <mashrom.head@gmail.com> wrote:
> i tried creating the next file in /etc/acpi/event :
> /etc/acpi/events# cat ./lid
> event=button[/]lid
> action=touch /tmp/lidfilename
I have the following as /etc/acpi/sleep_button:
event=button/sleep
action=/etc/acpi/sleep.sh
The sleep.sh script is then:
---[ begin sleep.sh ]---
#!/bin/sh
# if launched through a lid event and lid is open, do nothing
echo "$1" | grep "button/lid" && grep -q open
/proc/acpi/button/lid/LID/state && exit 0
# remove USB 1.1 driver
rmmod uhci_hcd
# sync filesystem and clock
sync
/sbin/hwclock --systohc
# switch to console
FGCONSOLE=`fgconsole`
chvt 6
#/usr/sbin/radeontool light off
# go to sleep
sleep 5 && echo -n "mem" > /sys/power/state
# readjust the clock (it might be off a bit after suspend)
/sbin/hwclock --adjust
/sbin/hwclock --hctosys
# reload USB 1.1 driver
modprobe uhci_hcd
# turn on the backlight and switch back to X
#radeontool light on
chvt $FGCONSOLE
# get alsa to actually play sound again -- very hackish
/usr/bin/amixer set Master toggle; /usr/bin/amixer set Master toggle
/usr/bin/amixer set PCM toggle; /usr/bin/amixer set PCM toggle
---[ end sleep.sh ]---
I cribbed this from somewhere (I can't recall where), with the amixer
tweaks at the end because my sound appears to always be disabled when
the laptop wakes up. It's not toggled to the "off" setting, though,
which is why I toggle Master and PCM twice each.
--
Michael A. Marsh
http://www.umiacs.umd.edu/~mmarsh
http://mamarsh.blogspot.com
http://36pints.blogspot.com
End of debian-user-digest Digest V2007 Issue #2983
**************************************************
Received on Tue Dec 11 16:37:51 2007