Re: Using different DNS per ISP

2001-06-26 Thread Guy Geens
> "lists" == lists  <[EMAIL PROTECTED]> writes:

lists> I'm using two different ISPs depending on time of day, and
lists> cost. Problem is that they will only accept their own
lists> nameserver under /etc/resolv.conf. Is there a way around this,
lists> or do I need a script which changes resolv.conf before dialing?

Most ISPs will send their NS servers as part of the ppp setup. If you
add the following to /etc/ppp/options, the resolv.conf file will be
updated automatically:
usepeerdns

-- 
G. ``Iggy'' Geens - ICQ: #64109250
Home: <[EMAIL PROTECTED]> - Work: <[EMAIL PROTECTED]>
WWW: http://users.pandora.be/guy.geens/
`I want quality, not quantity. But I want lots of it!'



Re: big IBM harddisk

2001-06-26 Thread virtanen
On Mon, 25 Jun 2001, nico de haer wrote:

> Hi,
> 
> I own a IBM DTLA 304050 (41.1 Gb) and i have the same problem using it on my
> Abit LX6 mainboard.
> To solve it i installed a second hdd (old 1 gb seagate) as hda (told bios
> about it) the ibm as hdc (did NOT tell bios about it) and my cdrom is
> connected as hdb. Linux boots using the 1 Gb drive and the kernel 'finds'
> the IBM.
> 
> i know, it's a workaround, but it does work.
> 
> Regards,
> Nico de haer

Sounds interesting. Now I don't remember the make of the mainboard, but I
think that this might work for me as well. (That computer of mine is at
home, not connected with the net, I'm writing this using another computer
at work.) 

My system is (for some reason by someone, because it has been working, I
haven't changed it) as follows: 

1 Gb hdd as hda, debian boots from this
HP cd-writer as hdd 
___

1) Should I try to change my cd into hdb and that IBM as hdc? 
2) Or should it work, if I put IBM as hdc, but don't change anything else?

I've actually tried already 2), but didn't get it working.  
Which program (fdisk?) should I use to check, if I can do anything with
that BM hdd? 

-hv



RE: big IBM harddisk

2001-06-26 Thread virtanen
On Tue, 26 Jun 2001 [EMAIL PROTECTED] wrote:


> I installed a 40Gb Western Digital hard drive over the weekend into my PII
> 300 machine as a second drive.  My BIOS didn't recognise it, but Debian did.
> Have you tried installing it as a second drive?  Of course, if you want to
> be able to boot from it, the BIOS will need to know about it.  Check dmesg
> output to see if it comes up as a device.
> 
> - Chris

My system is now as follows:

1 GB hdd as hda (debian is here) 
HP cd-writer as hdd

I've tried all the combinations possible without changing the old setup. 
If I put that IBM harddisk as hdb the computer doesn't boot...

Maybe I have to change the cd-writer into hdb? And put that IBM drive 
into hdc? 

I will try again this evening. My computer is at home, I'm writing this at
my working place. 

-hv 



Building modules

2001-06-26 Thread Bill Wohler
--- =_aa0
Content-Type: text/plain; charset="us-ascii"
Content-ID: <[EMAIL PROTECTED]>

  I essentially build and install my kernel as follows (I've included
  the full script in case someone finds it useful):

make-kpkg --revision=${revision} kernel_image
dpkg -i ../kernel-image-${version}_${revision}_i386.deb

  My question is this: How do I add modules to /lib/modules?

  For example, I found that I neglected to include the lp modules and
  want to build and install them in a similar Debian-fashioned way but
  without doing a full kernel install and reboot. The docs indicated
  that this might do it:

[EMAIL PROTECTED]:503]# make-kpkg modules_image
[...compilation deleted...]
for module in  ; do
...
/bin/sh: -c: line 1: syntax error near unexpected token `;'
/bin/sh: -c: line 1: `for module in  ; do

  But alas, it did not. make-kpkg modules_image appears to be more for
  addons in /usr/src/modules (which does not yet exist on my system,
  but creating it didn't help) rather than mainstreamed modules.

  Suggestions?
  
--- =_aa0
Content-Type: text/plain; name="makekernel"; charset="us-ascii"
Content-ID: <[EMAIL PROTECTED]>

#! /bin/sh
#
# $Id: makekernel,v 1.8 2001/06/26 05:18:34 wohler Exp $
#
# Configure, build and install a new kernel. This script expects to be run in a 
# directory called kernel-source-; the version of the kernel is
# extracted from .
#
cwd=`pwd`
if [ `expr $cwd : '.*kernel-source-'` -eq 0 ]; then
echo "$0: must be in a kernel-source directory"
exit 1
fi

version=`pwd | sed 's/.*kernel-source-//'`
buildversionfile=../.build-$version

# If LOGNAME is root, try to set LOGNAME to the actual person that is
# logged in.
if [ -z "$LOGNAME" -o "$LOGNAME" = root ]; then
LOGNAME=`who am i | sed -e 's/^[^!]*!//' -e 's/ .*$//'`
fi
if [ -z "$LOGNAME" ]; then
echo "Could not set LOGNAME. Please set LOGNAME manually, as in:"
echo "  LOGNAME=luser $0"
exit 1
fi

# Set custom version string.
hostname=`uname --nodename|sed 's/\..*//'`
revision=$hostname.1
buildversion=1
if [ -f $buildversionfile ]; then
buildversion=`cat $buildversionfile`
buildversion=`expr $buildversion + 1`
revision=$hostname.$buildversion
fi

# Create configuration file.
if [ -z "$DISPLAY" ]; then
echo "DISPLAY environment variable not set; "
echo "attempt to use X display :0.0, text-only menu, skip configuration,"
echo -n "or abort? [Xtsa] "
read ans
echo $ans
if [ -z "$ans" -o "$ans" = "x" -o "$ans" = "X" ]; then
DISPLAY=:0.0 make xconfig || exit 1
elif [ "$ans" = "t" -o "$ans" = "T" ]; then
make menuconfig || exit 1
elif [ "$ans" = "s" -o "$ans" = "S" ]; then
echo "Skipping configuration..."
else
exit 0
fi
else
make xconfig
fi

# Build everything.
set -x
make-kpkg clean
make-kpkg --revision=${revision} kernel_image
make-kpkg kernel_headers# --revision saved between invocations
make-kpkg kernel_doc

# Prepare to install.
# Removing the modules directory eliminates the warning you get during
# the kernel-image install about mismatched modules.
set +x
modules=/lib/modules/$version
echo "The modules directory for this version needs to be removed"
echo "before installing the kernel in order to prevent a mismatch"
echo "between the kernel and the modules. Verify that the correct"
echo "module directory is to be removed and hit return. If it is"
echo "not correct, interrupt with C-c and correct the error."
echo ""
echo -n "Hit return to remove $modules, C-c to abort: "
read
set -x
rm -rf $modules

# Install everything.
dpkg -i ../kernel-image-${version}_${revision}_i386.deb
dpkg -i ../kernel-headers-${version}_${revision}_i386.deb
dpkg -i ../kernel-doc-${version}_${revision}_all.deb

# Post installation chores.
if [ -e /usr/bin/vmware-config.pl ]; then
vmware-config.pl << EOF








EOF
fi
echo $buildversion > $buildversionfile

--- =_aa0
Content-Type: text/plain; charset="us-ascii"
Content-ID: <[EMAIL PROTECTED]>

--
Bill Wohler <[EMAIL PROTECTED]>  http://www.newt.com/wohler/  GnuPG ID:610BD9AD
Maintainer of comp.mail.mh FAQ and mh-e. Vote Libertarian!
If you're passed on the right, you're in the wrong lane.

--- =_aa0--



package naming?!

2001-06-26 Thread Andre Alexander Bell
Hello!

I'm using testing and while installing on my system I've noticed some thing 
about the available package names.

Examples:
If you want to _use_ telnet. Install package telnet.
If you want to _provide_ telnet. Install package telnetd.
If you want to _use_ ftp. Install package ftp.
If you want to _provide_ ftp. Install package ftpd.
If you want to _use_ ssh. Install package ssh.
If you want to _provide_ ssh...

Oh, there is no sshd. This is part of ssh. Maybe it would be more convenient 
if this is the same to all packages. To use the service you can start with 
the package of the services name. (Sure there are alternatives) If you want 
to provide a service use d to install the daemon...
Or is there any problem with this naming convention?

Andre



Re: net mask

2001-06-26 Thread nico de haer
Jimmy,

I'd like to point out that it is NOT possible to calculate the netmask. (at
best you can calculate the network class). The problem is that you can't
tell if there is some sub (or super) networking going on. so your only
option is to *ask* the provider. (see ip-subnetworking howto)

regards,
Nico de Haer

- Original Message -
From: Jimmy Richards <[EMAIL PROTECTED]>
To: 
Sent: Monday, June 25, 2001 10:04 PM
Subject: Re: net mask


On Mon, Jun 25, 2001 at 09:14:49PM +0200, Daniel de los Reyes wrote:
> My provider has assigned me the following ip range
> 213.201.43.208-15
> what net mask should I use?

Hi Daniel,

I used a network calculator to get the following information.
According to it you should use a netmask of 255.255.255.0.



[EMAIL PROTECTED]:~$ ipcalc.pl 213.201.43.208

Address:   213.201.43.20811010101.11001001.00101011 .1101
Netmask:   255.255.255.0 == 24   .. .
Wildcard:  0.0.0.255 .. .
=>
Network:   213.201.43.0/24   11010101.11001001.00101011 .
(Class C)
Broadcast: 213.201.43.25511010101.11001001.00101011 .
HostMin:   213.201.43.1  11010101.11001001.00101011 .0001
HostMax:   213.201.43.25411010101.11001001.00101011 .1110
Hosts/Net: 254


[EMAIL PROTECTED]:~$ ipcalc.pl 213.201.43.215

Address:   213.201.43.21511010101.11001001.00101011 .11010111
Netmask:   255.255.255.0 == 24   .. .
Wildcard:  0.0.0.255 .. .
=>
Network:   213.201.43.0/24   11010101.11001001.00101011 .
(Class C)
Broadcast: 213.201.43.25511010101.11001001.00101011 .
HostMin:   213.201.43.1  11010101.11001001.00101011 .0001
HostMax:   213.201.43.25411010101.11001001.00101011 .1110


HTH,

Jimmy Richards


> --
> __
> Daniel de los Reyes
> S2-Desarrollo, Grupo S2
> Valencia Spain
> e-mail: [EMAIL PROTECTED]
> Powered by Debian GNU-Linux 2.2r3
> __
>
>
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact
[EMAIL PROTECTED]



_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




Re: Unidentified subject!

2001-06-26 Thread Sean Morgan
The -26 release of libpam-modules seems to have a broken refference to the file
/lib/security/pam_condev.so, you can get the old package at
ftp://ftp.us.debian.org/debian/pool/main/p/pam/libpam-modules/libpam-modules_0.72-25_i386.deb
or use your cached copy if you still have it.

On Tue, Jun 26, 2001 at 12:36:06AM +0200, Mart van de Wege wrote:
> Well, it seems like this is one of those weeks. Just did an upgrade
> (running sid), saw some pam packages being upgrade, and now I can't log in
> to my desktop machine anymore. It even refuses ssh connections from my
> laptop. Thank $WHOEVER that I had a shell running on a virtual console,
> but aside from that? He's dead Jim.
> Anyone else see this? should I rush out and file a bug for this, or will
> it be fixed tomorrow, so just upgrading will fix it?
> 
> Mart
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> 



Re: Using different DNS per ISP

2001-06-26 Thread nico de haer
Hi,

Is there a problem why you cna't use dynamic assigned dns servers? (see
pppconfig, has that option somewhere...)

Regards,
Nico de Haer

- Original Message -
From: Marcus <[EMAIL PROTECTED]>
To: 
Sent: Tuesday, June 26, 2001 2:50 AM
Subject: Using different DNS per ISP


>
> I'm using two different ISPs depending on time of day, and cost.
> Problem is that they will only accept their own nameserver under
> /etc/resolv.conf. Is there a way around this, or do I need a script
> which changes resolv.conf before dialing?
>
> Thanks,
>
> Marcus
>
>
>
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact
[EMAIL PROTECTED]


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




Re: big IBM harddisk

2001-06-26 Thread nico de haer
Hi,

Some more info.

1) Make sure your system boots using your 1 Gb hdd
2) Check what your kernel says about hdd's (dmesg is your friend)
3) Once you have found it use (c)fdisk to create partitions, and add
filesystems using the normal tools
4) mount em somewhere

This *should* work for all. One tip to prevent bios crap:
1) connect the 1 Gb and CDROM to your mainboard
2) power-on and go to bios, do autodetect
3) check that the Secondary master and slave are set to NONE
4) save settings
5) power down
6) connect the Big One as Secondary Master
7) Power On (DO NOT GO TO BIOS TO TELL IT ABOUT THE BIG ONE)
This way you leave all the work that needs to be done to your kernel.
If i try to autodetect my IBM the Abit stops responding..

The wisedom behind : Put the 40 gb drive in as hdc, and cdrom as hdb:
Loads of controllers have to talk to both drives (on the same cable) in the
same way. This means that both of them run at the maximum speed of the
slowest drive. Putting the Big One on it's own cable allows for maximum
speed. There are controllers who are smarter than this, check out if yours
is.

btw, i made a typo... my drive is a DTLA-305040, not a DLTA-304050
(whoepsy)

regards,
Nico de Haer
- Original Message -
From: virtanen <[EMAIL PROTECTED]>
To: nico de haer <[EMAIL PROTECTED]>
Cc: 
Sent: Tuesday, June 26, 2001 7:37 AM
Subject: Re: big IBM harddisk


> On Mon, 25 Jun 2001, nico de haer wrote:
>
> > Hi,
> >
> > I own a IBM DTLA 304050 (41.1 Gb) and i have the same problem using it
on my
> > Abit LX6 mainboard.
> > To solve it i installed a second hdd (old 1 gb seagate) as hda (told
bios
> > about it) the ibm as hdc (did NOT tell bios about it) and my cdrom is
> > connected as hdb. Linux boots using the 1 Gb drive and the kernel
'finds'
> > the IBM.
> >
> > i know, it's a workaround, but it does work.
> >
> > Regards,
> > Nico de haer
>
> Sounds interesting. Now I don't remember the make of the mainboard, but I
> think that this might work for me as well. (That computer of mine is at
> home, not connected with the net, I'm writing this using another computer
> at work.)
>
> My system is (for some reason by someone, because it has been working, I
> haven't changed it) as follows:
> 
> 1 Gb hdd as hda, debian boots from this
> HP cd-writer as hdd
> ___
>
> 1) Should I try to change my cd into hdb and that IBM as hdc?
> 2) Or should it work, if I put IBM as hdc, but don't change anything else?
>
> I've actually tried already 2), but didn't get it working.
> Which program (fdisk?) should I use to check, if I can do anything with
> that BM hdd?
>
> -hv
>
>
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact
[EMAIL PROTECTED]


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




CPAN question

2001-06-26 Thread Martin Würtele
hi,

if run cpan and install perl 5.6 on potato it should be installed in
/usr/local/lib/site_perl/. So it should be possible to have the potato perl
5.005 with latest 5.6.1 togeather on the same machine without breaking
dependencies. in that case the debian packages would use perl 5.005 while my
programs could use 5.6.1 when i specify '!/usr/local/bin/perl'.

am i getting something wrong?

thx martin
-- 
GnuPG 1024D/3E8DCCC0 30DC 1D28 1D79 32F5 5E67  3ABB 28EE B35A 3E8D CCC0
   work: factline Krisper Fabro Harnoncourt OEG (www.factline.com)



RE: upgrading award bios to see ide 40mb disk

2001-06-26 Thread A. Demarteau \(linux rules!\)
On Tue, 26 Jun 2001, Ian Perry wrote:

> Do you really want to see a 40Mb disk ?  or did you mean 40 Gig ?
ah, 40gb ofcourse. Sorry for the typo and thanx for the info

> Ian
> 
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Behalf Of Donald R. Spoon
> Sent: Tuesday, June 26, 2001 2:22 PM
> To: debian-user@lists.debian.org
> Subject: upgrading award bios to see ide 40mb disk
> 
> 
> > hi,
> > does anyone know how to upgrade an award bios (so that it will see my 40mb
> > ide-drive) either via dos or under linux and a pointer to a site (other
> > then award.com) to get the necessary tools/drivers.
> >
> > Thanx for any insites.
> >
> > ---
> > Andor Demarteau
> > [EMAIL PROTECTED]
> 
> I have done this several times here.  I have found that the absolute
> BEST way is to visit the homepage of your MOTHERBOARD (not Award) and
> get the proper files from their tech support section.  They usually have
> excellent instructions on just how to do the upgrade.  The reason for
> this is that each motherboard mfg. will apply certain custom "tweaks" to
> their BIOS that they order from AWARD, and they will be the ones to have
> the "latest and greatest" changes to make their motherboards work
> properly.  Most of the times I have done this, the files were under the
> tech support / downloads sections.  READ, COPY, and RE-READ the install
> instruction carefully!  You can really mess up the MB, if you don't
> follow the directions!!
> 
> You generally have to d/l two files.  The first is the new BIOS image,
> and the second is an "Awardflash" utility program that actually does the
> install of the image file.  Also, it is important that you bootup into a
> minimal MSDOS environment (no extra drivers, extended memory enabled,
> etc).  It is important since the flash program will use most of the
> available memory below 640K.  I have found here that the "minmal dos"
> selection on the WIN ME rescue floppy will give the proper environment.
> Earlier versions of Windows were quite difficult to get going...you
> essentially had to make a "system" disk and copy over the two files
> mentioned previouslyand ONLY those files!
> 
> I don't know of any way to do this under Linux, although I would be
> quite happy to learn how if someone else knows.
> 
> Cheers,
> -Don Spoon-
> 
> 
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact
> [EMAIL PROTECTED]
> 
> 
> 

---
Andor Demarteau
[EMAIL PROTECTED]
---



Re: upgrading award bios to see ide 40mb disk

2001-06-26 Thread linux
note on my last message and as specially the topic:
40mb was incorrect, it's a 40gb disk.
note on my last message and as specially the topic:
40mb was incorrect, it's a 40gb disk.



Re: net mask

2001-06-26 Thread Jimmy Richards
On Mon, Jun 25, 2001 at 10:22:05PM +0200, nico de haer wrote:
> Jimmy,
> 
> I'd like to point out that it is NOT possible to calculate the netmask. (at
> best you can calculate the network class). The problem is that you can't
> tell if there is some sub (or super) networking going on. so your only
> option is to *ask* the provider. (see ip-subnetworking howto)
> 
> regards,
> Nico de Haer

Hello Nico,

Thank you for pointing out the correct way to get the proper netmask
for ip's that are given to you by your network provider. I have a couple
of books on networking I recently purchased, and will read them and the
ip-subnetworking howto that you suggest. I couldn't help but wonder if
the calculator gave the correct answer. I put my own ip in and it didn't
answer with the subnet mask that my isp gave me. I then downloaded a
newer version of the calculator, that was several versions newer, and it
still didn't give the same subnet mask my isp gave me. So I figured I
had better start doing some reading. I assumed the calculator would give
a proper answer, but I should have known it wouldn't be that simple when
it comes to networking.
There is one thing that I hope you don't mind me pointing out to you
Nico. It is considered unpolite netiquette to 'cc' someone in on your
reply to the mailing list, unless they have requested it. I have seen
some people respond as if they consider it to be pretty rude. It's no
big deal to me, but in the future you might want to reply to the mailing
list only, fyi. Thanks again for pointing out the error of my ways.


Cheers,

Jimmy Richards



> - Original Message -
> From: Jimmy Richards <[EMAIL PROTECTED]>
> To: 
> Sent: Monday, June 25, 2001 10:04 PM
> Subject: Re: net mask
> 
> 
> On Mon, Jun 25, 2001 at 09:14:49PM +0200, Daniel de los Reyes wrote:
> > My provider has assigned me the following ip range
> > 213.201.43.208-15
> > what net mask should I use?
> 
> Hi Daniel,
> 
> I used a network calculator to get the following information.
> According to it you should use a netmask of 255.255.255.0.
> 
> 
> 
> [EMAIL PROTECTED]:~$ ipcalc.pl 213.201.43.208
> 
> Address:   213.201.43.20811010101.11001001.00101011 .1101
> Netmask:   255.255.255.0 == 24   .. .
> Wildcard:  0.0.0.255 .. .
> =>
> Network:   213.201.43.0/24   11010101.11001001.00101011 .
> (Class C)
> Broadcast: 213.201.43.25511010101.11001001.00101011 .
> HostMin:   213.201.43.1  11010101.11001001.00101011 .0001
> HostMax:   213.201.43.25411010101.11001001.00101011 .1110
> Hosts/Net: 254
> 
> 
> [EMAIL PROTECTED]:~$ ipcalc.pl 213.201.43.215
> 
> Address:   213.201.43.21511010101.11001001.00101011 .11010111
> Netmask:   255.255.255.0 == 24   .. .
> Wildcard:  0.0.0.255 .. .
> =>
> Network:   213.201.43.0/24   11010101.11001001.00101011 .
> (Class C)
> Broadcast: 213.201.43.25511010101.11001001.00101011 .
> HostMin:   213.201.43.1  11010101.11001001.00101011 .0001
> HostMax:   213.201.43.25411010101.11001001.00101011 .1110
> 
> 
> HTH,
> 
> Jimmy Richards
> 
> 
> > --
> > __
> > Daniel de los Reyes
> > S2-Desarrollo, Grupo S2
> > Valencia Spain
> > e-mail: [EMAIL PROTECTED]
> > Powered by Debian GNU-Linux 2.2r3
> > __
> >
> >
> > --
> > To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> > with a subject of "unsubscribe". Trouble? Contact
> [EMAIL PROTECTED]
> 
> 
> 
> _
> Do You Yahoo!?
> Get your free @yahoo.com address at http://mail.yahoo.com


bintfrZxlSkEL.bin
Description: PGP Key 0x0062D7A7.


pgp8MFO1vIc8b.pgp
Description: PGP signature


Re: big IBM harddisk

2001-06-26 Thread virtanen
On Tue, 26 Jun 2001, nico de haer wrote:

> Hi,
> 
> Some more info.
> 
> 1) Make sure your system boots using your 1 Gb hdd
> 2) Check what your kernel says about hdd's (dmesg is your friend)
> 3) Once you have found it use (c)fdisk to create partitions, and add
> filesystems using the normal tools
> 4) mount em somewhere
> 
> This *should* work for all. One tip to prevent bios crap:
> 1) connect the 1 Gb and CDROM to your mainboard
> 2) power-on and go to bios, do autodetect
> 3) check that the Secondary master and slave are set to NONE
> 4) save settings
> 5) power down
> 6) connect the Big One as Secondary Master
> 7) Power On (DO NOT GO TO BIOS TO TELL IT ABOUT THE BIG ONE)
> This way you leave all the work that needs to be done to your kernel.
> If i try to autodetect my IBM the Abit stops responding..

OK. 

Thanks. 
I will try this method this evening. 
My problem was that my box didn't boot at all, when I connected that big
harddrive to the machine. I tried it as the slave of that 1 GB as hda. 

I will try to change the cd-drive into hdb and the Big One as hdc and see
what happens. 

> 
> The wisedom behind : Put the 40 gb drive in as hdc, and cdrom as hdb:
> Loads of controllers have to talk to both drives (on the same cable) in the
> same way. This means that both of them run at the maximum speed of the
> slowest drive. Putting the Big One on it's own cable allows for maximum
> speed. There are controllers who are smarter than this, check out if yours
> is.

This is something, I've been thinking about.  You are probably right. 


> btw, i made a typo... my drive is a DTLA-305040, not a DLTA-304050
> (whoepsy)
> 
> regards,
> Nico de Haer

regards, 

-hv



Re: big IBM harddisk

2001-06-26 Thread nico de haer


Hi all,

I have a (bold) idea that *might* solve the "My bios does not see my Big
HDD" problem.

There are several 'magical' boundries in bios/hdd land created in the last
years. these are:

2.1 Gb  (mostly on 486)
8.4 Gb  (Pentium class mostly)
32.8 Gb (even recent pc's have this one)

note: Don't kill me if i'm off a bit (or byte) here.

Along the way software solutions where developed (Ontrack, EZDrive) to
overcome these problems. Most (if not all) go into the MBR. To use em your
bios MUST be able to load the MBR. If this is not the case, most hdd's offer
a *special* jumer setting to report a smaller size to the bios. Later, the
diskmanager software re-enables you to use the full capacity of the hdd. As
we linux guys/girls use Lilo/Grub, the mbr is already used. (I know, you
don't have to put em in the mbr, but this is the most commen to put it in
the mbr)

As a lot of you have noticed, Linux is quite able to handle hdd's without
the bios knowing about it. So my conclusion is that all we need the bios to
do is "get the kernel running" and after that, linux can take over,
controlling your hdd's

My idea:

1) set the jumper to the *special* setting
2) Use autodetect in bios (*should* find a smaller hdd than you have
installed)

At this point, you *should* be able to boot using your big hdd. If you stop
here, you loose a lot of diskspace (in my case, my ibm reports 32 gb instead
of 41 so i 'loose' 9 gb). After reading doc's in my kernel source
(2.2.19pre21) if found that i can share my opinion about c/h/s settings with
my kernel by adding "hdx=c/h/s" as a parameter.

3) add hdx=c/h/s to lilo.conf or whatever you use to tell the kernel
something.

I hope that this is the key to get full drive capacity back without a
diskmanager. I haven't tried it yet, i'd like your opinion about it. Is it
sane or stupid ? Is it the solution or *just* the first step? btw, i've
mailed this idea to Mark Lord (maintainer of ide code in the kernel) the
other day, and i hope to hear from him soon.

Feedback please!

Yours,
Nico de Haer



_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




Re: net mask

2001-06-26 Thread nico de haer
Hi,

About the calulator:
The subnetmask it calcultates is sane but assumes that there is no sub (or
super) networking going on. This is the source of loads of confusion about
classes vs netmasks (i've had to convince several that they *are* related
but *not* the same).

Happy reading.
(thanks for tip on not cc'ing. if i offended anyone, sorry!)

Yours,
Nico de Haer

- Original Message -
From: Jimmy Richards <[EMAIL PROTECTED]>
To: 
Sent: Tuesday, June 26, 2001 10:32 AM
Subject: Re: net mask


On Mon, Jun 25, 2001 at 10:22:05PM +0200, nico de haer wrote:
> Jimmy,
>
> I'd like to point out that it is NOT possible to calculate the netmask.
(at
> best you can calculate the network class). The problem is that you can't
> tell if there is some sub (or super) networking going on. so your only
> option is to *ask* the provider. (see ip-subnetworking howto)
>
> regards,
> Nico de Haer

Hello Nico,

Thank you for pointing out the correct way to get the proper netmask
for ip's that are given to you by your network provider. I have a couple
of books on networking I recently purchased, and will read them and the
ip-subnetworking howto that you suggest. I couldn't help but wonder if
the calculator gave the correct answer. I put my own ip in and it didn't
answer with the subnet mask that my isp gave me. I then downloaded a
newer version of the calculator, that was several versions newer, and it
still didn't give the same subnet mask my isp gave me. So I figured I
had better start doing some reading. I assumed the calculator would give
a proper answer, but I should have known it wouldn't be that simple when
it comes to networking.
There is one thing that I hope you don't mind me pointing out to you
Nico. It is considered unpolite netiquette to 'cc' someone in on your
reply to the mailing list, unless they have requested it. I have seen
some people respond as if they consider it to be pretty rude. It's no
big deal to me, but in the future you might want to reply to the mailing
list only, fyi. Thanks again for pointing out the error of my ways.


Cheers,

Jimmy Richards



> - Original Message -
> From: Jimmy Richards <[EMAIL PROTECTED]>
> To: 
> Sent: Monday, June 25, 2001 10:04 PM
> Subject: Re: net mask
>
>
> On Mon, Jun 25, 2001 at 09:14:49PM +0200, Daniel de los Reyes wrote:
> > My provider has assigned me the following ip range
> > 213.201.43.208-15
> > what net mask should I use?
>
> Hi Daniel,
>
> I used a network calculator to get the following information.
> According to it you should use a netmask of 255.255.255.0.
>
>
>
> [EMAIL PROTECTED]:~$ ipcalc.pl 213.201.43.208
>
> Address:   213.201.43.20811010101.11001001.00101011 .1101
> Netmask:   255.255.255.0 == 24   .. .
> Wildcard:  0.0.0.255 .. .
> =>
> Network:   213.201.43.0/24   11010101.11001001.00101011 .
> (Class C)
> Broadcast: 213.201.43.25511010101.11001001.00101011 .
> HostMin:   213.201.43.1  11010101.11001001.00101011 .0001
> HostMax:   213.201.43.25411010101.11001001.00101011 .1110
> Hosts/Net: 254
>
>
> [EMAIL PROTECTED]:~$ ipcalc.pl 213.201.43.215
>
> Address:   213.201.43.21511010101.11001001.00101011 .11010111
> Netmask:   255.255.255.0 == 24   .. .
> Wildcard:  0.0.0.255 .. .
> =>
> Network:   213.201.43.0/24   11010101.11001001.00101011 .
> (Class C)
> Broadcast: 213.201.43.25511010101.11001001.00101011 .
> HostMin:   213.201.43.1  11010101.11001001.00101011 .0001
> HostMax:   213.201.43.25411010101.11001001.00101011 .1110
>
>
> HTH,
>
> Jimmy Richards
>
>
> > --
> > __
> > Daniel de los Reyes
> > S2-Desarrollo, Grupo S2
> > Valencia Spain
> > e-mail: [EMAIL PROTECTED]
> > Powered by Debian GNU-Linux 2.2r3
> > __
> >
> >
> > --
> > To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> > with a subject of "unsubscribe". Trouble? Contact
> [EMAIL PROTECTED]
>
>
>
> _
> Do You Yahoo!?
> Get your free @yahoo.com address at http://mail.yahoo.com



_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




New kernel pre21?

2001-06-26 Thread

I've been running kernel 2.2.19 since it came out. Itis all going smoothly!

Now I see the new 2.2.19pre21 is available.

I wonder if it is worth my while upgrading my debian box to the new kernel.

Ciao

Vittorio

-

messaggio inviato con Freemail by superEva
http://www.supereva.it

-



telnet problème

2001-06-26 Thread Olivier . Schlupp
Bonjour tout le monde; j'ai un problème que je n'arrive pas à résoudre:faire
un telnet sur un équipement privé;je tape telnet 10.x.x.x et il écris Trying
to connect Pourtant j'arrive à faire un telnet vers une autre machine
linux alors ou est le problème
Merci

[EMAIL PROTECTED]




AW: telnet problème

2001-06-26 Thread Christian Kesselheim
Salut,

L'accès au port telnet est peut-être refuser sur cette machine.

(ck)

-
Christian Kesselheim

infeurope S.A.
62, rue Charles Martel
L-2134 Luxembourg
Luxembourg
Tel: (+352) 25.22.33.331
Fax: (+352) 25.22.33.222
GSM: (+ 49) 177.206.1004

Web: www.infeurope.lu
-

-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Gesendet: Dienstag, 26. Juni 2001 11:52
An: debian-user@lists.debian.org
Betreff: telnet problème


Bonjour tout le monde; j'ai un problème que je n'arrive pas à résoudre:faire
un telnet sur un équipement privé;je tape telnet 10.x.x.x et il écris Trying
to connect Pourtant j'arrive à faire un telnet vers une autre machine
linux alors ou est le problème
Merci

[EMAIL PROTECTED]



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



OT: C++ Newbie and KDE/QT

2001-06-26 Thread Brendon
This summer holiday I took on the task of learning C++ with (shamefully :) 
the help of C++ For Dummies. 

Having tried to learn C++ in the past I'm now reasonably familar with it's 
synax so i thought i'd also try learning QT/KDE programming at the same time. 
But the tutorials I've been through on the doc.trolltech.com site have left 
me a little disappointed. 

Does anyone know of a good site where QT/KDE programming is explained? And 
what did you start with when learning C++?

any suggestions are appreciated.


Brendon
-- 

"if we live by an "eye for an eye and a tooth for a tooth"...before long, 
the whole world will be blind and toothless." 
 --Tevye, Fiddler on the Roof



Re: cd-rom "medium not found", no modules load

2001-06-26 Thread Stephen Taylor
At 09:40 AM 6/24/01 -0700, you wrote:
>I believe its because you need to use "scsi" for your devices when trying
to use
>'any' cd-rw..
>to do that your kernel needs scsi-emulation in itwhich the newer 2.4.5
>pre-configured all set to go..
>
>otherwise you'd need to do it yorselfif you can't/don't want to use 2.4.5
>then you need re-do kernel and make sure to say Y to  scsi-emulation, scsi
disk,
>scsi tape, scsi-generic --not sure on that can't recall i'm inwindows at
moment)
>and make sure you say "N" to atapi for cdrom 
>

Is 2.4.5 the latest version of the kernel or something else? Where can I
download it?

I started an install last night, got as far as reboot before it lost the cd.
On the ~Enter device Name~ screen, the system does read the cd (closes
cd-tray after I press enter and reads), but does not change

The debug logs show entries like
"disk changed noticed at ide0(3,64)

These don't work:
boot: linux ide-scsi=hdb
boot: linux hdb=cdrom

And it could be a Master Boot Record. The win98 cd doesn't auto-start, but
the Tyan (motherboard) device cd does. This a.m. the Debian 2.2R3 B1 cd
boots. Running Fdisk /mbr in dos brought no visible change

Suggestions appreciated/st

>> What modules / parameters do I need to install a cd-rom
>> at io=0x1f0 and interrupt=14?
>>
>> It's a samsung cd-rw sw-208. Debian Potato started up first thing from the
>> boot-disk, recognized one cd-rom, recognized the second, then said "there's
>> nothing at /mnt/cdrom". Loading cd-rom modules at the address and irq fails
>> with "resource busy" messages



Re: Using different DNS per ISP

2001-06-26 Thread Anthony Campbell
On 26 Jun 2001, nico de haer wrote:
> Hi,
> 
> Is there a problem why you cna't use dynamic assigned dns servers? (see
> pppconfig, has that option somewhere...)
> 
> Regards,
> Nico de Haer
> 
> - Original Message -
> From: Marcus <[EMAIL PROTECTED]>
> To: 
> Sent: Tuesday, June 26, 2001 2:50 AM
> Subject: Using different DNS per ISP
> 
> 
> >
> > I'm using two different ISPs depending on time of day, and cost.
> > Problem is that they will only accept their own nameserver under
> > /etc/resolv.conf. Is there a way around this, or do I need a script
> > which changes resolv.conf before dialing?
> >
> > Thanks,
> >
> > Marcus
> >
> >

You can use dnrd (deb package available). This allows you to assign as
many different nameservers as you wish. I have about 5.

Anthony


-- 
Anthony Campbell - running Gnu/Debian Linux (Windows-free zone).
For electronic books (Homeomythology and The Assassins of Alamut), skeptical 
essays, and over 130 book reviews, go to http://www.acampbell.org.uk/

Le style est l'homme meme. (Style is the man himself.)
  [Buffon]



Re: Unidentified subject!

2001-06-26 Thread Joost Kooij
On Tue, Jun 26, 2001 at 01:35:42PM +1000, Steve Kowalik wrote:
> On Tue, Jun 26, 2001 at 01:35:51AM -0700, Edwin Lau uttered:
> > I have the same problem, just wait for a fix... =(
> > 
> Download libpam*.deb from http://incoming.debian.org
> And blame the PAM maintainer. 

Yeah, and get your money back, too.

Cheers,


Joost



Re: Building modules

2001-06-26 Thread Joost Kooij
On Mon, Jun 25, 2001 at 10:50:46PM -0700, Bill Wohler wrote:
>   My question is this: How do I add modules to /lib/modules?
> 
>   For example, I found that I neglected to include the lp modules and
>   want to build and install them in a similar Debian-fashioned way but
>   without doing a full kernel install and reboot. The docs indicated
>   that this might do it:
> 
> [EMAIL PROTECTED]:503]# make-kpkg modules_image

No that is for external modules (not part of linus' linux).

>   But alas, it did not. make-kpkg modules_image appears to be more for
>   addons in /usr/src/modules (which does not yet exist on my system,
>   but creating it didn't help) rather than mainstreamed modules.

Exactly.

>   Suggestions?

All you want is to rebuild the lp modules in the kernel source.
But it is easier to just rebuild your entire kernel, with lp added
to the config.  Then upgrade the kernel-image, it will replace the
kernel without lp cleanly (another advantage of make-kpkg).

Maybe it is possible to only rebuild the lp.o objects and simply
insmod them into your original kernel.  YMMV.  You will have to add 
the lp.o file to /lib/modules by hand and dpkg will not clean it up
when you dpkg -r the kernel-image it belongs to.

Cheers,


Joost



Re: New kernel pre21?

2001-06-26 Thread Ethan Benson
On Tue, Jun 26, 2001 at 09:16:39AM -, [EMAIL PROTECTED] wrote:
> 
> I've been running kernel 2.2.19 since it came out. Itis all going smoothly!
> 
> Now I see the new 2.2.19pre21 is available.

you mean old

> I wonder if it is worth my while upgrading my debian box to the new kernel.

you mean downgrade

pre == prerelease, beta etc, that is 2.2.19pre21 < 2.2.19

-- 
Ethan Benson
http://www.alaska.net/~erbenson/


pgp09jhkXYJOw.pgp
Description: PGP signature


Re: CPAN question

2001-06-26 Thread Joost Kooij
On Tue, Jun 26, 2001 at 10:15:19AM +0200, Martin W?rtele wrote:
> if run cpan and install perl 5.6 on potato it should be installed in
> /usr/local/lib/site_perl/. So it should be possible to have the potato perl
> 5.005 with latest 5.6.1 togeather on the same machine without breaking
> dependencies. in that case the debian packages would use perl 5.005 while my
> programs could use 5.6.1 when i specify '!/usr/local/bin/perl'.
> 
> am i getting something wrong?

Dunno, try asking on the debian-perl mailinglist.  That's where the experts
reside AFAIK.

Cheers,


Joost



Re: telnet probl?me

2001-06-26 Thread Joost Kooij
On Tue, Jun 26, 2001 at 11:51:35AM +0200, [EMAIL PROTECTED] wrote:
> Bonjour tout le monde; j'ai un probl?me que je n'arrive pas ? r?soudre:faire
> un telnet sur un ?quipement priv?;je tape telnet 10.x.x.x et il ?cris Trying
> to connect Pourtant j'arrive ? faire un telnet vers une autre machine
> linux alors ou est le probl?me

Vous pouvez verifier cet appareil avec l'util de resau "nmap".  Il vous
dira aux quels "ports" l'appareil "ecoute".

Cheers,


Joost



Re: [users] big IBM harddisk

2001-06-26 Thread MaD dUCK
also sprach virtanen (on Mon, 25 Jun 2001 04:28:04PM +0300):
> I purchased a new 40 G IBM harddisk.

try setting the jumper called "32Gb clip"
even the LBA enabled BIOSs still can't handle >32Gb, so you'll lose
8Gb, but in my case, the BIOS did detect the drive.

martin;  (greetings from the heart of the sun.)
  \ echo mailto: !#^."<*>"|tr "<*> mailto:"; [EMAIL PROTECTED]
-- 
it's as bad as you think, and they are out to get you.



Re: Telnet Client --> solved

2001-06-26 Thread Casper Gielen
Ok, now that we've all got a nice windows ssh, how about DOS.
I need an SSH client (or else a telnet client) that works from DOS on a
286. I'm currently using NCSA telnet, but it has some trouble the
keymap.
-- 
Casper Gielen
[EMAIL PROTECTED], [EMAIL PROTECTED]
--
People just generally like to disagree. 
Bill Joy



searching for old releases of debian

2001-06-26 Thread Piotr Krukowiecki
[Please CC me on replays]

Hi

On archive.debian.org the oldest release is buzz. 
I have debian 0.93r6, but only binaries for i386.
Does anybody has any older releases?


Thanks :)


-- 
Piotrek
irc: #Debian.pl



Re: cd-rom "medium not found", no modules load

2001-06-26 Thread Joost Kooij
On Tue, Jun 26, 2001 at 06:08:45AM -0400, Stephen Taylor wrote:
> Is 2.4.5 the latest version of the kernel or something else? Where can I
> download it?

http://www.kernel.org/pub/linux/kernel/

> These don't work:
> boot: linux ide-scsi=hdb

AFAIK that should read "linux hdb=ide-scsi".  Correct me if I'm wrong.


> >> What modules / parameters do I need to install a cd-rom
> >> at io=0x1f0 and interrupt=14?

A normal ide/atapi cdrom, or any cdrw used as plain cdrom only should not
need any of it.  If your cdrom does not show up, first check the cabling,
do you use the right device name (hd[abcd]), is the ide chipset supported
by the kernel.

Cheers,


Joost



samba

2001-06-26 Thread Adri

Hello all,

I just typed "smbclient -j myDomain -r myDomainServer" and got an error 
message:



cli_net_auth2: Error NT_STATUS_ACCESS_DENIED
cli_nt_setup_creds: auth2 challenge failed
modify_trust_password: unable to setup the PDC credentials to machine
myDomain. Error was : NT_STATUS_ACCESS_DENIED.
2001/05/03 01:09:43 : change_trust_account_password: Failed to change
password for domain myDomain.
Unable to join domain myDomain.


Of course, myDoamin and myDomainServer are fictous.

I tryied to create a user in Linux named after the NT domain user but linux 
says no dots in usernames while my username on that domain contains a dot.


I saw someone having the same problem on the samba list but no one answered.

What's wromg now?
Thanks
Bye
Adri



Re: samba

2001-06-26 Thread Joost Kooij
On Tue, Jun 26, 2001 at 02:43:34PM +0200, Adri wrote:
> I tryied to create a user in Linux named after the NT domain user but linux 
> says no dots in usernames while my username on that domain contains a dot.
> 
> I saw someone having the same problem on the samba list but no one answered.
> 
> What's wromg now?

Maybe you forgot to search the web for "samba username map linux domain"
Try google, it came up with many good-looking hits and hints when I
tried just now.  I never had to deal with this stuff myself, but I do
remember reading about it in the samba docs when I last did that.

Cheers,


Joost



how to change TCP WSindow Size

2001-06-26 Thread Olivier . Schlupp


[EMAIL PROTECTED]



Re: telnet problème

2001-06-26 Thread Andrew Dixon
Bonjour,

[EMAIL PROTECTED] wrote:
> 
> Bonjour tout le monde; j'ai un problème que je n'arrive pas à résoudre:faire
> un telnet sur un équipement privé;je tape telnet 10.x.x.x et il écris Trying

Oui, j'ai avais le meme problem.  C'est un "bug" dans le deb.  A
/etc/inetd.conf changes le user.group est "telnet.telnet" .  Ca ne
marche pas pour moi donc je le change a "root" et maitnant telnet march
bien.

hth,
Andy

P.S. telnet sucks as bad as my french try ssh.



telnet probleme

2001-06-26 Thread Olivier . Schlupp
je n'arrive pas à faire un telnet sur un équipement privé.Voici les
résultats de nmap:
-sans options le port 23 est filtré
-avec TCP SYN ou FIN SCAN le port est ouvert
-avec ACK le port est "unfiltered"
-et avec WINDOW SCAN le port est fermé
quelqu'un a-t-il une idée ?
merci

[EMAIL PROTECTED]



pam broken in sid

2001-06-26 Thread Michael B. Taylor
As others have stated, the -26 version of pam in sid is broken, so if you 
install it, you wont be able to login at all.

Unfortunately, I *have* installed it and don't have a session open.
Question:  What is the best way (using a rescue disk) to 
fix/circumvent/whatever pam well enough to be able to login once and repair 
the situation with the new debs?

Thanks,

Mike



Updated sid, now unable to login

2001-06-26 Thread Thomas Deselaers
Hello everybody,

I somewhat locked my computer for myself. I updated woody (as root) and
after this I logged out as root. Now I am not able to relogin anything to
this computer. What happened? How can I fix it?

When I try to login as root on a console, in /var/log/auth.log appears:

Jun 26 15:31:54 thomasds login[7420]: FAILED LOGIN (3) on `tty1' FOR `root',
Module is unknown

