Linux-Misc Digest #88, Volume #19                Thu, 18 Feb 99 21:13:07 EST

Contents:
  Re: Searching for a Linux Sequencer (Sam E. Trenholme)
  Re: floating point accuracy on Linux? (Johan Kullstam)
  Re: Linux has too many problems (MS employee trolling?) ("Stefan Verkoyen")
  Re: Programming for ISA card ("Dirty Fly")
  DosLinux 7.7 Kernel recompile problem ("Bob Sinko")
  KDE and shortcuts ("Alvaro A. Novo")
  Re: Linux Security Questions ([EMAIL PROTECTED])
  Re: H E L P !!! (Stéphane Brunet)

----------------------------------------------------------------------------

From: [EMAIL PROTECTED] (Sam E. Trenholme)
Subject: Re: Searching for a Linux Sequencer
Date: 18 Feb 1999 17:02:39 -0800

>I found several web pages that list gobs of music and sound software for
>linux.

http://sound.lovebead.com is (a primary mirror of) the canonical list.

- Sam

-- 
Email address here: http://www.samiam.org/ssi/mailme.shtml
Music I write here: http://www.mp3.com/sam http://www.samiam.org/mp3
Mp3 reviews here:   http://www.samiam.org/music

------------------------------

Subject: Re: floating point accuracy on Linux?
From: Johan Kullstam <[EMAIL PROTECTED]>
Date: 17 Feb 1999 23:18:31 -0500

[EMAIL PROTECTED] (Rob Komar) writes:

> Georg Schwarz ([EMAIL PROTECTED]) wrote:
> : [EMAIL PROTECTED] (Rob Komar) writes:
> : 
> : >I believe that -ffloat-store forces (some) intermediate 80-bit results
> : >to be moved in and out of 64-bit memory to round them to 64-bit results.
> : 
> : are they actually rounded or just truncated?
> 
> I don't know.  You'll probably have to look at the specs for the
> 387 FPU to find out.

what happens is this.  the x87 has a 8 register stack internally.  all
the registers are (normally) 80 bits.  sometimes, during a calculation
with many terms, you want to juggle more than 8 quantities.  to make
room, one (or more) of the registers are saved to memory and reloaded
again when you need it.  the save is done in double-precision (ie 64
bits).  the precision is lost during the save.

thus depending on how much you are juggling during a given problem,
the x87 stack may or may not overflow and cause a register to be
spilled into memory.

optimization settings can have a large impact on how the x87 is fed
and how many quantities are active at a time.  thus changing
optimization can cause a register spill which did not exist at a
different optimization setting.

> : for pgf77, there is a -pc 64 option, which actually speeds up things a
> : bit. Also, at least for the calculation I have posted here, it correctly
> : gets 0.0 with that option vs. the "incorrect" output when using the
> : default -pc 80.
> 
> I'm glad you put "incorrect" in quotes, because both results are
> actually correct.  If "b" had actually been initialized to
> "2.0000000000000000000e-01" rather than "2.0000000000000001110e-01",
> then both 80 and 64 bit modes would have given the same answer.
> Because "b" isn't exactly "0.2" in 80-bit mode, you don't get
> the expected answer of "0.0".  I'd put most of the blame on the
> compiler here, but only half-heartedly, because it's hard to
> deal with 80-bit numbers in a language that only supports 32
> and 64-bit numbers.  I think that's why Johan Kullstam advised
> to stay away from x86 machines.
> 
> : >You can put the FPU into 64-bit mode by setting the FPU control
> : >register.  On x86 machines, libc provides (or used to, anyway)
> : >the __setfpucw function for doing this.  It's a C function, so
> : 
> : how big is its impact? does it influcence the calculation of any process
> : running, just that process or just that process and its children?
> : Could I compile a brief C program which just does that and run that before
> : any actual application?

afaik linux does not save/restore the fpu control word when it
switches tasks.  so you set it once and it will hit every process you
have running.  i think this was the motivation behind -ffloat-store --
to avoid touching the floating point control word.

i am not sure what happens in the case of SMP.  perhaps you need to
set it on each processor.  if you set fpucw for 64 bit processing on
the one cpu and the task is moved to a different one, you may lose.

> Although I previously said `believe' because I wouldn't bet my life
> on it, I'm actually very sure that the FPU control word is part of
> each process's context.  So, you only have to set it inside your
> program, and the other processes will continue to use whatever
> they were using.

i do not think this is true.

> I don't know about children forked off by the
> parent because I deal mainly with Fortran code, and you don't
> generally fork off other processes from Fortran programs.  My
> guess is that the children would have the same FPU control
> word as the parent, but it's only a guess.
> 
> I'm pretty sure that the calculations won't be slower in 64-bit
> mode than in 80-bit mode, but I don't know if they'll be faster.
> The program _will_ run faster if you don't use `-ffloat-store'
> because you were able to change the FPU mode.

the 64 bit mode is faster than 80 bit mode.

> In general, even with the FPU set to 64-bit mode, you won't get
> the same answers that you got on workstations.  This is due to
> a lot of reasons.  The transcendental functions that are
> accelerated in hardware in the 387 probably won't return exactly
> the same result as those calculated on traditional workstations.

