bug or feature?

1997-08-01 Thread Bjoern Starke
Hello,

i have a question to you all:

for example my password on my system is: test1
the user names are: delete and (of course) root

Why is it possible to login as 'delete' and as 'root'
when i type instead of 'test1' as password, 'test1dfetdf' (for
example).

Or more exactly: Why is it possible to type the right password an then
add as much letters and numbers i want to it?

I am using a debian 1.2.6. Login made on all tyy's. 'su -' act's the
same.

Kind regards...bjoern

--AOL has been called "the largest anonymous remailer in the world",
and for good reason. (Raph Levien)


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] .
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Problem getting German Umlaute

1997-06-22 Thread Bjoern Starke
On Sun, 08 Jun 1997 22:31:14 +0200, you wrote:

Hi,

i have also problems getting German "Umlaute" (:-). I get the
following in bash:

ß or sz = \
ö or "o = [
ä or "a = ]
ü or "u = @

My /etc/profile:

# /etc/profile: system-wide .profile file for bash(1).

PATH="/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games:."
PS1="\\$ "

export PATH PS1

ulimit -c unlimited
umask 022
export LANG=de
LC_MESSAGES="de_DE"
LC_CTYPE=iso_8859_1
export LC_MESSAGES LC_CTYPE
export LESSCHARSET=latin1

Can someone help my, getting "Umlaute" in bash?

Kind regards..bjoern

P.S.: Yes, i have had a lock at the "German-HOWTO"!

--AOL has been called "the largest anonymous remailer in the world",
and for good reason. (Raph Levien)


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] .
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: ftape problems

1997-06-01 Thread Bjoern Starke
On Wed, 28 May 1997 18:28:03 -0400, you wrote:

>I can't really comment on your specific problem as ftape is working
>fine for my Iomega Ditto 800. I think the messages indicate that there
>were write errors on different segments of your tape but the retries
>succeded. You could try to format your tape with the new ftape-3.03
>but it takes approx. 4 hours. 

Hi,

has anyone experiance with differen tapes. Normaly i use TR-1 (400MB)
tapes. Everything worked fine (no errors). Yesterday I tried a Qic
80XL (120 MB) tape out of speed issues. I was of course faster (only
95 meters long) but the backup seems to produce more errors. Are these
tapes more insecure than the TR-1?

I am using a Ditto Easy800...bjs


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] .
Trouble?  e-mail to [EMAIL PROTECTED] .


elm.rc Where is it?

1997-05-01 Thread Bjoern Starke
Hello,

i want to set up elm, but nowhere i can find the configuraton file
elm.rc. I am using a Debian 1.2.6 and elm is at Version 2.4. I have
searched after it, but i can't find it...Has the name been changed?

Ciao..bjoern


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] .
Trouble?  e-mail to [EMAIL PROTECTED] .


New Mainboard...

1997-04-14 Thread Bjoern Starke
Hello,

i am searching for an new mainboard. I thought of an Asus TX97
(Baby-AT). It has an Intel 430TX Chipset and there should be 32 MB
S-DRAM (DIMM) on it.

Are there any problems to expect with Linux (Debian)? (Kernel is
2.0.27)

Kind regardsbjs


/etc/hosts?

1997-03-31 Thread Bjoern Starke
Hello,

1.)yesterday i needet to change my /etc/hosts file cause it wasn't
possible to use 'talk':
127.0.0.1   localhost
0.0.0.0 localhost

Since my machine has the name 'thunderstorm' i changed /etc/hosts to
this:
127.0.0.1   localhost
0.0.0.0 localhost
127.0.0.1   thunderstorm
0.0.0.0 thunderstorm

Are there any problems to expect, for example when using pppd?


2.) And there is a second question. I have a 'ppp-on' file in /bin
(it's my ppp-chatscript). Owner is root, group is ppp. Permissions are
-rwxr-x---. When trying to start it as root i get the following:

bash: /bin/ppp-on: No such file or directory.

(Note: I am still in the root-home directory and startet the
chatscript simply py typeing 'ppp-on'.)

As attachment i ll place my ppp-chatscript.

Thank you very much for your helpbjoern


#!/bin/sh
# ppp-on

LOCKDIR=/var/lock# should be the same as for minicom, seyon
DEVICE=ttyS1 # should be the same as for minicom, seyon
INTERFACE=ppp0
LIMIT=15 # number of dial in attempts

USER=Starke  # your username
PASSWORD=cancel :-)  # your password
PHONE=1231231# the number of your provider
INITSTR="&F1"

# make sure the device is not in use
if [ -f $LOCKDIR/LCK..$DEVICE ]
then
echo "PPP device is locked"
exit 1
fi

# ensure that the modem runs full speed
stty ispeed 38400 < /dev/$DEVICE