When I try to su there appears:

Jun 26 15:32:55 thomasds su[7475]: PAM unable to
dlopen(/lib/security/pam_unix.so)
Jun 26 15:32:55 thomasds su[7475]: PAM [dlerror: /lib/security/pam_unix.so:
undefined symbol: sgaddset]
Jun 26 15:32:55 thomasds su[7475]: PAM adding faulty module:
/lib/security/pam_unix.so
Jun 26 15:32:55 thomasds su[7475]: pam_authenticate: Module is unknown 
Jun 26 15:32:55 thomasds su[7475]: - pts/2 thomasd-root 


Anyone any ideas... I will stay logged in so far...

tia
thomasd



Re: how to change TCP WSindow Size

2001-06-26 Thread Peter Kok
Hi all

Sorry to interrupt
What is the advantage or disadvantage to change the TCP window size?
Just for Speed only?

Tks

regards
Peter

[EMAIL PROTECTED] wrote:

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



Re: Updated sid, now unable to login

2001-06-26 Thread Colin Watson
Thomas Deselaers <[EMAIL PROTECTED]> wrote:
>I somewhat locked my computer for myself. I updated woody (as root)

(probably sid)

>and after this I logged out as root. Now I am not able to relogin
>anything to this computer. What happened? How can I fix it?

