Re: need help in installing nic drivers

2003-01-29 Thread Haim Ashkenazi
From my expreience with Dell's computers they need a special version of
e1000 module. one of my clients uses only Dell computer's and they sent
him a version of this module (he only uses red-hat), but I think they've
also sent him the source. you can ask your dealer about that, and if he
can't help let me know and I'll try to get it from him.

Good Luck.

On Tue, 2003-01-28 at 23:11, Kenn Murrah wrote:
 Greetings.
 
 I just purchased a Dell server with the intention of installing Debian woody
 on it ... all looks good except the NIC ... instructions seem to be for Red
 Hat 7.x only, about which it says, There is native driver support for the
 integrated Intel 10/100/1000 NIC. To enable Linux support for the NIC,
 install the e1000.o module from (location given) 
 
 Since the base installation was unable to find the NIC, i'm assuming that
 Debian will require the same module (?) ... if so, where can I find info on
 installing it (I'm trying to move up in the world, having experimented with
 Mandrake for the last several months, and I've never needed to know how to
 do this ...
 
 Feel free, of course, to tell me to RTFM, but please point me the right
 direction ...
 
 Any and all help GREATLY appreciated.
 
 Thanks.
 
 Ken
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]
-- 
Haim


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




Re: Fwd: getting postfix + sasl to work

2003-01-29 Thread Angel L. Mateo
El día Tue, 28 Jan 2003 08:08:26 -0800 Rupa Schomaker
[EMAIL PROTECTED] escribió:

 
 Got it.  Just reviewed the sasl documentation.  The *only* way to
 support CRAM-MD5 or DIGEST-MD5 (encrypted auth) is to use sasldb or
 something called auxprop -- not sure how they are related.  So, even
 if you got saslauthd working (and the documentation is correct), it
 will only support traditional (non encrypted) authentication.
 
I think you are wrong. I have postfix + sasl in a Solaris server (not
chrooted) and I use CRAM-MD5 to authenticate via saslauthd.


-- 
Angel L. Mateo Martínez
Sección de Redes y Comunicaciones
Area de Tecnologías de la Información   _o)
y las Comunicaciones Aplicadas (ATICA)  / \\
http://www.um.es/atica_(___V
Tfo: 968367590
Fax: 968363389


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




Re: ext 3 partitions (was Re: SOLVED :-) Re: error on root filesystem DEBIAN WON'T BOOT )