# try some times to get a connect
i=0
while [ 1 ]; do
  # dial
  echo "dialing $PHONE"
  (
  if chat  "" AT$INITSTR OK  ATDP$PHONE ogin: $USER word: $PASSWORD
  then
   pppd crtscts defaultroute debug &
  fi
  ) < /dev/$DEVICE > /dev/$DEVICE
  sleep 5
  # did we get a connect?
  if [ -r /var/run/$INTERFACE.pid ]; then
echo -n "connected"
# pppd needs some time to initialize the connection; 
# therefore, we wait for a few seconds and try if ppp is up;
# if not, we repeat this some times
j=0
while [ $j -lt 4 ]; do
  # test if ppp0 is alive
  x=$(/sbin/ifconfig | grep $INTERFACE | wc -l)
  if [ $x -ne 0 ]; then
# feedback for the user
echo ", ppp is up!"
/sbin/ifconfig
#echo "sending/receiving mail"
#/usr/scripts/mail.scr
break 2   # exit from both loops
  fi
  sleep 5
  j=$[j+1]
done
echo -n ", but no ppp"
  else
echo -n "no connect (busy?)"
  fi
  # don't try forever
  i=$[i+1]
  if [ $i -ge $LIMIT ]; then
echo "; still no PPP after $LIMIT tries, I give up :-("
/usr/scripts/ppp-off  # just to make sure
exit 1
  fi
  echo ", I'll try again soon ..."
  /usr/scripts/ppp-off  # just to make sure
  sleep 30
done


3 Questions...

1997-03-31 Thread Bjoern Starke
Hello,

