Linux-Misc Digest #527, Volume #19 Fri, 19 Mar 99 22:13:07 EST
Contents:
Re: HELP! Question about Oracle 8 on Linux -- how to auto-start? (jack dectis)
Re: What is the best Linux to install? (David Corn)
Re: Linux kernel (Ryan Ho)
Re: Linux kernel ("Lin Zhi-Ming")
Re: Linux Emulator for Windows? (Bob Tennent)
Re: Freecell ((cosc1 95h02740))
umounting big FileSystem (Francesc Guasch)
Re: installation problem on dual PII system (Francesc Guasch)
Re: DHCP and Internet (Francesc Guasch)
Triple-ISDN getting general protection fault (Birger Toedtmann)
Re: Linux Emulator for Windows? (Walter Strong)
Re: AMD questions ("Jeremy L. Buchmann")
Re: Linux on Compaq ProLian 1850R - any luck? ([EMAIL PROTECTED])
Re: locatedb (Juergen Heinzl)
Re: Recompiling Slackware 3.6 (kernel 2.0.35) with IP Forwarding (Christopher)
Shell Provider - FreeBSD ([EMAIL PROTECTED])
----------------------------------------------------------------------------
From: jack dectis <[EMAIL PROTECTED]>
Crossposted-To: comp.databases.oracle.server,comp.os.linux.questions
Subject: Re: HELP! Question about Oracle 8 on Linux -- how to auto-start?
Date: Sat, 20 Mar 1999 00:51:46 +0000
what does ls -la /etc/rc* say?
Anubis wrote:
> Hi there-- dumb newbie question for ya'll:
>
> I have Oracle 8.0.5 installed now on Linux (RH5.2).. As per the install
> instructions, I created a file /etc/rc.d/init.d/dbora containing the
> following:
>
> # Set ORA_HOME to be equivalent to the ORACLE_HOME
> # from which you wish to execute dbstart and
> # dbshut
> # set ORA_OWNER to the user id of the owner of the
> # Oracle database in ORA_HOME
> ORA_HOME=/home/oracle/8.0.5.0.0
> ORA_OWNER=oracle
> if [! -f $ORA_HOME/bin/dbstart -o ! -d $ORA_HOME]
> then
> echo "Oracle startup: cannot start"
> exit
> fi
> case "$1" in
> 'start')
> # Start the Oracle databases:
> su - $ORA_OWNER -c $ORA_HOME/bin/dbstart &
> ;;
> 'stop')
> # Stop the Oracle databases:
> su - $ORA_OWNER -c $ORA_HOME/bin/dbshut &
> ;;
> esac
>
> In the instructions, it then says:
> Link dbora by entering:
> # ln -s /etc/rc.d/init.d/dbora /etc/rc0.d/K10dbora
>
> # ln -s /etc/rc.d/init.d/dbora /etc/rc2.d/S99dbora
>
> .. this is where I am assuming it is set so that this dbora gets executed
> on system boot.. correct?
>
> Anyway, it doesn't work. First of all, I am logged in as root. Second
> of all, I am assuming the # signs in there are a mistake since they are
> comments in the bash shell. Third of all, if I just try:
> ln -s /etc/rc.d/init.d/dbora /etc/rc0.d/K10dbora
>
> It returns an error saying:
> ln: cannot create symbolic link `/etc/rc0.d/K10dbora' to
> '/etc/rc.d/init.d/dbora': No such file or directory
>
> So, I tried a 'ls /etc/rc*' and I got:
> init.d rc.local rc.sysinit rc1.d rc3.d rc5.d
> rc rc.news rc0.d rc2.d rc4.d rc6.d
>
> ... so, rc0.d IS there... so, THEN I tried: ls /etc/rc0.d and got:
> ls: /etc/rc0.d: No such file or directory
>
> huh?? why won't this work? does it or doesn't it exist?
>
> Thanks for any help.
------------------------------
From: David Corn <[EMAIL PROTECTED]>
Crossposted-To:
alt.os.linux,comp.os.linux,comp.os.linux.setup,comp.os.linux.redhat,comp.os.linux.networking,alt.os.linux.slackware
Subject: Re: What is the best Linux to install?
Date: Sat, 20 Mar 1999 02:11:03 +0000
George Csahanin wrote:
>
> I've tried REDHAT and Slackware, and while setup of a "pretty" Linux system
> is the goal of Redhat, try compiling a new kernel. You can't, even if you
> tell it in the install to load all of what you think you need. They seem to
> want you to use a "stock" kernel, kinda like the blue sky and white clouds
> people. Do it their way. The system setup stuff in /etc/rc.d is a laugh. Try
> to customize anything, it's tough, get ready to spend time with grep looking
> for where stuff is.
I am absolutely a newbie at this Linux thing (I've had it going for 6
days now!) but I managed to upgrade from 2.0.36 (mandrake 5.3) to 2.2.3
without any problems save a printer that quit working (fixed now -
thanks - I know what happened.) I even got full sound in the bargain.
DC
------------------------------
From: Ryan Ho <[EMAIL PROTECTED]>
Subject: Re: Linux kernel
Date: Sat, 20 Mar 1999 10:00:46 +0800
Try www.kernel.org
Jean-R�ginald Louis wrote:
> Where can I find new kernel version to install? Currently I have the version
> 2.0.34 from Redhat 5.1. It's that old?
------------------------------
From: "Lin Zhi-Ming" <[EMAIL PROTECTED]>
Subject: Re: Linux kernel
Date: Fri, 19 Mar 1999 21:26:58 -0500
Hi!
You can always find the newest kernel versions at ftp.kernel.org. As this
server is never available for downloading kernels due to high load you
should use either ftp.us.kernel.org or ftp.ca.kernel.org. The kernel can be
found in the directory /pub/linux/kernel. As of now, there are two different
kinds of kernel source code available, one is the 2.0.x, the other one the
2.2.x. For 2.0.x 2.0.36 is the newest version, while for 2.2.x 2.2.3 is the
newest release of the kernel.
The 2.2.3 has a lot of major improvements compared to 2.0.36 but also brings
some bugs with it. You can always find the changes in the source code tar
archives. Only be sure that you don't download a version with an odd middle
number (minor version number) like 2.1.x because these are considered
development versions and hence are often very unstable!!
To install (this varies among the distributions but hopefully this should
work):
1. Be sure you have root permission.
2. Copy the xxxxxx.tar.gz into the /usr/src directory.
3. Remove the symbolic link linux with "rm linux".
4. Untar the archive with "tar -xvzf xxxxxx.tar.gz".
5. Rename the created directory to linux-2.x.y (set x and y according to the
downloaded version) with "mv linux linux-2.x.y").
6. Create a new symbolic link to the new kernel source code with "ln -s
linux-2.x.y linux".
7. Change into the source code directory with "cd linux".
8. Run "make menuconfig" or "make xconfig" (for this you have to be in
XWindows) to configure the kernel.
9. Make the appropriate settings and exit the configuration system.
10. Run "make dep zImage modules modules_install", which creates the kernel
image file used for bootup. (This takes some time)
10b. If 10 should fail because of a too large image rerun with "make clean
dep bzImage modules modules_install".
11. Copy the image file into the root directory with "cp
/usr/src/linux/arch/i386/boot/zImage /test" or replace zImage with bzImage
in case you used 10b.
12. Configure /etc/lilo.conf with a text editor. You have too add the
following lines:
image = /test
root = /dev/*** (where *** specifies the correct hard disk drive and
partition, e.g. /dev/sda3)
label = test
13. Run lilo by typing "lilo".
14. You should be all set!! :) -> If lilo outputs the "boot:" prompt you
write test and press return.
I hope I didn't make any mistake while describing the process since I am in
WinNT right now.
Sincerely,
Lin Zhi-Ming
Jean-R�ginald Louis wrote in message ...
>Where can I find new kernel version to install? Currently I have the
version
>2.0.34 from Redhat 5.1. It's that old?
>
>
------------------------------
From: r d t@c s.q u e e n s u.c a (Bob Tennent)
Subject: Re: Linux Emulator for Windows?
Date: 20 Mar 1999 00:38:44 GMT
On Fri, 19 Mar 1999 17:38:49 -0500, Steve D. Perkins wrote:
> This might sound like a really dumb question (and might earn a few
>flame replies!)... but does anyone know of any good (freeware or
>commercial) Linux emulators for MSWindows? I'm stuck having to use NT
>at work... and sure would love the ability to run some of my favorite
>Linux/X apps through it....
>
Do you have net access at home? If so, get yourself VNC; you run your
Linux apps at home and display them on your NT screen.
Bob T.
------------------------------
From: [EMAIL PROTECTED] ((cosc1) 95h02740)
Subject: Re: Freecell
Date: 19 Mar 1999 23:18:48 GMT
: On Wed, 17 Mar 1999 18:07:16 -0500, Jeffrey L Straszheim
: <[EMAIL PROTECTED]> wrote:
: >So I think that I can convince my wife to start using
: >Linux (and get rid of that darn Win95 partition I've
: >hanging around) if only I can provider her with a
: >version of the game Freecell that runs on Linux. I
: >actually found one with the KDE distribution, but
: >guess what: she doesn't like it because the UI is more
: >difficult than on windows. (Actually she's right, in the
: >windows version it's much easier to move the cards
: >around and such.) Anyhow, does anyone know
: >where I might find this game?
Well, my wife is a freecell lover, but she demands more
I may need a freecell with the follow capabilities:
1) Be able to generate pattern for different difficulty levels.]
2) Be able to provide hint if she can not figure out next move.
3) Be able to provide the record of best solution(fewest steps) for each
pattern.
4) Or for shortest time.
5) be able to provide best solution automatically (fewest steps)
I may have to hack some version of free freecell and add those functionality.
Is this project feasiable?
David Chen
------------------------------
From: Francesc Guasch <[EMAIL PROTECTED]>
Subject: umounting big FileSystem
Date: Fri, 19 Mar 1999 17:32:52 +0100
Hi. I got a big filesystem with 29 Gigs.
I don't shut it down many times but when I do,
when it restarts the fs usually are broken and I
have to reboot with a floppy and do a manual e2fsck.
It even says when it shutdowns that it can't
umount a fs because it is busy.
It's an old slackware that has been upgrading. Now
it's got kernel-2.2.2.
When it shutdowns it does this:
if [ ! "`mount | head -1 | cut -d ' ' -f 5`" = "umsdos" ]; then
umount -a -tnonfs
umount -a -tnonfs
echo "Remounting root filesystem read-only."
mount -n -o remount,ro /
else
umount -a -tnonfs -tnoumsdos
umount -a -tnonfs -tnoumsdos
fi
I doubled the umounts but keeps doing it.
It's a pain because it takes hours to reboot.
------------------------------
From: Francesc Guasch <[EMAIL PROTECTED]>
Subject: Re: installation problem on dual PII system
Date: Fri, 19 Mar 1999 17:11:38 +0100
Reinout wrote:
>
> Hi all,
>
> I'm trying to setup Linux on a dual PII system with only SCSI devices.
> linux idex=noprobe hdx=none
> linux ide0=noprobe ide1=noprobe
> linux ide0=noprobe ide1=noprobe aic7xxx=extended
I have a similar problem with a adaptec card.
going back to kernel-2.0.36 solved it.
------------------------------
From: Francesc Guasch <[EMAIL PROTECTED]>
Subject: Re: DHCP and Internet
Date: Fri, 19 Mar 1999 17:18:52 +0100
[EMAIL PROTECTED] wrote:
>
> Hello !!!
>
> I need a tutorial (or a good HOWTO) on DHCP and Internet. I
Here you'll find good howtos for many things.
http://metalab.unc.edu/mdw/HOWTO/
> want to do following. I run a network of 7 computers all running
> (standard) Windows 95 or 98 and one NT 4.0. Now I want to setup dhcpcd so
> that clients (Windows 95, 98, NT) would logon to Linux and Linux would
> assigned them a dynamicly IP address. The second thing I want to make is
That can be done easily with dhcpd or bootp.
With bootp just edit the file /etc/bootp.conf and follow the
examples you'll find there.
Then just launch bootpd.
Maybe you have to run winipcfg in your win95 to clear the tcp/ip
> that they would have access to Internet over linux which gateway it would be
> router. But for my knowledge
> I think that the router is the hardest nut to crack. Because I think that
> our router won't relay dynamicly IP address. We have 3COM OfficeConnet.
> Can you confirm this?
> Please help me!
The router part depends on what you want the win95 clients do.
If you want mail and web. Install a web proxy such as squid
in the linux server. Install also sendmail and cyrus-imap and
configure the win95 clients to read and send mail to the linux.
------------------------------
From: Birger Toedtmann <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.hardware
Subject: Triple-ISDN getting general protection fault
Date: 19 Mar 1999 22:55:12 GMT
Hi,
I have encountered a bit weird problem lately. Running a server (Pentium, 2.0.35)
with 3 AVM-Fritz-ISA-Cards stuck inside for incoming calls on 1TR6 and DSS1,
the server _sometimes_ cuts every connection and seems to hang - you won't connect to
it
via ISDN until reboot mostly, but ocasionally it's getting back to work smoothly......
<--snip--><--/var/log/messages--><--snip-->
Mar 15 16:39:15 linserv kernel: ippp4: Chargesum is 0
Mar 15 16:39:15 linserv ipppd[325]: Modem hangup
Mar 15 16:40:49 linserv ipppd[325]: LCP is down
Mar 15 16:40:49 linserv ipppd[325]: link 0 closed , linkunit: 0
Mar 15 16:40:49 linserv ipppd[325]: reinit_unit: 0
Mar 15 16:40:49 linserv ipppd[325]: Connect[0]: /dev/ippp2, fd: 7
Mar 15 16:40:49 linserv kernel: isdn: Fritz2,ch0 cause: 0000
Mar 15 16:40:49 linserv kernel: ippp4: remote hangup
Mar 15 16:40:49 linserv kernel: ippp4: Chargesum is 0
Mar 15 16:40:58 linserv kernel: isdn_net: call from 24,7,0 -> 0
Mar 15 16:40:58 linserv kernel: isdn_net: call from 24,7,0 -> 0
Mar 15 16:40:58 linserv kernel: isdn_net: ippp4 connected
Mar 15 16:40:58 linserv ipppd[325]: Local number: 0, Remote number: , Type: incoming
Mar 15 16:40:58 linserv ipppd[325]: PHASE_WAIT -> PHASE_ESTABLISHED, ifunit: 4,
linkunit: 0, fd: 7
Mar 15 16:40:59 linserv kernel: isdn: Fritz3,ch0 cause: 0001
Mar 15 16:41:00 linserv ipppd[325]: bundle, he: 0 we: 0
Mar 15 16:41:00 linserv ipppd[325]: local IP address XXXXXXXXXXXXXXX
Mar 15 16:41:00 linserv ipppd[325]: remote IP address XXXXXXXXXXXXXXX
Mar 15 16:41:06 linserv kernel: isdn_net: local hangup ippp3
Mar 15 16:41:06 linserv kernel: ippp3: Chargesum is 0
Mar 15 16:41:19 linserv ipppd[325]: IPCP terminated by peer
Mar 15 16:41:20 linserv kernel: isdn: Fritz2,ch0 cause: 0000
Mar 15 16:41:20 linserv kernel: ippp4: remote hangup
Mar 15 16:41:20 linserv kernel: ippp4: Chargesum is 0
Mar 15 16:41:20 linserv ipppd[325]: Modem hangup
Mar 15 16:41:20 linserv ipppd[325]: Connection terminated.
Mar 15 16:41:20 linserv ipppd[325]: taking down PHASE_DEAD link 0, linkunit: 0
Mar 15 16:41:20 linserv ipppd[325]: LCP is down
Mar 15 16:41:20 linserv ipppd[325]: link 0 closed , linkunit: 0
Mar 15 16:41:20 linserv ipppd[325]: reinit_unit: 0
Mar 15 16:41:20 linserv ipppd[325]: Connect[0]: /dev/ippp2, fd: 7
Mar 16 12:37:03 linserv kernel: isdn_net: call from XXXXXXXXXXXX,7,0 -> 2
Mar 16 12:37:03 linserv kernel: isdn_net: call from XXXXXXXXXXXX -> 1 2 ignored
Mar 16 13:37:34 linserv kernel: isdn_net: call from XXXXXXXXXXXX -> 1 2 ignored
Mar 16 13:37:34 linserv kernel: isdn_tty: call from XXXXXXXXXXXX -> 2 ignored
Mar 16 13:37:34 linserv kernel: isdn_net: call from XXXXXXXXXXXX,7,0 -> 2
Mar 16 13:37:34 linserv kernel: isdn_net: call from XXXXXXXXXXXX -> 1 2 ignored
Mar 16 13:37:34 linserv kernel: isdn_tty: call from XXXXXXXXXXXX -> 2 ignored
Mar 16 13:37:52 linserv kernel: isdn_net: call from XXXXXXXXXXXX,7,0 -> 0
Mar 16 13:37:52 linserv kernel: isdn_net: call from XXXXXXXXXXXX,7,0 -> 0
Mar 16 13:37:52 linserv kernel: isdn_net: ippp4 connected
Mar 16 13:37:52 linserv ipppd[325]: Local number: 0, Remote number: , Type: incoming
Mar 16 13:37:52 linserv ipppd[325]: PHASE_WAIT -> PHASE_ESTABLISHED, ifunit: 4,
linkunit: 0, fd: 7
Mar 16 13:37:56 linserv kernel: general protection: 0000
Mar 16 13:37:56 linserv kernel: CPU: 0
Mar 16 13:37:56 linserv kernel: EIP: 0010:[kfree+30/300]
Mar 16 13:37:56 linserv kernel: EFLAGS: 00010207
Mar 16 13:37:56 linserv kernel: eax: 74617453 ebx: 001b86b4 ecx: 7461744b edx:
74617000
Mar 16 13:37:56 linserv kernel: esi: 0064d930 edi: 00000016 ebp: 00000000 esp:
001b8670
Mar 16 13:37:56 linserv kernel: ds: 0018 es: 0018 fs: 002b gs: 0000 ss: 0018
Mar 16 13:37:56 linserv kernel: Process swapper (pid: 0, process nr: 0,
stackpage=001b6e90)
Mar 16 13:37:56 linserv kernel: Stack: 001b86b4 0064d930 00000016 00000000 74756f72
04846810 74617453 0064d930
Mar 16 13:37:56 linserv kernel: 001b86b4 001b86b4 0484e67f 0484dfcb 0484e028
00000043 0064d5c8 00000048
Mar 16 13:37:56 linserv kernel: 00000043 74617453 54532065 5f4e495f 52454c41
45535f54 4520444e 746e6576
Mar 16 13:37:56 linserv kernel: Call Trace: [<04846810>] [<0484e67f>] [<0484dfcb>]
[<0484e028>] [<048452e4>] [<04842762>] [<04848c6d>]
Mar 16 13:37:56 linserv kernel: [<04848f5d>] [<04849266>] [<048426a0>]
[do_IRQ+45/80] [<0482c0e0>] [<048426b5>] [timer_bh+749/820] [do_bottom_half+59/96]
Mar 16 13:37:56 linserv kernel: [handle_bottom_half+11/24] [exit_notify+30/472]
[do_exit+456/508] [die_if_kernel+695/704] [<05000000>]
[nls:utf8_mbtowc_R84e0472c+-110596/160] [do_general_protection+124/172]
[do_general_protection+0/172]
Mar 16 13:37:56 linserv kernel: [error_code+64/72] [kfree+30/300] [<04846810>]
[<0484e67f>] [<0484dfcb>] [<0484e028>] [<048452e4>] [<04842762>]
Mar 16 13:37:56 linserv kernel: [<04848c6d>] [<04848f5d>] [<04849266>]
[<048426a0>] [do_IRQ+45/80] [IRQ7_interrupt+89/128] [<0482c0e0>] [<048426b5>]
Mar 16 13:37:56 linserv kernel: [timer_bh+749/820] [do_bottom_half+59/96]
[handle_bottom_half+11/24] [exit_notify+62/472] [do_exit+456/508]
[die_if_kernel+695/704] [<05000000>] [nls:utf8_mbtowc_R84e0472c+-110596/160]
Mar 16 13:37:56 linserv kernel: [do_general_protection+124/172]
[do_general_protection+0/172] [error_code+64/72] [kfree+30/300] [<04846810>]
[<0484e67f>] [<0484dfcb>] [<0484e028>]
Mar 16 13:37:56 linserv kernel: [<048452e4>] [<04842762>] [<04848c6d>]
[alloc_skb+177/332] [<04848f5d>] [<04849266>] [<048426a0>] [ip_rcv+1072/1416]
Mar 16 13:37:56 linserv kernel: [<0482c0e0>] [<048426b5>] [timer_bh+749/820]
[do_bottom_half+59/96] [schedule+63/652] [hard_idle+55/92] [hard_idle+75/92]
[sys_idle+59/112]
Mar 16 13:37:56 linserv kernel: [system_call+85/124] [init+0/612]
[aic7xxx_detect+1072/5312] [start_kernel+429/440]
Mar 16 13:37:56 linserv kernel: Code: f7 02 ff 0f 00 00 0f 85 ca 00 00 00 8b 42 08 83
f8 0d 0f 87
Mar 16 13:37:56 linserv kernel: Aiee, killing interrupt handler
Mar 16 13:38:00 linserv kernel: isdn_net: local hangup ippp3
Mar 16 13:38:00 linserv kernel: ippp3: Chargesum is 0
Mar 16 13:38:02 linserv kernel: isdn_net: local hangup ippp4
Mar 16 13:38:02 linserv kernel: ippp4: Chargesum is 0
Mar 16 13:38:02 linserv ipppd[325]: LCP: timeout sending Config-Requests
Mar 16 13:38:02 linserv ipppd[325]: Connection terminated.
Mar 16 13:38:02 linserv ipppd[325]: taking down PHASE_DEAD link 0, linkunit: 0
Mar 16 13:38:02 linserv ipppd[325]: LCP is down
Mar 16 13:38:02 linserv ipppd[325]: link 0 closed , linkunit: 0
Mar 16 13:38:02 linserv ipppd[325]: reinit_unit: 0
Mar 16 13:38:02 linserv ipppd[325]: Connect[0]: /dev/ippp2, fd: 7
Mar 16 13:38:02 linserv kernel: isdn: Fritz3,ch1 cause: 0000
Mar 16 13:43:13 linserv kernel: isdn_net: call from XXXXXXXXXXXX,7,0 -> 0
Mar 16 13:43:13 linserv kernel: isdn_net: call from XXXXXXXXXXXX,7,0 -> 0
Mar 16 13:43:13 linserv kernel: isdn: Fritz3,ch0 cause: 0001
Mar 16 13:43:14 linserv kernel: isdn_net: ippp4 connected
Mar 16 13:43:14 linserv ipppd[325]: Local number: 0, Remote number: , Type: incoming
Mar 16 13:43:14 linserv ipppd[325]: PHASE_WAIT -> PHASE_ESTABLISHED, ifunit: 4,
linkunit: 0, fd: 7
Mar 16 13:43:15 linserv ipppd[325]: bundle, he: 0 we: 0
Mar 16 13:43:18 linserv ipppd[325]: CCP terminated by peer
Mar 16 13:43:18 linserv ipppd[325]: Compression disabled by peer.
Mar 16 13:43:18 linserv ipppd[325]: local IP address XXXXXXXXXXXXXX
Mar 16 13:43:18 linserv ipppd[325]: remote IP address XXXXXXXXXXXXXX
Mar 16 13:43:21 linserv kernel: isdn_net: local hangup ippp3
Mar 16 13:43:21 linserv kernel: ippp3: Chargesum is 0
Mar 16 13:43:30 linserv ipppd[325]: LCP terminated by peer
Mar 16 13:43:31 linserv kernel: isdn: Fritz2,ch0 cause: 0000
Mar 16 13:43:31 linserv kernel: ippp4: remote hangup
Mar 16 13:43:31 linserv kernel: ippp4: Chargesum is 0
Mar 16 13:43:31 linserv ipppd[325]: Modem hangup
<--snip--></var/log/messages><--snip-->
Here is my config getting the AVM-Cards functioning probperly:
<--snip--><--/etc/rc.d/rc.isdn--><--snip-->
# NICDEFS is a sequence of DEVICE,LOCALIP,REMOTEIP,MSN,CBIN,CBOUT,DEFAULT
# per installed ISDN card
NICDEFS="ippp0 XXXXXXXXXXX XXXXXXXXXXX XXX xXXX XXXX no \
ippp1 XXXXXXXXXXX XXXXXXXXXXX 0 no no no \
ippp2 XXXXXXXXXXX XXXXXXXXXXX 0 no no no \
ippp3 XXXXXXXXXXX XXXXXXXXXXX 0 no no no \
ippp4 XXXXXXXXXXX XXXXXXXXXXX 0 no no no"
case $1 in
start)
# load hardware support and debugging features
modprobe ppp
modprobe hisax type=5,5,5 protocol=2,1,1 io=0x240,0x300,0x340 irq=5,7,10
id=Fritz1%Fritz2%Fritz3
hisaxctrl Fritz1 1 0x3ff
hisaxctrl Fritz2 1 0x3ff
hisaxctrl Fritz3 1 0x3ff
# now configure each card separately
eval set $NICDEFS
while let "$#>6"; do
DEVICE=$1
REMOTE_IP=$2
LOCAL_IP=$3
MSN=$4
CBIN=$5
CBOUT=$6
DEFAULT=$7
# configure devices and protocols
isdnctrl addif $DEVICE # create device
isdnctrl l2_prot $DEVICE hdlc # layer 2 HDLC
isdnctrl l3_prot $DEVICE trans # layer 3 transparent
isdnctrl encap $DEVICE syncppp # syncPPP encap
isdnctrl eaz $DEVICE $MSN # own number
# configure callback
[...] nothing interesting here
# configure network
ifconfig $DEVICE $REMOTE_IP netmask 255.255.255.255 metric 1
ipppd remotename $REMOTE_IP /dev/$DEVICE &
shift 7
done
;;
<--snip--><--/etc/rc.d/rc.isdn--><--snip-->
Any idea?
Birger
--
Birger T�dtmann. Bielefeld, Germany.
echo '[q]sa[ln0=aln256%Pln256/snlbx]sb3135071790101768542287578439snlbxq' | \dc
00 83 E2 57 EC 60 0B 1C D3 18 AE 2A 40 55 81 22
------------------------------
From: [EMAIL PROTECTED] (Walter Strong)
Subject: Re: Linux Emulator for Windows?
Date: 19 Mar 1999 22:43:58 GMT
Steve D. Perkins ([EMAIL PROTECTED]) wrote:
: This might sound like a really dumb question (and might earn a few
: flame replies!)... but does anyone know of any good (freeware or
: commercial) Linux emulators for MSWindows? I'm stuck having to use NT
: at work... and sure would love the ability to run some of my favorite
: Linux/X apps through it....
: Steve
There are quite a few good gnu ports to dos and its extensions.
http://xarch.tu-graz.ac.at/autocad/lsp_tools/ntemacs-faq.html
for a start.
------------------------------
From: "Jeremy L. Buchmann" <[EMAIL PROTECTED]>
Subject: Re: AMD questions
Date: 19 Mar 1999 23:39:52 GMT
This may or may not be AMD related, but anytime I try to compile
the kernel with X running, I get a Signal 11. If I exit X
and untar everything again, and recompile, it works. I don't
remember this happening on my Pentium, but I could be wrong.
Ross Maguire <[EMAIL PROTECTED]> wrote:
: G'day, I have been using AMD chips for a while now, both plain K6, and the K62
: 3Dn Now variety. I have a dual boot system running Win 98 and RedHat 5.2. I
: have never experienced any problem with these chips, finding them neither
: incompatible with anything, or a probelm to setup. I was previously running
: Win 95, and had no problems there either.
: Jason Clifford wrote:
:> On Thu, 25 Feb 1999, J Schenk wrote:
:>
:> > Does anyone use an Amd k6-2 and have problems.
:> > A message in another news group said that There were many problems with
:> > the Amd relating to incorrect irq redirecting
:> > causing a limit to only use vga mode opperation. is this true and is
:> > there any other problems.
:>
:> I know that there is a bug in MS Windows 95 that causes a lot of problems
:> with AMD K6-2 CPUs at speeds 350MHz and higher and I know of another
:> problem with AMD K6-2 CPUs and MicroStar motherboards with onboard ATI
:> video and ESS1730 sound but again this is only an issue if you run
:> Windows.
:>
:> Neither of these problems affects any of the Linux systems we have sold so
:> I can only assume that they are MS related.
:>
:> Jason Clifford
:> Definite Linux Systems
:> http://definite.ukpost.com/
------------------------------
From: [EMAIL PROTECTED]
Crossposted-To: comp.os.linux.setup,comp.os.linux.hardware
Subject: Re: Linux on Compaq ProLian 1850R - any luck?
Date: 19 Mar 1999 22:55:17 GMT
Hello
During installation you cannot configure the NIC. Therefore after complete
installation follow the procedure given below.
1. Execute the command "insmod tlan" at the prompt. 2. Execute the command
"netconf" at the prompt. 3. Configure the NIC by selecting the "Basic Host
Information option" and entering the IP Address, Netmask, Net device as eth0
and Kernal as tlan. 4. Select the "Gateway and routing" option from main menu
and fill in the detail of Gateway address and without fail enable the Gateway
option. 5. Accept the changes and exit from utility. 6. If you are installing
Redhat Linux 5.0 or 5.1 add the line "insmod tlan" in
/etc/rc.d/init.d/network. 7. To confirm about the configuration execute the
command "ifconfig -a" which will display the details of your NIC configured.
Your feed back is apprecieated.
Regards
In article <7csvlt$iap$[EMAIL PROTECTED]>,
John Sinnott <[EMAIL PROTECTED]> wrote:
> Has anyone managed to get Linux up and running on the ProLiant 1850R? I
> know it is possible, since Compaq is now shipping these boxes configured
> for Linux. The only problem I am having is getting the embedded 10/100
> UTP NIC that comes with the box working. Is there a compatible driver
> available, or do I need to just purchase another NIC for one of the PCI
> slots?
>
> Thanks
> John
>
>
============= Posted via Deja News, The Discussion Network ============
http://www.dejanews.com/ Search, Read, Discuss, or Start Your Own
------------------------------
From: [EMAIL PROTECTED] (Juergen Heinzl)
Subject: Re: locatedb
Date: Fri, 19 Mar 1999 23:38:14 GMT
In article <7cu9kv$ip7$[EMAIL PROTECTED]>, [EMAIL PROTECTED] wrote:
>Hi, I recently upgraded to the 2.2.2 kernel which is working fine. However,
>ever since I upgraded I have been getting the following messages from cron
>every time it runs the updatedb.cron command:
>
>find: /proc/6210/fd/4: No such file or directory
>find: /proc/6210/fd/4: No such file or directory
>find: /proc/6217/fd/4: No such file or directory
>
>Can anyone tell me what this means and how I can correct this problem.
Exclude /proc, it is not a "real" filesystem. /usr/bin/updatedb is actually
a shell script, take a look ... you can configure where to search and might
exclude other directories like /tmp, /var/log etc. too.
Cheers,
Juergen
--
\ Real name : J�rgen Heinzl \ no flames /
\ EMail Private : [EMAIL PROTECTED] \ send money instead /
\ Phone Private : +44 181-332 0750 \ /
------------------------------
From: Christopher <[EMAIL PROTECTED]>
Crossposted-To: alt.os.linux.slackware
Subject: Re: Recompiling Slackware 3.6 (kernel 2.0.35) with IP Forwarding
Date: Fri, 19 Mar 1999 17:47:39 -0600
MokeKahuna wrote:
>
> Larry,
>
> Sorry did that step too but I forgot to mention it. That was the last
> step, updated my lilo.conf, then rebooted. After that point it just looped
> in a reboot or just hung.
>
> This happened when I had 3.5 as well.
>
The last step is /sbin/lilo
Did you run lilo?
Chris
------------------------------
From: [EMAIL PROTECTED]
Subject: Shell Provider - FreeBSD
Date: Fri, 19 Mar 1999 22:56:48 GMT
Hi,
I am looking forward to providing shell access on a machine running FreeBSD.
What are the trouble spots in terms of security will I have to look out for to
prevent hackers ?
Also, how will I go about adding new accounts to the machine without giving
too much access to system-related activities ? Will using the command
'adduser' be good enough to restrict the new account's access to the system
files ?
Thanks.
Regards.
============= Posted via Deja News, The Discussion Network ============
http://www.dejanews.com/ Search, Read, Discuss, or Start Your Own
------------------------------
** FOR YOUR REFERENCE **
The service address, to which questions about the list itself and requests
to be added to or deleted from it should be directed, is:
Internet: [EMAIL PROTECTED]
You can send mail to the entire list (and comp.os.linux.misc) via:
Internet: [EMAIL PROTECTED]
Linux may be obtained via one of these FTP sites:
ftp.funet.fi pub/Linux
tsx-11.mit.edu pub/linux
sunsite.unc.edu pub/Linux
End of Linux-Misc Digest
******************************