2003-01-29 Thread nate
Joris Huizer said:
 I did the tune2fs stuff but when I change the ext2 to
 ext3 in /etc/fstab I get weird stuff: errors about the
 kernel not being able to handle it or something and
 the boot stops soon after that; (vi isn't even found,
 I have to use sed to change the /etc/fstab back again
 (in case it states it's ext2 the boot is successfully.

what kernel? ext3 is not maintained in 2.2.x anymore, so if
you plan to use ext3 be sure you have a 2.4.x kernel. you
can cat /proc/filesystems to see what filesystems are supported
(this won't include any that are available as modules).

if your using a 2.2.x and want a journalling filesystem the best
bet is reiserfs. I think 2.2.21 is the latest kernel that supports
it, 2.2.19 is the latest kernel I've tested reiserfs on, have done
extensive testing for the past year or more, works wonderfully
with some known issues(e.g. software raid 1,5 not supported).

nate




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




Re: alsa and saving mixer settings

2003-01-29 Thread Qian Gong
On Wed, Jan 29, 2003 at 07:27:33AM +0100, Roman Joost wrote:
 On Mon, Jan 27, 2003 at 03:06:43PM -0500, Matthew Weier O'Phinney wrote:
  Unfortunately, I find that the first time I want to play anything, I
  have to open a mixer (I use gmix), which then sets the levels, before I
  can hear anything.
Try alsamixer. The settings are stored.

Qian


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




Re: Alas and alack.

2003-01-29 Thread Jens Christian Gram
Bob Paige [EMAIL PROTECTED] writes:

 I'm a big Linux fan because of usability, extensibility,
 flexibility, and security issues.  I believe that the different
 mechanisms available with GNU software, especially the Debian
 GNU/Linux way, lends itself well to dealing with these issues.  But
 not even Debian can deal with systems that are improperly managed.
 Apparently some people still don't take software maintenance
 seriously.  Self managed systems can help some, but it still takes
 involvement from people, and that will always be the bottom line as
 far as I am concerned.

 Being something of a newbie myself, can someone suggest a way to keep
 a system up to date?

 I know through apt-get (or wajig) you can automatically download and
 install the latest updates, but I would like to see a system that
 automatically notifies you (via email?) when such an update results in
 new packages being installed.

 Ideas?

 - Bobman

I run the following script from cron. It does what you requested.

#!/bin/sh
# A script to download available Debian updates and list packages that
# will be updated. Designed to be quiet enough to be run from cron.
#
# Copyright (c) 2002 Marius Gedminas
# Licensed under the GNU GPL.

apt-get update -qq
apt-get dist-upgrade -d -u -y -q | fgrep -v Reading Package Lists...
Building Dependency Tree...
0 packages upgraded, 0 newly installed, 0 to remove and 0  not upgraded.

-- 
Med venlig hilsen
Jens Christian Gram
[EMAIL PROTECTED]
Dataingeniørstuderende, 5. sem., AAU
Systemadministrator, Institut for Fysik, AAU



msg27096/pgp0.pgp
Description: PGP signature


Re: Fwd: getting postfix + sasl to work

2003-01-29 Thread Pierre Burri
Hi
I just entered in the list, so I didn't see your first question, but postfix 
with sasldb works fine. The trick under debian with sasldb is to copy (after 
having added the user in sasldb) /etc/sasldb to /var/spool/postfix/etc and 
making this file redeable for postfix because postfix is chrooted.
Regards, Pierre



Am Mittwoch, 29. Januar 2003 09:09 schrieb Angel L. Mateo:
 El día Tue, 28 Jan 2003 08:08:26 -0800 Rupa Schomaker

 [EMAIL PROTECTED] escribió:
  Got it.  Just reviewed the sasl documentation.  The *only* way to
  support CRAM-MD5 or DIGEST-MD5 (encrypted auth) is to use sasldb or
  something called auxprop -- not sure how they are related.  So, even
  if you got saslauthd working (and the documentation is correct), it
  will only support traditional (non encrypted) authentication.

   I think you are wrong. I have postfix + sasl in a Solaris server (not
 chrooted) and I use CRAM-MD5 to authenticate via saslauthd.

-- 
My Sites: http://www.linux-age.com  http://www.globeall.de

Tel. +49 (0)30 757 02 517
Fax: +49 (0)30 757 02 518


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




Re: Thinkpad T30 Specs

2003-01-29 Thread nate
arief_mulya said:
 Dear all,



 As the laptop arrives just now, I'm preparing to install a
 Sarge on it. I've already done repartition. [Why does IBM
 need to use that 3 Gigs for recovery anyway...] Still
 keeping winXP and that IBM recovery partition.


have you used google?
http://www.msu.edu/~pfaffben/t30.html

looks like a good place to get started.

http://www.google.com/search?hl=enlr=ie=UTF-8q=thinkpad+t30+linuxspell=1

nate



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




Re: alsa and saving mixer settings

2003-01-29 Thread James Tappin
On Wed, 29 Jan 2003 09:23:51 +0100
Qian Gong [EMAIL PROTECTED] wrote:

 On Wed, Jan 29, 2003 at 07:27:33AM +0100, Roman Joost wrote:
  On Mon, Jan 27, 2003 at 03:06:43PM -0500, Matthew Weier O'Phinney
  wrote:
   Unfortunately, I find that the first time I want to play anything, I
   have to open a mixer (I use gmix), which then sets the levels,
   before I can hear anything.
 Try alsamixer. The settings are stored.

Not true, you need to run alsactl store to preserve settings through
reboots.

James

-- 
James Tappin, O__  I forget the punishment for using
[EMAIL PROTECTED]   --  \/`Microsoft --- Something lingering
http://www.tappin.me.uk/with data loss in it I fancy  


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




Re: Fwd: getting postfix + sasl to work

2003-01-29 Thread Angel L. Mateo
El día Wed, 29 Jan 2003 09:45:01 +0100 martin f krafft
[EMAIL PROTECTED] escribió:

 also sprach Angel L. Mateo [EMAIL PROTECTED] [2003.01.29.0909 +0100]:
  I think you are wrong. I have postfix + sasl in a Solaris server
  (not
  chrooted) and I use CRAM-MD5 to authenticate via saslauthd.
 
 can you share more information, like the configuration of saslauthd,
 and how you configured postfix? and pam?
 
I dit it compiling all the software (postfix and sasl) from the source
(postfix 1.1.11 and sasl 1.5.28, I think). I configure postfix to do
authentication via saslauthd (in the smtpd.conf file). Then, the only I
have to do is to run saslauthd before run postfix. I didn't need to
configure anything more. With this configuration, I can authenticate
with PLAIN, CRAM-MD5 and any other authentication mechanism that SASL
supports (saslauthd is running as root).

-- 
Angel L. Mateo Martínez
Sección de Redes y Comunicaciones
Area de Tecnologías de la Información   _o)
y las Comunicaciones Aplicadas (ATICA)  / \\
http://www.um.es/atica_(___V
Tfo: 968367590
Fax: 968363389


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




Re: Fwd: getting postfix + sasl to work

2003-01-29 Thread martin f krafft
also sprach Angel L. Mateo [EMAIL PROTECTED] [2003.01.29.0950 +0100]:
 configure anything more. With this configuration, I can authenticate
 with PLAIN, CRAM-MD5 and any other authentication mechanism that SASL
 supports (saslauthd is running as root).

How do you start saslauthd?

-- 
Please do not CC me! Mutt (www.mutt.org) can handle this automatically.
 
 .''`. martin f. krafft [EMAIL PROTECTED]
: :'  :proud Debian developer, admin, and user
`. `'`
  `-  Debian - when you have better things to do than fixing a system
 
NOTE: The pgp.net keyservers and their mirrors are broken!
Get my key here: http://people.debian.org/~madduck/gpg/330c4a75.asc



msg27101/pgp0.pgp
Description: PGP signature


Re: Fwd: getting postfix + sasl to work

2003-01-29 Thread Angel L. Mateo
El día Wed, 29 Jan 2003 09:59:38 +0100 martin f krafft
[EMAIL PROTECTED] escribió:

 also sprach Angel L. Mateo [EMAIL PROTECTED] [2003.01.29.0950 +0100]:
  configure anything more. With this configuration, I can authenticate
  with PLAIN, CRAM-MD5 and any other authentication mechanism that
  SASL supports (saslauthd is running as root).
 
 How do you start saslauthd?
 
saslauthd (nothing more)

-- 
Angel L. Mateo Martínez
Sección de Redes y Comunicaciones
Area de Tecnologías de la Información   _o)
y las Comunicaciones Aplicadas (ATICA)  / \\
http://www.um.es/atica_(___V
Tfo: 968367590
Fax: 968363389


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




Re: Fwd: getting postfix + sasl to work

2003-01-29 Thread martin f krafft
also sprach Angel L. Mateo [EMAIL PROTECTED] [2003.01.29.1002 +0100]:
   saslauthd (nothing more)

do you know how it authenticates?
/etc/sasldb? pam?

-- 
Please do not CC me! Mutt (www.mutt.org) can handle this automatically.
 
 .''`. martin f. krafft [EMAIL PROTECTED]
: :'  :proud Debian developer, admin, and user
`. `'`
  `-  Debian - when you have better things to do than fixing a system
 
NOTE: The pgp.net keyservers and their mirrors are broken!
Get my key here: http://people.debian.org/~madduck/gpg/330c4a75.asc



msg27103/pgp0.pgp
Description: PGP signature


Bash terminal beep - how to shut it up?

2003-01-29 Thread Kevin . Bewley
Hi,
   I'm running Debian 3.0r1 on my laptop. Whenever I'm working in a bash
terminal or the console certain actions cause the terminal to BEEP through
the PC Speaker. This is annoying the hell out of my missus when she's
trying to watch TV and I've just scrolled a man page too far! What is the
invocation to shut it up? Which of my .bash files should I put it in?

Come to think of it, how can I shut this up system-wide?

Thanks for your help,
Kevin




The information contained in this e-mail is intended only for the individual or entity 
to whom it is addressed.  It may contain privileged and confidential information and 
if you are not an intended recipient you must not copy, distribute or take any action 
in reliance on it.  If you have received this e-mail in error, please notify us 
immediately by telephone on +44 (0)1980 612100.  Please also destroy or delete the 
message from your computer.


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




Re: ext3 partition recovery (Again)

2003-01-29 Thread Miguel
On Wed, 29 Jan 2003 10:41:51 +0530
Jeetu Golani [EMAIL PROTECTED] wrote:

 
 Hi there,
 
 Your fdisk doesn't show the last ext3 partition, therefore your
 partition table is messed up (nothing new in that). Gpart seems to
 think that there're two other partitions apart from the ones being
 detected by fdisk i.e. one partition more than what you suggested in
 your earlier mail where in you said 
 
  My partition looks (used to...) like this:
|-- 1. NTFS
|
|-- 2. ext2
|
|-- 3. extended
|
| |-- 3.1 ext3  [ / ]
| |
| |-- 3.2 swap
| |
| |-- 3.3 ext3 [/home]
 
 Gpart thinks that beyond the last ext3 partition there's another Linux
 Partition?? Could you tell me the sizes of each partition as you
 remember them. Do you think there was another partition beyond the
 last /ext3 partition that you've mentioned above.

No, there was not other partition at the end. Probably just some free
space at the end. The last partition (the lost one) was about 6.5G.

I suppose I can get the old partition table information from the
/boot/boot.XXX file created by lilo. I am not using lilo at this moment
but that file is still there and I didn't changed the partitions since I
changed lilo by grub. How can I retrieve that information from the
boot.XXX file?

Do you think this problem is recoverable?

 
 Bye
 
 
 
 On Wednesday 29 Jan 2003 12:00 am, you wrote:
  Ok, here goes the output of some useful commands. Hope it helps...
 
  fdisk -l /dev/hda:
  --
 
  Disk /dev/hda: 255 heads, 63 sectors, 2432 cylinders
  Units = cylinders of 16065 * 512 bytes
 
 Device BootStart   EndBlocks   Id  System
  /dev/hda1   * 1   510   4096543+   7  HPFS/NTFS
  /dev/hda2   511   632979965b  Win95 FAT32
  /dev/hda3   633  2432  144585005  Extended
  /dev/hda5   633  1544   7325608+  83  Linux
  /dev/hda6  1545  1580289138+  82  Linux swap
 
  gpart -v /dev/hda:
  --
 
  dev(/dev/hda) mss(512) chs(2432/255/63)(LBA) #s(39070080)
  size(19077mb) Primary partition(1)
 type: 007(0x07)(OS/2 HPFS, NTFS, QNX or Advanced UNIX) (BOOT)
 size: 4000mb #s(8193087) s(63-8193149)
 chs:  (0/1/1)-(509/254/63)d (0/1/1)-(509/254/63)r
 hex:  80 01 01 00 07 FE 7F FD 3F 00 00 00 3F 04 7D 00
 
  Primary partition(2)
 type: 011(0x0B)(DOS or Windows 95 with 32 bit FAT)
 size: 956mb #s(1959930) s(8193150-10153079)
 chs:  (510/0/1)-(631/254/63)d (510/0/1)-(631/254/63)r
 hex:  00 00 41 FE 0B FE BF 77 7E 04 7D 00 FA E7 1D 00
 
  Primary partition(3)
 type: 005(0x05)(Extended DOS)
 size: 14119mb #s(28917000) s(10153080-39070079)
 chs:  (632/0/1)-(1023/254/63)d (632/0/1)-(2431/254/63)r
 hex:  00 00 81 78 05 FE FF FF 78 EC 9A 00 08 3D B9 01
 
 Logical partition
type: 131(0x83)(Linux ext2 filesystem)
size: 7153mb #s(14651217) s(10153143-24804359)
chs:  (632/1/1)-(1023/254/63)d (632/1/1)-(1543/254/63)r
hex:  00 01 81 78 83 FE FF FF 3F 00 00 00 51 8F DF 00
 
 Logical partition
type: 130(0x82)(Linux swap or Solaris/x86)
size: 282mb #s(578277) s(24804423-25382699)
chs:  (1023/254/63)-(1023/254/63)d (1544/1/1)-(1579/254/63)r
hex:  00 FE FF FF 82 FE FF FF 3F 00 00 00 E5 D2 08 00
 
  Primary partition(4)
 type: 000(0x00)(unused)
 size: 0mb #s(0) s(0-0)
 chs:  (0/0/0)-(0/0/0)d (0/0/0)-(0/0/0)r
 hex:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
 
 
  Begin scan...
  Possible partition(Windows NT/W2K FS), size(4000mb), offset(0mb)
 type: 007(0x07)(OS/2 HPFS, NTFS, QNX or Advanced UNIX)
 size: 4000mb #s(8193080) s(63-8193142)
 chs:  (0/1/1)-(509/254/56)d (0/1/1)-(509/254/56)r
 hex:  00 01 01 00 07 FE 78 FD 3F 00 00 00 38 04 7D 00
 
  Possible partition(DOS FAT), size(956mb), offset(4000mb)
 type: 012(0x0C)(DOS or Windows 95 with 32 bit FAT, LBA)
 size: 956mb #s(1959930) s(8193150-10153079)
 chs:  (510/0/1)-(631/254/63)d (510/0/1)-(631/254/63)r
 hex:  00 00 41 FE 0C FE BF 77 7E 04 7D 00 FA E7 1D 00
 
  Possible extended partition at offset(4957mb)
 Possible partition(Linux ext2), size(7153mb), offset(4957mb)
type: 131(0x83)(Linux ext2 filesystem)
size: 7153mb #s(14651216) s(10153143-24804358)
chs:  (632/1/1)-(1023/254/63)d (632/1/1)-(1543/254/62)r
hex:  00 01 81 78 83 FE FF FF B7 EC 9A 00 50 8F DF 00
 
 Possible partition(Linux swap), size(282mb), offset(12111mb)
type: 130(0x82)(Linux swap or Solaris/x86)
size: 282mb #s(578272) s(24804423-25382694)
chs:  (1023/254/63)-(1023/254/63)d (1544/1/1)-(1579/254/58)r
hex:  00 FE FF FF 82 FE FF FF 47 7C 7A 01 E0 D2 08 00
 
  Possible extended partition at offset(12393mb)
 Possible partition(Linux ext2), size(2055mb), offset(13656mb)
type: 131(0x83)(Linux ext2 filesystem)
size: 2055mb #s(4208960) 

Re: Slang for money [was: Re: Backup Consensus?]

2003-01-29 Thread will trillich
On Tue, Jan 28, 2003 at 04:13:56PM +, Pigeon wrote:
 On Mon, Jan 27, 2003 at 07:50:12PM -0600, will trillich wrote:
  OT: so where's the lexicon that relates quid, guinea, bob,
  shilling, pence, pound and so forth, for the ignorant
  north-americaner? :)

 1 pound = 240 (old) pennies
 1 pound = 100 new pennies
 Quid = pound (slang)
 Pence = alternative form of Pennies
 Shilling = 12 old pennies = 5 new pennies
 Half-crown = 2/6 (2 shillings and 6 pence), 30 old pennies, 12.5 new
 pennies
 Bob = shilling (slang)
 Hapenny = half-penny (elision)
 Thruppenny bit = 3 (old) penny coin

so (old) 1 pound/quid was 20 shillings/bobs, each of which was
12 pence/pennies, for a total of 240 pence/d; a crown would have
been 4bob+12d (60d, or 1/4quid, also 15 thrupenny).

(old)
1quid=  20bob=  240pence
1£   =  20s  =  240d

right?

 Guinea = 1 pound 1 shilling.

1guinea  =  1£+1s =  21s  = trés bizarre

 Sovereign = Gold coin worth one pound

1sovereign = 1£

how'm i doin'?

and the new system has much less romance:

1£ = 100p, woo hoo (no bob?)

it's a shame our ancestors didn't use base dozen [3x4]. then the
fraction 1/3 would be a nice .4 (and .6 would be a nice half, .3
would be one fourth)... alas, ten engenders much more difficult
math. at least hours and minutes use a very workable base 60...

 I tend to use terms like quid or pound because I still
 expect pound (£) signs to be turned into hash (#) signs by
 non-British equipment. To make matters worse, Americans
 sometimes call hash signs pound signs, so asking did my pound
 signs come out OK can get a misleading answer. Puzzles me a
 bit - I thought # was an American symbol anyway - does it just
 have two American names, one of which is better at crossing
 oceans? (Because pound is heavy, and sinks?)

two people separated by a common language, remember. :)
americans tend to call things by almost anything but their
proper name (at least i seldom get it right)-- and then expect
the rest of the world to just understand... (here in the
american midwest it's as if no other nation ever existed!)

sometime in the last decade there was a big push to submit names
for the # button on the phone, here... pound was apparently
the winner.

hash-mark, number-sign (we're #1!), grid, etc...

-- 
I use Debian/GNU Linux version 3.0;
Linux server 2.4.20-k6 #1 Mon Jan 13 23:49:14 EST 2003 i586 unknown
 
DEBIAN NEWBIE TIP #24 from Will Trillich [EMAIL PROTECTED]
:
Curious about DISK PARTITIONING schemes? That's a frequent topic
at debian-user -- look for it in the archives at lists.debian.org
or read Karsten's approach at
http://kmself.home.netcom.com/Linux/FAQs/partition.html

Also see http://newbieDoc.sourceForge.net/ ...


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




Re: what's fstype 83? amp;quot;Linuxamp;quot;?

2003-01-29 Thread will trillich
On Tue, Jan 28, 2003 at 10:17:03AM -0600, Nathan E Norman wrote:
 On Mon, Jan 27, 2003 at 11:20:40PM -0800, nate wrote:
  will trillich said:
   files on /dev/hdb2 have modification times no later than
   september 2000 -- pre-ext3 by a long shot. and i'm *positive*
   i've never even tried reiserfs, certainly not two-and-a-half
   years ago. wasn't ext2 the default for formatting under the
   potato or slink install? (as i recall, potato would start out as
   ext2 and then offered an ext3 option later... nope, ext3 didn't
   work either.)
  
  I'd try what another poster suggested, try the debian slink rescue disks.
  or just format it and forget about it, if you haven't needed the data
  on that disk for 2 years you probably won't miss anything :)
 
 IMO, the OP's problem is the screwy geometry.  Note that the only
 partition that could be mounted was the one which ended on a proper
 boundary.

tell me some more about this, if you don't mind.

reveal hardwareignorance=tautologicallyobvious
my bios auto-detect persistently came up with a value that was
just ONE away from what was labelled on the drive itself; maybe
that's what screwed me up...
/reveal

-- 
I use Debian/GNU Linux version 3.0;
Linux server 2.4.20-k6 #1 Mon Jan 13 23:49:14 EST 2003 i586 unknown
 
DEBIAN NEWBIE TIP #100 from Leonard Stiles [EMAIL PROTECTED]
:
Looking for a way to CREATE A PAGE OF LINKS to all the
*/index.html that already exist in your /usr/share/doc tree?
#!/bin/sh
# as /usr/doc contains lots of symlinks to /usr/share/doc, adding
# -follow to find args may be useful.
{ echo '!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01//EN'
  echo 'http://www.w3.org/TR/html40/strict.dtd;';
  echo 'htmlheadtitleDocumentation Links/title/headbody';
  find /usr/doc -name index.html \
   -printf 'href=file:%p%P/abr\n';
  echo '/body/html';
}  links.html

Also see http://newbieDoc.sourceForge.net/ ...


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




Re: How to determine why a package is held back?

2003-01-29 Thread will trillich
okay, i just zapped most of this thread yesterday, and now i go
back to look for it and it's not yet on geocrawler, and it's not
yet on lists.debian.org either...

what's the sequence for establishing WHY apt is holding packages
back from being upgraded, again?

:)

thanks!

-- 
I use Debian/GNU Linux version 3.0;
Linux server 2.4.20-k6 #1 Mon Jan 13 23:49:14 EST 2003 i586 unknown
 
DEBIAN NEWBIE TIP #60 from Vineet Kumar [EMAIL PROTECTED]
:
Been hoping to find A FEATURE-PACKED MUTT CONFIG FILE? Check
out the ones at Sven Guckes' site:
http://www.fefe.de/muttfaq/muttrc
There's also some great vimrc ideas there, too.

Also see http://newbieDoc.sourceForge.net/ ...


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




Re: Bash terminal beep - how to shut it up?

2003-01-29 Thread andrej hocevar
On Wed, Jan 29, 2003 at 09:26:11AM +, [EMAIL PROTECTED] wrote:
I'm running Debian 3.0r1 on my laptop. Whenever I'm working in a bash
 terminal or the console certain actions cause the terminal to BEEP through
 the PC Speaker. This is annoying the hell out of my missus when she's
 trying to watch TV and I've just scrolled a man page too far! What is the
 invocation to shut it up? Which of my .bash files should I put it in?

put this into your /etc/inputrc:

set bell-style none


andrej

-- 
echo ${girl_name}  /etc/dumpdates


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




Re: No audio from cd-rom

2003-01-29 Thread Aryan Ameri
On Tuesday 28 January 2003 15:16, Helgi Örn Helgason wrote:
 tis 2003-01-28 klockan 11.54 skrev [EMAIL PROTECTED]:

  You mean the CD didn't play well in a normal CD-player either? In that
  case, it seems quite obvious something's wrong with the CD, and not
  with your CD-ROM.

 No, I,m talking about my computer, I tried to use the same drive but using
 other software cdplayer to just play from the same cd. There's nothing
 wrong with the cd itself. The problem is: my cd-rom drive does not play
 audio cd's in my stationary Debian box. Why is that?

Do you have ide-scsi emulation?

Cheers

-- 
Dismiss the weak and inferior, embrace the 
 Evil and Possess your Box  before the beast 
 that has been unleashed upon you
-UNDEAD EvilEntity Linux

Aryan


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




Re: give cdrom source more priority in apt-get [lost the original]

2003-01-29 Thread andrej hocevar
Unfortunately no one has responded to this by now, I too was waiting.
The apt_preferences manpage does mention pinning an origin, but
until now I couldn't succeed. 
My less attractive alternative was to add all packages on my CDs into
my preferences file. What I got was an unreasonably long file,
produced by this one-liner:

perl -ne 'print if /^Package:/ or s/^Version: (.+)/Pin: version $1\n/;' 

You have to supply an argument: list of files. Maybe that can vary, I
don't know, on my system it was /var/lib/apt/lists/D*, in contrast
to /var/lib/apt/lists/f* for ftp. Take a look at the files there
and redirect the output to your new preferences file.

andrej

-- 
echo ${girl_name}  /etc/dumpdates


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




Re: Bash terminal beep - how to shut it up?

2003-01-29 Thread Stephan Seitz
Hi!

On Wed, Jan 29, 2003 at 09:26:11AM +, [EMAIL PROTECTED] wrote:
 Come to think of it, how can I shut this up system-wide?

From /etc/inputrc:
set bell-style none

Then restart bash.

Shade and sweet water!

Stephan

-- 
| Stephan Seitz   E-Mail: [EMAIL PROTECTED] |
|  WWW: http://fsing.fs.uni-sb.de/~stse/|
| PGP Public Keys: http://fsing.fs.uni-sb.de/~stse/pgp.html |



msg27113/pgp0.pgp
Description: PGP signature


Re: PGP Signatures

2003-01-29 Thread mess-mate
On Tue, 28 Jan 2003 17:26:26 -0800
Paul Johnson [EMAIL PROTECTED] wrote:

| On Mon, Jan 27, 2003 at 08:50:06PM +0100, mess-mate wrote:
|  But the senders public key must be retrieved from a key-server and added 
|  to your own key-list before an automated check is possible.
|  mess-mate
| 
| Unless you've set your gnupg to automagically grab public keys from
| the keyserver for you.
| 
Uhh, good idea, how can I do that ??


-- 
Computers are like air conditioners, they are useless when you open
Windows.


msg27114/pgp0.pgp
Description: PGP signature


very very strange bash/sed bug !!

2003-01-29 Thread Xavier Bestel
Hi,

it's been a loong time I have a bug on my system: ./libtool is
incorrectly generated by ./configure. I haven't been able to correct it
for months.

Today I discovered where lies the bug: it's somewhere between bash and
sed.

First and foremost, I'm running debian/unstable, and have sed 3.02-8.1,
bash 2.05b-6 and libtool 1.4.3-5 (but it's been there since several
versions).

Now the bug:

echo xx lt1
echo xx lt2
sed '' /usr/share/libtool/ltmain.sh lt1
sed '' /usr/share/libtool/ltmain.sh |less lt2
diff lt1 lt2

They differ !!! And surprisingly, only lt2 is correct !

If anyone could try to help me find why my intallation does that, I'd
appreciate much. I already tried reinstalling the concerned packages,
but no luck.

Xav


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




is /dev/dsp in use?

2003-01-29 Thread Felipe Martínez Hermo


Hi!

I have just installed testing on a new box and several programs
say /dev/dsp is in use. However, if I type cat foo  /dev/dsp
it sounds, so I suppose it is well configured. 
/dev/dsp has rw permimsions for everyone

How can I know which process is holding
that device and why?


Thank you all.

-- 

==
Felipe Martínez Hermo
[EMAIL PROTECTED]
[EMAIL PROTECTED]
==
Servicios Informáticos
UGT Galicia
[EMAIL PROTECTED]
==


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




Re: Slang for money [was: Re: Backup Consensus?]

2003-01-29 Thread Colin Watson
On Wed, Jan 29, 2003 at 03:31:58AM -0600, will trillich wrote:
 On Tue, Jan 28, 2003 at 04:13:56PM +, Pigeon wrote:
  1 pound = 240 (old) pennies
  1 pound = 100 new pennies
  Quid = pound (slang)
  Pence = alternative form of Pennies
  Shilling = 12 old pennies = 5 new pennies
  Half-crown = 2/6 (2 shillings and 6 pence), 30 old pennies, 12.5 new
  pennies
  Bob = shilling (slang)
  Hapenny = half-penny (elision)
  Thruppenny bit = 3 (old) penny coin
 
 so (old) 1 pound/quid was 20 shillings/bobs, each of which was
 12 pence/pennies, for a total of 240 pence/d; a crown would have
 been 4bob+12d (60d, or 1/4quid, also 15 thrupenny).

You wouldn't tend to say x bob and ...; x shillings and y pence was
usually pronounced x and y or x and ypence, so a crown would have
been four and twelvepence, except that 12d == 1s, so a crown was
actually five shillings.

Quid tends not to be used with fractions. Five quid, yes; 1/4
quid, no. Oh, and neither bob nor quid normally takes an s in the
plural.

 and the new system has much less romance:
 
   1? = 100p, woo hoo (no bob?)

I think I might have heard bob still used for 5p, but I wouldn't swear
to it. The term's sometimes still used by older people to refer to an
unspecified small amount of money. I don't fall into that category,
though; I just about remember ha'pennies before they were abolished in
1984.

-- 
Colin Watson  [[EMAIL PROTECTED]]


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




sharing /var/mail/username with mutt and Evolution..

2003-01-29 Thread Kevin . Bewley

Hi,
   I have a problem with Evolution - I keep swinging from trees! :-)

Seriously, using Debian 3.0r1 stable I've got mutt working beautifully
picking up mail from my /var/mail/kevin mbox. When I installed Evolution
and pointed it to this box and set it to 'use Unix mail spool file' it
cannot get the messages out of the spool. While mutt still works perfectly.

If I set evolution to Local mbox support it gets the mail out of the spool
but doesn't leave it there so I cannot see it from mutt then, help! I think
there must be some trick to getting Evolution to leave the mail in
/var/mail/kevin or to have /var/mail/kevin act as my Inbox?

Any one have any ideas?

Thanks,
Kevin
--



The information contained in this e-mail is intended only for the individual or entity 
to whom it is addressed.  It may contain privileged and confidential information and 
if you are not an intended recipient you must not copy, distribute or take any action 
in reliance on it.  If you have received this e-mail in error, please notify us 
immediately by telephone on +44 (0)1980 612100.  Please also destroy or delete the 
message from your computer.


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




Re: Bash terminal beep - how to shut it up?

2003-01-29 Thread Richard Hector
On Wed, 2003-01-29 at 22:26, [EMAIL PROTECTED] wrote:
 Hi,
I'm running Debian 3.0r1 on my laptop. Whenever I'm working in a bash
 terminal or the console certain actions cause the terminal to BEEP through
 the PC Speaker. This is annoying the hell out of my missus when she's
 trying to watch TV and I've just scrolled a man page too far! What is the
 invocation to shut it up? Which of my .bash files should I put it in?
 
 Come to think of it, how can I shut this up system-wide?

You could try looking here:

http://tldp.org/HOWTO/mini/Visual-Bell.html

Richard



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




Re: scrolling trough the argument of a command

2003-01-29 Thread Colin Watson
On Wed, Jan 29, 2003 at 08:58:31AM +0100, Pierre Burri wrote:
 with another flavour of linux, I can scroll trough the argument of
 bash command with Page Up instead of scrolling the whole commands
 (with Arrow Up) saved in the history. 
 For example if in the past I have edited with vi the files /etc/hosts,
 /etc/apache/httpd.conf and /etc/samba/smb.conf, I can enter vi and
 then with Page Up scroll only the vi commands: /etc/hosts,
 /etc/apache/httpd.conf and /etc/samba/smb.conf. 

I've never seen PgUp used that way - perhaps it's some set of default
readline bindings - but try Ctrl-R followed by whatever you're searching
for, then repeatedly hitting Ctrl-R.

-- 
Colin Watson  [[EMAIL PROTECTED]]


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




Re: Communicator removed from Testing?

2003-01-29 Thread Tom Pfeifer
Colin Watson wrote:

 Leaving it there with known security holes was worse ...
 
 If you want it back, there is really only one option: find a developer
 willing to maintain it properly. That's absolutely all it comes down to.

Mark L. Kahnt wrote:

 As Colin notes in his reply, and was noted in the advisory that DWN
 noted, it was subject to serious bugs that weren't seeing any sign, in
 Debian, of getting any better. The source code not being available and
 not as many using it anymore, it was not showing signs of being fixed to
 be raised to meet Debian standards for security. The decision wasn't
 something commercial - it was in keeping with the Debian policies
 iiuc. 


OK guys, thanks for the clarifications and explanations. After reading
more about this, it's clear that I jumped the gun a bit in being
critical of Debian on this issue.

Tom


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




Thinkpad T30 Specs

2003-01-29 Thread arief_mulya
Dear all,



As the laptop arrives just now, I'm preparing to install a 
Sarge on it. I've already done repartition. [Why does IBM 
need to use that 3 Gigs for recovery anyway...] Still 
keeping winXP and that IBM recovery partition.

Btw, This is a brand new laptop, and I already eXPerience 
that BSOD shit, with the so called stable and enhanced WinXP 
;-P What did I do? I just put a LAN cable from the currently 
running laptop to it, hoping the DHCP would work and I can 
connect to Internet, but instead got a reboot ;-) Well, at 
least now they tell me what happened (turn out to be some 
problem on the ATI Radeon Driver).

Anyway, this is the specs of my T30, I'm planning to put 
sarge on it, but I do like to have some more advice on this.

- Intel P4-M 1.9GHz w/ 256 MiB
- ATI Mobility Radeon 7500
- MATSHITA DVD-ROM SR-8177
- IBM ThinkPad FIR Port
- SoundCard: SoundMAX ?? (what's this exactly?)
- Agere Systems AC'97 Modems
- Intel PRO/100 VE ethernet card
- ACPI
- USB
- IBM ThinkNav for mouse navigations

What I like to know is:
1. Are those hardware currently supported?
2. Which kernel/software needed?
3. Are there any special settings for this Thinkpad?
4. Does IBM Fn keys works with Linux (I know that with 
Toshiba it work if toshiba kernel support enabled, and with 
Dell Latitude it also work without enabling anything)

I've check Linux-Laptop website, and still searching there 
to gathered more information on this.

I really appreciate any advice given. If you need more info 
just let me know...

For friends at debian-laptop@ please CC'd me directly.


Thanks!
Best Regards,

arief_mulya
--
Happy Debian.


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



Re: PGP Signatures

2003-01-29 Thread Seneca
On Wed, Jan 29, 2003 at 11:39:57AM +0100, mess-mate wrote:
 On Tue, 28 Jan 2003 17:26:26 -0800
 Paul Johnson [EMAIL PROTECTED] wrote:
 
 | On Mon, Jan 27, 2003 at 08:50:06PM +0100, mess-mate wrote:
 |  But the senders public key must be retrieved from a key-server and added 
 |  to your own key-list before an automated check is possible.
 |  mess-mate
 | 
 | Unless you've set your gnupg to automagically grab public keys from
 | the keyserver for you.
 | 
 Uhh, good idea, how can I do that ??

In ~/.gnupg/gnupg.conf, uncomment or add
keyserver-options auto-key-retrieve.

-- 
Seneca
[EMAIL PROTECTED]


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




Re: BackOrifice on Linux?

2003-01-29 Thread UnKnown
You may have install the fakebo package it is design to implemente a fake
Back Orifice, to capture attacks of this tipe to your network. Any way run 
a netstat -p to see wich process is using that port.

Cheers,
rak

On Tue, Jan 28, 2003 at 04:43:51PM -0600, Kent West wrote:
 I just ran the command sudo nmap  -sT -sU localhost which listed the 
 following:
 
 . . .
 
 12345/tcp  openNetBus 
 12346/tcp  openNetBus 
 27665/tcp  openTrinoo_Master  
 31335/udp  openTrinoo_Register
 31337/tcp  openElite  
 31337/udp  openBackOrifice
 32770/udp  opensometimes-rpc4 
 
 . . .
 
 
 
 Should I be concerned, or is this maybe part of portsentry or something 
 similar?
 
 Sweating just a bit,
 Kent
 
 
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact 
 [EMAIL PROTECTED]
 


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




Re: very very strange bash/sed bug !!

2003-01-29 Thread Seneca
On Wed, Jan 29, 2003 at 11:52:36AM +0100, Xavier Bestel wrote:
 it's been a loong time I have a bug on my system: ./libtool is
 incorrectly generated by ./configure. I haven't been able to correct it
 for months.
 
 Today I discovered where lies the bug: it's somewhere between bash and
 sed.
 
 First and foremost, I'm running debian/unstable, and have sed 3.02-8.1,
 bash 2.05b-6 and libtool 1.4.3-5 (but it's been there since several
 versions).
 
 Now the bug:
 
 echo xx lt1
 echo xx lt2
 sed '' /usr/share/libtool/ltmain.sh lt1
 sed '' /usr/share/libtool/ltmain.sh |less lt2
 diff lt1 lt2
 
 They differ !!! And surprisingly, only lt2 is correct !

I ran those commands and lt1 and lt2 do not differ. I use the same
versions of sed, bash, and libtool as you. What is the
difference between lt1 and lt2?

-- 
Seneca
[EMAIL PROTECTED]


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




pppd on demand problems...

2003-01-29 Thread Vittorio
Having now hired a dsl line at home, I connected two Pentium PCs at
home with a notebook functioning as a gateway server for the internet
connection with 'pon dsl-provider demand idle 60' command through a
rudimentary firewall (and a sshd session). Setting up the server I
thought:the simplest, the better! Therefore no diald by far more
complicated than ppp on demand which I'd learned had been somewhat
enhanced (it works fine at last, they say), pppoe, openssh, iptables,
kernel 2.4.19, lynx, all for a mere 300 MB of disk space.
 
Now the problem is that if I launch a lynx www.debian.org either
from the server or from a client the ppp session starts immediatedly
and all works fine. But, once closed lynx, ppp doesn't hang up but
stays connected endlessly.

Could you please suggest why this can happen and - above all - the
steps, the tests I should carry out to make it work (please,
straightforward explanation will be highly appreciated!)?

Ciao
Vittorio



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




Help: motherboard works with Linux?

2003-01-29 Thread James Buchanan
Hi all,

I am thinking of buying this motherboard: Gigabyte GA-8IEXP with the Intel
845E AGPset chipset - what worries me is its winbond I/O chip.  Is that
like a winmodem ie. only works with Windows?

Here is the spec: http://www.giga-byte.com/products/8iexp.htm

Please help if you can.  I'd like to know if I can install Debian Woody
using this motherboard or whether it will fail because it isn't supported.

Thanks heaps
James



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




Re: is /dev/dsp in use?

2003-01-29 Thread Seneca
On Wed, Jan 29, 2003 at 12:09:16PM +0100, Felipe Mart?nez Hermo wrote:
 I have just installed testing on a new box and several programs say
 /dev/dsp is in use. However, if I type cat foo  /dev/dsp it sounds,
 so I suppose it is well configured.  /dev/dsp has rw permimsions for
 everyone
   
 How can I know which process is holding that device and why?

fuser -v /dev/dsp will tell you the process that is using /dev/dsp.
As for why, that you'll have to determine yourself.

-- 
Seneca
[EMAIL PROTECTED]


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




Ipsec under Linux

2003-01-29 Thread Francois Chenais
Hello, 

What is the best way to create IPSec under Debian ?

François



msg27129/pgp0.pgp
Description: PGP signature


Re: CD-writer is not recognized as a scsi device

2003-01-29 Thread Vera Friederichs
Nicos Gollan wrote:
 On Friday 24 January 2003 16:01, Vera Friederichs wrote:
  Hi,
  in my computer is a ATAPI IDE CD-writer (and another CDROM). But cdrecord
  -scanbus finds only my scsi hard disk.
  In lilo.conf there is a line
  append= hdb=ide-scsi hdc=ide-scsi

Try hdb=scsi hdc=scsi instead. That's what works for me.

I have tried this and then at least the ide-driver did not grab the CD-writer. But 
still 
cdrecord -scanbus
did not find it.

Ruediger Noack wrote:
 I think you need some more.

 sg 24068   0  (autoclean)
 sr_mod 11832   0  (autoclean)
 ide-scsi7680   0
 cdrom  28960   0  (autoclean) [sr_mod]
 scsi_mod   80600   3  (autoclean) [sg sr_mod ide-scsi]

I have tried a lot of combinations loading and removing the modules in different 
orders with 
modprobe and with hdb=ide-scsi hdc=ide-scsi and hdb=scsi hdc=scsi. No success. In 
the end I 
have compiled a new kernel with scsi emulation and ... support (I forgot the exact 
name) compiled in.
Then it worked! 
But only for curiosity: Why didn't it work with the modules?

Thanks, 
Vera



msg27130/pgp0.pgp
Description: PGP signature


Re: OT: running a command on many files in many subdirectories

2003-01-29 Thread Clive Standbridge
On Wed 29 Jan 2003 10:27:22 +(+), Clive Standbridge wrote:
 
 I think you would want to round up nnumber to avoid one processor running two xargs 
processes:

Sorry, that wasn't quite what I meant to say. I'll try again:
... to avoid xargs running two mogrify processes on one processor.
I hope that that's clearer.


-- 
Cheers,
Clive


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




Apache redirecting virtualhost domains

2003-01-29 Thread Rus Foster
Hi All,
 I've been trying to alias home directories on a virtual host onto another
host.

What I have is

freeshells.65535.net and I would like

http://freeshells.65535.net/~(.*) to goto http://freeshel1.65535.net/$1

I've been looking at mod_alias and AliasMatch and have

AliasMatch ^(~.*) http://freeshell1.65535.net/$1

Am I on the right track or could someone suggest a better way? (moving
home directories isn't and option)

Cheers

rus

--
http://www.65535.net | MSN: [EMAIL PROTECTED]
Lifetime Linux or FreeBSD account: $100 || Lifetime Hosting: $150
Offsite Backups - Remote System Monitoring



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




kernel-patch-freeswan cryptoapi

2003-01-29 Thread Francois Chenais
Hello, 

I just have install the kernel-patch-freeswan but the building process fails because 
it doesn't find linux/crypto.h.

The warning message says to install cryptoapi.
I have run apt-get install cryptoapi-core-source but what must I do now with the 
/usr/src/cryptoapi-core.tar.gz file ? (I have red the README.Debian ;-)

Perhaps it could be usefull to had a dependance between the 2 packages ?


Thanks by advance 

François




msg27133/pgp0.pgp
Description: PGP signature


Re: scrolling trough the argument of a command

2003-01-29 Thread Michael Naumann
On Wednesday 29 January 2003 08:58, Pierre Burri wrote:
 with another flavour of linux, I can scroll trough the argument of bash 
 command with Page Up instead of scrolling the whole commands (with Arrow 
 Up) saved in the history. 
 For example if in the past I have edited with vi the files /etc/hosts, 
 /etc/apache/httpd.conf and /etc/samba/smb.conf, I can enter vi and then with 
 Page Up scroll only the vi commands: /etc/hosts, /etc/apache/httpd.conf and 
 /etc/samba/smb.conf. 
 How can I do that with Debian?
 Thanks a lot for any help.
 Pierre

I have the following in my .inputrc

\C-f: history-search-forward
\C-b: history-search-backward

Does what you want, but not for the keys you want.
I think it should be possible to remap the Page-Keys as well.

HTH, Michael


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




Re: ext3 partition recovery (Again)

2003-01-29 Thread Jeetu Golani

Hi,

I feel strongly that this problem is recoverable, however you will have to 
construct a manual partition table using the Linux Fdisk. With a lil bit of 
guess work and a lil trial and error I think you should be able to recover 
the partitions and data within.

I think you mentioned you used gpart, did you write the partition table after 
using gpart i.e. with the gpart -w option?? I don't think that will help but 
I want to know if after doing this were you still able to access the other 
partitions.

Also mention the partition sizes for each of your partitions as you remember 
them and your total hard disk capacity.

Bye for now



On Wednesday 29 Jan 2003 4:06 pm, you wrote:
 On Wed, 29 Jan 2003 10:41:51 +0530

 Jeetu Golani [EMAIL PROTECTED] wrote:
  Hi there,
 
  Your fdisk doesn't show the last ext3 partition, therefore your
  partition table is messed up (nothing new in that). Gpart seems to
  think that there're two other partitions apart from the ones being
  detected by fdisk i.e. one partition more than what you suggested in
  your earlier mail where in you said
 
   My partition looks (used to...) like this:
 |-- 1. NTFS
 |
 |-- 2. ext2
 |
 |-- 3. extended
 |
 | |-- 3.1 ext3  [ / ]
 | |
 | |-- 3.2 swap
 | |
 | |-- 3.3 ext3 [/home]
 
  Gpart thinks that beyond the last ext3 partition there's another Linux
  Partition?? Could you tell me the sizes of each partition as you
  remember them. Do you think there was another partition beyond the
  last /ext3 partition that you've mentioned above.

 No, there was not other partition at the end. Probably just some free
 space at the end. The last partition (the lost one) was about 6.5G.

 I suppose I can get the old partition table information from the
 /boot/boot.XXX file created by lilo. I am not using lilo at this moment
 but that file is still there and I didn't changed the partitions since I
 changed lilo by grub. How can I retrieve that information from the
 boot.XXX file?

 Do you think this problem is recoverable?

  Bye
 
  On Wednesday 29 Jan 2003 12:00 am, you wrote:
   Ok, here goes the output of some useful commands. Hope it helps...
  
   fdisk -l /dev/hda:
   --
  
   Disk /dev/hda: 255 heads, 63 sectors, 2432 cylinders
   Units = cylinders of 16065 * 512 bytes
  
  Device BootStart   EndBlocks   Id  System
   /dev/hda1   * 1   510   4096543+   7  HPFS/NTFS
   /dev/hda2   511   632979965b  Win95 FAT32
   /dev/hda3   633  2432  144585005  Extended
   /dev/hda5   633  1544   7325608+  83  Linux
   /dev/hda6  1545  1580289138+  82  Linux swap
  
   gpart -v /dev/hda:
   --
  
   dev(/dev/hda) mss(512) chs(2432/255/63)(LBA) #s(39070080)
   size(19077mb) Primary partition(1)
  type: 007(0x07)(OS/2 HPFS, NTFS, QNX or Advanced UNIX) (BOOT)
  size: 4000mb #s(8193087) s(63-8193149)
  chs:  (0/1/1)-(509/254/63)d (0/1/1)-(509/254/63)r
  hex:  80 01 01 00 07 FE 7F FD 3F 00 00 00 3F 04 7D 00
  
   Primary partition(2)
  type: 011(0x0B)(DOS or Windows 95 with 32 bit FAT)
  size: 956mb #s(1959930) s(8193150-10153079)
  chs:  (510/0/1)-(631/254/63)d (510/0/1)-(631/254/63)r
  hex:  00 00 41 FE 0B FE BF 77 7E 04 7D 00 FA E7 1D 00
  
   Primary partition(3)
  type: 005(0x05)(Extended DOS)
  size: 14119mb #s(28917000) s(10153080-39070079)
  chs:  (632/0/1)-(1023/254/63)d (632/0/1)-(2431/254/63)r
  hex:  00 00 81 78 05 FE FF FF 78 EC 9A 00 08 3D B9 01
  
  Logical partition
 type: 131(0x83)(Linux ext2 filesystem)
 size: 7153mb #s(14651217) s(10153143-24804359)
 chs:  (632/1/1)-(1023/254/63)d (632/1/1)-(1543/254/63)r
 hex:  00 01 81 78 83 FE FF FF 3F 00 00 00 51 8F DF 00
  
  Logical partition
 type: 130(0x82)(Linux swap or Solaris/x86)
 size: 282mb #s(578277) s(24804423-25382699)
 chs:  (1023/254/63)-(1023/254/63)d (1544/1/1)-(1579/254/63)r
 hex:  00 FE FF FF 82 FE FF FF 3F 00 00 00 E5 D2 08 00
  
   Primary partition(4)
  type: 000(0x00)(unused)
  size: 0mb #s(0) s(0-0)
  chs:  (0/0/0)-(0/0/0)d (0/0/0)-(0/0/0)r
  hex:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  
  
   Begin scan...
   Possible partition(Windows NT/W2K FS), size(4000mb), offset(0mb)
  type: 007(0x07)(OS/2 HPFS, NTFS, QNX or Advanced UNIX)
  size: 4000mb #s(8193080) s(63-8193142)
  chs:  (0/1/1)-(509/254/56)d (0/1/1)-(509/254/56)r
  hex:  00 01 01 00 07 FE 78 FD 3F 00 00 00 38 04 7D 00
  
   Possible partition(DOS FAT), size(956mb), offset(4000mb)
  type: 012(0x0C)(DOS or Windows 95 with 32 bit FAT, LBA)
  size: 956mb #s(1959930) s(8193150-10153079)
  chs:  (510/0/1)-(631/254/63)d (510/0/1)-(631/254/63)r
  hex:  00 00 41 FE 0C FE BF 77 7E 04 7D 00 FA E7 1D 00
  
   Possible extended partition at offset(4957mb)
  Possible 

Re: ext3 partition recovery (Again) - forgot this

2003-01-29 Thread Jeetu Golani

Forgot to add this to my earlier mail, you mentioned you have the partition 
info when you used lilo. Please mail that info, you should be able to 
reconstruct your partition table with that info using fdisk.

Bye

On Wednesday 29 Jan 2003 4:06 pm, you wrote:
 On Wed, 29 Jan 2003 10:41:51 +0530

 Jeetu Golani [EMAIL PROTECTED] wrote:
  Hi there,
 
  Your fdisk doesn't show the last ext3 partition, therefore your
  partition table is messed up (nothing new in that). Gpart seems to
  think that there're two other partitions apart from the ones being
  detected by fdisk i.e. one partition more than what you suggested in
  your earlier mail where in you said
 
   My partition looks (used to...) like this:
 |-- 1. NTFS
 |
 |-- 2. ext2
 |
 |-- 3. extended
 |
 | |-- 3.1 ext3  [ / ]
 | |
 | |-- 3.2 swap
 | |
 | |-- 3.3 ext3 [/home]
 
  Gpart thinks that beyond the last ext3 partition there's another Linux
  Partition?? Could you tell me the sizes of each partition as you
  remember them. Do you think there was another partition beyond the
  last /ext3 partition that you've mentioned above.

 No, there was not other partition at the end. Probably just some free
 space at the end. The last partition (the lost one) was about 6.5G.

 I suppose I can get the old partition table information from the
 /boot/boot.XXX file created by lilo. I am not using lilo at this moment
 but that file is still there and I didn't changed the partitions since I
 changed lilo by grub. How can I retrieve that information from the
 boot.XXX file?

 Do you think this problem is recoverable?

  Bye
 
  On Wednesday 29 Jan 2003 12:00 am, you wrote:
   Ok, here goes the output of some useful commands. Hope it helps...
  
   fdisk -l /dev/hda:
   --
  
   Disk /dev/hda: 255 heads, 63 sectors, 2432 cylinders
   Units = cylinders of 16065 * 512 bytes
  
  Device BootStart   EndBlocks   Id  System
   /dev/hda1   * 1   510   4096543+   7  HPFS/NTFS
   /dev/hda2   511   632979965b  Win95 FAT32
   /dev/hda3   633  2432  144585005  Extended
   /dev/hda5   633  1544   7325608+  83  Linux
   /dev/hda6  1545  1580289138+  82  Linux swap
  
   gpart -v /dev/hda:
   --
  
   dev(/dev/hda) mss(512) chs(2432/255/63)(LBA) #s(39070080)
   size(19077mb) Primary partition(1)
  type: 007(0x07)(OS/2 HPFS, NTFS, QNX or Advanced UNIX) (BOOT)
  size: 4000mb #s(8193087) s(63-8193149)
  chs:  (0/1/1)-(509/254/63)d (0/1/1)-(509/254/63)r
  hex:  80 01 01 00 07 FE 7F FD 3F 00 00 00 3F 04 7D 00
  
   Primary partition(2)
  type: 011(0x0B)(DOS or Windows 95 with 32 bit FAT)
  size: 956mb #s(1959930) s(8193150-10153079)
  chs:  (510/0/1)-(631/254/63)d (510/0/1)-(631/254/63)r
  hex:  00 00 41 FE 0B FE BF 77 7E 04 7D 00 FA E7 1D 00
  
   Primary partition(3)
  type: 005(0x05)(Extended DOS)
  size: 14119mb #s(28917000) s(10153080-39070079)
  chs:  (632/0/1)-(1023/254/63)d (632/0/1)-(2431/254/63)r
  hex:  00 00 81 78 05 FE FF FF 78 EC 9A 00 08 3D B9 01
  
  Logical partition
 type: 131(0x83)(Linux ext2 filesystem)
 size: 7153mb #s(14651217) s(10153143-24804359)
 chs:  (632/1/1)-(1023/254/63)d (632/1/1)-(1543/254/63)r
 hex:  00 01 81 78 83 FE FF FF 3F 00 00 00 51 8F DF 00
  
  Logical partition
 type: 130(0x82)(Linux swap or Solaris/x86)
 size: 282mb #s(578277) s(24804423-25382699)
 chs:  (1023/254/63)-(1023/254/63)d (1544/1/1)-(1579/254/63)r
 hex:  00 FE FF FF 82 FE FF FF 3F 00 00 00 E5 D2 08 00
  
   Primary partition(4)
  type: 000(0x00)(unused)
  size: 0mb #s(0) s(0-0)
  chs:  (0/0/0)-(0/0/0)d (0/0/0)-(0/0/0)r
  hex:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  
  
   Begin scan...
   Possible partition(Windows NT/W2K FS), size(4000mb), offset(0mb)
  type: 007(0x07)(OS/2 HPFS, NTFS, QNX or Advanced UNIX)
  size: 4000mb #s(8193080) s(63-8193142)
  chs:  (0/1/1)-(509/254/56)d (0/1/1)-(509/254/56)r
  hex:  00 01 01 00 07 FE 78 FD 3F 00 00 00 38 04 7D 00
  
   Possible partition(DOS FAT), size(956mb), offset(4000mb)
  type: 012(0x0C)(DOS or Windows 95 with 32 bit FAT, LBA)
  size: 956mb #s(1959930) s(8193150-10153079)
  chs:  (510/0/1)-(631/254/63)d (510/0/1)-(631/254/63)r
  hex:  00 00 41 FE 0C FE BF 77 7E 04 7D 00 FA E7 1D 00
  
   Possible extended partition at offset(4957mb)
  Possible partition(Linux ext2), size(7153mb), offset(4957mb)
 type: 131(0x83)(Linux ext2 filesystem)
 size: 7153mb #s(14651216) s(10153143-24804358)
 chs:  (632/1/1)-(1023/254/63)d (632/1/1)-(1543/254/62)r
 hex:  00 01 81 78 83 FE FF FF B7 EC 9A 00 50 8F DF 00
  
  Possible partition(Linux swap), size(282mb), offset(12111mb)
 type: 130(0x82)(Linux swap or Solaris/x86)
 size: 282mb #s(578272) 

find a command i have recently used in bash

2003-01-29 Thread Sandip P Deshmukh
hello all

i am sure there must be a way of doing it. i am not getting it though.

let us say, i have done ls -l , etc etc
then i have done a few more commands at the prompt.

now, i want to use that ls command again. is there a way inwhich i can
reach it quickly? for instance, i type ls and some other key and bash
completes from history?

-- 
regards,
sandip p deshmukh
--***
BOFH excuse #40:

not enough memory, go get system upgrade


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




Re: No audio from cd-rom

2003-01-29 Thread Helgi Örn Helgason
ons 2003-01-29 klockan 10.35 skrev Aryan Ameri:
 On Tuesday 28 January 2003 15:16, Helgi Örn Helgason wrote:
  tis 2003-01-28 klockan 11.54 skrev [EMAIL PROTECTED]:
 
   You mean the CD didn't play well in a normal CD-player either? In that
   case, it seems quite obvious something's wrong with the CD, and not
   with your CD-ROM.
 
  No, I,m talking about my computer, I tried to use the same drive but using
  other software cdplayer to just play from the same cd. There's nothing
  wrong with the cd itself. The problem is: my cd-rom drive does not play
  audio cd's in my stationary Debian box. Why is that?
 
 Do you have ide-scsi emulation?
 
Please take a look at here, it will answer your question:
http://lists.debian.org/debian-user/2003/debian-user-200301/msg05093.html

Cheers,
HÖ


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




Re: PGP Signatures

2003-01-29 Thread mess-mate
On Wed, 29 Jan 2003 07:07:30 -0500
Seneca [EMAIL PROTECTED] wrote:

| On Wed, Jan 29, 2003 at 11:39:57AM +0100, mess-mate wrote:
|  On Tue, 28 Jan 2003 17:26:26 -0800
|  Paul Johnson [EMAIL PROTECTED] wrote:
|  
|  | On Mon, Jan 27, 2003 at 08:50:06PM +0100, mess-mate wrote:
|  |  But the senders public key must be retrieved from a key-server and added 
|  |  to your own key-list before an automated check is possible.
|  |  mess-mate
|  | 
|  | Unless you've set your gnupg to automagically grab public keys from
|  | the keyserver for you.
|  | 
|  Uhh, good idea, how can I do that ??
| 
| In ~/.gnupg/gnupg.conf, uncomment or add
| keyserver-options auto-key-retrieve.
| 
?? there is no gnupg.conf !! Did I missing somewhat ?
here are the files I have in ~/.gnupg :
mess.txt  options  pubring.gpg  pubring.gpg~  random_seed  secring.gpg  trustdb.gpg
mess-mate

-- 
Computers are like air conditioners, they are useless when you open
Windows.


msg27139/pgp0.pgp
Description: PGP signature


Re: Trouble installing postgresql

2003-01-29 Thread Rob Weir
On Tue, Jan 28, 2003 at 08:45:11AM -0800, Dave De Graff wrote:
 I get the following error when trying to install postgresql. The
 packages listed as required dependencies are all available. Does
 anyone know why apt is not simply installing these along with
 postgresql?
 
 Thanks,
 
 Dave De Graff
 
 root@host:~# apt-get install postgresql
 Reading Package Lists... Done
 Building Dependency Tree... Done
 Some packages could not be installed. This may mean that you have
 requested an impossible situation or if you are using the unstable
 distribution that some required packages have not yet been created
 or been moved out of Incoming.
 
 Since you only requested a single operation it is extremely likely that
 the package is simply not installable and a bug report against
 that package should be filed.
 The following information may help to resolve the situation:
 
 Sorry, but the following packages have unmet dependencies:
   postgresql: Depends: libkrb5-17-heimdal (= 0.4e-23) but it is not going to be 
installed
   Depends: postgresql-client but it is not going to be installed
   Depends: libpq3 (= 7.3.1) but it is not going to be installed
 E: Sorry, broken packages
 root@host:~#

Is this sid?  Have you checked the BTS? http://bugs.debian.org/

-rob



msg27140/pgp0.pgp
Description: PGP signature


Re: Trying to build Phoenix

2003-01-29 Thread Matthew Weier O'Phinney
-- David P James [EMAIL PROTECTED] wrote
(on Tuesday, 28 January 2003, 11:00 PM -0500):
 I've been trying to build Phoenix from source and have run into a bit of 
 a snag. I want to build it with QT support, which is fine, as there is 
 an option to do this. The problem is when I attempt to build I get this 
 error:
 
 ...
 checking for moc... moc
 checking for main in -lqt... yes
 checking Qt - version = 2.2.0... no
 configure: error: Qt Mozilla requires at least version 2.2.0 of Qt
 *** Fix above errors and then restart with gmake -f client.mk build
 gmake: *** [/opt/mozilla/Makefile] Error 1
 
 I have KDE 2.2.2 installed, but I don't know if that is sufficient on 
 its own (well, given the evidence, apparently not). What packages should 
 I have installed? I had to install libqt-dev for it to pass the moc 
 check, so I would have hoped that would do it. I'm running a mixed 
 system right now between testing and unstable. Perhaps I should  attempt 
 to upgrade to KDE3?

Do you have libqt-dev installed? Usually when compiling from source, if
a dependency is listed, you'll need to make sure the corresponding -dev
packages for that dependency are installed -- these are the source
headers for those packages.

-- 
Matthew Weier O'Phinney
[EMAIL PROTECTED]


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




Re: cdrecord

2003-01-29 Thread Rob Weir
On Tue, Jan 28, 2003 at 02:27:06PM -0800, Curtis Vaughan wrote:
 Trying to figure out how to record a CD using cdrecord with a Ricoh 
 MP6200A CD Burner.
 
 Here is what I have been able to do.
 
 First thing I do before each session is erase the cd with the following 
 command:
 cdrecord dev=0,0,0 blank=all
 I believe this works as there are no errors, at least.
 
 But to burn I have tried the following commands with no luck with any of 
 them.
 
 cdrecord dev=0,0,0 -data /directory/
 cdrecord dev=0,0,0 -data /directory/*
 cdrecord dev=0,0,0 -data /directory/file.txt

I'm fairly sure these three are guaranteed to fail.

 mkisofs -R /directory/ | cdrecord speed=2 dev=0,0,0 tsize=960s -

Does your drive need the tsize parameter?  Have you set it correctly?

The failure mode of the first three and final command will be entirely
different, could you better define 'no luck'?

 I just need to save files from a specific directory to a CD that will be 
 readable for Windows clients.

mkisofs -R -J /dir|cdrecord dev=X,Y,Z -v -

with any reasonable CD burner should burn a disk that can be read on
both Unix and Windows systems quite comfortably.

-rob



msg27142/pgp0.pgp
Description: PGP signature


Re: (forw) [hugh@mjr.org: Re: Quick aptitude question...]

2003-01-29 Thread Rob Weir
On Sun, Jan 26, 2003 at 05:54:03PM +, Hugh Saunders wrote:
 On Sun, Jan 26, 2003 at 01:46:41PM +1100, Rob Weir wrote:
  # aptitude install bleh
  
 Yeah, i figured that but then i thought why not apt-get!! 

Aptitude is smarter in same ways, for a start, but the bigger reason is
that aptitude keeps track of which packages were explicitly installed,
and which were installed to satisfy dependencies...

Say I want to try out KDE (kde2 for this example, since it's in sid).
Hmm, it seems to be uninstallable at the moment anyhow :/...I'll just
make up this example then.

kde is just a meta-package; it depends on a pile of programs and a
bazillion libraries.  If I 'apt-get install kde', try it out, then
decide I prefer twm after all, my natural reaction would be to 'apt-get
--purge remove kde' to get rid of it...

Oh, wait!  That only removes the KDE package, which is ~1KB, not KDE
which is several orders of magnitude greater!  aptitude, on the other
hand, would have noticed that the piles of programs and bazillion
libraries were only installed because the 'kde' package depended on
them, and will happily remove them (if you let it, this feature is, of
course, configurable) for you, getting you back to the state you were
before you tried kde.

And that's the story of why I use aptitude instead of apt-get 90% of the
time :-)

 Would still be good to be able to sync the aptitude package status with
 the actual package status, is this possible?

Doesn't it?  Or do you mean package holds and such?

-rob



msg27143/pgp0.pgp
Description: PGP signature


Re: Cdrecord and audio cd

2003-01-29 Thread Rob Weir
On Mon, Jan 27, 2003 at 08:15:44PM +0530, Sridhar M.A. wrote:
 Is there something that I have missed while creating an audio cd? Why
 does not linux sense the audio cd, while both doze and regular cd
 players do? Have I missed some module/switch/incantaion that needs to be
 loaded/given/chanted?

The first thing I do when I've got a weird/damaged/odd CD is let
cdparanoia have a go at it.  If it can't read it, you've got serious
issues.

That said, what do you mean it can't sense it?  Does the aforementioned
cdparanoia rip it?  Can it detect it at least?  Does the disk spin up?
Does the access light come on?  Does the kernel complain about it?

-rob



msg27144/pgp0.pgp
Description: PGP signature


Re: Help with setting time from internet timeservers over dialup

2003-01-29 Thread Rob Weir
On Fri, Jan 24, 2003 at 02:38:14PM +, [EMAIL PROTECTED] wrote:
 
 Hi,
I am using Debian 3.0r1 and connect to the internet using a dialup.
 Basically I've set my /etc/peers/provider and my /etc/chatscript to dial up
 Freeserve Anytime and negotiate ppp using PAP. pppd handles getting the
 link up and running and all I do is type 'pon' and 'poff' to bring the
 network up and down. This is a single machine with nothing else connected
 to it.
 
 My questions are thus:
 a) What package do I need to install to set my system time from an internet
 timeserver? (and write it to the CMOS clock?)

chrony.  Read the info page to find out how it interacts with the CMOS
clock.

 b) Where is the _right_ place to invoke this, what script?
  I'd like it to set the clock upon establishing a ppp connection.

chrony does this automatically.

 c) anything else you might think would be helpful for me?

Use chrony :)

-rob



msg27145/pgp0.pgp
Description: PGP signature


Re: GNOME == bloatware?

2003-01-29 Thread Rob Weir
On Thu, Jan 23, 2003 at 10:01:14PM -0500, Derrick 'dman' Hudson wrote:
 I've been using gnome since before 1.0.55, but now (with gnome 2) I
 use gnome itself less and less.  I find it slow to start up and moving
 in directions I don't particularly like (eg the windows registry
 clone^W^W^W^Wgconf).  

I made the leap away from GNOME to pure sawfish a few months ago, and
I've been quite happy with it.  I put the last gtk1.2 version of sawfish
on hold (since the rest of the apps I use are gtk1.2 based (if using
much of a toolkit at all)) and have been quite enjoying it. 

 Currently I only use the panel to have handy application launchers and
 the workspace switcher applet.  If anyone has suggestions for
 replacing either one with a lighter alternative I'm all for it 

I downloaded spager (aka sawfish-pager) and built it from source against
gtk1.2 (since the version in sid conflicts with my version of sawfish);
it works great, aside from a little startup weirdness.  For app
launching, I'm just using key bindings now.  shift+f1 launches an Eterm,
shift+f2 a dtemacs window and shift+f3 a new galeon window.  For other
apps, I just sawfish's root menu, or start them from the Eterm I already
have in front of me ;)

In the blinkenlight department. gkrellm has more fake flashing LEDs and
simulated buttons than any one person could ever use ;)

 (and a session manager that will keep the X session alive yet still
 allow me to restart the window manager at will).

I thought a session manager maintained your session across logins?  I
can certainly restart sawfish here and not have my X session collapse,
though the windows do seem to move around a fair bit.

-rob



msg27146/pgp0.pgp
Description: PGP signature


Re: big problem with libc6 install

2003-01-29 Thread Rob Weir
On Sun, Jan 26, 2003 at 07:30:42PM +, Pigeon wrote:
 On Sun, Jan 26, 2003 at 02:09:52PM +1100, Rob Weir wrote:
  On Mon, Jan 20, 2003 at 06:35:43PM -, Alberto  Rodriguez wrote:
   I have a host with debian woody. It was a few time that I didn?t upgrade the 
packets. with apt-get I tried upgrade packets but this failed.
 snip 
  Ooooh, ouchy.  That's quite a mess :)  You could play around the
  LD_LIBRARY_PATH and such with dpkg, but I think there's an easier way.
  
  A .deb is just an 'ar' archive with three files in it: control.tar.gz,
  data.tar.gz and debian-binary.  The data.tar.gz file is just a tarball
  of the files that deb installs, the other two contain information for
  dpkg to maintain it's package database.  I *think* that the easy way out
  here is to extract the files from the libc deb (using 'ar x
  ./cache/apt/archives/libc6_2.2.5-11.1_i386.deb' in an empty directory
  somewhere), then untar data.tar.gz in /.  This will put the correct
  version of libc back on your system, so hopefully dpkg will work again.
 
 You might need to run /sbin/ldconfig as well.

Oh, yes, oops.

  If even tar doesn't work correctly, you might need to install the
  statically linked busybox tool set, which, I think, is in woody.
 
 woody_4th_CD/pool/main/b/busybox/busybox-static_0.60.2-3.1_i386.deb

Ah, nifty.

 If you do this sort of thing on a slink system it busts it big time -
 nothing works, it's a rescue disk job. You're lucky :-)

Heh, I like to think of those as 'learning experiences' :P

 Pigeon

Thanks,
-rob



msg27147/pgp0.pgp
Description: PGP signature


Re: ext 3 partitions (was Re: SOLVED :-) Re: error on root filesystemDEBIAN WON'T BOOT )

2003-01-29 Thread Kent West
Joris Huizer wrote:


I did the tune2fs stuff but when I change the ext2 to
ext3 in /etc/fstab I get weird stuff: errors about the
kernel not being able to handle it or something and
the boot stops soon after that; (vi isn't even found,
I have to use sed to change the /etc/fstab back again
(in case it states it's ext2 the boot is successfully.

 


Ah, sorry; didn't think about you possibly using a 2.2x kernel. I 
believe you'll need a 2.4x kernel to use ext3. If you want to stick with 
2.2, just leave your /etc/fstab set to ext2 and go on with life; you 
don't need to undo your tune2fs -j procedure.

Kent



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



Re: BackOrifice on Linux?

2003-01-29 Thread Rob Weir
On Tue, Jan 28, 2003 at 04:43:51PM -0600, Kent West wrote:
 I just ran the command sudo nmap  -sT -sU localhost which listed the 
 following:
 
 . . .
 
 12345/tcp  openNetBus 
 12346/tcp  openNetBus 
 27665/tcp  openTrinoo_Master  
 31335/udp  openTrinoo_Register
 31337/tcp  openElite  
 31337/udp  openBackOrifice
 32770/udp  opensometimes-rpc4 
 
 . . .
 
 
 
 Should I be concerned, or is this maybe part of portsentry or something 
 similar?

No idea.  nmap, amazing as it is, isn't the only tool you need though.
Try running 'netstat -ntuple' to see which programs are actually
listening, according to the kernel.  Of course, netstat could have been
replaced with a trojaned version, and your kernel could have been messed
with, but, otherwise it'll show you what programs are listening on
your ports...

-rob



msg27149/pgp0.pgp
Description: PGP signature


Re: Bash terminal beep - how to shut it up?

2003-01-29 Thread Bill Moseley
On Wed, 29 Jan 2003 [EMAIL PROTECTED] wrote:

 Hi,
I'm running Debian 3.0r1 on my laptop. Whenever I'm working in a bash
 terminal or the console certain actions cause the terminal to BEEP through
 the PC Speaker. This is annoying the hell out of my missus when she's
 trying to watch TV and I've just scrolled a man page too far! What is the
 invocation to shut it up? Which of my .bash files should I put it in?

I also have this in my .Xdefaults file:

xterm*visualBell: true


-- 
Bill Moseley [EMAIL PROTECTED]


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




Re: Trusted md5sum for files in debian packages?

2003-01-29 Thread Rob Weir
On Thu, Jan 23, 2003 at 03:47:37PM +0100, Qian Gong wrote:
 Hi,
 
 Is it possible to download only md5sum's of the files in debian packages
 from a trusted server, e.g., security.debian.org? If it is, the integrity 
 of installed packages can be safely verified with the trusted source. And
 the downloaded file would be small. Thanks a lot.

Sure.  Get the Packages{.gz,.bz2,} file from your local trusted Debian
mirror, it contains md5sum's for every package in it's distribution.
Of course, then the problem is verifying the authenticity and accuracy
of the Packages file...

-rob



msg27151/pgp0.pgp
Description: PGP signature


Re: Galeon scrollbar resembling the one in Mozilla

2003-01-29 Thread Rob Weir
On Sun, Jan 26, 2003 at 06:50:13PM +0100, Robert Ian Smit wrote:
 * Hubert Chan [EMAIL PROTECTED] [26-01-2003 02:19]:
  Christopher I have Galeon from sid (although I've tried the one in
  Christopher woody which shows the same thing), and I would like to
  Christopher change the main vertical scrollbar to be something other
  Christopher than the default one it installs on Debian.
  
  AFAIK, you will need to change the Mozilla config to use the Classic
  theme in order to get native-GTK-looking scrollbars.  The default in the
  Debian packages is the modern theme. 
  
 This thread reminds me of a change in appearance in Galeon after an
 upgrade of the relevant packages.
 
 Popups, most notably cookie requests, now look like Mozilla Modern.
 The rest of Galeon looks like it used to.
 
 I have tried resetting profiles and even created a new user with a
 blank profile to see if I can change this but to no avail.
 
 Do you know if and how this can be solved?

I noticed this too.  Do you have mozilla-xft installed?

-rob



msg27152/pgp0.pgp
Description: PGP signature


Re: Installion Diffs between v2. and v3.

2003-01-29 Thread Rob Weir
On Sun, Jan 26, 2003 at 09:20:42AM -0500, Tom Allison wrote:
 I have an older Debian 2.2 installation CD (single CD) that I've been using 
 for installations.
 
 I was wondering if there are any differences in the installation process 
 between this and the Debian 3.0 with regard to the set-up and configuration.

Woody's installer supports more languages, I think.  And, at least with
the 2.4 kernel, more filesystems (ReiserFS and ext3).  Oh, and it uses
dbootstrap to use actual .debs to install the base system, instead of
the base2_2.tar.gz that potato used.

-rob



msg27153/pgp0.pgp
Description: PGP signature


Re: Which kernel-image for a Via Ezra chip?

2003-01-29 Thread Rob Weir
On Tue, Jan 21, 2003 at 07:50:58AM -0600, Ron Johnson wrote:
 On Mon, 2003-01-20 at 22:55, Kent West wrote:
  Ron Johnson wrote:
  
  On Mon, 2003-01-20 at 16:50, Kent West wrote:

  
  Got a Walmart Microtel $300 computer with a Via Ezra microprocessor. I 
  want to upgrade to a 2.4.20 kernel image from Unstable. Which image do I 
  need for this chip, or will I have to roll my own?
  
  
  
  The Via C3 series, of which the Ezra is part of, is x86-compatabile:
  http://www.via.com.tw/en/viac3/c3.jsp
  In fact, it uses the Socket-370, just like the P3 (Tualatin).
  http://www.google.com/search?hl=enie=UTF-8oe=UTF-8q=Via+EzrabtnG=Google+Search
  First hit:
  http://www.geek.com/procspec/via/ezra-t.htm
  

  
  Well, yes, But does that mean I need the
  kernel-image-2.4-386
  kernel-image-2.4-586tsc
  or the
  kernel-image-2.4-686
  file, or perhaps some other? These are all x86-compatible, are they 
  not? If I had to make a guess, I'd guess 686, but I was hoping to have 
  an authoritative answer before downloading a possibly wrong kernel over 
  a slow-dial-up connection. And now I'm 90 miles away from that box, so 
  trying to walk a newbie through the process via email and getting the 
  wrong kernel has even less appeal. Oh well, I reckon it can wait until I 
  make another trip down that way; the only real reason he needs to 
  upgrade is to hopefully fix a mis-aligned mouse pointer and a lack of 
  sound capability. Thanks for the response!
 
 Well, you can't go wrong with the -386...
 
 Because of the possible lack of MTTR in the C3, I wouldn't try the
 other unless I had broadband, though.

[Sorry about the late reply]
This has come up both on d-d and here, and it seems that these C3 chips
*are* 686s according to some mythical standard, but they lack a
particular instruction that everyone elses 686 chips have and that GCC
assumes is available...From what I've read, the kernel will work, but
some userland apps (OpenSSL) will fail.  Well, did, anyway; OpenSSL in
sid is fixed now.

-rob



msg27154/pgp0.pgp
Description: PGP signature


Re: How to start aumix during init?

2003-01-29 Thread Rob Weir
[Please wrap your lines!  It makes it much easier to read, and thus more likely
that you'll get a response.  Anywhere between 70 and 80 is acceptable; 72 seems
to be a nice value.]

On Mon, Jan 27, 2003 at 10:18:22PM -0800, [EMAIL PROTECTED] wrote:
 Hi,
 
 How can I start aumix during init? There is an entry /etc/init.d/aumix
 but it is not called from any of the init levels.  The volume is
 always set to 0.Since aumix is never called during boot, changinging
 it in /etc/aumixrc doesnt make difference.

If the problem really is that it's not being called by init, then use
update-rc.d to add it to init's startup sequence.

-rob



msg27155/pgp0.pgp
Description: PGP signature


Re: Updating Critical Packages Only

2003-01-29 Thread Rob Weir
[Please wrap your lines!  It makes it much easier to read, and thus more likely
that you'll get a response.  Anywhere between 70 and 80 is acceptable; 72 seems
to be a nice value.]

On Mon, Jan 27, 2003 at 10:25:24PM -0800, S Yuval wrote:
 I recently bought the Debian 3.0r1 7-CD set and am trying to upgrade
 some obsolete packages. 

You're using woody?  Aside from a couple of security updates, nothing
has changed in woody since r1 was released.  Are you sure you're not
using testing?

 However, it turns out that if I ask apt to
 update its package database, most packages I have on the CD-set become
 obsolete and can no longer be installed conveniently through dselect.
 Since I cannot afford to spend nights downloading new packages for my
 entire system, and I purchased the CDs to avoid having to do that, is
 there any way to tell apt-get to update only the critically important
 packages like glibc, libstdc++, ncurses, etc. and not the entire
 system?

Hmmm, I'm almost certain that there have not been DSA's issued about
glibc, ncurses and libstdc++ in the past month or however long it's been
r1 was released.  glibc hasn't even changed in sarge for months now.
Are you using sid, perchance?

-rob



msg27156/pgp0.pgp
Description: PGP signature


Re: Alas and alack.

2003-01-29 Thread bob parker
On Wed, 29 Jan 2003 12:04, Shyamal Prasad wrote:
 Bob == Bob Paige [EMAIL PROTECTED] writes:


 Bob I know through apt-get (or wajig) you can automatically
 Bob download and install the latest updates, but I would like to
 Bob see a system that automatically notifies you (via email?)
 Bob when such an update results in new packages being installed.


 Bob Ideas?

Why not just subscribe to debian-news. You will be notified weekly if any 
security updates are available, and lots more besides.

Bob


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




anyone got the bittorrent stuff working ?

2003-01-29 Thread Bruno Boettcher
Hello

tried the bittorrent deb, and after wards the sources directly...
doesn't work 
the documentation of that program sucks, i don't know what the exe is
supposed to be... the python code is a real mess (wondering how people
could actually like that language...) and this whole this is really
frustrating...

the deb is way too old, it asks for libs that aren't anymore
existent

the debian/rules of the package doesn't work:

./setup.py install --prefix=debian/bittorrent/usr
Traceback (most recent call last):
  File ./setup.py, line 8, in ?
from distutils.core import setup, Extension
ImportError: No module named distutils.core
make: *** [build] Fehler 1

and the script given as mime type launcher:
./btdownloadprefetched.py 
Traceback (most recent call last):
  File ./btdownloadprefetched.py, line 8, in ?
from btdownloadgui import run
  File /home/bboett/tmp/BitTorrent-3.1/btdownloadgui.py, line 31, in ?
wxEVT_INVOKE = wxNewEventType()
NameError: name 'wxNewEventType' is not defined

and i installed the python libs the thing was requesting more or
less... it asks for python2 and i got only 2.4...


-- 
ciao bboett
==
[EMAIL PROTECTED]
http://inforezo.u-strasbg.fr/~bboett
===


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




Re: autofs vs amd: Is there a preference?

2003-01-29 Thread Matus \fantomas\ Uhlar
- Matus fantomas Uhlar wrote:
-  i mean like
-  
-  /a - /mount/a
-  /b - /mount/b
- 
- Ew...  /symlinks to network mounted locations are not recommended.

tey are not network mounted. They are floppies in my case. But this is the
only case how to allow users from window applications to force mount via
automoutner. I use manual mounts for now.

-  /mount is mountes via autofs. ls -l /mount doesn't show anything after
-  mount. ls -l /a /b shows only symlinks, but ls -l /a/ /b/ will mount both.
-  (of course, if you don't have ls aliased with -L, -F etc which would stat
-  the destination)
- 
- Agreed.  Thanks for the clarification.

-  anything. This is not good for window applications and users which don't
-  want to 'enter' the filename or directory manually.
- 
- Ah, so the real problem comes through.  For your windows application
- you might consider 'direct' maps instead of 'host' or 'indirect'
- maps.  However, they can be painful because they need to be driven as
- things change.  A complete list of all available mounts.  And an 'ls
- -l' of the trigger point can cause a mount storm.

direct maps? You mean:

a   -fstype=auto,sync   :/dev/fd0
c   -fstype=vfat:/dev/hda1
d   -fstype=ntfs:/dev/hda2
e   -fstype=iso9660,ro,nodev,nosuid :/dev/hdb

This doesn't work - create any directories. I still need explicit entering
directories or symlinks. 

-  - It is not possible.  When you stat() a file you will need to get the
-  - inode information which is stored on the NFS server not on the client
-  - automounter.  The automounter must mount the underlying disk in order
-  - to get that information.  (This is one cause of mount storms in the
-  - above mentioned not-recommended configurations.  Running 'ls -l' on a
-  - symlink farm will stat() each and mount all.)
-  
-  of course, the information should be fake until the underlying filesystem is
-  mounted. But it would help in the case i described above
- 
- Of course if you break the normal system disk paradigm other people
- will strongly claim it is a bug.  So it can't show made up data.

Well, i really saw in TODO this:

autofs v5 TODO list
---
* visible mountpoints

I think that is exactly what I need...

-- 
 Matus fantomas Uhlar, [EMAIL PROTECTED] ; http://www.fantomas.sk/
 Warning: I don't wish to receive spam to this address.
 Varovanie: Nezelam si na tuto adresu dostavat akukolvek reklamnu postu.
 BSE = Mad Cow Desease ... BSA = Mad Software Producents Desease


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




boot log

2003-01-29 Thread Florian Sukup
Hi,

is there a log file where I can find all boot messages?

Or, if not, is there a possibility to make them written into a log file?

Florian.


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




Re: scrolling trough the argument of a command

2003-01-29 Thread Ulf Rompe
Pierre Burri [EMAIL PROTECTED] writes:

 with another flavour of linux, I can scroll trough the argument of
 bash command with Page Up instead of scrolling the whole commands
 (with Arrow Up) saved in the history.

Put this into your /etc/inputrc or ~/.inputrc :

# PgUp/Down searches history in bash
\e[5~:history-search-backward
\e[6~:history-search-forward


[x] ulf

-- 
Der Computer ist die logische Weiterentwicklung des Menschen:
Intelligenz ohne Moral.  (John Osborne)


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




Re: Cdrecord and audio cd

2003-01-29 Thread Sridhar M.A.
On Wed, Jan 29, 2003 at 07:17:36AM +0100, Roman Joost wrote:
 
Can the CD frontend access the CD so that is spinning ? I mean -
maybe the CD channel of the audio card is off our mute? The most
problem is, that the normal user want mount the CD but it won't
work. Maybe try some other player?

The cd does not spin. CD channel is unmuted. I can play other audio
cd's. No, I am not attempting to mount an audio cd. All cd players under
linux gave me the same error.

Regards,

-- 
Sridhar M.A.

  After they got rid of capital punishment, they had to hang twice
  as many people as before.


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




Re: find a command i have recently used in bash

2003-01-29 Thread Mike Dresser
On Wed, 29 Jan 2003, Sandip P Deshmukh wrote:

 now, i want to use that ls command again. is there a way inwhich i can
 reach it quickly? for instance, i type ls and some other key and bash
 completes from history?

well, if nothing else, you can hit up a few times and it'll scroll through
your command history.


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




Re: ext3 partition recovery (Again) - forgot this

2003-01-29 Thread Miguel
Yes, I have the /boot/boot.003 file but I don't know how to use it or
event to get that information (it is a binary file...).

Do you really think I should try to use the gpart -w ? That is risky
because I can boot the system--the disk is in a laptop and I cannot
remove that disk or even add another one to repair any problem
caused with the gpart -w...

You told something about trial and error... do you mean to:
 - use, for example, the GNU parted to try to create a new partition in
   the place I suppose it was before;
 - try to reboot the system;
 - try to mount the partition;
 - delete the partition
 - [ . . . ]

until it works?

 On Wed, 29 Jan 2003 19:15:58 +0530
Jeetu Golani [EMAIL PROTECTED] wrote:

 
 Forgot to add this to my earlier mail, you mentioned you have the
 partition info when you used lilo. Please mail that info, you should
 be able to reconstruct your partition table with that info using
 fdisk.
 
 Bye
 
 On Wednesday 29 Jan 2003 4:06 pm, you wrote:
  On Wed, 29 Jan 2003 10:41:51 +0530
 
  Jeetu Golani [EMAIL PROTECTED] wrote:
   Hi there,
  
   Your fdisk doesn't show the last ext3 partition, therefore your
   partition table is messed up (nothing new in that). Gpart seems to
   think that there're two other partitions apart from the ones being
   detected by fdisk i.e. one partition more than what you suggested
   in your earlier mail where in you said
  
My partition looks (used to...) like this:
  |-- 1. NTFS
  |
  |-- 2. ext2
  |
  |-- 3. extended
  |
  | |-- 3.1 ext3  [ / ]
  | |
  | |-- 3.2 swap
  | |
  | |-- 3.3 ext3 [/home]
  
   Gpart thinks that beyond the last ext3 partition there's another
   Linux Partition?? Could you tell me the sizes of each partition as
   you remember them. Do you think there was another partition beyond
   the last /ext3 partition that you've mentioned above.
 
  No, there was not other partition at the end. Probably just some
  free space at the end. The last partition (the lost one) was about
  6.5G.
 
  I suppose I can get the old partition table information from the
  /boot/boot.XXX file created by lilo. I am not using lilo at this
  moment but that file is still there and I didn't changed the
  partitions since I changed lilo by grub. How can I retrieve that
  information from the boot.XXX file?
 
  Do you think this problem is recoverable?
 
   Bye
  
   On Wednesday 29 Jan 2003 12:00 am, you wrote:
Ok, here goes the output of some useful commands. Hope it
helps...
   
fdisk -l /dev/hda:
--
   
Disk /dev/hda: 255 heads, 63 sectors, 2432 cylinders
Units = cylinders of 16065 * 512 bytes
   
   Device BootStart   EndBlocks   Id  System
/dev/hda1   * 1   510   4096543+   7  HPFS/NTFS
/dev/hda2   511   632979965b  Win95 FAT32
/dev/hda3   633  2432  144585005  Extended
/dev/hda5   633  1544   7325608+  83  Linux
/dev/hda6  1545  1580289138+  82  Linux swap
   
gpart -v /dev/hda:
--
   
dev(/dev/hda) mss(512) chs(2432/255/63)(LBA) #s(39070080)
size(19077mb) Primary partition(1)
   type: 007(0x07)(OS/2 HPFS, NTFS, QNX or Advanced UNIX) (BOOT)
   size: 4000mb #s(8193087) s(63-8193149)
   chs:  (0/1/1)-(509/254/63)d (0/1/1)-(509/254/63)r
   hex:  80 01 01 00 07 FE 7F FD 3F 00 00 00 3F 04 7D 00
   
Primary partition(2)
   type: 011(0x0B)(DOS or Windows 95 with 32 bit FAT)
   size: 956mb #s(1959930) s(8193150-10153079)
   chs:  (510/0/1)-(631/254/63)d (510/0/1)-(631/254/63)r
   hex:  00 00 41 FE 0B FE BF 77 7E 04 7D 00 FA E7 1D 00
   
Primary partition(3)
   type: 005(0x05)(Extended DOS)
   size: 14119mb #s(28917000) s(10153080-39070079)
   chs:  (632/0/1)-(1023/254/63)d (632/0/1)-(2431/254/63)r
   hex:  00 00 81 78 05 FE FF FF 78 EC 9A 00 08 3D B9 01
   
   Logical partition
  type: 131(0x83)(Linux ext2 filesystem)
  size: 7153mb #s(14651217) s(10153143-24804359)
  chs:  (632/1/1)-(1023/254/63)d (632/1/1)-(1543/254/63)r
  hex:  00 01 81 78 83 FE FF FF 3F 00 00 00 51 8F DF 00
   
   Logical partition
  type: 130(0x82)(Linux swap or Solaris/x86)
  size: 282mb #s(578277) s(24804423-25382699)
  chs:  (1023/254/63)-(1023/254/63)d
  (1544/1/1)-(1579/254/63)r hex:  00 FE FF FF 82 FE FF FF 3F
  00 00 00 E5 D2 08 00
   
Primary partition(4)
   type: 000(0x00)(unused)
   size: 0mb #s(0) s(0-0)
   chs:  (0/0/0)-(0/0/0)d (0/0/0)-(0/0/0)r
   hex:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
   
   
Begin scan...
Possible partition(Windows NT/W2K FS), size(4000mb), offset(0mb)
   type: 007(0x07)(OS/2 HPFS, NTFS, QNX or Advanced UNIX)
   size: 4000mb #s(8193080) s(63-8193142)
   chs:  (0/1/1)-(509/254/56)d (0/1/1)-(509/254/56)r
   hex:  00 

Re: PGP Signatures

2003-01-29 Thread Robert L. Harris


Make one.

Here's mine:
  # So we can work with pgp keys
  force-v3-sigs
  # To deal with mailer and From lines
  escape-from-lines
  # we only need to do this once while the gpg process is using the ring
  lock-once
  # Our options
  keyserver-options auto-key-retrieve include-disabled include-revoked honor-http-proxy
  keyserver x-hkp://pgp.gatech.edu
  keyserver x-hkp://pgp.mit.edu
  keyserver x-hkp://wwwkeys.us.pgp.net




Thus spake mess-mate ([EMAIL PROTECTED]):

 On Wed, 29 Jan 2003 07:07:30 -0500
 Seneca [EMAIL PROTECTED] wrote:
 
 | On Wed, Jan 29, 2003 at 11:39:57AM +0100, mess-mate wrote:
 |  On Tue, 28 Jan 2003 17:26:26 -0800
 |  Paul Johnson [EMAIL PROTECTED] wrote:
 |  
 |  | On Mon, Jan 27, 2003 at 08:50:06PM +0100, mess-mate wrote:
 |  |  But the senders public key must be retrieved from a key-server and added 
 |  |  to your own key-list before an automated check is possible.
 |  |  mess-mate
 |  | 
 |  | Unless you've set your gnupg to automagically grab public keys from
 |  | the keyserver for you.
 |  | 
 |  Uhh, good idea, how can I do that ??
 | 
 | In ~/.gnupg/gnupg.conf, uncomment or add
 | keyserver-options auto-key-retrieve.
 | 
 ?? there is no gnupg.conf !! Did I missing somewhat ?
 here are the files I have in ~/.gnupg :
 mess.txt  options  pubring.gpg  pubring.gpg~  random_seed  secring.gpg  trustdb.gpg
 mess-mate
 
 -- 
 Computers are like air conditioners, they are useless when you open
 Windows.




:wq!
---
Robert L. Harris | PGP Key ID: FC96D405
   
DISCLAIMER:
  These are MY OPINIONS ALONE.  I speak for no-one else.
FYI:
 perl -e 'print $i=pack(c5,(41*2),sqrt(7056),(unpack(c,H)-2),oct(115),10);'




msg27165/pgp0.pgp
Description: PGP signature


Re: ext 3 partitions (was Re: SOLVED :-) Re: error on root filesystem DEBIAN WON'T BOOT )

2003-01-29 Thread Paul Johnson
On Tue, Jan 28, 2003 at 11:53:40PM -0800, Joris Huizer wrote:
 I did the tune2fs stuff but when I change the ext2 to
 ext3 in /etc/fstab I get weird stuff: errors about the
 kernel not being able to handle it or something and
 the boot stops soon after that; (vi isn't even found,
 I have to use sed to change the /etc/fstab back again
 (in case it states it's ext2 the boot is successfully.

You need a kernel with support for it compiled in to boot ext3.

-- 
 .''`. Baloo [EMAIL PROTECTED]
: :'  :proud Debian admin and user
`. `'`
  `-  Debian - when you have better things to do than to fix a system



msg27166/pgp0.pgp
Description: PGP signature


Re: kernel-patch-freeswan cryptoapi

2003-01-29 Thread Noah L. Meyerhans
On Wed, Jan 29, 2003 at 02:14:42PM +0100, Francois Chenais wrote:
 I just have install the kernel-patch-freeswan but the building process
 fails because it doesn't find linux/crypto.h.

Hmm...  How did you actually apply the patch?

 The warning message says to install cryptoapi.  I have run apt-get
 install cryptoapi-core-source but what must I do now with the
 /usr/src/cryptoapi-core.tar.gz file ? (I have red the README.Debian
 ;-)
 
 Perhaps it could be usefull to had a dependance between the 2 packages

There are no dependencies between the two packages.  I've never
installed cryptoapi-core-source, but I run freeswan.  What version of
Debian are you using?  What version of kernel-patch-freeswan?  And
again, how did you apply the patch?  Did you use make-kpkg to try to
build your new kernel?

noah

-- 
 ___
| Web: http://web.morgul.net/~frodo/
| PGP Public Key: http://web.morgul.net/~frodo/mail.html 



msg27167/pgp0.pgp
Description: PGP signature


Re: Ipsec under Linux

2003-01-29 Thread Noah L. Meyerhans
On Wed, Jan 29, 2003 at 02:04:45PM +0100, Francois Chenais wrote:
 
   What is the best way to create IPSec under Debian ?

FreeS/WAN.  Install the kernel-patch-freeswan and freeswan packages and
read the docs.  See www.freeswan.org for general docs on configuring
freeswan.

noah

-- 
 ___
| Web: http://web.morgul.net/~frodo/
| PGP Public Key: http://web.morgul.net/~frodo/mail.html 



msg27168/pgp0.pgp
Description: PGP signature


Re: PGP Signatures

2003-01-29 Thread Paul Johnson
On Wed, Jan 29, 2003 at 11:39:57AM +0100, mess-mate wrote:
 Uhh, good idea, how can I do that ??

Go look at the comments in your .gnupg/options

-- 
 .''`. Baloo [EMAIL PROTECTED]
: :'  :proud Debian admin and user
`. `'`
  `-  Debian - when you have better things to do than to fix a system



msg27169/pgp0.pgp
Description: PGP signature


cu program?

2003-01-29 Thread Larry W . Irwin Sr .
  Hi,

  I have finally built a small home lan and want to leave my modem
connected to the server machine. I found a HOWTO on this subject in
the doc-linux package. The following perl script was listed as one
method of routing pppd from one machine to the other.
---
#!/usr/bin/perl  
select((select(STDOUT), $| = 1)[$[]);
select((select(STDIN), $| = 1)[$[]); 
exec 'cu -s 115200 -l /dev/ttyS0';  
die '$0: Cant exec cu: $!\n';
---
  I cannot locate the cu program. Can someone point me in the right
direction?

Thanks,
Larry


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




Re: Backup Consensus?

2003-01-29 Thread bob parker
On Wed, 29 Jan 2003 07:40, Pigeon wrote:
 On Wed, Jan 29, 2003 at 12:47:38AM +1100, bob parker wrote:
  On Tue, 28 Jan 2003 10:22, Pigeon wrote:
   Couple of suggestions:
   - might be an idea to save /var as well
   - if you're into kernel customising, make sure you have a rescue
   kernel with built-in support for all your critical hardware (ie, not
   as modules). I NEARLY got caught without a kernel that would recognise
   my Initio 9100UW SCSI card, but managed to find one. (Phew!)
  
   Pigeon
 
  Thanks for the support. Re /var, I just did a du -h on it and mine comes
  out at 1.1 gig! Any thoughts on what is essential and what is not?

 Well, I saved the whole thing precisely because I wasn't sure what is
 essential and what is not... There's a lot of stuff there about
 apt/dpkg configuration, most of which will be rebuilt when you
 reinstall packages, but you might need some of it if your system has a
 complex mix of packages from different sources/branches. All I
 specifically needed were /var/spool/mail/pigeon and
 /var/spool/exim/input/*.

 Depending on how frequently you make backups, /var/log/* might have
 useful stuff that might help you determine why you needed the backup.

 My /var is only 63Mb; I guess I'm not the sort of user to commemt on
 what might be essential when it's grown to 1.1 gig.

 Still, 1.1 gig should compress down to less than 700Mb, so it'll all
 go on one CD.

 (Related thought: Must make statically-linked rescue versions of tar,
 gzip, bzip2, fileutils...)

 Pigeon

You motivated me to have a good look at /var.

The mail spooler is no problem because I have kmail leaching it continually 
so it gets caught in the backup of $USER.
var/log and htdig account for about 1/4 gig each and there are about a 
gazillion or so news items. I think prudence might warrant saving the newer 
logs at least.  The rest is welcome to dissappear if it must.

The installed packages are at least listed in a file in $USER so they are 
quite restorable from the install discs. How much bother that would be I do 
not know. I'd love to be able to sort the installed package list by cd so I'd 
have the minimum no of media changes on a reinstall.

I'm presently downloading Knoppix, I expect that it would do double duty as a 
rescue disc.

Thanks

Bob


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




Re: Slang for money [was: Re: Backup Consensus?]

2003-01-29 Thread bob parker
On Wed, 29 Jan 2003 22:32, Colin Watson wrote:
 On Wed, Jan 29, 2003 at 03:31:58AM -0600, will trillich wrote:
  On Tue, Jan 28, 2003 at 04:13:56PM +, Pigeon wrote:
   1 pound = 240 (old) pennies
   1 pound = 100 new pennies
   Quid = pound (slang)
   Pence = alternative form of Pennies
   Shilling = 12 old pennies = 5 new pennies
   Half-crown = 2/6 (2 shillings and 6 pence), 30 old pennies, 12.5 new
   pennies
   Bob = shilling (slang)
   Hapenny = half-penny (elision)
   Thruppenny bit = 3 (old) penny coin
 
  so (old) 1 pound/quid was 20 shillings/bobs, each of which was
  12 pence/pennies, for a total of 240 pence/d; a crown would have
  been 4bob+12d (60d, or 1/4quid, also 15 thrupenny).

 You wouldn't tend to say x bob and ...; x shillings and y pence was
 usually pronounced x and y or x and ypence, so a crown would have
 been four and twelvepence, except that 12d == 1s, so a crown was
 actually five shillings.

 Quid tends not to be used with fractions. Five quid, yes; 1/4
 quid, no. Oh, and neither bob nor quid normally takes an s in the
 plural.


In Oz we used to be on Lsd also, changed in 1966. And sure it was 2 quid 
except when someone avered that They wouldn't be dead for quids

Bob

Here in Oz we use the metric system. The unit of length is the metre, unless 
you have a 1000 of them; then it's the mutter.


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




Re: find a command i have recently used in bash

2003-01-29 Thread Stephen Rueger
On Wed, Jan 29, 2003 at 07:51:07PM +0530, Sandip P Deshmukh wrote:
 let us say, i have done ls -l , etc etc
 then i have done a few more commands at the prompt.
 
 now, i want to use that ls command again. is there a way inwhich i can
 reach it quickly? for instance, i type ls and some other key and bash
 completes from history?

You can press ctrl-r to search backwards in your history or you can use
csh-like history expansion with ! (read the HISTORY EXPANSION section in
the bash man page)

Stephen Rüger

-- 
Jede Nation spottet über die andere, und alle haben recht.
-- Schopenhauer



msg27173/pgp0.pgp
Description: PGP signature


Re: find a command i have recently used in bash

2003-01-29 Thread Colin Watson
On Wed, Jan 29, 2003 at 07:51:07PM +0530, Sandip P Deshmukh wrote:
 let us say, i have done ls -l , etc etc
 then i have done a few more commands at the prompt.
 
 now, i want to use that ls command again. is there a way inwhich i can
 reach it quickly? for instance, i type ls and some other key and bash
 completes from history?

Somebody else posted the same thing today. The answer is to hit Ctrl-R
then 'ls', and repeat Ctrl-R as necessary.

-- 
Colin Watson  [[EMAIL PROTECTED]]


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




Re: kernel-patch-freeswan cryptoapi

2003-01-29 Thread Francois Chenais
I have installed the kernel-patch-freeswan-ext !
In fact, the make-pkgp ask me for setting some building option and I have replied m 
for the cryptoapi option (CONFIG_IPSEC_ALG_CRYPTOAPI=m).

I have rebuilt the kernel unseting this option and it works now ;-)

My new chalenge is to understand/configure my ipsec tunnel :-|
   
François
  

On Wed, 29 Jan 2003 10:49:42 -0500, Noah L. Meyerhans [EMAIL PROTECTED] wrote:

  | On Wed, Jan 29, 2003 at 02:14:42PM +0100, Francois Chenais wrote:
  |  I just have install the kernel-patch-freeswan but the building process
  |  fails because it doesn't find linux/crypto.h.
  | 
  | Hmm...  How did you actually apply the patch?
  | 
  |  The warning message says to install cryptoapi.  I have run apt-get
  |  install cryptoapi-core-source but what must I do now with the
  |  /usr/src/cryptoapi-core.tar.gz file ? (I have red the README.Debian
  |  ;-)
  |  
  |  Perhaps it could be usefull to had a dependance between the 2 packages
  | 
  | There are no dependencies between the two packages.  I've never
  | installed cryptoapi-core-source, but I run freeswan.  What version of
  | Debian are you using?  What version of kernel-patch-freeswan?  And
  | again, how did you apply the patch?  Did you use make-kpkg to try to
  | build your new kernel?
  | 
  | noah
  | 




msg27175/pgp0.pgp
Description: PGP signature


Re: PGP Signatures

2003-01-29 Thread Colin Watson
On Wed, Jan 29, 2003 at 03:21:53PM +0100, mess-mate wrote:
 On Wed, 29 Jan 2003 07:07:30 -0500
 Seneca [EMAIL PROTECTED] wrote:
 | In ~/.gnupg/gnupg.conf, uncomment or add
 | keyserver-options auto-key-retrieve.
 
 ?? there is no gnupg.conf !! Did I missing somewhat ?

For ~/.gnupg/gnupg.conf, read ~/.gnupg/options.

Cheers,

-- 
Colin Watson  [[EMAIL PROTECTED]]


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




Re: what's fstype 83? amp;quot;Linuxamp;quot;?

2003-01-29 Thread Nathan E Norman
On Wed, Jan 29, 2003 at 03:37:50AM -0600, will trillich wrote:
 On Tue, Jan 28, 2003 at 10:17:03AM -0600, Nathan E Norman wrote:
  On Mon, Jan 27, 2003 at 11:20:40PM -0800, nate wrote:
   will trillich said:
files on /dev/hdb2 have modification times no later than
september 2000 -- pre-ext3 by a long shot. and i'm *positive*
i've never even tried reiserfs, certainly not two-and-a-half
years ago. wasn't ext2 the default for formatting under the
potato or slink install? (as i recall, potato would start out as
ext2 and then offered an ext3 option later... nope, ext3 didn't
work either.)
   
   I'd try what another poster suggested, try the debian slink rescue disks.
   or just format it and forget about it, if you haven't needed the data
   on that disk for 2 years you probably won't miss anything :)
  
  IMO, the OP's problem is the screwy geometry.  Note that the only
  partition that could be mounted was the one which ended on a proper
  boundary.
 
 tell me some more about this, if you don't mind.
 
 reveal hardwareignorance=tautologicallyobvious
 my bios auto-detect persistently came up with a value that was
 just ONE away from what was labelled on the drive itself; maybe
 that's what screwed me up...
 /reveal

I don't have your original post, but it said something about partition
table says CHS is foo, but I thought it should be bar, using foo, and
then there are '+' characters next to the start and/or end of many
partitions, which means (IIRC) that they don't end on a partition
boundary.  In my expereince this causes all kinds of problems with
Intel hardware.

Perhaps you need to choose LBA in your BIOS setup?  IIRC the part
table thought it has 128 heads which is screaming LBA to me.
Otherwise, sometimes you can use the advanced menu of fdisk to
convince linux that the CHS for a drive really is whatever (use the
values that the part table reports).

Note that you could only mount the partition which started and ended
on what linux currently thinks are cylinder boundaries.  When you try
to mount the other partitions linux is loading data from the wrong
part of the drive (starting in the wrong position, that is).

This whole CHS thing is why I use SCSI drives whenever I can.

-- 
Nathan Norman - Incanus Networking mailto:[EMAIL PROTECTED]
  Great minds discuss ideas, average minds discuss events, small
  minds discuss people.
  -- Laurence J. Peter


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




Re: very very strange bash/sed bug !!

2003-01-29 Thread Nathan E Norman
On Wed, Jan 29, 2003 at 11:52:36AM +0100, Xavier Bestel wrote:
 Hi,
 
 it's been a loong time I have a bug on my system: ./libtool is
 incorrectly generated by ./configure. I haven't been able to correct it
 for months.
 
 Today I discovered where lies the bug: it's somewhere between bash and
 sed.
 
 First and foremost, I'm running debian/unstable, and have sed 3.02-8.1,
 bash 2.05b-6 and libtool 1.4.3-5 (but it's been there since several
 versions).
 
 Now the bug:
 
 echo xx lt1
 echo xx lt2
 sed '' /usr/share/libtool/ltmain.sh lt1
 sed '' /usr/share/libtool/ltmain.sh |less lt2
 diff lt1 lt2
 
 They differ !!! And surprisingly, only lt2 is correct !
 
 If anyone could try to help me find why my intallation does that, I'd
 appreciate much. I already tried reinstalling the concerned packages,
 but no luck.

Just a guess ... what is the value of LANG, or LC_ALL ?

-- 
Nathan Norman - Incanus Networking mailto:[EMAIL PROTECTED]
  Good people do not need laws to tell them to act responsibly,
  while bad people will find a way around the laws.
  -- Plato


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




Re: PGP Signatures

2003-01-29 Thread Stephen Gran
This one time, at band camp, mess-mate said:
 On Wed, 29 Jan 2003 07:07:30 -0500
 Seneca [EMAIL PROTECTED] wrote:
 | In ~/.gnupg/gnupg.conf, uncomment or add
 | keyserver-options auto-key-retrieve.
 | 
 ?? there is no gnupg.conf !! Did I missing somewhat ?
 here are the files I have in ~/.gnupg :
 mess.txt  options  pubring.gpg  pubring.gpg~  random_seed  secring.gpg  trustdb.gpg
It goes in options.
-- 
 --
|  Stephen Gran  | Man has never reconciled himself to the |
|  [EMAIL PROTECTED] | ten commandments.   |
|  http://www.lobefin.net/~steve | |
 --



msg27179/pgp0.pgp
Description: PGP signature


Re: BackOrifice on Linux?

2003-01-29 Thread Kent West
Rob Weir wrote:


On Tue, Jan 28, 2003 at 04:43:51PM -0600, Kent West wrote:
 

I just ran the command sudo nmap  -sT -sU localhost which listed the 
following:

. . .

12345/tcp  openNetBus 
12346/tcp  openNetBus 
27665/tcp  openTrinoo_Master  
31335/udp  openTrinoo_Register
31337/tcp  openElite  
31337/udp  openBackOrifice
32770/udp  opensometimes-rpc4 

. . .



Should I be concerned, or is this maybe part of portsentry or something 
similar?
   


No idea.  nmap, amazing as it is, isn't the only tool you need though.
Try running 'netstat -ntuple' to see which programs are actually
listening, according to the kernel.  Of course, netstat could have been
replaced with a trojaned version, and your kernel could have been messed
with, but, otherwise it'll show you what programs are listening on
your ports...

-rob
 

Looks like it may just be part of portsentry. Thanks!


westek[westk]:/home/westk sudo netstat -ntuple
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address   Foreign Address 
State   User   Inode  PID/Program name  
tcp0  0 0.0.0.0:1   0.0.0.0:*   
LISTEN  0  2168   701/portsentry 
tcp0  0 0.0.0.0:20034   0.0.0.0:*   
LISTEN  0  2201   701/portsentry 
tcp0  0 0.0.0.0:32771   0.0.0.0:*   
LISTEN  0  2207   701/portsentry 
tcp0  0 0.0.0.0:32772   0.0.0.0:*   
LISTEN  0  2209   701/portsentry 
tcp0  0 0.0.0.0:40421   0.0.0.0:*   
LISTEN  0  2215   701/portsentry 
tcp0  0 0.0.0.0:32773   0.0.0.0:*   
LISTEN  0  2211   701/portsentry 
tcp0  0 0.0.0.0:901 0.0.0.0:*   
LISTEN  0  496364/inetd  
tcp0  0 0.0.0.0:32774   0.0.0.0:*   
LISTEN  0  2213   701/portsentry 
tcp0  0 0.0.0.0:31337   0.0.0.0:*   
LISTEN  0  2205   701/portsentry 
tcp0  0 0.0.0.0:66670.0.0.0:*   
LISTEN  0  2195   701/portsentry 





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



Re: moo

2003-01-29 Thread Pigeon
On Tue, Jan 28, 2003 at 02:05:49AM -0600, will trillich wrote:
   $ apt-get moo
(__) 
(oo) 
  /--\/ 
 / |||   
*  /\---/\ 
   ~~   ~~   
   Have you mooed today?...
 
 can't say that i have.

Nor have I... but I've cooed.

Pigeon


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




Re: find a command i have recently used in bash

2003-01-29 Thread Nathan E Norman
On Wed, Jan 29, 2003 at 07:51:07PM +0530, Sandip P Deshmukh wrote:
 hello all
 
 i am sure there must be a way of doing it. i am not getting it though.
 
 let us say, i have done ls -l , etc etc
 then i have done a few more commands at the prompt.
 
 now, i want to use that ls command again. is there a way inwhich i can
 reach it quickly? for instance, i type ls and some other key and bash
 completes from history?

If you're using bash, and the command you want to retrieve was typed
in the last 500 or so commands, try ctrl-r ls which should recall
the most recent command with the string ls in it.

You can also use the history command to view your history.  Any
command in your history can be reused by prefixing its history number
with a bang ('!').  Thus if history says 422  ls -lAF /usr/local you
can type !422 at a prompt to issue that command again.  history +
grep can be fun.

Finally, (and perhaps most obvious) you can use ctrl-p and ctrl-n to
cycle backwards and forwards through your command history.  For most
terminal types these sequences are mapped to the up-arrow and
down-arrow respectively.

-- 
Nathan Norman - Incanus Networking mailto:[EMAIL PROTECTED]
  People demand freedom of speech to make up for the freedom of
  thought which they avoid.
  -- Soren Aabye Kierkegaard


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




Re: find a command i have recently used in bash

2003-01-29 Thread Matthew Weier O'Phinney
-- Sandip P Deshmukh [EMAIL PROTECTED] wrote
(on Wednesday, 29 January 2003, 07:51 PM +0530):
 i am sure there must be a way of doing it. i am not getting it though.
 
 let us say, i have done ls -l , etc etc
 then i have done a few more commands at the prompt.
 
 now, i want to use that ls command again. is there a way inwhich i can
 reach it quickly? for instance, i type ls and some other key and bash
 completes from history?

I don't know about that, but if you hit your up-arrow, it will scroll
backwards through the command history -- I do this a lot to save on
keystrokes. 

(Note: Hitting down-arrow will then take you forward through the
history, but only after you've gone backwards.)

-- 
Matthew Weier O'Phinney
[EMAIL PROTECTED]


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




Re: find a command i have recently used in bash

2003-01-29 Thread Andrew Perrin
Sure - to complete the prior command beginning with ls, do:

!ls

which will re-execute the last comment beginning with ls.

If you need finer-grained history, use the command:

history

which will let you copy-and-paste a prior command.

ap

--
Andrew J Perrin - http://www.unc.edu/~aperrin
Assistant Professor of Sociology, U of North Carolina, Chapel Hill
[EMAIL PROTECTED] * andrew_perrin (at) unc.edu


On Wed, 29 Jan 2003, Mike Dresser wrote:

 On Wed, 29 Jan 2003, Sandip P Deshmukh wrote:
 
  now, i want to use that ls command again. is there a way inwhich i can
  reach it quickly? for instance, i type ls and some other key and bash
  completes from history?
 
 well, if nothing else, you can hit up a few times and it'll scroll through
 your command history.
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]
 
 


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




Re: give cdrom source more priority in apt-get [lost the original]

2003-01-29 Thread Stephen Gran
This one time, at band camp, andrej hocevar said:
 Unfortunately no one has responded to this by now, I too was waiting.
 The apt_preferences manpage does mention pinning an origin, but
 until now I couldn't succeed. 

In the Release.gz that comes from each source, you will find the various
fields, and origin will be one of them.  Use one of the fields there -
you'll find origin, archive, label (which is I think what you want to
pin on, in this case.)

You'll find the Release.gz under /var/lib/apt/lists/

HTH,
-- 
 --
|  Stephen Gran  | Q: Why did the astrophysicist order |
|  [EMAIL PROTECTED] | three hamburgers? A: Because he was |
|  http://www.lobefin.net/~steve | hungry. |
 --



msg27185/pgp0.pgp
Description: PGP signature


Re: Upgrading to KDE 3.1

2003-01-29 Thread Rich Rudnick
On Tue, 2003-01-28 at 11:39, Jeetu Golani wrote:
 Hey ppl,
 
 I have KDE 3.0.4 running at the moment, had installed the debs of this. I 
 wanna upgrade to KDE 3.1. I've read that an apt-get upgrade doesn't do the 
 trick and causes problems. Would appreciate if someone here could tell me 
 what's the right way to upgrade.
 

http://ktown.kde.org/~nolden/kde/README
-- 
First Impressions are Bunk.



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


KDE 3.1 upgrade botched :( - Need help

2003-01-29 Thread Jeetu Golani



Hey guys,

I know someone on this list warned me to wait for 
sometime before upgrading to KDE 3.1 however...wat can I say.am an impatient 
fool :)

Anyways, I removed my old version of KDE :(.and 
I then added the following to my apt sources.list file

deb http://download.kde.org/pub/stable/3.1/Debian 
stable main 

An apt-get update followed with an apt-get install 
kdebase now says "404 Not found" for each of the required files.

I've tried various other source lines for 
sources.list. I can see the files on these URL's through Konqueror and the 
apt-get update runs successfully however I get similar errors from every source 
line I've used.

Consequently I can't use KDE anymore and am writing 
this mail from Windows.really need to get KDE up :(please 
help.

Thanks




what happened/where is gdk-imlib2?

2003-01-29 Thread Drew Cohan
I'm trying to install 'qiv' from unstable and gdk-imlib2 seems to have
disappeard/is unavailable?  Google's cache indicates there used to be .deb
for it.  What am I missing?

 

Thanks,

 

Drew Cohan

drew_at_drewcohan_dot_com




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




Re: perldoc bug?

2003-01-29 Thread Jason Pepas
 Upgrade and try again.  If it persists, file a bug.

yup, that fixed it.  perl 5.8 doesn't play nicely with perl-doc 5.6

-jason pepas


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




RE: find a command i have recently used in bash

2003-01-29 Thread drew cohan
let us say, i have done ls -l , etc etc
then i have done a few more commands at the prompt.

now, i want to use that ls command again. is there a way inwhich i can
reach it quickly? for instance, i type ls and some other key and bash
completes from history?

--
regards,
sandip p deshmukh

IIRC, you can type history | less (minus quotes) to get the list of
commands you've already typed, then if the past command was number 50 (for
example), you can say !50 to re-execute that command, or to execute the
last command typed use !! (but the up/down arrow is faster for the most
recent commands IMO).  man history should give you all the nitty gritty
details of how to use history buffer.

Good luck

Drew Cohan
drew_at_drewcohan_dot_com




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




Re: find a command i have recently used in bash

2003-01-29 Thread Jason Pepas
On Wednesday 29 January 2003 08:21 am, Sandip P Deshmukh wrote:
 hello all

 i am sure there must be a way of doing it. i am not getting it though.

 let us say, i have done ls -l , etc etc
 then i have done a few more commands at the prompt.

 now, i want to use that ls command again. is there a way inwhich i can
 reach it quickly? for instance, i type ls and some other key and bash
 completes from history?

 --
 regards,
 sandip p deshmukh
 --***
 BOFH excuse #40:

 not enough memory, go get system upgrade

you can use the up arrow to reach previous commands.  or you can grep your 
.bash_history, like grep ls ~/.bash_history

-jason pepas


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




Howto redirect output from a terminal

2003-01-29 Thread Michael Kahle
I am not sure how to ask for what I want here.  But, here goes.  I was using
dump to make a backup of a directory on my computer.  This was started from
a terminal in X.  As it was running I could see in the terminal window all
the status output from the program.  Good.  This backup job took a long time
to complete and so I went home while the backup was still running.  When at
home I ssh'd into the box to see if the dump process was still running, it
was.  Then I got to thinking, how can I see the output of this program in my
current ssh session?  Is there a program that exists to allow me to redirect
the output of a program running in a terminal to another terminal?  I hope I
am explaining this clearly.

Thanks,

Michael


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




<    1   2   3   4   5   6   7   >