1.) i can`t find a file called 'man.config' on my debian 1.2.6. So
what should i do? (i need it for configuration stuff)

2.) Normal users (members of the group 'ppp') should be able to start
a dialup internet connection via pppd. What groups must they be in?
I have added them to the following groups: 'ppp', 'dialup', 'dip'. Is
there any group missing, or is there one to much? (can one of the
groups cause security problems?)

3.) My users aren't able to start internet services like ftp, www or
telnet. The programm starts, but services can't be used. (root of
course _can_  use them).

This is what happens when starting ftp as normal user (ppp group
member):
ftp
ftp>open
(to)ftp.uni-paderborn.de
Host name lookup failture

As root, this is no problem, so what must be changed?

Kind regardsbjoern

--
It's not a bug, it's a feature.   http://home.pages.de/~BjS


SVGATextMode?

1997-03-16 Thread Bjoern Starke
Hello,

where to find a good HOWTO or FAQ for SVGATextMode? I have read the
manpages and found them very unintelligible and userunfriendly. Has
anyone running a S3 Graphics 2001 (Stealth Dram 64) running with it
and can mail me his TextConfig file to have a look at it?

Thanksbjoern


Re: Noch da... (dies gehoert zur ersten Mail)!!!!

1997-03-08 Thread Bjoern Starke
On Sat, 8 Mar 1997 23:30:15 +0100 (MET), you wrote:

Sorry, wrong adress. Plase refrain from sending mailbombs ;-)

Ciao...bjoern


Installing a new kernel....

1997-03-08 Thread Bjoern Starke
Hello,

today i tried to install a new kernel. After making xconfig, make
zImage and running lilo and restarting the system the following
happens:

This messeges are printed by the kernel at startup. I am beginning at
the point where the problems started:

Loading modules: binfmt_aout nfs smbfs vfat Initialization of vfat
failed
lp lp: unable to get major 6
Initialization of lp failed
---
-->eine reihe von Dingen die wieder ausgezeichnet funktionieren
---
dummy ether_setup: Wrong version or undefined
dev_kfree_hkb: Wrong version or undefined
dev_get: Wrong version or undefined
register_netdev: Wrong version or undefined
unregister_netdev: Wrong version or undefined
Loading failed! The module symbols (from linux-2.0.27) don't match
your linux-2.0.27)

eql dev_queue_xmt: Wrong version or undefined
dev_kfree_skb: Wrong version or undefined
dev_get: Wrong version or undefined
register_netdev: Wrong version or undefined
unregister_netdev: Wrong version or undefined
Loading failed! The module symbols (from linux-2.0.27) don't match
your linux-2.0.27)

new_tunnel: Wrong version or undefined
dev_kfree_skb: Wrong version or undefined
ip_rt_put: Wrong version or undefined
skb_device_unlock: Wrong version or undefined
dev_slloc_skb: Wrong version or undefined
ip_forward: Wrong version or undefined
kfree_skb: Wrong version or undefined
dev_get: Wrong version or undefined
register_netdev: Wrong version or undefined
Loading failed! The module symbols (from linux-2.0.27) don't match
your linux-2.0.27)

ppp CSLIP: code Copyright 1989 Regents of the University of California

my_register_ldisc:
dev_close:
dev_alloc_skb:
netif_rx:
hilt_fasync:
n_my_ioctt_
dev_kfree_skb:
register_netdev:
unregister_netdev:
Loading failed! The module symbols (from linux-2.0.27) don't match
your linux-2.0.27)

slip CSLIP:code Copyright 1989 Regents of the University of California

dev_alloc_skb:
netif_rx:
dev_kfree_skb:
register_netdev:
dev_close:
unregister_netdev:
n_my_ioctt:
my_register_ldisc:
Loading failed! The module symbols (from linux-2.0.27) don't match
your linux-2.0.27)

slhc CSLIP:code Copyright 1989 Regents of the University of California

Chequing all filesystems
-->the the system boots correct to the end.

Has anyone ideas what went wrong. I would be very pleased if someone
could help me :-)

Ciao...bjoern


--AOL has been called "the largest anonymous remailer in the world",
and for good reason.         (--->Raph Levien)

Bjoern Starke (BjS) --->Pgp-Key on http://home.pages.de/~BjS


Noch da... (dies gehoert zur ersten Mail)!!!!

1997-03-08 Thread Bjoern Starke
Hallo Christian,

Hier ein kleiner Nachtrag, der sicherlich ertragreicher ist als die
vorangegangene Unmutsbekundung:

Die Meldungen gibt der Kernel beim Systemstart aus. Ich beginne ab der
Stelle wo die Probleme auftreten:

Loading modules: binfmt_aout nfs smbfs vfat Initialization of vfat
failed
lp lp: unable to get major 6
Initialization of lp failed
---
-->eine reihe von Dingen die wieder ausgezeichnet funktionieren
---
dummy ether_setup: Wrong version or undefined
dev_kfree_hkb: Wrong version or undefined
dev_get: Wrong version or undefined
register_netdev: Wrong version or undefined
unregister_netdev: Wrong version or undefined
Loading failed! The module symbols (from linux-2.0.27) don't match
your linux-2.0.27)

eql dev_queue_xmt: Wrong version or undefined
dev_kfree_skb: Wrong version or undefined
dev_get: Wrong version or undefined
register_netdev: Wrong version or undefined
unregister_netdev: Wrong version or undefined
Loading failed! The module symbols (from linux-2.0.27) don't match
your linux-2.0.27)

new_tunnel: Wrong version or undefined
dev_kfree_skb: Wrong version or undefined
ip_rt_put: Wrong version or undefined
skb_device_unlock: Wrong version or undefined
dev_slloc_skb: Wrong version or undefined
ip_forward: Wrong version or undefined
kfree_skb: Wrong version or undefined
dev_get: Wrong version or undefined
register_netdev: Wrong version or undefined
Loading failed! The module symbols (from linux-2.0.27) don't match
your linux-2.0.27)

ppp CSLIP: code Copyright 1989 Regents of the University of California

my_register_ldisc:
dev_close:
dev_alloc_skb:
netif_rx:
hilt_fasync:
n_my_ioctt_
dev_kfree_skb:
register_netdev:
unregister_netdev:
Loading failed! The module symbols (from linux-2.0.27) don't match
your linux-2.0.27)

slip CSLIP:code Copyright 1989 Regents of the University of California

dev_alloc_skb:
netif_rx:
dev_kfree_skb:
register_netdev:
dev_close:
unregister_netdev:
n_my_ioctt:
my_register_ldisc:
Loading failed! The module symbols (from linux-2.0.27) don't match
your linux-2.0.27)

slhc CSLIP:code Copyright 1989 Regents of the University of California

Chequing all filesystems
-->von hier an geht wieder alles korrekt seinen weg.

Ich hoffe das Dir diese Informationen weiterhelfen. Danke im Vorraus.

May live Linux foreverbjoern

--
Eine Telekom, sie zu knechten, sie alle zu finden,
  Ins Dunkel zu treiben und ewig zu binden
Im Lande Deutschland wo die Schatten drohn. 
> C by J.R.R. Tolkien (leicht abgeaendert :-)

Bjoern Starke (BjS) ->Pgp-Key on http://home.pages.de/~BjS


alias?

1997-03-07 Thread Bjoern Starke
Hello,

how can i set the following alias "for ever"?

alias down="shutdown -h now".

And is this a risk for the system-security?

Kind regards bjoern


Installing my SB16

1997-03-03 Thread Bjoern Starke
Hello,

I want to install my Soundblaster 16 (Value Edition) unter Debian.
How?

Thanx. bjoern


Using my old Dos PGP-pubring under Linux?

1997-03-01 Thread Bjoern Starke
Hello

Is it possible to use my old PGP keyrings (generated under DOS) under
Linux?

Kind regards.bjoern


Re: Perhaps someone can help me

1997-03-01 Thread Bjoern Starke
On Fri, 28 Feb 1997 07:18:19 -0500, you wrote:

>I'm looking for the pgp encryption facility.
>I've install all if the debian packages I can and
>my system seems void of pgp.

It*s not in the dselect programm. On my distribution it*s in the
following dir.

cdrom/debian/non-us/binary-i386/pgp-i_2.6.1***

Search for yourself in the tree to find the correct name (i am mailing
still unter W95, and that can not do rockridge iso9660) , and then
the following

dpkg -i [tree and name of the programm]

MfG bjoern


Big Problem!

1997-02-26 Thread Bjoern Starke
Hello,

1)very often when i install/configure new packages the following line
appears:

Setting up aout-xpm (3.4f1)
ldconfig: Warning: Can*t open /usr/X11R6/lib/usr/lib/i486-linuxaout
(no such file or directory), skipping.
ldconfig: Warning: Can*t open usr/X11R6/lib/usr/X11R5/lib (no such
file or directory),, skipping.

2) When i tryed to re-configure my x-Server_S3 wirh XF86Setup and the
new configuration is started the following line is displayed (i ll
only write down the first line):

Couldn*t execute "/usr/X11R6/lib/XF86_SVGA. no such file or directory.

Befor re-configuring i had a running X-Server (i am using a Diamond
Stealth, with S3_864 Chipset)

Any suggestions?

Thanx .bjoern starke


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED]


Re: Thrown away...

1997-02-25 Thread Bjoern Starke
>I have lived 3 jears with Windows95. So, this won't kill me anyway.

Sorry, it sould be a two. (2)


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED]


Predependancies of xscreensaver?

1997-02-24 Thread Bjoern Starke
Hi,

can anyone tell me the predependancies of the package "xscreensaver"`?
I need it for bug testing.