and there are a number of `traditional workstations' using all manner
of floating point formats.

> They are also always returned as 80-bit numbers, regardless of
> what mode the FPU is set to.  I've heard that the 64-bit mode
> isn't really that; rather the mantissa is reduced to 53 bits
> from 64 in the FPU, but the exponent has the same number of bits
> as in the 80-bit mode (if someone knows for sure, I'd like to hear
> it).  So, the answers may differ from what you "expect" in the
> last significant decimal place, but they aren't "wrong", and your
> code should recognize that.

-- 
Johan Kullstam [[EMAIL PROTECTED]] Don't Fear the Penguin!

------------------------------

From: "Stefan Verkoyen" <[EMAIL PROTECTED]>
Subject: Re: Linux has too many problems (MS employee trolling?)
Date: Wed, 17 Feb 1999 20:53:30 +0100

Yeah right,

that is the biggest bunch of crap I've ever heared.
If you didn't know anything about computers you couldn't install redhat in
three hours and knowing it works.

Or you are enormous intelligent or you aren't telling the thruth over here.
If you don't know a thing about computers, but you know everything about
swapfiles, bootmanagers, xwindows, choosing drivers,
etc.. I need to hire you in our company to install computers... Because we
have experience with computers over 8 years and still have some problems to
configure them under Windows, Linux , ....
I think I have to ask my mom to install my computer in the future. (She is a
real good housewife you know)

This software engineer can be right that he had some problems with Linux.
Especially when has some up to date hardware for which the drivers aren't
available yet or still have some bugs in it.... I think using windows you
don't have these problems because the drivers are usually accompanied with
the hardware and tested by the manufacturor.


Greetings Jack The Ripper





Kerry J. Cox <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]
>When I first installed Linux I knew absolutely nothing about computers.
>A friend recommneded that I try it out.  I got it all installed in less
>than 3 hours and that was on a 486 with 8 megs of RAM.  I had my
>X-Windows up and running within an hour after taking off the cover and
>actually looking at the video card.  And that was all with RedHat 3.0.3
>with a 2.0.x kernel.
>Sounds to me like you are one of those MS employees I read about, posing
>as a valid user trying to discredit Linux.  You sure don't sound like
>any programmer that I know.  In fact, you don't sound like much of a
>programmer at all.  Most progarmmers document their efforts and are a
>bit more descriptive than what you posted..
>KJ
>




------------------------------

From: "Dirty Fly" <[EMAIL PROTECTED]>
Subject: Re: Programming for ISA card
Date: Wed, 17 Feb 1999 23:09:36 -0000

READ THIS


Rick Wheeler wrote in message
<7af9ut$fn9$[EMAIL PROTECTED]>...
>I have an ISA Industrial Digital I/O card, caple of driving up to 64
>seperate outputs (namely, Relays). I need to be able to drive solenoids off
>each relay separately & eclusively. I have programming examples for VB on
>Windows 95/NT using the DLL provided by the manufacturer. I wish to control
>the card via a Linux application written in C.
>
>Can anyone provide programming examples in C, documentation or other advise
>that
>may be of benefit to me?
>
>Thanks
>Rick
>
>
>


begin 666 Io-port-.gz
M'XL("%#X5#4``TE/+5!O<G0M4')O9W)A;6UI;F<`M7WK<AM'LN9_/D6%3IP@
M8#>N)"59&BN6I#06=R13(\EGK#B[(3> `M%FHQO3%X*<V9DWVM_[>B>_S*Q+
M`_!MCI<Q8Q+HKJRJK+Q?2L:\R8KVWER-KLVFK!JSJ<J;*EVOL^+&T'^RP>OK
MOWR\/C+FO&U69?7,O,]N6_,AS6YOR\(6Y@_X//2?_\>J;8;+[ 4-N$O,]*EY
M:>=V/;.5F7SUU9,C^OKC*JL-`S6+<MZN;=&8A:WG53:S=6?Z55HMMFEE_>)J
MDQ8+LTVSYO\2(+RR+"M3K],\-QM;9>6B-N72--G:TE/3UK8:K,N%U3TJ[-I4
M;5%@=%D0F&9%$Q2-S<W]T\<FK>:KK+'SIJWLD)Y^_EU^>-_I++=8WF5)LQ5-
M?81O)T-,7I6+=MYDM![Z:CHTW]587M@V;>;2+Q_O&+PV(5Q:4Y05(<"L+1W/
MPCV:FO/"I'ECJR)MK#Y\AI$G/*&MJG9#@'M7[_]<]QFM+]^>FW0^MS5/<#HT
MK[.;U:"R=9FW6!K02JO2V4]I]I<V3Q]J^2Q?T9<?<FLW]-ZSSO=3T_OXL?/-
MB0S'/K=9LQ+BHQUW7CK=>2FM:R*FG*@I*^JF$IQU5W 69CJE:=_:M&XK``!5
M8/%G0W--9UYU2"U/BYLVO;&\]\=#\Z$D$B+Z6;:Y'(%N^[$B?9-61'16'KI'
M4WYTD]+0WH_E0]UD\]M^YXT3?H/(,DMU*#UY`E07,L73H?E8E2UML5Z59:/X
M_FIH7MVGZPW1SYS(F>EF/#27E5UD3$>_*Z$22>[1Y'^7:0D$V/:_S;($!Y3X
MTRPK*_5KI+]37J@M%BE]QE0K"^%DJP==QM7UX!V(+T@[,WO@.6H<9<IR;^BQ
M$,.^+#</%;%)`^EV-H"(VY&/1$K6,C#>$ &1&>9N)'WSAU73;)Z-1G5;U+21
M85O,AW;1CC;M;,2C1C1G/>*!H\OK=Y_>7WWS^N,+QN3"-FF6U[R\JZ5Y*%LZ
M@3O0255980\#A)<0`<P&I4D7B\0L+:%O66%QI;&#-4$A,4%0>@<%>G\X'#*=
M7:Z(5>C,EU6YYGUM*GN7E2T=D<V)V>P"N*TA,'IOT\J<C%GR]UGX_#\:GZ=5
MMLSH-5X/AMT0R6!I63'[O!F5;4._6"2Q3!C?/QT/=?![NR[O:&A6+"'U6"RE
M,QIAV@4$1:^?&!*=<Y**:5'6$$6]/HCH+B,B,*GPX9S669 `V*8/((B6A6W6
MN$E(/M,.&JRPE%,C] \^?//V3<*KJFQ9W:1%AJT"K]M5ZL>^*1NF9Z(EPCHA
M.I,CP#@B:]KXG%>-`U-9_\O"GB3]T!R0]?3H/>T]*W <F(ZE=Q<8.)$`CMJZ
M&A%B<L+3**W7HZP<KDROK A&SB06/1QD)T\?RQN9,-LMZ1$BE[IL*\+M(B/9
MF\U8*_3!<2";RJT$LM7JO 2:E$\ZK\J:#J8D)(-K;%&V-RM@]]]T5C"!6]6+
MYTS%BY)VVYC"$I;3XL'CDK:?9[.*B,@*U5_8>4IB`UA/Z=$Z:X0N:.DW\[GI
M$7W68->T,:#/!@^FPR?#*4EC',O,YN6V3X#P@9[9FSGI10@&I>.:B,KS%2UZ
M7JXW&8EBK$HQ`JE,&T_!S;061@(MR>.$E5>Y@0:M974DK K:&;@$JQQ<3\"F
M*Y((MNHG$'.5U]_9G<T?S+\M[!+HM/?X%@N9T8?UIGF@/^CX+2_R($893W]D
M:3%K;VZ(0F1'\Y0E+N-I<$.+H'T[+/&2(8EI+H<(PC$!HK<)(T2!.,3.I@"/
M)0U)\YK._58DG\Q*##>SC,/4S#)@BJ@(LB1_&$)T-1"NLQ+D4V-UB=D07V-\
M1%JT/"S8T3=.C8D>!Y>28H5>)GM'CV4IQ[3P1U86^8- P?: Y8-GHG3ED:IS
MX,"9JP1[ZY;0=$.'@T_>G(!6(X@L`)N2X! AUZ7J)58?=(:D7^9$82R/:8-9
MB4$DJ98D^GDIO86=DZ!D40>:(FG3+(8K$4!""(LN<_95%H'Y"DN"EQ58DU:L
M]+!"@N/6V%.*P8Z\Y2^[M+6PM*D?BB:]QY)U>9#XH,RB72>,J\_$_HF1*5D=
M9$SXA/:*,,,PZ5W8_D2LC"A%9%,FRF_TG(?H>[32.=&9G;<@>A5A>X.'H&4"
M8,4F2MP"Q_<GXW%BSA(SZ9MMV>:+G8$*D-^C:2M0,,'!YU,B?7JC(?%"BSB3
M-Q43.?@AK6XBD^*B+*%$S%V:M^"U>F/GV5(,U95E\W)OV:HMY03<1UY0CTQ9
M5KV3?A^,3P\KUG1N<&^9YD3VO7&?EO1).1<4%$AGW>9-1MB 1\/L![5>L,_A
M'I% +09[^ T6BL*:0ABNTZ*%C4HV<6QG..M+B$.-HHB >4V5_6N;D=3M\@6M
MA[F_(KN6OLSNB"')D'A.\%J8\& IEO98>,8H)*,/*B.M50R4S/U5`ARQ=*&'
MM6W:;,$/X:\YY"RJ<A-&A>E,NB3Q&=E),.,780/,LHJW<$!X?0O[D=9&*Y S
M@(J#BM+MRL+O-WDVSYK\`9R/-0@.`G_%:V$9JU.3?968<1]J"O.2O2K2-L;A
M<Q&23HJ095K"",(>'AR6Z%6>QMZ3:\ '=*XXXMT1[8(*/"X)$BT$VR"MWMFU
M6R]-3*8V+'B26@Y/B2'U3["(-&X)+@/I8229XL1V;A$>^(UU\,#Y,Q7L)*W!
M415HB[1+UO1YP1$U%2*R?X*-QX&-P<3+Y7.F5=&B$'=!6#O*@O8@^#E![VU7
MV7S%L.M8S -)>>[LIX9=CKGMPRL7[.26%'(0"">FEPWM,!&X)_V^9_WX[(*J
M4OC!1NO5K,OGA WXFX/!(#+E,.&V*NDO\4.-D+? J'D\":R"1-2#LZAI`IX9
M6J\E:J>EG]\0A@,FV%[K\@4,&Q4HA)R.4,A)).P*!)!WY'J0$"#PV!FY84*.
MG1V(I!F2/"4CL-@P[<P>2%/WGL(8J/NL0( C?C71M12S'CX2N65,)J1TA,IY
M+'UW0UP/F&0A!* )(XG&PY7HL8A.&"R=^89]%-"D;*^L%J)WE![)XR.,0?(3
M6 XR"=PMO4CR^7&T6CV]>U9D]U].R)PN=&7\V*;SE<@3."MRD 0E48<#GP_&
M,^CO;=]C8-N[AQH"&+])7HQJD&9;.CIG*[AMMF[+&"@^X3&)*G(NR4$&F*41
MRF<NCP,I9!=@]<1"F*&O_")D0V0\(_GPP'*0$3/K2>"(L=QGLEV7->("=]G<
MBNM!7E=V`UL%? G@6W*;NJ;;T'PKAT&2S_%=L.JBQ360^-X^%;</'MTZ@W]A
M2;&I"(9ZLT$WP:N$Q!+'$G\15N4/73Y_4C\%6[\U;(9BK=CI@KA<A:PBO80U
M2BNXLXD39@_,DT7LI]0K;*7'*V4I8N.UDM2$RZH*:4?J/O?V>61%T]O &F]\
M"0:/H*DR<4["^U?G;]Y\^OSAS?5?/E]=1PX"`7 N0NP@`%.U<]74S:3M]MHB
MQSFP9R&@"8!"_7SQZ?/__.[MNZMOOTF4HK(ZT D/I-VTL,C[3)S"W$K',%3*
MX.(SA= ^LTIVROYB++D/Z `>B-!2I$?[:G[V9);NNS@2F(502>ER:>>-&/4I
MTZ-*@?JA;NRZSU8F433A#?X/Z=G<!5)9Y"XT,IF08$J]U_#1>[\D,%E:BF_N
M;:O$252A/I8"("2'>[;W"6)=%HS&RLY%1[+@JMTB)3P6"^5Y298,LXJ/+2"Z
M<"@.;$;$HR,7?SPOF-HY',(2G%$<Q2,8A[3^@I#K1\)>GJ](8,X;*]H`7)_0
MDGZD[:H]/TDT$G+:9RP`4Y!]M/,1I$PE(<&>^"J+C(7E%Y$C5(N5EA6\@YR8
MC4ZM8JP3>:1W9<8H7(NE7ABRDBT9)$);C-L-$22I.>Q>E$:A/@J=9H__NREK
MYE@S-E\[4H$?@8=L1.CC2?1X(J=':V ?2,)"*4PLW9:%<#0J3D&B$-FL%L2^
MUW#3MRGI-+!:HO0OR&89U+&>P04USS%B\($3"(H_%'4SY9@[W%CGY9;%3"K[
MW\T:1,+,&VW,>>HZ5UU7N0@D#273L)]KZ^)81[%UH4L48Y[H7L*3PL<[5BB!
MNR$[;M.QD@*M0;>(G!7S-Y7X[2S5*"+>7I1\MK0DC5,('QMX.X2Q!Q<9E!@4
MG6J=L;E+;DE;-1'G)W#A5^F&5GYGP8VPG>(=);"$18F')0;.000<UO0MO5C8
M!F?)!DFUH"]L,Q_20\1F\P=EU!,)N/]B3D9]FZ+4( B]!L3A)0=12"R-XNAJ
MBHO+HK8?*$R(R$7V%F0(VNHY(<NRTA3Q\B=Y^#J=TVO'M?F&O @;!:RWV^V0
M'!_$/XE,GCT=/QV/7C\0]KZUVWI$-O_H=G4S7#7KO!.LUH3 ?F"1PVAX43U[
M]5_RNO3QJMA3R0+.>-M0`QP'ZNP>[*.(/B5$_W16ZY3#K)K40L",]0C"BGF>
MF"NG.^I40TC1BF[:E+TD&Z:6:(M$5+SO2_LBE4/ZNJG*7/,>(*-9B&$"*^RP
M#YJTOI641P$IP4_Y7/@L*^]DK3D!00Y$/5_910MWEDTCT6V<61&#G3X*MPB1
ML!TQ&=/X/,^<%<$>XM)NC?NB5W)D37A)HV;,?/"R3%ZF"Q(`KTFXW(''EZPR
M89YMX A+K%MYQ6N4A/E818:ZT&QND#-+)\H&/9(QZXP=KLS%V]('[X07I&NB
MH);WJWA5`Y+W)5A>PC/D7ZDO@U$[O@P+[);M/"QBP.A21+)JPE@)$<<Y%EX'
MVP8;8CQ>IYPD"U@5KGM,2+N%]!.O/HDBY0C=29I"XJQ+692._@$KXX,\-G6[
M84%/,(1'I\-[Y2+5E76Y%(3*T>L`86TFKCU'CK?[N;:-(Z *2(JS2VK6L.3E
M4!<!4-;5J+=.H]+/3R_3>H&1MW\;SNMAL6XXP?7/JI'DPPM="6,T3NYPN"FK
MAT>.0<&B/L5L7(:'A66KGUBOEMN$+% Z(Q<$91N1(RMIG4$3RGG!K*^'&AP'
MYW/V)L32E T2T<8S6X/3FHYJU:B"SKX+B[$C+DMC"TT.10S7"WQ8`UGK6D/[
M?%;@@G;-YA4!["=^DTX:0;LXZST83:QC`>#RW7=LO#4:$/%TV/OA!X9T?-QG
M4XI?Y"0L*_$MK=<N0A0@(AHPKBSBI!_C_:2_EY#L8J(MX&K+=L]VQ$YO8<F^
M7$A1ANCB#>R(3@@,2T=:!+DT\JW)&0DVM HHED<)]@]0[<8A`>J&'"G@EF1+
M"\><-IMXP1M,:L\#9!V*1X(D,Z1GE&:&.R-A#H&ZXY5.QH.3G0V*!P9O,@0R
MG!YP\1JOJE^V5NQ7B#[2:)*G%DPFG&)R&'?+4"R[=*0PDC?VTG790FZJU@KQ
M:F<-A\"'8'1O/T2<@0?A5D3Y51:+`F<Z'),X0GV#>"J"4A5/3N"Q%"F@8N3,
MP(*<5XA2MD%D^R]WY';B(P;E5AQ4-H7Y7>/H3HH-V V7H'A/E%O'<58OK[]+
MLG_XVDQIWVRX]CA2@%!DMNQW3@O;(=&)\_*25V/P'3TB.O" J.W35N*M<_Z0
M7(>VAK>?E^7F>0A'<,0;+]*R?D3^*<]NK1<*/N:!P3Q4H+GD.+81?"D5X#[G
MU"*A/8,6+C!SQS*L(W<UM\4-TIEBJ_ LA ,ZQ7F;ITB;^_@6LFCE3?DV(UM:
M57',VF+.DXW#'\*:LYIC);Y6PX4U<=X>WIH+>VP(,>0/$K6$/[2;[>;]#U?]
MW53&JMP"HQ"B$7V?.#-POSAIQUV.P@#*I.+XJIB/B(Q=#@$R9'[9M W[OK0@
MB50TXA@_A CBJ!.Z8):04 $'N<NM6/+P>YJ@#]*LD6* G.TPMCB);">=,!FA
MG.6MY9*8?1';D!$O#BZ.*J2<%B*40D;)IYHP+X=O=]E+4FA1W,>ME(V5`H9Q
MM4;8NQ;?PG)8AD^'$^P-+0,FA4I\X42VE[H$*I']IB\N, 1MS<?[]ZSX/S3Q
M/_YSMOW?'.;SP:U%&>)JBEV-APDCG6LH.W%Q*QBP<9R6_L<X]F4;`#<><";"
M<&K;JYV?.PVIC'!QVB1V@#16K,Y2I^C,NWPJ"!9E''KDZ*POTDD;%W(%O3 O
M'!T=>7H_W:/WGZBS"_;O;4&HC=)-,<W,\W)^&S.Y]8<G_.QB&EM2D+!T0CEF
M*$N &3E@?Y#%M_52>0;9Y$;,;874T4^LU_00,ZCLF@M0DPZ1<]SXE_PF/AE/
M(\[3VEI9=E[2"7,>FOTA8$1%9*%6(,?GV55E#R*1A(J3OP%UC"O)J*!X0*MH
MXJ0XHW3^,,^MQ,&+Y\8.;X9"+"G,J;>O_Q8,//JRA^?F].GCE]\/Z#%B</A[
M2A\0"Z?#B( *E=+XR>AL+#_!`?QZ2I]80\DW??6F^><JX@?BN9.GC[N+I>].
M=[YS0PL2]?L_)P>^F[@A]_/5C?GW]#ZA___\D!,WA#:^-\"08O^96=;EW8$Q
M/SN$6(^'C#N/#P\1[/4^E%7U@+C"HH3%S1PEYM8[Y!O:=?T\^!B$O]JZF"8P
M.C17D@J$^[R$"F75'@Y#`O)2!<&AA9T39_G*!P9]Y%*;]-: WQK(6QUVT@`>
M39I$%HGR=+:Q9.BPU5U+;8H6#WF2K-F#%W866<G:8]@/F9IH,E ')]9PY"I;
MA9=V]$=7;XBZJ>"G83:NN9-BSF6>2K5A1E9GE81XHL"C,X!,X B$1@I1%J63
M@3/G#:*VO# V86_*DH3=JLSFFFP2/Y!+OS1]1PJE]RC:UJ,^MA('=CNU-JR*
MFUU,8+*ZBP(V`YZ[`Y%@1/!9NZ,Y?$/GDK-^@^?8D+6$S'42"J800W?1'1*E
MV;S,4:3(4LSK(MX-MO_<[/R7]J5IMYHS4T?"W?%"DF I069Q_JHC*9#XA*B@
MA\H`L3Q#(*HRD^G>&"5B4=FR0<302?W68HV2O"U=*6+0$ZQ:R-BE,W927ER3
M@G,0SB:6-#+)]Y5-%SS%AZXZ8A]KE[>X^''M0\S93L7RCC,9#,\S4L35@GP#
M3AE[.>#\$O<Y:$F45?R,IJ E;KA*E<E9&)6+F2H[0SC;QT26)=PHG,TE8^99
M).%_I\+R( &U@/'S9SF4SY^1FI8L,52J_"=#S@NHX&2.^_G[42Q*?V+8_?/.
M6Y\_$U70)'=E+CF\WJ,AF]CC^_$R0=W(Y)%Y9AY]??[(].[[_>YH\=6[,/_Q
M.Z-&-8(SLC=T&"*9Q&=R-IOH^IK]L^XYIZ%"R4>ZX:3O-S^P5<(VNW.;.#Q4
M6.-LT:P;W.)H6>T*G]2Q[<7)T0`(<!/0)/XJEPMV.;/N5(?3]FRH!?]&7@K>
MLTX7Z)\+NT =T(&<-*C2&R[&$0#9_OXBA.T%<CO^/%+-J%8R("XRTR0_SQZ'
MQE&T7T$B,<!<D^%S)=F_-$\E*W8H=N8,XA"JVZVET1:57^I1^<A6*1HP-JX*
MGJO^"V2+L6]?JG=Y$(@F[52](5K_$))(A(+++[]D]7L]^Q%)98)]B<:A($%#
M3;2X%=UJ1$D/HLI*5->E%HQIK4/(GCB5J:T_[-E$6<Z.*HO29AQQ$C_<HX6<
MI5"M,!=SR'*%RX[LI\6)F&-=N5.8*9'W.*;((6(#ZJ)5H!I=4J7,***B]EC%
M9=?JC)MV+CL%R2QU=PE 4="MQ#5EK&<:7PZ1=(J:\3?M\-9D4I<3Q#J;05K]
M&PR.:]EA2%W2$;E>'MV=TN%C!-L/=4*]5F7I\A:>O.+8/<05K7%=%JZ0%WO 
MP<R >4]M;"_BY1M;6/)P!YNVVL#<_?CQ#6O]R[?7'_HDWV^RN<1/=MBWB0PO
MCJ<P772F#L4E<+^*!;M;;IZ>N%)<VB\1V=2E<#85NVL2(US8M;8"*-O IX=*
MS6ZM[ -5ES4'<EQ40HL,81&X6*T&IG;KM]5PXUJ290>IH0[5XXR+/4-+ENO$
M&AYIDU)MM92L]AM6'&##&UN"++>KTB.0=E[ PGUS^9+/IMYPL)F,1;LAGJ:M
M-B6BPP&];=V@R TU)U599'--P+V[/.8,@8O;2.7?@2,+N%X3:P[6:75K7?&8
MA#6)?^#@(!3/I+-*`7EF;>%DFPX2)Y@PG2,NG)?EK7Q5A/.02+2<BK)<UHCQ
M_5H[UGRGZV_JQ^J.?A%<`Q!8GLY9`7$*BI$0I\ZELVKT-JOGHU<!CZ,(B!<<
MJFV92#KI,3TXICDMO-,>%91^UBYRW3DHKC%2;NM[7G=-1MW>QJ,#7Q[79H8J
M2O)Z*RY/URKJ'WZX./_PZOA8$Z;8!IE7L[DBG"5.OAFST?7D*6]*O]-ZFO']
MM/O]U%4P2O!=:P\CZHD:VS@=@-"A$D^7A1.7`*7Q[_ 5C=%NO]]TWG[LD;;R
MO1#[_2J4_CD_W?. !#X'O 7.Z 9Q&P)#+%'A&A3F!YC(X%G"9"8\+V$]'IRY
ML&-\)+5KBCB0/?61^\*B!NC5Y;O1JW?O&)C2!VN?5Z]>D8/U]#3F7C11*9TD
MW50N"'B9;DI4?A#%2DE'_+"F<5P7,DS;T3_G&YO.R0(;N56C+.3%$!U]TA[.
MQ\>.BH2C?ZK2Y7"!AXAE#B@Z?4Q@7,?6P6(7IS84'<_-%2<:;IFD8#'R:;@2
MM1HYPU2'BC'3B=Q(E+!3$"VZ'!SQY=CT7J9-JD7(2KL2Y%O@>S$UO74H]74O
MQT+J+Y](]6R&FG=\\00EA\C@26?8<_'HZV=<P$;D9'IC\Q]T7BA80ST$HDUG
M] WJP!47FEV4F<@O(E,[6HY*UTV&$, YVV-'IE-_S:^Q*PEXB.<@3>GIO3*.
M@G4^G%5BO*7#P[,PBU:D:&9%=0!Z\1P4+K$$D /(G9C>!T) 6RMZ,ZF38W9S
MI7EAY8RK$&D)GJ]4>NM)N&[5"T$Z@$Q8B:.9L+JSBV%XP4Q!H R8UM#CVE+L
M:B>VMV(JR:3 N.Y'XT_,J_?OK]^;WN1K'%?\Z-1\>'/Y\="3,_/NU:'O'YOS
MRS\=>O#$#"Z^^_")B",\HI_>U?&::W"035//"XCA\AXV+6G=0F A4A>0/S6]
M2Q7%'OM\Y"+M>JD<W2[MN$"$4D_?6;018X234<SN'PV=S.##Q_?7%Z\ZN]*'
M$W/^W<?KSW]\^?G[@QB<FL'5MU<?#PT]8;1_OOKV\)E(?U!]("D#0E"3KX0#
MZKTPVLJ@*0>"<\8MAZA$7Q#;TZ'UT3I6N&3R9-@Y[ YJ/%N(,G$*`GS_M6!?
MF!^HYV92H]VM-1L&N46V].>."8RHH5S8_:*^C1'ZG;D^'<<?CQGXDWW^`'EI
MY\F527\;F;W+"KQ#*YN>#8B;S-*2-K?FY:!>(0&C=@_LT<(+S;[I95\S(W,+
M[=>B>-%[[D(VDZQT-).8*7UX2>;("7Z3"7**W]/$G.'W26(>X_=I8I[@]UEB
MGN+WX\3!^@H?21A/QAG.C_Z89,)D].<T(P:EWR<9TQ+]=5I&!.F!3,XR87]Z
MXW$I)$E_/BD="=*'IX/IF?FF*EM2LD>.!Z\NWFH9AZ^S\Z6)+%,GF!-0A;DF
M3[1#2RCIR/63U'W1DRCP=D7D\#O5@=FT;-H119(*,:[;ZG3XQ-QF9&FOUJP9
M:C*S.4A;0X-.QV9]GCC;=3P\.^//7)LGS5.:"CX;DJ9"E1-W`&*J=M./0OA.
M'V([`ODTACP1N&K!9"#2_3F0KLZ*H9D.3\U_:$.GHS51K&7#G0OK]'Z(Q=);
M1Z@@*P9 <=?*"MX^E%3J6GTDCZ#J+\3&#IMC;$C]2E=@GE7SEGB,3.%F@PIN
MJ::54I6L<.EI<D *+HB["&UD' 6X8:*A1V1''],ASZKREF7,'6PZX+R[/30F
M!X="[-BU>%9&B$?\"HZQAW9I,G^;D$]5U\579FOK1T=00A3 +K^I.$@O/(RH
M()L`LQ)FA%;$H_:#37JN!#2]3SYR)/ZT1NLXDKB[(X;!X0^7@I;\MB&#)]T$
MB^4'*;F]&ET?<Z4VPKV25M_IBHPB,:+;0SRFMLV^1@!J1M?>4U)9A2FTU!8W
M<.A3J;,(8"6LQF04!.:>ONG4M?-05^" P J$J;AW4W7O#MY/<Q0]D[8PPGDY
MY[/1Z@&W2@NG;CI&G<-T_,2Y'2I5N-9)'2\W1;?P2VQP95'WBK.K.?L$)V/Y
M"PZ90"%G@BW7T0OIUBA2OL'$01U\,>QJDLEOT"3.S)@D3Y.ODLG9,_,E!&"/
MN="9`Z?)63*9/O.RF;^<)D^2R3B9G#XS+[.;K.%R#&Y%NC@GF7QQ3AKFXD(]
MWHN+:=>:5R GR>-D,DDF)\_(JSXG1B]OR*]6..??)^:<E,S%]PKDTSX,'">O
M6(2GM=R!72YAJ\^LV[1==**^LGLXB0B9UA).Y$!+8$N7+GMP43!PO'92J%S^
M:RO^5EYJ>1'#1 9PI\BS`U8F1B$Q`ERT+4^-WNA?=/$I434?VD+=6]/(/162
M+-V6@0KA!7EZ.^<)_,>+1(.F-,#!0/MFOQ.K%C+G,%G4OL\J)4:&DO_'CV^4
MRF6U<E12?@GQQ0:7Q"35P.TV<3AG1?V:3B6Z.3^2>O6P!6>ZI<$#=,/9K SH
MD?P..)D;?U Z(&88FP<@F7"W#Q\)4Y#3_"D:H?Y$>M]K_;X$##"3KPKP)U:7
M`PT.I4S$_NA<G[#6\2FTE"39L"N*V(_'OO[:<IN=);8M-=]]AYM@P+G$W&=G
M3]%]ONE'M*W'I"EIF9K3&-R;*X9B+)QP<5IG;RCVWEI%'[\/:D8,0J,FW66(
MR:$UM&1+C">F_6,H-=^D\ZQA<1F#/03"PQ<%KEYX=-R,$N:LAA,37+TKI6/8
M6GI/^^E]SV ^X9(.OJ# S<IR06<`"40]<N(%8X>]\^_AR)]_8JB!<S@&?,'/
M+CZI:Q 8*=2@=K:5"!&F$%!0*K"!4#.'0C_9, L<I4,$*Y0T45=8AWWMHE*N
MRL"3D^$);4H;7;G9+12A!MD8SP8Z:^O@A<AU9&:!M*%Z96J3= Y(LJ.@3(G)
M*8T%^@U1G.AH@BCUN-);`^35X EVWM$QT0D!+W2X\)AK]9%K\6_>D\?7:\R 
MC.3AM&]&3'^3A)_))2WOW0TMT6)[1.[D`AQ:LY"(1Q"H;0=%O:@DS# Z$ST1
M[6R->5YB=-*=ZPAAGP$@IM5&8[''7JJTD8CP8XSY+'D(Z'A.)_RPZA(P%>D<
M-F-\:I%VV](><U%B?$D'"SSQRLO@'< <68<4.HOJ0Y2B79<;-7^XY'I/!;H&
M"VTZ+UP+)'$UUXHS$K3ERW<SP.KMQ=U$;"$O;%_R&8D[3!HKM2N-]&;YY+?K
M;X@"JEBF!K\8);@0ADBAV6GW%J.]8ZUIW)2O(!*SF*G:-^&)FZ!HB JLN)E$
MNBFE9,#APM]/0' TBJK7GVCNG0;?E,X3X?9_*?-@C/5\/TTM5V[(;4O;J(J4
MD]*^94:%@SLGUU/N6U\.-<IX<<9Q$I^AC1O3W5T%M2O6GI+89UTJX4QW;X=>
M:J.78,6W"L#=+EW0!=J]>#@4I^UE<9^MEJIMG8'"`_J>L^I]UHIBN<%K5;;8
M#Y &E7<P\O:,K%#B?PUZ:I2LT\"XH](ZH;EGT"O_ZF@RN"_^];G)HK[XU^<F
MHYZL>-/K6**).1"?Q8O37_'BXV?P!G[%BT_PXL] %#?O1-V\G4M&KY::HKC3
MSDE<"4)0;I43?/]>2*@AE+>>,:N\_S"8GDP3S<SLV_V^8B),*BR;WVJS>^@J
M9A^/7U-Y$L#IQ8!1^P(74<:MI#WM7W(UFS['XZ^9VEE&*)-7\_MX\9M21-)>
M\5SKHD2L^_L@X L=&6UX@3CW`879IC92AN/O"8@6S4$2K"*W:ZDJU%HAKO\N
M:[1V165#2;PKA[70,@U=)WV4&K0;X6*&D;P_G$MP?2?@1&KMH=YR\NZ?:U(S
M^O8(G2'W4<OV;D?F$5_ &E<G1,CF^,9W17:O"LS5,SWAOFN]XC8N`^ XD1H)
M)%N#X(:]BO:]\Y>7[K*(E^>7;-_KG0?[L9 >46WSC%>M_J8CRQ#6B'S]BNWG
M>L/7U&2UQB#4Y0GO;=W57B0+4&K<#8/-TUKJP(+BU"L.$? 76,ISG."("IYV
MPT1DY]I\&2]?2Y'20DLF&<O!1^[S&[,6SC(A:O3R_$BN&3 ]YAV5:&6^L$0,
M<O^#7%Q3^2AP+BU?OC6[C_(@;,CWHQA0>LT7MK(]Q?=43G'U1R%-?5DAUL9<
M6:SGN LF/&YH^)NM2C8(?-0-+HVL5,6.K*)9^29,?D.HV7,[6)&SU1D*$(03
MEV1:B/'Y%[89G=VC-*45$0FJ<2O4IH6 *)>'2VZ;WB<3IJRB>$?76?6:H/;E
M"/8>1J"%!1TD)NRU(V-"R_J<U]V012;E%ZKOLYIK46D$AR:50)S7S6$&I2]W
M<6A)D#8YUW/ =,357YHRCCU)/TSX/0*.H'KUX&H;A8I<T*0#WKO^#A:$BS")
M3U*'*)D@$6RCHENB8V(5K3*+B+-MU/V13>L].>%>*I3KN*IPJ=4@VI"PMY$X
ML%PBQ>V5?+,TWA3[5^2 \]XYEOK]9!)K#'?!W[OY3$L,/"VE<HO C^6,;Z/T
MU\/*`>-JNF.T56E;GIPP6]>20[M'":446/EZKB,CU;E:;13=D^L::^_2+-?+
M*XY^19R3=A(E`5[(C34%B[/Y;/"%*]YY"J6_>V^X9)C^/!FZ5).YXM.O+9?*
M:I%>2@9/[;QS=V6;*]J2D><1B%=BQ';NIO'7.!RZWY&%E%"U_'3OBEP2/C2 
MQ\6$8C++_4=#<[FRY 2+DP,+U0.1RFB2<.$2&KDF9*XCQ"@^YOKDW1OI/)0#
M07U)[2YVKI3BV-N?3^+[U#R0<)N;;W#0JYQZ!ZX>BVX-\A J7P.S6T;K:I'W
M;[U"([L_H#]/XS,F)7.L/4%BPG^A2^A>K.1ND25ZY>B LQ+D![TO3.=\,Z/>
ML5VX,95=T@@2?A&11&O@-$8FUVRY*M6?O0)Y<.W[B]MZ9PWNOBZ^L^7.E53K
M75F^99/+6A_"O![(@=O.C/2-!_2=A*4KFIR3Q7>Z">\GXJ;9V$3>VJQ:!!1$
M< +E_L0-@VQ1!M,WNJK0P]"K#[%YJ!_Z)-<A)D+^4EM=NT)70L;;#X.7UQ_"
MODYCLMBON_3&JICWJBI\A598AU30C5Q4RET%CRV?=D[]F"]$T0RI2'[:N;MB
M?;\X5K6M\POD1TUP*>#\WG ]0>4NL9= %AD>MN^M<W$N%*@'$Y?<'C#;)1Q1
MYTA:Y@\=X]V#< 65#@Q?R^6JJ]?1'9G=).\>'+U*U/=N;TI&:"T[D'].(-1,
M,^PC_E<?]O[9!Q1>']=<7V0ETJ@EYC9ZD:'L%)/__^OH&7WA]_F%6\9P_DS_
MA87NZE#8[%KI_:!H.,?1> M.IT1E*-KH',<%N34;`:XD`B+!=Q_N(RT2BZ ?
MY+KUJ1F4?EE^U<>[<' #,7%9Y;NE?AB.].WC0/E?C#QN@[CA^^Q(VNP_<;=Y
M'WCD950`J#<ZHMKJW?7[CUH[._K"Y)M)/#-:G]8DK4/#5-0M1:]_TU$D0?41
M"/\:;KI0Y>/F2\P)[M/NF[]OV$CN/9(7'I%/C#N&>Y/^\W\<=6;ZH(GP3FEC
M[^5X\*3?J7#4BW E7]7O+(3%X3CQN^X_WYF"K_F(ZKY-;S(><R0P!J.AOPEW
M-._">(\H]>%4F]05]EVH$[7P<:@UGH*%X[+W2,8_,_^^^%_%HX0;\/V1?0D$
M[LS^%]O)]/OC('7#/O>O.9;QKS\6_FX<FMO",UJ+7#8=V"":_'>2%:['#?]L
M3?AW:] S6XK%K"T)^F^7%&(WJV$HH=F<F,8%E=/B5C*=7.?%_?<E$CI7KBL8
MK$\^@ 9H-5/@X<IULC#Y4!3#":*Y)>VQ>(X;E:L'%<-IXXP2F8_O`71>T\KF
/&[U%07_^"W*7CGA+:P``
`
end


------------------------------

From: "Bob Sinko" <[EMAIL PROTECTED]>
Subject: DosLinux 7.7 Kernel recompile problem
Date: Thu, 18 Feb 1999 04:32:10 GMT

I recently downloaded doslinux 7.7 and had it running on my old 486 in good
time.

However when trying to configure the box to support IP masquerade I
discovered that the doslinux kernel is not configured for IP Firewalling as
I believe is required for IP masquerading to work.

I downloaded 2.2.1 source and gcc compiler and have succesfully compiled a
new kernel image.

However, when the linuxrc script called by the initrd boot process tries to
mount the loop file system on the dos partition it fails with the message:


"Trying to mount /dev/hda1 on msdos..."
"Mounted OK..."
"VFS: Cannot open root device 00:00"
"Kernel panic: VFS: Unable to mount root fs on 00:00"


The only change I made to the kernel config file that shipped with the
doslinux 7.7 distribution was to enable IP firewalling, I also verified that
loop block device support was enabled as a kernel level driver when running
the "make menuconfig".

I suspect that the canned doslinux kernel uses kernel level patches not
included in the standard linux kernel source to properly  handle the loop
file system created during the initial installation.

Any information on what additional pieces may be necessary to get the new
kernel to work with the loop system created by the doslinux install would be
appreciated.

Thanks,
Bob Sinko
[EMAIL PROTECTED]



------------------------------

From: "Alvaro A. Novo" <[EMAIL PROTECTED]>
Subject: KDE and shortcuts
Date: Thu, 18 Feb 1999 19:12:44 -0600

Hi,

I have just installed KDE and I am already missing my 'old' shortcuts...

I realize that I can change "global keys" and "standard keys" using KDE 
control center. But reading through the help files, I know that this 
method will not allow me to create shortcuts to launch my applications.

Q: How do I create my own shortcuts? (I knew it under FVWM)

Thanks a lot for (future) answers.

Alvaro Novo

        --      --      --      --      --      --      --      --      
                              Alvaro A. Novo
                         2116 S. Orchard St., #304
                             Urbana, IL 61801

                              [EMAIL PROTECTED]
                         [EMAIL PROTECTED]
               http://www.students.uiuc.edu/~novo/Alvaro.htm
                               217-337-4893
        --      --      --      --      --      --      --      --


------------------------------

From: [EMAIL PROTECTED]
Subject: Re: Linux Security Questions
Date: Fri, 19 Feb 1999 01:06:27 GMT

On 17 Feb 1999 21:23:14 GMT, [EMAIL PROTECTED] (Rob Komar) wrote:

>Lyno Sullivan ([EMAIL PROTECTED]) wrote:
>: I have been told that  there is a serious security flaw in Linux  in
>: that the storage and transmission of passwords is not encrypted yet?
>
>I would like to add to the other reponses that passwords _are_
>encrypted when stored in Linux (as in all Unixes).  When stored
>in the `/etc/passwd' file, the encrypted passwords are viewable
>by anybody, but when stored in the `/etc/shadow' file, only
>root processes can view the encrypted passwords.  So, the shadow
>password suite helps to cut down on the cracking of encrypted
>passwords.  Unencrypted passwords aren't stored in any official
>location (but you can't stop users from storing them in personal
>files ;).
>
>Cheers,
>Rob Komar

I believe he ment during login.  telnet expects you to send plain text
passwds like NT does...

If he ment for network transmition, all unixes use either pap or chap
which is encrypted on the wire depending on your equipment.  Windows
95 used plain text network passwords, win 98 uses encrypted passwords,
samba can do either.

at my Linux based ISP, pap encrypted passwords uptained from dialup
are again encryped using chap to send on the wire to the radius server
which decrypts it and authenticates it.  using all linux based
servers.  

plain text passwords are not stored anywhere on the system.  IN FACT
passwords are NOT stored on the computer at all.  Linux along with all
other unixes to a one way hash on a passwd that cannot be decrypted.
when a user enters his/her password is again hashed using the stored
randum number and compaired with the stored hash in the /etc/passwd
database.  if the two hashed passwords match, the password is good.
if not, try again



------------------------------

From: Stéphane Brunet <[EMAIL PROTECTED]>
Subject: Re: H E L P !!!
Date: Thu, 18 Feb 1999 20:16:51 -0500
Reply-To: [EMAIL PROTECTED]

Hey!  Don't fret!

I have two not-so-helpful recommendations:

1. get a book by O'Reily

2. 
How do you start your X server?  Do you use the "startx" command?
If so, do "which startx": that'll give the path of the script that's
running.
Read the header of the script; it'll give you config details.

If your X server starts when you boot, it's being run in one of your rc
scripts.
Check the rc.S startup scripts in /etc/rc.???.  In that directory,
you'll find (hopefully) files that start with the letter 'S' ("START",
the 'K's stand for KILL) and a sequence number (the lower the number,
the earlier it starts).

Each of these 'S' scripts starts an application/daemon.  Find the one
that starts you X server and check out the comments.

My point is that linux is usually defaulted to 640x480 (standard VGA) so
that evreyone can run the X server, right out of the box (even old
286/386s...)  You have to set it to higher resolutions by changing the
config files at the appropriate places.

Hope this helps...



Robert Criss wrote:
> 
> Ok, I admit it I'm a rank amateur at this (RH5.2) Linux stuff.  I am the
> information systems administrator for the company I work at and I
> understand NT pretty well.  I thought I would pick up Linux in a snap.
> No way homie!  I would like to use Linux as server on a couple of
> machines on the network.  I will survive this.  Right now I would just
> be tickled pink if someone would tell me how to get more than 640X480
> out of my Trident TGUI9440 PCI video card.  When I was setting up Linux
> (all things considered, a pleasent experience) it found the card easy
> enough but would only let me set the resolution to 640X480 in 256
> colors, no options.  Now I don't know how to increase the Res.  The card
> has 2meg of ram and I know it is capable of 1024X 768 because I was
> using it in another computer at that Res.   Help!  I'll completely
> reload Linux if necessary.
> P.S.  ( I would like to add that although I can't get Linux to give me
> any decent video resolution, I have managed to make it talk to the
> network and I can access it from other machines on the network.  Maybe
> I'm just concentrating on the important stuff a little too hard.).

-- 
+-------------------------------------+
| Stéphane Brunet     ([EMAIL PROTECTED]) |
| B.Eng. Computer       (450)476-4392 |
| Software Systems Developper         |
| Dept. 49, CF-18 Systems Engineering |
| CAE Electronics Ltd, Montreal, CAN  |
+-------------------------------------+

------------------------------


** 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
******************************

Reply via email to