Read the archives of this list or debian-devel-announce for the last day
or so. libpam-modules broke due to a one-character typo - you'll need to
get a root shell somehow and either downgrade to the version in testing
or upgrade to the version currently on incoming.debian.org.

-- 
Colin Watson  [EMAIL PROTECTED]



Re: Using different DNS per ISP

2001-06-26 Thread Greg Rowe
Would installing bind on your system work for you?  You could add all of
your ISPs DNS servers as forwarders in named.conf and then simply point
resolve.conf to 127.0.0.1.

Greg

On Tue, 26 Jun 2001, Anthony Campbell wrote:

> On 26 Jun 2001, nico de haer wrote:
> > Hi,
> >
> > Is there a problem why you cna't use dynamic assigned dns servers? (see
> > pppconfig, has that option somewhere...)
> >
> > Regards,
> > Nico de Haer
> >
> > - Original Message -
> > From: Marcus <[EMAIL PROTECTED]>
> > To: 
> > Sent: Tuesday, June 26, 2001 2:50 AM
> > Subject: Using different DNS per ISP
> >
> >
> > >
> > > I'm using two different ISPs depending on time of day, and cost.
> > > Problem is that they will only accept their own nameserver under
> > > /etc/resolv.conf. Is there a way around this, or do I need a script
> > > which changes resolv.conf before dialing?
> > >
> > > Thanks,
> > >
> > > Marcus
> > >
> > >
>
> You can use dnrd (deb package available). This allows you to assign as
> many different nameservers as you wish. I have about 5.
>
> Anthony
>
>
>

-- 
Greg Rowe
Paranoia is a virtue.
http://www.therowes.net



Re: how to change TCP WSindow Size

2001-06-26 Thread Mirek Kwasniak
On Tue, Jun 26, 2001 at 02:56:41PM +0200, [EMAIL PROTECTED] wrote:

$ ip route help
$ man route

Mirek



Re: [users] Re: Using different DNS per ISP

2001-06-26 Thread MaD dUCK
also sprach Greg Rowe (on Tue, 26 Jun 2001 09:52:06AM -0400):
> Would installing bind on your system work for you?  You could add all of
> your ISPs DNS servers as forwarders in named.conf and then simply point
> resolve.conf to 127.0.0.1.

0.0.0.0

it's just a little undocumented trick to make local DNS requests not
go via the expensive route of the IP stack, but rather through a local
socket.

pppconfig should really be able to do DNS stuff itself, or you should
write something for /etc/ppp/ip-{up,down}.d. A BIND installation is
cumbersome, eats resources, and is absolutely unecessary on a
workstation. nscd if all fails, but not bind.

martin;  (greetings from the heart of the sun.)
  \ echo mailto: !#^."<*>"|tr "<*> mailto:"; [EMAIL PROTECTED]
-- 
this message represents the official view of the voices in my head.



Re: My voodoo 3...

2001-06-26 Thread Jonathan Daugherty
> I *haven't* created the tdfx device file (/dev/cards/tdfx?), because i
> can't remember how to (or even what the name of the file is).  I
> searched on google, without luck.

It's /dev/3dfx, and you don't create it manually.  Get the device3dfx-source 
package.  Build the deb from that (make-kpkg, it's in the README), and when you
install the deb, it'll load the module and create the dev entry.

Have fun!

-- 

Jonathan Daugherty
Dept. of Computer Science / UCNS Workstation Support Group
The University of Georgia

/^.{10}\ +\d+\ +(\d+|\w+)\ +(\d+|\w+)\ +(\d+(\.\d+|)(M|k|G|)).*/ - master ls!



KDE2 problems since installation.

2001-06-26 Thread Rogelio E. Castillo Haro
Hi!

I install KDE2 too.
The first time I only upgrade kdm and I've not problem with the input keyboard.
Later I want to install hole kde2, with the appropiate source lines and with
apt-get.
since then I have the input keyboard problem on kdm and another problems in the
kde enviroment.
Truly I have a problem while I installing kde2 (My PC frozen) So something wrong
happen, maybe dependencies or missing files, I try to reinstall but the problems
are here till.
How can I erase all about kde2 from my PC? So I can start again from a "clean"
system.

Regards

--
Rogelio E. Castillo Haro
Linux...tu eres libre de elegir!





Re: XMMS and Mozilla

2001-06-26 Thread jason pepas
whie on this subject - is there a way to have make the default action "enqueue" 
rather than open?  so that when you click on an mp3 in a web page it would 
merely enqueue the url, rather than downloading it and opening it?


On Mon, 25 Jun 2001 13:01:48 -0400
"Hall Stevenson" <[EMAIL PROTECTED]> wrote:

> > Can anyone advise how to make (a
> > working) XMMS work as a plug-in for
> > (a working) Mozilla 0.9.1? or if there
> > is a more appropriate application, than
> > XMMS?
> 
> I think there's a difference between plug-ins and simply
> "helper" apps. Something like "flash" is a plug-in, or Adobe
> Acrobat and Apple's QuickTime (when they work *inside* the
> browser).
> 
> For xmms, set it up in "Preferences" so that it works with the
> filetypes you want it to handle. I often copy the information
> from "old" Netscape. Finally, in the application line, put in
> "xmms %s". The "%s" is needed, otherwise the app just opens
> and does nothing.
> 
> Regards
> Hall
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> 



[ ? ] Locked out after recent dselect upgrade

2001-06-26 Thread Mikol Graves
Yesterday I did what has become a pretty standard dselect update and
install. But something went very wrong with yesterday's upgrade. I can
no longer log into my workstation as root, myself or any other user
remotely or at the local console. In fact, at the local console the
login fails without asking for a password.

I'm pretty sure that I should be able to reboot and do something like:

 linux init=/bin/sh

or:

 linux single

to get root access again, but I would still be at a loss as to how I
could correct the lockout problem.

Any thoughts?

Thanks,
m



Re: Careers in Linux

2001-06-26 Thread Haim Ashkenazi
Hi

it depends what direction you're heading. if you want to join MIS or IT
departments then, there are issues that are much more important then C. you
should learn a lot(!!!) about networking, routers, firewalls etc... .
also, you should know at least perl and bash (or tcsh). knowing C could be a 
great
help, but I'm a unix administrator and I've never written a single line
in C (except "hello world" :-)).
another important thing is that I never met a "Linux" system administrator.
you should learn a lot about other unix based OS's as well. most
important are IRIX (in my opinion, the best) Solaris, FreeBSD etc...

Bye
--
Haim

On Tue, Jun 19, 2001 at 11:43:04AM +0100, n6tadam wrote:
> Dear List,
> 
> [ ** I am not currently subscribed to this list, but Don Hoyem, suggested
> that I forward my message onto you. I would appreciate it, that any replies
> get to the following address in the CC field
> 
> [EMAIL PROTECTED]
> 
> Thanks **]
> 
> Some of you will know me, from helping out on this mailing-list, with your
> problems.
> 
> I have a question to ask everyone
> 
> "How many people on this list, are system administrators using Linux, and in
> order to become a Linux System Administrator, does one need lots of
> experience in Programming?"
> 
> I ask this question because once I leave school (to go to University), I
> want to persue a career in Linux, but I am worried that I will require vast
> amounts of Knowledge in Programming in C. I can program in Bash and Perl
> very well.
> 
> Your help is Much appreciated,
> 
> Thomas Adam, a student (in the VIth form)
> Linux Co-ordinator for The Purbeck School (Network Support)
> Wareham, Dorset, UK
> 
> 
> 
> Please note that the content of this message is confidential between the 
> original sender and the intended recipient(s) of the message. If you are not 
> an intended recipient and/or have received this message in error, kindly 
> disregard the content of the message and return it to the original sender.
> 
> If you have any complaints about this message please reply to:
>[EMAIL PROTECTED]
> 
> The Purbeck School E-Mail server running:
>users.purbeck.dorset.sch.uk
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> 



possible attached virus

2001-06-26 Thread John Cuson
hi all-

fyi, our mail system just blocked a post from this list with a potential virus 
attachment.  i don't know more about the message, but it would have been 
between the posts from mirek kwasniak and jonathan daugherty which hit our 
server at 9:03 and 9:10 am est, respectively.

john cuson
([EMAIL PROTECTED], [EMAIL PROTECTED])

"I'd rather be a could-be if I cannot be an are;
because a could-be is a maybe who is reaching for a star.
I'd rather be a has-been than a might-have-been, by far;
for a might-have-been has never been, but a has-been was once an
are."

-Milton Berle




BEGIN:VCARD
VERSION:2.1
X-GWTYPE:USER
FN:John Cuson
TEL;WORK:233-8069
EMAIL;WORK;PREF;NGW:Jcuson.ISDH2.ISDHS
N:Cuson;John
X-GWUSERID:Jcuson
END:VCARD



Re: [ ? ] Locked out after recent dselect upgrade

2001-06-26 Thread Colin Watson
Mikol Graves <[EMAIL PROTECTED]> wrote:
>Yesterday I did what has become a pretty standard dselect update and
>install. But something went very wrong with yesterday's upgrade. I can
>no longer log into my workstation as root, myself or any other user
>remotely or at the local console. In fact, at the local console the
>login fails without asking for a password.
>
>I'm pretty sure that I should be able to reboot and do something like:
>
> linux init=/bin/sh
>
>or:
>
> linux single
>
>to get root access again, but I would still be at a loss as to how I
>could correct the lockout problem.

Do so, then bring up networking manually and either downgrade to the
version of libpam-modules in testing or upgrade to the version currently
on incoming.debian.org. See recent posts to this list and
debian-devel-announce for what happened.

-- 
Colin Watson  [EMAIL PROTECTED]



Broken SID. Cannot login from console

2001-06-26 Thread Douglas Eck

I updated my apt sources today 26 June and then allowed deselect
to upgrade packages that needed upgrading. ~=130MB.
I rebooted and now I cannot login. The window manager loads
but does not show the use accounts (served via yp).

Ok. So maybe yp is broken. But this should be no big deal
because I have a good /etc/password file containing
important accounts. The real problem is, if I go to console 1 and
try to login
as root, I cannot.

I type "root" and hit enter. Then I *never* see the
"password:" prompt. The system simply pauses for a second
after I hit enter, and then says that I don't have permission to login.

I also cannot login via ssh remotely.
Any ideas? Hints?


Regards,
Doug Eck
--
Dr. Douglas Eck, http://www.idsia.ch/~doug
Istituto Dalle Molle di Studi sull'Intelligenza Artificiale (IDSIA)
Neural Networks, Rhythm Perception and Production, Dynamical Systems



Re: [ ? ] Locked out after recent dselect upgrade

2001-06-26 Thread Steve Haavik
On Tue, 26 Jun 2001, Mikol Graves wrote:

> Yesterday I did what has become a pretty standard dselect update and
> install. But something went very wrong with yesterday's upgrade. I can
> no longer log into my workstation as root, myself or any other user
> remotely or at the local console. In fact, at the local console the
> login fails without asking for a password.
> 
> I'm pretty sure that I should be able to reboot and do something like:
> 
>  linux init=/bin/sh
> 
> or:
> 
>  linux single
> 
> to get root access again, but I would still be at a loss as to how I
> could correct the lockout problem.

'linux single' worked fine for me. For some reason the PAM problem doesn't
affect it. I just installed the updated debs from incoming.debian.org and
I can login again.


-- 
Steve Haavik
Sailor Operations Center
[EMAIL PROTECTED]
Office: 410-396-5551
Cell: 443-829-1532
Pager: 443-829-1532 or [EMAIL PROTECTED] or
[EMAIL PROTECTED]




exim ?

2001-06-26 Thread Robin Gerard
hello,
Sorry for this problem of newbie but
I can send mails to all users except
to those who are the same domaine that
me i.e.:
my addresse : [EMAIL PROTECTED]
I send a mail to : [EMAIL PROTECTED]
mailq indicates that nothing it's
in the queue.
mutt an balsa gives the same result.
I never had encounter this problem.
TIA for advices.
-- 
Gerard



SAMBA is not working

2001-06-26 Thread Juan

Hi,

I'm trying to use SAMBA without success. Below is my configuration file. 
What is wrong with it?


[global]
printing = bsd
printcap name = /etc/printcap
load printers = yes
guest account = nobody
invalid users = root

workgroup = htmlspider

server string = %h server (Samba %v)

syslog only = no

syslog = 0;

socket options = IPTOS_LOWDELAY TCP_NODELAY SO_SNDBUF=4096 SO_RCVBUF=4096

encrypt passwords = yes

wins support = yes

;   os level = 0
;   domain master = no
;   local master = no
;   preferred master = no

name resolve order = lmhosts host wins bcast

dns proxy = no

preserve case = yes
short preserve case = yes

unix password sync = yes

passwd program = /usr/bin/passwd %u
passwd chat = *Enter\snew\sUNIX\spassword:* %n\n 
*Retype\snew\sUNIX\spassword:* %n\n .


max log size = 1000
map to guest = never
password level = 0
null passwords = no
allow hosts = 192.168.66
;deny hosts = ALL:ALL
os level = 0
preferred master = no
domain master = no
;wins server = SERVER
dead time = 0
debug level = 0


[homes]
comment = Home Directories
browseable = yes
read only = no
create mask = 0700

; Directory creation mask is set to 0700 for security reasons. If you want to
;   create dirs. with group=rw permissions, set next parameter to 0775.
;directory mask = 0700
;available = no
;public = no
;writable = no
;only user = no

[printers]
comment = All Printers
browseable = no
path = /tmp
printable = yes
public = no
writable = no
create mode = 0700

[intranet]
comment = dominios
available = yes
browseable = yes
path = /home/www
public = yes
guest only = yes
writable = yes
allow hosts = 192.168.66
only user = no



TIA,

Juan José Velázquez Garcia
Web Development
www.htmlspider.com.br



Re: XMMS and Mozilla

2001-06-26 Thread Hall Stevenson
> > > Can anyone advise how to make (a
> > > working) XMMS work as a plug-in for
> > > (a working) Mozilla 0.9.1? or if there
> > > is a more appropriate application, than
> > > XMMS?
> >
> > I think there's a difference between plug-ins and simply
> > "helper" apps. Something like "flash" is a plug-in, or
> > Adobe Acrobat and Apple's QuickTime (when they
> > work *inside* the browser).
> >
> > For xmms, set it up in "Preferences" so that it works
> > with the filetypes you want it to handle. I often copy the
> > information from "old" Netscape. Finally, in the
application
> > line, put in "xmms %s". The "%s" is needed, otherwise
> > the app just opens and does nothing.
> >
> > Regards
> > Hall
>
> whie on this subject - is there a way to have make the
default
> action "enqueue" rather than open?  so that when you click
> on an mp3 in a web page it would merely enqueue the url,
> rather than downloading it and opening it?

I just checked xmms' website since I don't have a Linux box
here at work. One of the commandline options is "-e" or
"--enqueue".

So, instead of "xmms %s" as shown above, maybe try "xmms -e
%s" ??

Regards
Hall



Re: SAMBA is not working

2001-06-26 Thread Andrew J. Perrin
Can you be more specific? What is it not doing that it should do, or what
is it doing that it shouldn't?

-
   Andrew J. Perrin - Assistant Professor of Sociology
University of North Carolina, Chapel Hill
269 Hamilton Hall CB#3210, Chapel Hill, NC 27599-3210 USA
   [EMAIL PROTECTED] - http://www.unc.edu/~aperrin

On Tue, 26 Jun 2001, Juan wrote:

:Hi,
:
:I'm trying to use SAMBA without success. Below is my configuration file. 
:What is wrong with it?
:
:[global]
: printing = bsd
: printcap name = /etc/printcap
: load printers = yes
: guest account = nobody
: invalid users = root
:
: workgroup = htmlspider
:
: server string = %h server (Samba %v)
:
: syslog only = no
:
: syslog = 0;
:
: socket options = IPTOS_LOWDELAY TCP_NODELAY SO_SNDBUF=4096 SO_RCVBUF=4096
:
: encrypt passwords = yes
:
: wins support = yes
:
:;   os level = 0
:;   domain master = no
:;   local master = no
:;   preferred master = no
:
: name resolve order = lmhosts host wins bcast
:
: dns proxy = no
:
: preserve case = yes
: short preserve case = yes
:
: unix password sync = yes
:
: passwd program = /usr/bin/passwd %u
: passwd chat = *Enter\snew\sUNIX\spassword:* %n\n 
:*Retype\snew\sUNIX\spassword:* %n\n .
:
: max log size = 1000
: map to guest = never
: password level = 0
: null passwords = no
: allow hosts = 192.168.66
:;deny hosts = ALL:ALL
: os level = 0
: preferred master = no
: domain master = no
:;wins server = SERVER
: dead time = 0
: debug level = 0
:
:
:[homes]
: comment = Home Directories
: browseable = yes
: read only = no
: create mask = 0700
:
:; Directory creation mask is set to 0700 for security reasons. If you want to
:;   create dirs. with group=rw permissions, set next parameter to 0775.
:;directory mask = 0700
:;available = no
:;public = no
:;writable = no
:;only user = no
:
:[printers]
: comment = All Printers
: browseable = no
: path = /tmp
: printable = yes
: public = no
: writable = no
: create mode = 0700
:
:[intranet]
: comment = dominios
: available = yes
: browseable = yes
: path = /home/www
: public = yes
: guest only = yes
: writable = yes
: allow hosts = 192.168.66
: only user = no
:
:
:
:TIA,
:
:Juan Jos? Vel?zquez Garcia
:Web Development
:www.htmlspider.com.br
:
:
:--
:To UNSUBSCRIBE, email to [EMAIL PROTECTED]
:with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
:
:



Re: pam broken in sid

2001-06-26 Thread Steve Kowalik
On Tue, Jun 26, 2001 at 08:52:00AM -0400, Michael B. Taylor uttered:
> Unfortunately, I *have* installed it and don't have a session open.
> Question:  What is the best way (using a rescue disk) to 
> fix/circumvent/whatever pam well enough to be able to login once and repair 
> the situation with the new debs?
> 
Boot of the rescue disk, mount your hard drive, chroot into it, download the
debs, install them.
Reboot, pray and make a burnt offering.

-- 
Steve
  "I'm a sysadmin because I couldn't beat a blind monkey in a coding contest."
--Me


pgpuhfbGKYl31.pgp
Description: PGP signature


Re: Using different DNS per ISP

2001-06-26 Thread Vector
You could just find a nameserver out there somewhere to use that doesn't 
restrict lookups in the way your ISP's do (I'm not sure why they're
doing that anyway.)  There are plenty of them out there and they would
probably work just as well (obviously the closer/faster the traffic to
the DNS server you use the better performance you will see.)

vector


On Tue, 26 Jun 2001, Marcus wrote:

> 
> I'm using two different ISPs depending on time of day, and cost.
> Problem is that they will only accept their own nameserver under
> /etc/resolv.conf. Is there a way around this, or do I need a script
> which changes resolv.conf before dialing?
> 
> Thanks,
> 
> Marcus
> 
> 
> 
> 



Re: [users] Re: Using different DNS per ISP

2001-06-26 Thread John Hasler
MaD dUCK writes:
> pppconfig should really be able to do DNS stuff itself,...

What do you want it to do?

> ...or you should write something for /etc/ppp/ip-{up,down}.d.

Pppconfig already installs a something there.  Run pppconfig and look at
Advanced->Nameservers.
-- 
John Hasler
[EMAIL PROTECTED]
Dancing Horse Hill
Elmwood, Wisconsin



Re: searching for old releases of debian

2001-06-26 Thread Steve Kowalik
On Tue, Jun 26, 2001 at 01:57:57PM +0200, Piotr Krukowiecki uttered:
> On archive.debian.org the oldest release is buzz. 
> I have debian 0.93r6, but only binaries for i386.
> Does anybody has any older releases?
> 
> Thanks :)
> 
archive.debian.org only archives offical releases, of which Buzz was the
first.
You aren't trying to stockpile Debian CD's are you? I'm still trying to find
my Potato and Hamm CDs. (I know where my slink set is)

-- 
Steve
  "I'm a sysadmin because I couldn't beat a blind monkey in a coding contest."
--Me


pgpM7ou6x5yAZ.pgp
Description: PGP signature


Re: exim ?

2001-06-26 Thread Joost Kooij
On Tue, Jun 26, 2001 at 04:36:38PM +, Robin Gerard wrote:
> hello,
> Sorry for this problem of newbie but
> I can send mails to all users except
> to those who are the same domaine that
> me i.e.:
> my addresse : [EMAIL PROTECTED]
> I send a mail to : [EMAIL PROTECTED]
> mailq indicates that nothing it's
> in the queue.

Likely because you're only moeaningfully [EMAIL PROTECTED] on free.fr's
mail server.  You appear to have told your exim that your own machine is
the correct place to deliver all @free.fr mail to.  That is likely not
the case (or else sell that domain for lots of fr.fr. and stop trying
to be an isp until you figure out these "details"). ;-)

What you need to do is tell exim that you are really only authoritative
for mylinuxbox.myphonydomain.org and that it should send out all mail
for all other destinations via free.fr's mail relay.  If you do not do
the latter, then you may find that some mailservers think that you're
a spammer.

Then configure fetchmail and tell it that "user robin.jag is user foo
here", or something along those lines (rtfm - my memory is weak here).

> mutt an balsa gives the same result.

Fix your personal configuration to set a custom "From: [EMAIL PROTECTED]"
header on any mails you write.  That is only a message header and will
not confuse any mta's, but will hint people's mua's where to reply to.

The only disadvantage is having to do this for all mua's independently.
But then fixing it in exim is slightly more than a trivial excercise.
Try it the simple way first.

Cheers,


Joost



Re: cd-rom "medium not found", no modules load

2001-06-26 Thread Stephen Taylor
At 02:20 PM 6/26/01 +0200, you wrote:
>On Tue, Jun 26, 2001 at 06:08:45AM -0400, Stephen Taylor wrote:
>> Is 2.4.5 the latest version of the kernel or something else? Where can I
>> download it?
>
>http://www.kernel.org/pub/linux/kernel/
>
>> These don't work:
>> boot: linux ide-scsi=hdb
>
>AFAIK that should read "linux hdb=ide-scsi".  Correct me if I'm wrong.
(yes, my test notes say the same thing)

>> >> What modules / parameters do I need to install a cd-rom
>> >> at io=0x1f0 and interrupt=14?
>
>A normal ide/atapi cdrom, or any cdrw used as plain cdrom only should not
>need any of it.  If your cdrom does not show up, first check the cabling,
>do you use the right device name (hd[abcd]), is the ide chipset supported
>by the kernel.

It worked before; Bootmagic may have altered the MBR and fdisk /mbr did not
repair it.

The bios boots the cd. The install script reads it, does the install steps
until it asks for reboot; after reboot, linux can't find it. The debug log
shows "disk changed noticed at ide0(3,64)" "cdrom failed to open"

Thanks again/st



SOLVED: Which NIC driver for Xircom integrated on Gateway Mobo?

2001-06-26 Thread Kent West

Kent West wrote:


I have a Gateway 5300 laptop with an integrated Xircom 10/100 NIC; what
ethernet driver do I use for it during a stock Potato install?

Thanks!

Kent




eepro100





Re: SAMBA is not working

2001-06-26 Thread Cam Ellison
"Andrew J. Perrin" wrote:
> 
> Can you be more specific? What is it not doing that it should do, or what
> is it doing that it shouldn't?
> 
> -
>Andrew J. Perrin - Assistant Professor of Sociology
> University of North Carolina, Chapel Hill
> 269 Hamilton Hall CB#3210, Chapel Hill, NC 27599-3210 USA
>[EMAIL PROTECTED] - http://www.unc.edu/~aperrin
> 
> On Tue, 26 Jun 2001, Juan wrote:
> 
> :Hi,
> :
> :I'm trying to use SAMBA without success. Below is my configuration file.
> :What is wrong with it?
> :

I replied to him on this, forgot to cc the list.

I think his problem is that his os level is 0, and he has no master
browsers set (local, preferred, or domain).  There is no WINS server
specified, either.  As I understand it, nmbd will sit and wait in
perpetuity for someone to call.

Juan, I neglected to include:

 local master browser = yes

HTH

Cam

-- 
Cam Ellison Ph.D. R.Psych.
>From Roberts Creek on B.C.'s incomparable Sunshine Coast
[EMAIL PROTECTED]
[EMAIL PROTECTED]



Re: [users] Re: Using different DNS per ISP

2001-06-26 Thread MaD dUCK
also sprach John Hasler (on Tue, 26 Jun 2001 09:52:49AM -0500):
> > ...or you should write something for /etc/ppp/ip-{up,down}.d.
> 
> Pppconfig already installs a something there.  Run pppconfig and look at
> Advanced->Nameservers.

i know. but in his case, pppconfig doesn't seem to work.

martin;  (greetings from the heart of the sun.)
  \ echo mailto: !#^."<*>"|tr "<*> mailto:"; [EMAIL PROTECTED]
-- 
"it appears that pl/i (and its dialects) is, or will be, the most widely
 used higher level language for systems programming."
  -- j. sammet



Re: pam broken in sid

2001-06-26 Thread Daniel Wagner
"Michael B. Taylor" <[EMAIL PROTECTED]> writes:

> As others have stated, the -26 version of pam in sid is broken, so if you 
> install it, you wont be able to login at all.
> 
> Unfortunately, I *have* installed it and don't have a session open.
> Question:  What is the best way (using a rescue disk) to 
> fix/circumvent/whatever pam well enough to be able to login once and repair 
> the situation with the new debs?

hi,

i fall into this pit too, and on bugs.debian.org i found the following
solution:

boot your kernel with init=/bin/bash

remount your your rootfs rw (e.g. with /etc/init.d/checkroot.sh
mount other filesystems (/etc/init.d/mountall.sh)

then install the old packages with dpkg.

that's the i've done it and it worked.

hth,
daniel

-- 
Vulcans never bluff.
-- Spock, "The Doomsday Machine", stardate 4202.1



deselect & aptitude show different packages !!!

2001-06-26 Thread Balbir Thomas
Hi
I am using ustable, with kernel 2.4.5. Aptitude shows many more packages 
than deselect . Moreover while deselect shows no broken dependencies
aptitude shows that some installed packages are broken ("iB" in red).
I am perplexed by this. Any ideas what may be going wrong ? Which 
should I use to install packages ? . Does aptitude inform the user in advance
of possible conflicts like deselect does ? 
I wonder if my source list has any thing to do with this. I kind of cooked it 
up myself (and was not to sure) but it work ; and I would like to be with
the latest unstable distribution ? (sources.list are attached)

b thomas
# See sources.list(5) for more information, especialy
# Remember that you can only use http, ftp or file URIs
# CDROMs are managed through the apt-cdrom tool.
deb http://http.us.debian.org/debian unstable main contrib non-free
deb http://non-us.debian.org/debian-non-US unstable/non-US main contrib non-free
deb http://security.debian.org stable/updates main contrib non-free

# Uncomment if you want the apt-get source function to work
deb-src http://http.us.debian.org/debian unstable main contrib non-free
deb-src http://non-us.debian.org/debian-non-US unstable/non-US main contrib 
non-free

# Added by B.Thomas
deb http://kde.rap.ucar.edu stable main crypto optional qt1apps

#deb cdrom:[Debian GNU/Linux 2.2 r0 _Potato_ - Official i386 Binary-3 
(2814)]/ unstable contrib main non-US/contrib non-US/main
#deb cdrom:[Debian GNU/Linux 2.2 r0 _Potato_ - Official i386 Binary-2 
(2814)]/ unstable contrib main non-US/contrib non-US/main
#deb cdrom:[Debian GNU/Linux 2.2 r0 _Potato_ - Official i386 Binary-1 
(2814)]/ unstable contrib main non-US/contrib non-US/main



local deb and apt-get versioning

2001-06-26 Thread andy
i'm running into the following situation with a local debian package...

i wanted to use mutt w/ssl, so i ran
apt-get source mutt
and edited the mutt-1.2.5/debian/rules file to enable ssl.

apt-get source --compile mutt ; dpkg -i mutt_1.2.5-4_sparc.deb
worked and the deb installed; everything is happy.

then an apt-get update && apt-get upgrade tried to upgrade mutt (?)
is this the normal behavior?  i would've thought that since the version
is the same, apt-get would not try to upgrade the package.  i've tried
a few searches, but my search terms are pretty vague.

what is the preferred method of resolving this?  place a hold on the
local package?

tia...

andy


% apt-cache show mutt
Package: mutt
Priority: standard
Section: mail
Installed-Size: 2724
Maintainer: Marco d'Itri <[EMAIL PROTECTED]>
Architecture: sparc
Version: 1.2.5-4
[...]

% dpkg --info mutt_1.2.5-4_sparc.deb
 new debian package, version 2.0.
 size 1050886 bytes: control archive= 1346 bytes.
  12 bytes, 1 lines  conffiles
1087 bytes,29 lines  control  
 888 bytes,24 lines   *  postinst #!/bin/sh
 352 bytes, 9 lines   *  postrm   #!/bin/sh
 188 bytes,12 lines   *  preinst  #!/bin/sh
 334 bytes,11 lines   *  prerm#!/bin/sh
 Package: mutt
 Version: 1.2.5-4
[...]



Re: pam broken in sid

2001-06-26 Thread Greg Baker
> Unfortunately, I *have* installed it and don't have a session open.

Me too.  The other ways mentioned here are probably better, but here's
what I did, just for the record...

I had another Debian install on another partition (and I think I'm going 
to keep it for just such emergencies).  I booted to that and  downloaded
libpam-modules, libpam0g, libpam-runtime from the testing branch.

Then, mounted the partitions with the broken PAM on /mnt and:
  dpkg --root=/mnt -i libpam*.deb
  lilo -r /mnt   # ('cuz I'd hosed my LILO in an earlier attempt)
...and rebooted.

Good luck.
Greg

---
"With sufficient thrust, pigs fly just fine. However, this is not
necessarily a good idea."  --RFC-1925 



Pluggin in Galeon

2001-06-26 Thread Chun Kit Edwin Lau
Hi everyone,

Galeon is a great brower but is there any pluggin like flash, java work 
under it?  Pluggin for network work well (most of the time) just wanna switch 
to galeon ASAP coz it is cool =)

-- 
Edwin Lau ([EMAIL PROTECTED])



Re: IP ALIAS

2001-06-26 Thread Dave Sherohman
On Mon, Jun 25, 2001 at 08:05:10PM -0300, Juan wrote:
> How can I configure an IP ALIAS ?

1)  Build a kernel with IP aliasing support
2)  Assign an address to eth0:0, eth0:1, etc.

Easy as that.

-- 
That's not gibberish...  It's Linux. - Byers, The Lone Gunmen
Geek Code 3.12:  GCS d? s+: a C++ UL$ P++>+++ L+++> E- W--(++) N+
o+ !K w--- O M- V? PS+ PE Y+ PGP t 5++ X+ R++ tv+ b+ DI D G e* h r y+



Re: Can't login, won't ask for password

2001-06-26 Thread Stephen Waters
I got bit by this one, too. Here's how I went diagnosing it:

## to get list of recent changed logs
# ls -ltr /var/log/

## auth.log is listed at the bottom, let's check it out
# tail -100 /var/log/auth.log

## whoa! what's this?!
Jun 26 10:36:33 caligula login[8484]: PAM unable to
dlopen(/lib/security/pam_unix.so)
Jun 26 10:36:33 caligula login[8484]: PAM [dlerror:
/lib/security/pam_unix.so: undefined symbol: sgaddset]
Jun 26 10:36:33 caligula login[8484]: PAM adding faulty module:
/lib/security/pam_unix.so
Jun 26 10:36:36 caligula login[8484]: FAILED LOGIN (1) on `tty1' FOR
`root', Module is unknown

## get the source
# apt-get build-dep pam
# apt-get install libcap-dev  # for some reason 'build-dep' missed this
# apt-get -b source pam

## ok so it builds and the reinstall is still broken of course.
## put 2 and 2 together and get 4
# cd pam-0.72/build-tree/Linux-PAM-0.72/modules/pam_unix
# grep sgaddset *
support.c:sgaddset(&sigset, SIGCHLD);

## HRM... that looks like a Type-o to me. so I made the following patch.
---<038_sigCHLD_fix.diff>-
--- Linux-PAM-0.72/modules/pam_unix/support.c   Tue Jun 26 10:30:12 2001
+++ Linux-PAM-0.72.new/modules/pam_unix/support.c   Tue Jun 26 10:54:43
2001
@@ -386,7 +386,7 @@
 
 /* Block SIGCHLD */
 sigemptyset(&sigset);
-sgaddset(&sigset, SIGCHLD);
+sigaddset(&sigset, SIGCHLD);
 sigprocmask(SIG_BLOCK, &sigset, 0);
 
 /* fork */
---

# cp 038_sigCHLD_fix.diff pam-0.72/debian/patches
# cd pam-0.72
# debian/rules clean
# debian/rules binary
# cd ..
# dpkg -i libpam-cracklib_0.72-26_i386.deb libpam-modules_0.72-26_i386.deb
libpam-runtime_0.72-26_i386.deb libpam0g_0.72-26_i386.deb


I realize this is more info than you wanted, but I thought it might help
you in the future about how to go about diagnosing a problem. Of course,
this all happened because I didn't think about looking at incoming! :-)

-s



Re: samba

2001-06-26 Thread Adri

Joost,

At 14.49 26/06/2001 +0200, you wrote:

On Tue, Jun 26, 2001 at 02:43:34PM +0200, Adri wrote:
> I tryied to create a user in Linux named after the NT domain user but 
linux

> says no dots in usernames while my username on that domain contains a dot.
>
> I saw someone having the same problem on the samba list but no one 
answered.

>
> What's wromg now?

Maybe you forgot to search the web for "samba username map linux domain"
Try google, it came up with many good-looking hits and hints when I
tried just now.  I never had to deal with this stuff myself, but I do
remember reading about it in the samba docs when I last did that.


I took a look and I saw I had no username.map file. I neither had any 
smb.conf file.


I run smbpasswd and created a user named adri. Then I edited the 
username.map file with a


Debian_user = NT_domain_user

row.

I also asked to my admin to erase and recreate a record for my machine in 
the domain, since I read this was necessary for samba to successfully join 
the domain.


I restarted samba (etc/init.d/samba restart)

Then I got a different error message; this time it was 
"NT_STATUS_NO_TRUST_SAM_ACCOUNT"


So my changes produced an effect, though not the hoped one.

Any hint?

Thanks
Bye
Adri



Sorry (was: Re: samba)

2001-06-26 Thread Adri


>I took a look and I saw I had no username.map file. I neither had any 
smb.conf file.


Sorry, I meant the samba user file, not smb.conf

Thanks
Bye
Adri 



Re: Pluggin in Galeon

2001-06-26 Thread Hall Stevenson
> Galeon is a great brower but is there any pluggin
> like flash, java work under it?  Pluggin for network
> work well (most of the time) just wanna switch to
> galeon ASAP coz it is cool =)

galeon is to a large extent just a front-end to mozilla (I
don't mean that negatively towards galeon). Install plug-ins
for mozilla and they should work with galeon. I don't know if
galeon has it's own plug-in directory or not, but I don't
think it does or should. In fact, you *have* to have mozilla
already installed to use it, so why duplicate plug-ins ??

Also, if there isn't a plug-in specifically for mozilla, ones
designed for the "old" Netscape browser, navigator, are
supposed to work.

Hall



compiling from CVS: gtkmozembed.h not found

2001-06-26 Thread Brendon
posted this awhile ago on the galeon list. i'm sure some people here have 
compiled galeon and have run into this problem so i'm posting here also.
---

I've install mozilla in /usr/local/mozilla and the mozilla source in 
/usr/local/mozilla-source , both nightly snapshots.

i receive the error message after issuing..

 ./configure --with-mozilla-includes=/usr/local/mozilla/include 
--with-mozilla-libs=/usr/local/mozilla 

completes without errors and finally..

make

which gives the error message of the missing file.

any help would be greatly appreciated.


Brendon



reverse DNS lookup on local machine

2001-06-26 Thread Carel Fellinger
now that testing's ssh goes out on the net to do reverse namelookups,
I, again, am looking in ways to provide reverse DNS lookups
preferrably without having to run bind.  any pointers?

What I want is "host myhost.local.domain" to work.

"host localhost." (yes with a trailing dot) works, but other names
for my local machine choke:(


 some config files

$ cat /etc/host.conf
order hosts,bind
multi on


$ cat /etc/resolv.conf
domain local.domain
nameserver ipnr-of-isp's-nameserver


$ cat /etc/hosts
127.0.0.1   localhost
192.168.1.1 myhost.local.domain myhost


$  cat /etc/nsswitch.conf
# /etc/nsswitch.conf
#
# Example configuration of GNU Name Service Switch functionality.
# If you have the `glibc-doc' and `info' packages installed, try:
# `info libc "Name Service Switch"' for information about this file.

passwd: compat
group:  compat
shadow: compat

hosts:  files dns
networks:   files

protocols:  db files
services:   db files
ethers: db files
rpc:db files

netgroup:   nis


-- groetjes, carel



Re: local deb and apt-get versioning

2001-06-26 Thread Colin Watson
andy <[EMAIL PROTECTED]> wrote:
>i'm running into the following situation with a local debian package...
>
>i wanted to use mutt w/ssl, so i ran
>apt-get source mutt
>and edited the mutt-1.2.5/debian/rules file to enable ssl.
>
>apt-get source --compile mutt ; dpkg -i mutt_1.2.5-4_sparc.deb
>worked and the deb installed; everything is happy.
>
>then an apt-get update && apt-get upgrade tried to upgrade mutt (?)
>is this the normal behavior?  i would've thought that since the version
>is the same, apt-get would not try to upgrade the package.

No, apt will still try to upgrade it if file sizes and md5sums etc.
don't match. Edit debian/changelog in the source and add an entry at the
top numbered 1.2.5-4.0.1 (generally, add 0.0.1 to the version number)
and the packaging system won't try to "upgrade" the package until a
genuinely new version comes along.

>what is the preferred method of resolving this?  place a hold on the
>local package?

That works too, but you might miss genuine upgrades.

-- 
Colin Watson  [EMAIL PROTECTED]



Re: linux + win95 + grub partition woes

2001-06-26 Thread D-Man
On Mon, Jun 25, 2001 at 04:30:09PM -0400, Timothy H. Keitt wrote:
| At what point do I unhide the partitions?
| 
| I have something like
| 
| title linux
| unhide (hd0,0)
| ...
| 
| title windows
| hide (hd0,0)
| ...

That looks right to me.  Maybe Carel, or someone else who knows more
than I do will explain it.  They explained it to me last time and the
messages should be in the archive.

-D



Re: Can't login, won't ask for password

2001-06-26 Thread Sam Hartman
> "Stephen" == Stephen Waters <[EMAIL PROTECTED]> writes:

Stephen> I got bit by this one, too. Here's how I went diagnosing
Stephen> it: ## to get list of recent changed logs # ls -ltr

Sorry about this; fix at
http://incoming.debian.org/libpam-modules_0.72-26_i386.deb.



Re: gnome quicklaunch

2001-06-26 Thread D-Man
On Mon, Jun 25, 2001 at 08:04:43PM -0400, Jacob Stowell wrote:
| Hello, 
| 
| I am having a problem and was wondering if someone might be able to help
| me out. I have a quicklaunch applet on my gnome panel. Interestingly,
| when i start xterm or axyftp from the quicklaunch, /root shows up as the
| default home directory:
| 
| satchel[/root]% 

No, that is not "the default home directory".  If it was you would see
"~", not "/root" as the path.  It is the "default /current working/
directory".

| I tried removing ~/.gnome/quicklaunch completely and creating a new one,
| but ran into the same problem.  I also removed it from the panel, shut
| down and placed a fresh quicklauncher with the same result. I thought
| that it may be a permissions problem and I did a recursive chmod 770
| ~/.gnome to give user access to the necessary directories.  Again, this
| approach failed.
| 
| What is strange is that when I start quicklaunch_applet from a console
| as user, it places the launcher on the panel, and when i open xterm or
| axyftp the default is my home directory:
| 
| satchel[~]%
| 
| I am not sure why this is happening, 

Probably a session thing.  For some reason it was probably started or
has a default config file somewhere with /root as the current
directory.  The next time it is run it uses the same.  Maybe it has
the default of using root's home directory?  Maybe it is run by root
(during startup of system) and thinks it should use $HOME (/root) as
the default dir, but when you run it later as joeuser it uses $HOME
(/home/joeuser) as the current directory.  I don't know why it would
do that, just some speculation on the matter.

You can probably find a config file (maybe ~/.gnome/quicklanuch) where
the current working directory is installed and you can set it to what
you want.  It may even allow configuring by right clicking on the
applet and select "Properties" in the menu.  I'm really not sure
because I don't use that applet (in fact, at the moment I hardly have
any applets because gnome-applets isn't in woody).

-D



Re: deselect & aptitude show different packages !!!

2001-06-26 Thread Colin Watson
Balbir Thomas <[EMAIL PROTECTED]> wrote:
>I am using ustable, with kernel 2.4.5. Aptitude shows many more packages 
>than deselect .

Have you run 'dselect update' recently, or have you just been using
'apt-get update'?

-- 
Colin Watson  [EMAIL PROTECTED]



Installation

2001-06-26 Thread Alan Wu
Hello,

I have downloaded ash_0.3.8-13_i386.deb. How can I proceed to install this
package?

Thanks

Alan Y. Wu
Senior NT Systems Engineer
Camstar Systems, Inc.
900 Hamilton Avenue
Campbell, CA 95008

P.S. My machine:
OS: Windows Advanced Server 2000
Pentium III



Re: Can't login, won't ask for password

2001-06-26 Thread Stephen Waters
On Tue, 26 Jun 2001 11:49:23 Sam Hartman wrote:
> > "Stephen" == Stephen Waters <[EMAIL PROTECTED]> writes:
> 
> Stephen> I got bit by this one, too. Here's how I went diagnosing
> Stephen> it: ## to get list of recent changed logs # ls -ltr
> 
> Sorry about this; fix at
> http://incoming.debian.org/libpam-modules_0.72-26_i386.deb.

Hey, no sweat man. I run unstable as a learning experience. :-) oh, i think
you meant 0.72-27, right?

I went ahead and subscribed to devel-announce as another person suggested
in this thread.

-s



Re: OT: C++ Newbie and KDE/QT

2001-06-26 Thread D-Man
On Tue, Jun 26, 2001 at 12:06:50PM +0200, Brendon wrote:
| This summer holiday I took on the task of learning C++ with (shamefully :) 
| the help of C++ For Dummies. 
| 
| Having tried to learn C++ in the past I'm now reasonably familar with it's 
| synax so i thought i'd also try learning QT/KDE programming at the same time. 
| But the tutorials I've been through on the doc.trolltech.com site have left 
| me a little disappointed. 
| 
| Does anyone know of a good site where QT/KDE programming is explained? And 
| what did you start with when learning C++?

I don't use KDE and I don't like Qt's LnF so I don't know about that
part.  As for learning C++ -- it is big and complicated and the little
details will get you.  I would recommend starting out with an easier
language to get the basics of programming down first.  Then move into
C++ once you understand how to program.  I highly recommend Python as
an easy, powerful, and clean language to learn.  It also allows you to
choose the most appropriate paradigm -- you can start out procedurally
(simpler) and move into OO (class-based) when you are ready for it.
Alan Gauld has an excellent tutorial for beginners at
http://www.crosswinds.net/~agauld.  Python also has bindings to Qt
(PyQt) so you can do Qt/KDE programming using Python and forget about
the headaches that C++ can give you.  If you decide to try python,
check out the tutor mailing list, it is very helpful
(tutor@python.org, http://mail.python.org/mailman/listinfo/tutor).

You may also want to try Java.  It is basically C++ with pointers,
manual memory management, and freestanding functions removed.  Also
the class definition conicides with the declaration (not in 2 separate
files).  Its syntax is nearly identical, yet it simplifies quite a few
things.  IMO Python is much better designed, much easier to use, and
more powerful (and flexible) than Java.  

-D



Re: Starting with XML

2001-06-26 Thread Eric Richardson
Victor wrote:
> 
> Hi,
> 
> In my job I now need to transfer data between application using XML.
> 
> As an absolute beginner in this field I'm asking you the very very
> basic of XML.
> 
> As far as I know having leafed through debian documentation XML as a
> tagged language is a subset of SGML therefore:
> 
> 1) What deb packages should I install to build and view XML documents?
Check out the following packages.

http://packages.debian.org/stable/text

I recommend.
apt-get install emacs20
apt-get install psgml
Psgml parses XML and gives it color. With a DTD you can find out what
elements are valid.
I think there is also a debian-sgml list.

> 
> 2) Where can I find documentation both on the packages themselves and,
> above all, on XML?
http://www.w3.org/ is a good place to start

Hope this helps,
Eric



Re: Installation

2001-06-26 Thread Hall Stevenson
> I have downloaded ash_0.3.8-13_i386.deb. How can
> I proceed to install this package?
>
> Thanks
>
> Alan Y. Wu
> Senior NT Systems Engineer
> Camstar Systems, Inc.
> 900 Hamilton Avenue
> Campbell, CA 95008
>
> P.S. My machine:
> OS: Windows Advanced Server 2000
> Pentium III

Step 1: Install Debian Linux or a distro based on Debian
Step 2: At a command prompt, type "dpkg --install
ash_0.3.8-13_i386.deb" and then hit your "Enter" key.

Hall



SID USERS READ THIS!

2001-06-26 Thread D-Man

This message is for all sid users who have a broken PAM :

The message referenced below was sent to debian-devel-announce last
night.  It is from the PAM maintainer and explains what happened and
how to fix your system.  Read it, then go subscribe to
debian-devel-announce so you get these sort of announcements.

http://lists.debian.org/debian-devel-announce-0106/msg00011.html

Sorry for the tone of this message, but it is rather annoying to see
numerous threads on debain-user repeating the same "how do I fix
unstable" question when the answer was already sent by the maintainer
(not to mention several different techniques already discussed on
-user).

-D



Re: Starting with XML

2001-06-26 Thread Ilya Martynov

ER> I recommend.
ER> apt-get install emacs20
ER> apt-get install psgml
ER> Psgml parses XML and gives it color. With a DTD you can find out what
ER> elements are valid.
ER> I think there is also a debian-sgml list.

You have forgotten

apt-get install tdtd 

:)

Without it emacs doesn't provide DTD edition mode.

-- 
 -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
| Ilya Martynov (http://martynov.org/)|
| GnuPG 1024D/323BDEE6 D7F7 561E 4C1D 8A15 8E80  E4AE BE1A 53EB 323B DEE6 |
| AGAVA Software Company (http://www.agava.com/)  |
 -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-



Re: Unidentified subject!

2001-06-26 Thread Mart van de Wege
On Tue, 26 Jun 2001 00:36:06 +0200
Mart van de Wege <[EMAIL PROTECTED]> wrote:

> Well, it seems like this is one of those weeks. Just did an upgrade
> (running sid), saw some pam packages being upgrade, and now I can't log
> in
> to my desktop machine anymore. It even refuses ssh connections from my
> laptop. Thank $WHOEVER that I had a shell running on a virtual console,
> but aside from that? He's dead Jim.
> Anyone else see this? should I rush out and file a bug for this, or will
> it be fixed tomorrow, so just upgrading will fix it?
> 
> Mart
> 
Ok,

Thanks all for the quick reaction. Sorry for the Subject line, but I send
all my mail through my desktop machine, and it seems that postfix uses
pam, as it stopped accepting connections from the laptop as well, so
after the original message failed, I just changed the smtp host in
Sylpheed, pasted the text into a new message and resent without checking
the subject. As I said, it turns out to be of *those* weeks :(
Also thanks to Sam for being on the ball and fixing this quick.

Mart



Re: Pluggin in Galeon

2001-06-26 Thread Chun Kit Edwin Lau
Hi

So will plugger works under galeon as well?

Edwin Lau


On Tue, Jun 26, 2001 at 12:45:00PM -0400, Leo Laursen wrote:
> "Chun Kit Edwin Lau" <[EMAIL PROTECTED]>:
> 
> > Hi everyone,
> > 
> > Galeon is a great brower but is there any pluggin like flash, java work
> > under it?  Pluggin for network work well (most of the time) just wanna
> > switch to galeon ASAP coz it is cool =)
> > 
> It seems to use Mozilla plugins in /usr/lib/moxilla/plugins
> 
> [EMAIL PROTECTED] % ls /usr/lib/mozilla-0.9.1/plugins 
>{ ~ }
> javaplugin.so  libflashplayer.so  libnullplugin.so  ShockwaveFlash.class
> 
> I do have some java and flash in Galeon, automagically.
> 
> Leo

-- 
Edwin Lau ([EMAIL PROTECTED])



Re: IBM Java 1.3 - Anyone get to work?

2001-06-26 Thread Eric Richardson
[EMAIL PROTECTED] wrote:
> 
> I'm trying to get DB2 to install and run on my Debian box.  One of the
> programs it needs is java.  IBM is highly recommending that you install and
> run their version of java.  I have pulled down the .rpm for it and
> installed it both as a rpm and as a deb (not at the same time).  Anyway, no
> matter which way I install it. running any programs that use java (i.e.
> db2cc) complain that libjava.so can not be found.
> 
> I have added the path to /etc/ld.so.conf where libjava.so is founc, but to
> no avail.  I also tried adding symbolic links to the .so files to
> /usr/local/lib.   This did not work either.
I recommend jdk1.3 from blackdown.
deb ftp://ibiblio.org/pub/linux/devel/lang/java/blackdown.org/debian
potato non-free
apt-get install j2sdk1.3

JAVA_HOME will be /usr/lib/j2sdk1.3 and the installer handles all the
/etc/alternative stuff. the symlinks are like /usr/bin/java ...

Have fun,
Eric



Re: Starting with XML

2001-06-26 Thread burningclown

I don't know if it has been mentioned but you can also check out the
package xae, which is an emacs-based XML IDE, by the same person who
wrote jde (an emacs Java IDE).

-Glenn

On 26 Jun 2001, Ilya Martynov wrote:

>
> ER> I recommend.
> ER> apt-get install emacs20
> ER> apt-get install psgml
> ER> Psgml parses XML and gives it color. With a DTD you can find out what
> ER> elements are valid.
> ER> I think there is also a debian-sgml list.
>
> You have forgotten
>
> apt-get install tdtd
>
> :)
>
> Without it emacs doesn't provide DTD edition mode.
>
>

-- 
++
http://www.burningclown.com
"Everyone's Portal to Nothing At All"
++



single-user mode? strange

2001-06-26 Thread Daniel Patrick Berdine
I recently ran dselect and did an upgrade with unstable which had the
result that I can't log in at all (typing 'root' at the login promt
returns Login Incorrect, I don't even get to try the password, similar
results with the kdm login screen).

My first thought was to boot into single user mode and try and work things
out from there, not sure how but it was a place to start.  I searched the
archives and found several messages saying that to boot into single user
mode I need to add the 'single' option at my lilo boot: prompt.

So I tried 'Linux single' 'Linux Single' 'LinuxText single'
'LinuxText2.4.3 single' and was inevitablly put into normal multi user
mode.

My normal kernel is 2.4.5, but you can see I also tried 2.4.3.

Any suggestions?  I'm going to try using a boot floppy and such, but I
would still like to know how to get into single-user mode...

Thanks,

-Dan

P.S.  Please CC responses to my email, thanks



Re: GMC working under Gnome?

2001-06-26 Thread Mart van de Wege
On Tue, 26 Jun 2001 00:54:16 -0400
Chun Kit Edwin Lau <[EMAIL PROTECTED]> wrote:

> Hi,
> 
>   Just wondering if anyone get GMC working under Gnome in unstable.  I
> tried to start it but it gives me the following warning and then quit
> 
> Gdk-WARNING **: Missing charsets in FontSet creation
> 
> 
> Gdk-WARNING **: ISO8859-1
> 
 
> Anyone knows what's happening? And also, I noticed that the Missing
> charsets in FontSet creation error happen very often.  Any hints on how
> to fix it?
> 
Funny that you should mention it. I *have* seen behaviour like this
before, but the other way around. I have been trying to get my system to
talk dutch to my flatmate (she has an account of her own), and I ran into
the problem that dutch was defined as nl_NL.ISO-8859-1 in
/etc/locale.alias, but as nl_NL.ISO8859-1 in
/usr/X11/lib/locale/locale.alias (note the missing dash). Fooling around
with those config files is slowly bringing me nearer to a dutch system
here, so maybe your gmc failing is related?

Mart


pgpQQ5sorrueO.pgp
Description: PGP signature


Re: deselect & aptitude show different packages !!!

2001-06-26 Thread Balbir Thomas
On Tue, Jun 26, 2001 at 05:57:37PM +0100, Colin Watson wrote:
> Balbir Thomas <[EMAIL PROTECTED]> wrote:
> >I am using ustable, with kernel 2.4.5. Aptitude shows many more packages 
> >than deselect .
> 
> Have you run 'dselect update' recently, or have you just been using
> 'apt-get update'?

Yep , I have done that and do so regularly. Though it should show broken
dependencies in any case ?? 



Re: vmware on Debian?

2001-06-26 Thread Robert Voigt
On Monday 25 June 2001 21:54, nico de haer wrote:
> I use it on Debian 2.2r2 (kernel 2.2.19pre21) works fine!

Can your Windows apps access hardware like USB, soundcard, scanner? This 
would be interesting. A lot of people could use all their hardware while 
running Linux.



Re: mount (2.4.4)

2001-06-26 Thread Robin Gerard
On Mon, Jun 25, 2001 at 01:38:44PM -0400, Jonathan D. Proulx wrote:
> On Mon, Jun 25, 2001 at 07:43:20PM +, Robin Gerard wrote:
...
> :fatfs : bogus cluster size
> :VFS:can't find a valide MSDOS filesystem on dev 02:00
> :mount:you must specify the filesystem type
. 
> You probably have a raw kernel image on the floppy (no filesystem at
> all).  Try "rdev /dev/fd0" you should get back something like "Root
> device /dev/hda1" if you have a kernel image there.

ok but I can write my boot diskette of the kernel 2.2.17 

> You're probably better off using lilo or another boot loader to boot
> of the HD, boot ing from floppy is Soo tedious :)

I agree with you but I have potato 2.2r2 and an other OS on one 
hdd second master (hdc) and potato 2.2r0 on an other hdd first
master (hda). Lilo boot linux and the other OS on hdc and
I boot linux with a boot diskette on hda.
Can I boot the three systems with lilo ?
I guess that I must use grub to do this.   
> -Jon
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> 

-- 
Gerard



Re: Installation

2001-06-26 Thread Dave Sherohman
On Tue, Jun 26, 2001 at 09:56:11AM -0700, Alan Wu wrote:
> I have downloaded ash_0.3.8-13_i386.deb. How can I proceed to install this
> package?

> P.S. My machine:
>   OS: Windows Advanced Server 2000

debs aren't Windows software.  You'll have to install linux (and preferably
the debian flavor) to use them.  Instructions can be found at
http://www.debian.org/releases/stable/#new-inst

-- 
That's not gibberish...  It's Linux. - Byers, The Lone Gunmen
Geek Code 3.12:  GCS d? s+: a C++ UL$ P++>+++ L+++> E- W--(++) N+
o+ !K w--- O M- V? PS+ PE Y+ PGP t 5++ X+ R++ tv+ b+ DI D G e* h r y+



Re: deselect & aptitude show different packages !!!

2001-06-26 Thread Colin Watson
On Tue, 26 Jun 2001 at 12:52:35 -0500, Balbir Thomas wrote:
> On Tue, Jun 26, 2001 at 05:57:37PM +0100, Colin Watson wrote:
> > Balbir Thomas <[EMAIL PROTECTED]> wrote:
> > >I am using ustable, with kernel 2.4.5. Aptitude shows many more packages 
> > >than deselect .
> > 
> > Have you run 'dselect update' recently, or have you just been using
> > 'apt-get update'?
> 
> Yep , I have done that and do so regularly. Though it should show broken
> dependencies in any case ?? 

Well, 'apt-get update' doesn't update dselect's available database,
hence the question. Beyond that, no idea, sorry ...

-- 
Colin Watson  [EMAIL PROTECTED]



  1   2   >