Short explenation:

I need the packages that must be installed to install xscreensaver.
Hold back the packages that are installed with the base system (not
the REAL base system; i mean the packages that _dselect_ suggests).

Thank you for your time....bjoern starke


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED]


Re: Thrown away...

1997-02-24 Thread Bjoern Starke
On Mon, 24 Feb 1997 02:30:20 -0800 (PST), you wrote:

Hello,

>And no, this is not a flame. (apparently some people on this list are
>hypersensitive, tell someone to go RTFM and give them the directions and
>they start crying...)

I have lived 3 jears with Windows95. So, this won't kill me anyway.
 ;-)

MfG bjoern starke


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED]


Re: Thrown away...

1997-02-24 Thread Bjoern Starke
On Mon, 24 Feb 1997 03:57:42 +0100, you wrote:

Hello,

>Isn't that card listed in xfconfig's card database? (call dpkg --configure
>xbase, if I'm not mistaken).  It sounds like a quite known card.

Yes, but the problem was that Diamond renamed many of their graphics
cards. For example. Diamond Stealth 64 DRAM is now D. Stealth 64
Graphics 2000 Series. I got this today from the D. support. Thanx.

MfG bjoern starke


--AOL has been called "the largest anonymous remailer in the world",
and for good reason.     (--->Raph Levien)

Bjoern Starke (BjS) --->Pgp-Key on http://home.pages.de/~BjS


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED]


Re: Thrown away...

1997-02-23 Thread Bjoern Starke
On Sun, 23 Feb 1997 13:52:23 GMT, I (myself) wrote:

>Sorry, but it seems that it isn*t possible to install Debian 1.2.6. I
>have installed Linux (Delix-DLD2.1) 2 Years before and it was an easy
>thing... But Debian seems to be unuseable.

Juhuuu. I have set up my X11 (nearly) correctly now. Wow. Things
aren*t so bad at all. :-)

Has anyone informations about my Graphic card?

It is a _Diamond Stealth 64 PCI 2MB DRAM_. There were a lot of name
changes in the last time for Diamind products. I need the correct:
Chipset, RamDac and Chlock Chip. Aditional Information is also
welcome.

Ciao...bjoern starke


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED]


Thrown away...

1997-02-23 Thread Bjoern Starke
Hello,

Sorry, but it seems that it isn*t possible to install Debian 1.2.6. I
have installed Linux (Delix-DLD2.1) 2 Years before and it was an easy
thing... But Debian seems to be unuseable. Somtimes there are librarys
missing sometimes other things are not correct. For example you must
manualy install PGP cause dselect has not detect it. I am very
frustrated.

Just a litte thing you can do for me is to recommend another Linux for
me:

-Red Hat 4.1 PC/intel (www.redhat.com) oder SuSe 4.4.1 (www.suse.de)?

The distribution should ve easy to install _and_ keep to the FIle
System Standart. Any help?

frustrated..bjoern


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED]