Linux-Development-Sys Digest #79, Volume #7 Sat, 21 Aug 99 00:14:39 EDT
Contents:
remap? >> hdc: [DM6:DDO] [remap +63] [524/64/63] hdc1 hdc2 hdc3 (Nigel Tamplin)
Missing modules - ppp-compress-<nn> (Nigel Tamplin)
Re: RAID mirrorset -- rebuild? (Konrad Mierendorff)
Re: threads (bill davidsen)
Re: RAID mirrorset -- rebuild? (bill davidsen)
driver for PCI 9080 ("xji")
Re: why not C++? (Erik de Castro Lopo)
Help with Window Manager Project Needed ("Steven D. Nakhla")
----------------------------------------------------------------------------
From: Nigel Tamplin <[EMAIL PROTECTED]>
Subject: remap? >> hdc: [DM6:DDO] [remap +63] [524/64/63] hdc1 hdc2 hdc3
Date: Sat, 21 Aug 1999 01:51:00 +0000
Hi,
I have a problem with a second hand IDE Conner hard drive I was given.
This drive is currently the master drive on ide1, hence hdc.
In the BIOS I have LBA turned _off_ for both my drives.
Upon bootup both my drives are found with the correct geometry.
hda: Conner Peripherals 850MB - CFA850A, 813MB w/256kB Cache,
CHS=1652/16/63
hdc: Conner Peripherals 1080MB - CFS1081A, 1032MB w/0kB Cache,
CHS=2097/16/63
But during the partition check the following is displayed
Partition check:
hda: hda1 hda2 hda3
hdc: [DM6:DDO] [remap +63] [524/64/63] hdc1 hdc2 hdc3
and the geometry from then on is 524/64/63
I have tried the drive in different Linux machines and this always
happens, I have done a low level IDE format from BIOS but nothing seems
to stop the remap at boot time.
What/ why is this remap happening?
Thanks,
Nigel.
------------------------------
From: Nigel Tamplin <[EMAIL PROTECTED]>
Subject: Missing modules - ppp-compress-<nn>
Date: Sat, 21 Aug 1999 01:55:53 +0000
Hi,
When I connect to my ISP via dial up ppp I get the following in
/var/log/messages
Aug 21 00:53:46 gatekeeper pppd[772]: Using interface ppp0
Aug 21 00:53:46 gatekeeper pppd[772]: Connect: ppp0 <--> /dev/ttyS2
Aug 21 00:53:47 gatekeeper modprobe: can't locate module ppp-compress-21
Aug 21 00:53:47 gatekeeper modprobe: can't locate module ppp-compress-26
Aug 21 00:53:47 gatekeeper modprobe: can't locate module ppp-compress-24
Aug 21 00:53:48 gatekeeper pppd[772]: local IP address ...etc
Am I missing some modules?
If so where are the options to compile them (I use a "make menuconfig")
for setting the kernel compile options.
My kernel is 2.2.11 but I used to get the same messages with 2.2.5
Thanks,
--
Nigel Tamplin.
email: [EMAIL PROTECTED]
------------------------------
From: Konrad Mierendorff <[EMAIL PROTECTED]>
Subject: Re: RAID mirrorset -- rebuild?
Date: Fri, 20 Aug 1999 22:27:04 +0200
Ted Pavlic wrote:
> And I've booted off of /dev/md0. I got booting and everything working great.
> I'm very impressed with RAID. HOWEVER, as a test, I turned off my system...
> unplugged /dev/sdb... and turned the machine back on. Everything came up as
> I expected -- RAID-1 ran in degraded mode. Feeling pretty happy about
> things, I halted the machine and plugged /dev/sdb back in. I turned the
> machine on and was hoping to find that the kernel saw the drive with the
> matching mirror sets and was going to go and resync so that my /dev/md0
> wouldn't be in degraded mode anymore. HOWEVER, the kernel still loaded the
> raid in degraded mode.
>
> How do I resync the mirrorset? I should hope that resync'ing after a drive
> dies is possible -- if it's not, I'd have to copy everything off of /dev/md0
> onto another drive... re-create /dev/md0... and then copy everything back to
> /dev/md0... and that would be an awful *LOT* of downtime to fix something
> with "redundant" in its name.
>
> Any ideas? I thought:
>
> mkraid --force-resync
>
> Might work... but --force-resync wasn't in the man page, and when I tried
> it, it wanted to trash everything on /dev/md0.
There is some sort of mini-HOWTO and a readme provided with the
raidtools. I'm not using RAID1 but RAID0 but AFAIR ckraid is what your
want. (also provided within the raidtools package)
Keep on raiding :-)
- Konrad
------------------------------
From: [EMAIL PROTECTED] (bill davidsen)
Subject: Re: threads
Date: 20 Aug 1999 20:51:39 GMT
In article <[EMAIL PROTECTED]>,
M van Oosterhout <[EMAIL PROTECTED]> wrote:
| Bill Burris wrote:
| >
| > I have multiple devices which I need to respond to regularly. Instead of
| > going around polling them I have a thread dedicated to servicing each
| > device. When there is no I/O happening the thread sleeps.
|
| Isn't this what select() and poll() and SIGIO are for?
Only sometimes. Getting user level threads running, and that's pretty
much what select does even though the semantics are not the same, can be
a hassle, because there are lots of blocking and timing issues in a
complex program. When threads first came out back in the Sun2 days, I
write a bit of it, and it's much higher effort than kernel level
threads.
In addition, any user level implementation, however done, will use a
maximum of one processor, while a kernel level threading can take
advantage of SMP.
There's no one "this is best answer," I've done select, user level
threads, and kernel threads. I can think of applications in which each
is better than the others, but it seems that kernel level threads
require less effort to get right. And even with kernel level threads
it's wise to run on uni and SMP systems and look at the overhead and
performance, because some operations can work much worse in one
environment.
--
bill davidsen <[EMAIL PROTECTED]> CTO, TMR Associates, Inc
The Internet is not the fountain of youth, but some days it feels like
the fountain of immaturity.
------------------------------
From: [EMAIL PROTECTED] (bill davidsen)
Subject: Re: RAID mirrorset -- rebuild?
Date: 20 Aug 1999 21:18:55 GMT
In article <[EMAIL PROTECTED]>, Ted Pavlic <[EMAIL PROTECTED]> wrote:
| I'm posting this here because most of the other Linux newsgroups (judging by
| their content) that I subscribe to are ready by users who probably wouldn't
| be doing a lot with RAID. (I really don't think that I should be flamed for
| that -- I'm giving you (person reading this) a complement)
|
| Plus, RAID at kernel level is a new thing that might go here anyway.
|
| My system: Red Hat Linux 6.0 with a 2.2.10-ac12 kernel
Does ac12 include the latest raidtools stuff? Or are you using the
mdtools flavor of raid (you appear to be). Makes a serious difference
what tools you use to config.
The raid-5 stuff is nice, but slow. I'm wondering if changing the chunk
size or something would produce better performance. I have a small
sever, dual Xeon, 1GB RAM, 6x36G to use for raid-5, and the initial
mkraid took as long as restore from tape would have (+1 day). It works
the nuts, but it's slow to sync and eats a fair bit of cpu when writing.
A write load of 16-18MB/sec will eat about half of a processor.
--
bill davidsen <[EMAIL PROTECTED]> CTO, TMR Associates, Inc
The Internet is not the fountain of youth, but some days it feels like
the fountain of immaturity.
------------------------------
From: "xji" <[EMAIL PROTECTED]>
Subject: driver for PCI 9080
Date: Fri, 20 Aug 1999 16:19:54 -0700
Hi,
Is there anybody wrote a pci diver for PLX 9080 under Linux,
willing to be shared or have some suggestions on how to write such driver?
I do highly appreciate your help.
Thanks.
-- xiaomei
------------------------------
From: Erik de Castro Lopo <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.development.apps,comp.os.linux.misc
Subject: Re: why not C++?
Date: Sat, 21 Aug 1999 13:03:36 +1000
Randall Parker wrote:
>
> It is not a concocted problem.
>
> I've run into this sort of situation when dealing with writing interfaces
> to a set of embedded devices which each had slightly different ways of
> formatting their packets for serial communication.
>
> I solved the problem by declaring pointers to functions where each
> function had a different way of formatting output or of interpreting
> input. I could make up a description for how to communicate to a
> particular embedded device by selecting a set of pointers that together
> worked with that device.
Yep, function pointers in C are really cool for problems where
you want to avoid a switch statement which has to be evaluated
over and over again.
Erik
--
+-------------------------------------------------+
Erik de Castro Lopo [EMAIL PROTECTED]
+-------------------------------------------------+
"I would rather spend 10 hours reading someone else's source
code than 10 minutes listening to Musak waiting for technical
support which isn't."
- Dr. Greg Wettstein, Roger Maris Cancer Center
------------------------------
From: "Steven D. Nakhla" <[EMAIL PROTECTED]>
Crossposted-To:
ak.os.linux,alt.linux,alt.os.linux,comp.os.linux.development,comp.os.linux.development.apps
Subject: Help with Window Manager Project Needed
Date: Sat, 21 Aug 1999 03:37:20 GMT
Greetings fellow Unix/Linux users. I am posting this message to ask for a
bit of help regarding a project I am currently working on for school.
First, a little background on the project:
This project is done for an undergraduate software engineering class. I am
currently a junior studying computer science. The idea behind this project
is simple: we pick one type of application and turn in various incarnations
of it during the semester. Obviously, each version of it is supposed to be
better than the previous, and should incorporate more and more features.
However, since only one application is worked on for the class, it must be
one which is rather difficult.
The application I have chosen to develop is a window manager for the
X-Window system. I am a big fan of Window Managers such as KDE,
Enlightenment, and WindowMaker, but I have yet to find one that I REALLY
love. So, my hope is to develop one that will be accepted by more people
than just myself.
Some details about the program:
1) It will be completely configurable using software. There will be no
need to edit any type of .rc file.
2) It will contain all the aspects of most window managers -- i.e.
shading, iconification, etc.
3) Later incarnations will contain support for multiple desktops.
4) It will be designed to be not only easy to use and powerful, but also
very visually pleasing.
5) Online documentation will be availible in an html-like format
6) Eventually, the beginnings of a network integration will be
implemented. (i.e. folders on the network will be able to be accessed like
local folders, etc.)
The language I will be using is C++, and the graphics library will be QT
2.0. The name of the program will be LUXOR. (Lightweight Unix/XWindows
Operating Resource). The name was chosen because it sounds really cool, as
well as the fact that I am half Egyptian and Luxor is the name of an
Egyptian city.
What I am asking the Unix/Linux community for help in is in the following 2
areas:
1) Information/Resources on how to design a windowmanager. (i.e. what
all needs to be coded). All code must be my own, or I will fail. So, I am
not asking for you to submit code for this project, only for any online
resources which may be of help.
2) I have absolutely no artistic ability whatsoever. This means that
designing icons for my desktop is nearly impossible. Therefore, I am
looking to you for help in this area. After scouring the net for quite a
while, I came across a couple of icons which fit well with my vision for
this desktop. Attached are a couple of samples of what I am looking for. I
would be MOST APPRECIATIVE if someone could design some icons along the same
lines as the samples for use with this program. Please keep in mind:
a. I would like a 3-D look and feel to them.
b. High color would be nice (16/32 bit) because it helps to make it
look more hi-tech than it really is.
c. Unfortunately, I cannot credit whoever designs these within my
program. Because it would be considered outside help, the icons must become
my property in order to be included in the submission. However, if all goes
as planned, I would like to release this program to the general public using
the GPL, in which case I would be MORE THAN HAPPY to credit you with the
design by mentioning you on the home page of the application, as well as in
the documentation.
I would appreciate any help that you all could give me. The professor has
announced that he will be distributing the top 10 projects on our school's
linux archive site, so you all will be able to see the end results of all of
this work.
Again, thank you for any help you can give me. Please mail any submissions,
inquiries, and icons to:
Steve Nakhla
[EMAIL PROTECTED]
Thanks again!
begin 666 data_photo.bmp
M0DTV" ```````#8$```H````( ```" ````!``@````````$````````````
M`````````````````$ ```" ````_P`````@``! ( ``@" ``/\@````0 ``
M0$ ``(! ``#_0 ```& ``$!@``" 8 ``_V ```" ``! @ ``@( ``/^ ````
MH ``0* ``("@``#_H ```, ``$# ``" P ``_\ ```#_``! _P``@/\``/__
M`````" `0 `@`( `( #_`" ``" @`$ @( " (" `_R @``! ( ! 0" `@$ @
M`/] ( ``8" `0& @`(!@( #_8" ``( @`$" ( " @" `_X @``"@( ! H" `
M@* @`/^@( ``P" `0, @`(# ( #_P" ``/\@`$#_( " _R `__\@````0 !
M`$ `@ ! `/\`0 ``($ `0"! `( @0 #_($ ``$! `$! 0 " 0$ `_T! ``!@
M0 ! 8$ `@&! `/]@0 ``@$ `0(! `(" 0 #_@$ ``*! `$"@0 " H$ `_Z!
M``# 0 ! P$ `@,! `/_ 0 ``_T `0/] `(#_0 #__T ```!@`$ `8 " `& `
M_P!@```@8 ! (& `@"!@`/\@8 ``0& `0$!@`(! 8 #_0& ``&!@`$!@8 "
M8& `_V!@``" 8 ! @& `@(!@`/^ 8 ``H& `0*!@`("@8 #_H& ``,!@`$#
M8 " P& `_\!@``#_8 ! _V `@/]@`/__8 ```( `0 " `( `@ #_`( ``""
M`$ @@ " (( `_R" ``! @ ! 0( `@$" `/] @ ``8( `0&" `(!@@ #_8( `
M`(" `$" @ " @( `_X" ``"@@ ! H( `@*" `/^@@ ``P( `0," `(# @ #_
MP( ``/^ `$#_@ " _X `__^ ````H ! `* `@ "@`/\`H ``(* `0""@`( @
MH #_(* ``$"@`$! H " 0* `_T"@``!@H ! 8* `@&"@`/]@H ``@* `0("@
M`(" H #_@* ``*"@`$"@H " H* `_Z"@``# H ! P* `@,"@`/_ H ``_Z `
M0/^@`(#_H #__Z ```# `$ `P " `, `_P# ```@P ! (, `@"# `/\@P ``
M0, `0$# `(! P #_0, ``&# `$!@P " 8, `_V# ``" P ! @, `@(# `/^
MP ``H, `0*# `("@P #_H, ``,# `$# P " P, `_\# ``#_P ! _\ `@/_
M`/__P ```/\`0 #_`( `_P#_`/\``"#_`$ @_P" (/\`_R#_``! _P! 0/\`
M@$#_`/] _P``8/\`0&#_`(!@_P#_8/\``(#_`$" _P" @/\`_X#_``"@_P!
MH/\`@*#_`/^@_P``P/\`0,#_`(# _P#_P/\``/__`$#__P" __\`____`./C
MX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/C
MX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^,`````````````````````````````
MX^/CX^/CX^/C`-M-34U-34U-34U-34U-34U-34U-34T`X^/CX^/CX^,`V__;
MMK:VMK:VMK:VMK:VMK:VMK:230#CX^/CX^/CXP#;_]NVMK:VMK:VMK:VMK:V
MMK:VMI)-`./CX^/CX^/C`-O_V[:VMK:VMK:VMK:VMK:VMK:VDDT`X^/CX^/C
MX^,`V__;MK:VMK:VMK:VMK:VMK:VMK:230#CX^/CX^/CXP#;_]NV0$! 0$!
M0$! 0$! 0$"VMI)-`./CX^/CX^/C`-O_V[9 _____]O_W]_;___;0+:VDDT`
MX^/CX^/CX^,`V__;MD#___O;MFU-39+;__] MK:230#CX^/CX^/CXP#;_]NV
M0/_[VY*2DG%))$VV_T"VMI)-`./CX^/CX^/C`-O_V[9 _]NV^]M)*&UM*$W_
M0+:VDDT`X^/CX^/CX^,`V__;MD#;MO__`````'&2)'% MK:230#CX^/CX^/C
MXP#;_]NV0$F2_TTD````))(`)$"VMI)-`./CX^/CX^/C`-O_V[9 M@!M29)M
M````````0+:VDDT`X^/CX^/CX^,`V__;MD#;VTD```````````! MK:230#C
MX^/CX^/CXP#;_]NV0-NVMMM-;20``````$"VMI)-`./CX^/CX^/C`-O_V[9
M__O;DFU))"0D)"0`0+:VDDT`X^/CX^/CX^,`V__;MD#;^__[V[9M22@``$E
MMK:230#CX^/CX^/CXP#;_]NV0$UREKN632@$`"@I<D"VMI)-`./CX^/CX^/C
M`-O_V[: 0$! 0$! 0$! 0$! 0+:VDDT`X^/CX^/CX^,`V__;MK:VMK:VMK:V
MMK:VMK9-34U-30#CX^/CX^/CXP#;_]NVMK:VMK:VMK:VMK:V`````````./C
MX^/CX^/C`-O_V[:VMK:VMK:VMK:VMK8`CX^/DP#CX^/CX^/CX^,`V__;MK:V
MMK:VMK:VMK:VM@"/CY,`X^/CX^/CX^/CXP#;_]NVMK:VMK:VMK:VMK:V`(^3
M`./CX^/CX^/CX^/C`-O_V[:VMK:VMK:VMK:VMK8`DP#CX^/CX^/CX^/CX^,`
MV__;MK:VMK:VMK:VMK:VM@``X^/CX^/CX^/CX^/CX^,`````````````````
M`````./CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/C
@X^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^,`
`
end
begin 666 application_filemanager.bmp
M0DTV" ```````#8$```H````( ```" ````!``@````````$````````````
M`````````````````$ ```" ````_P`````@``! ( ``@" ``/\@````0 ``
M0$ ``(! ``#_0 ```& ``$!@``" 8 ``_V ```" ``! @ ``@( ``/^ ````
MH ``0* ``("@``#_H ```, ``$# ``" P ``_\ ```#_``! _P``@/\``/__
M`````" `0 `@`( `( #_`" ``" @`$ @( " (" `_R @``! ( ! 0" `@$ @
M`/] ( ``8" `0& @`(!@( #_8" ``( @`$" ( " @" `_X @``"@( ! H" `
M@* @`/^@( ``P" `0, @`(# ( #_P" ``/\@`$#_( " _R `__\@````0 !
M`$ `@ ! `/\`0 ``($ `0"! `( @0 #_($ ``$! `$! 0 " 0$ `_T! ``!@
M0 ! 8$ `@&! `/]@0 ``@$ `0(! `(" 0 #_@$ ``*! `$"@0 " H$ `_Z!
M``# 0 ! P$ `@,! `/_ 0 ``_T `0/] `(#_0 #__T ```!@`$ `8 " `& `
M_P!@```@8 ! (& `@"!@`/\@8 ``0& `0$!@`(! 8 #_0& ``&!@`$!@8 "
M8& `_V!@``" 8 ! @& `@(!@`/^ 8 ``H& `0*!@`("@8 #_H& ``,!@`$#
M8 " P& `_\!@``#_8 ! _V `@/]@`/__8 ```( `0 " `( `@ #_`( ``""
M`$ @@ " (( `_R" ``! @ ! 0( `@$" `/] @ ``8( `0&" `(!@@ #_8( `
M`(" `$" @ " @( `_X" ``"@@ ! H( `@*" `/^@@ ``P( `0," `(# @ #_
MP( ``/^ `$#_@ " _X `__^ ````H ! `* `@ "@`/\`H ``(* `0""@`( @
MH #_(* ``$"@`$! H " 0* `_T"@``!@H ! 8* `@&"@`/]@H ``@* `0("@
M`(" H #_@* ``*"@`$"@H " H* `_Z"@``# H ! P* `@,"@`/_ H ``_Z `
M0/^@`(#_H #__Z ```# `$ `P " `, `_P# ```@P ! (, `@"# `/\@P ``
M0, `0$# `(! P #_0, ``&# `$!@P " 8, `_V# ``" P ! @, `@(# `/^
MP ``H, `0*# `("@P #_H, ``,# `$# P " P, `_\# ``#_P ! _\ `@/_
M`/__P ```/\`0 #_`( `_P#_`/\``"#_`$ @_P" (/\`_R#_``! _P! 0/\`
M@$#_`/] _P``8/\`0&#_`(!@_P#_8/\``(#_`$" _P" @/\`_X#_``"@_P!
MH/\`@*#_`/^@_P``P/\`0,#_`(# _P#_P/\``/__`$#__P" __\`____`./C
MX^/CX^/CX^/CX^/CX^/CX^/CX^/C`````./CX^/CX^,```!)24E)22DIX^/C
MX^/CX^/C``````````#CX^/C``L/"P!)24E)24E)*2DI*24E````)0``````
M````X^,`#Q</"P!)24E)24E)22DI````)24E````````````X^,`#QL/"P!)
M24E)24E)````)24E)24@`````````./CX^,`#QL/"P!)24E)````*24E)24E
M)2 ````@`./CX^/CX^,`#QL/"P!)````24DI*2DE)24E) `@`./CX^/CX^/C
MX^,`$Q\3"P``*2E*2DDI*2DE)24D`" `X^/CX^/CX^/CX^,`$Q\3``"2*2DI
M*24E*24E)20`( #CX^/CX^/CX^/C````$P"V^P```````"4E*24E) `D`./C
MX^/CX^/C````;FX`3;<``)>7=W=W```E)24E`"0`X^/CX^/C````;FYN;FX`
M``";FY<;&QMS<P`E)24`) #CX^/CX^,`DVYN;FYN;@``FYL_'Q^[N[MS`"4E
M)0`D`./CX^/CXP"3;FYN;FYN`)N;/S_?W[^[N[=S)24E`"0`X^/CX^/C`)-N
M;FYN;FX`OS\_/]_?W]NWN[L`)24`) #CX^/CX^,`DVYO;VYN;@"_/S_?W]_?
MV]N[NP`E)0`E`./CX^/CXP"S;V]O;V]N`+\_/__?W]O;^]N[`"4E`"4`X^/C
MX^/C`+=O;V]O;V\`DK\__]_?V]O[M[L`2DH```#CX^/CX^,`MX^/CX]O;V\`
MO____]_;V_N[=P```$E)`./CX^/CXP"WCX^/CX]O;P"2/S__W]_;GY<`)FYN
M24D`X^/CX^/C`+>/DY./CV]O;P``OYN;FYMM`)*.M[<I``#CX^/CX^,`MX^3
MDX^/;V]OUP````````"2V]M)``#CX^/CX^/CXP"WCX^/CX]OVP``2TM*2K.3
M_]M*``#CX^/CX^/CX^/C`+>/CX^/VP``3T]+2[>W__]*``#CX^/CX^/CX^/C
MX^,`MV]OVP``;T]/2[>W__].``#CX^/CX^/CX^/CX^/CXP"S;P``;V]/3[>W
M__]N``#CX^/CX^/CX^/CX^/CX^/C`).S`$]/3]>W__]N``#CX^/CX^/CX^/C
MX^/CX^/CX^,```!/3]?7__]N``#CX^/CX^/CX^/CX^/CX^/CX^/CXP!+2[>W
M__]N``#CX^/CX^/CX^/CX^/CX^/CX^/CX^/C`+>W__]N``#CX^/CX^/CX^/C
MX^/CX^/CX^/CX^/CX^,`__]N``#CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/C
@X^,```#CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^,`
`
end
begin 666 application_email.bmp
M0DTV" ```````#8$```H````( ```" ````!``@````````$````````````
M`````````````````$ ```" ````_P`````@``! ( ``@" ``/\@````0 ``
M0$ ``(! ``#_0 ```& ``$!@``" 8 ``_V ```" ``! @ ``@( ``/^ ````
MH ``0* ``("@``#_H ```, ``$# ``" P ``_\ ```#_``! _P``@/\``/__
M`````" `0 `@`( `( #_`" ``" @`$ @( " (" `_R @``! ( ! 0" `@$ @
M`/] ( ``8" `0& @`(!@( #_8" ``( @`$" ( " @" `_X @``"@( ! H" `
M@* @`/^@( ``P" `0, @`(# ( #_P" ``/\@`$#_( " _R `__\@````0 !
M`$ `@ ! `/\`0 ``($ `0"! `( @0 #_($ ``$! `$! 0 " 0$ `_T! ``!@
M0 ! 8$ `@&! `/]@0 ``@$ `0(! `(" 0 #_@$ ``*! `$"@0 " H$ `_Z!
M``# 0 ! P$ `@,! `/_ 0 ``_T `0/] `(#_0 #__T ```!@`$ `8 " `& `
M_P!@```@8 ! (& `@"!@`/\@8 ``0& `0$!@`(! 8 #_0& ``&!@`$!@8 "
M8& `_V!@``" 8 ! @& `@(!@`/^ 8 ``H& `0*!@`("@8 #_H& ``,!@`$#
M8 " P& `_\!@``#_8 ! _V `@/]@`/__8 ```( `0 " `( `@ #_`( ``""
M`$ @@ " (( `_R" ``! @ ! 0( `@$" `/] @ ``8( `0&" `(!@@ #_8( `
M`(" `$" @ " @( `_X" ``"@@ ! H( `@*" `/^@@ ``P( `0," `(# @ #_
MP( ``/^ `$#_@ " _X `__^ ````H ! `* `@ "@`/\`H ``(* `0""@`( @
MH #_(* ``$"@`$! H " 0* `_T"@``!@H ! 8* `@&"@`/]@H ``@* `0("@
M`(" H #_@* ``*"@`$"@H " H* `_Z"@``# H ! P* `@,"@`/_ H ``_Z `
M0/^@`(#_H #__Z ```# `$ `P " `, `_P# ```@P ! (, `@"# `/\@P ``
M0, `0$# `(! P #_0, ``&# `$!@P " 8, `_V# ``" P ! @, `@(# `/^
MP ``H, `0*# `("@P #_H, ``,# `$# P " P, `_\# ``#_P ! _\ `@/_
M`/__P ```/\`0 #_`( `_P#_`/\``"#_`$ @_P" (/\`_R#_``! _P! 0/\`
M@$#_`/] _P``8/\`0&#_`(!@_P#_8/\``(#_`$" _P" @/\`_X#_``"@_P!
MH/\`@*#_`/^@_P``P/\`0,#_`(# _P#_P/\``/__`$#__P" __\`____`/_;
MV^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/C_P#;VR4E)24E)>/CX^/C
MX^/CX^/CX^/CXP``)25-X^/_)6W;V]O;````)>/CX^/CX^/CX^/CXP`ED@``
M)"4E3?^V`)+;)-O1T=$`X^/CX^/CX^/CXP`EDK:V`)(D`"0E`/]M`)(`V_KZ
M```EX^/CX^/CXP`EDK;__[8`DB1M)$T`__]M``#;^OKZ^@#CX^/CXP`EDK;_
M____M@"2)&TDXP#_)20D`-OZ^@```./CXP`EDK;_______^V`)(D;23C`/__
M______KZ^OH`)21-3;;__________[8`DB1M).,``/KZ^OKZ^OH`````````
M`&W_________M@"2)&TDXP``^OKZ^OKZ^M'1T='1T='1`/\E______^V`)(D
M;23C``#1T?KZ^OKZ^OKZ^OKZ^OH`_________[8`DB1M).,`````T?KZ^@``
M`````````/]M)?______M@"2)&TDX^/CX^,``-'Z^@!-_VTE__]M)?______
M__^V`)(D;23CX^/CXP#_`-'Z^@!-__]M)?__;27______[8`DB1M)./CX^/C
M`/__``#1^@!M____;27_____DR7_M@"2)&TDX^/CX^,`_____P#Z`/__;27_
M____DR7 @?^V`)(D;23CX^/CXP#______P#_;27_______^!P._ _[8`DB1M
M)./CX^/C`/______;27_________;X'O)9/_M@"2)&TDX^/CX^,`________
M________;V__)9/_____`)(D;23CX^/CXP#______________V___V______
MM@`EDB1M)./CX^/C`/______)?_______V]O____MB4`MK8DDFTDX^/CX^,`
M____)?________]O____MB4`MK8E)))M)"7CX^/CXP#_)?___R7_________
MMB4`MK8E)))M)23CX^/CX^/C`/___VTE________MB4`MK8E)))M)23CX^/C
MX^/CX^,`_VTE__\E____MB4`MK8E)))M)23CX^/CX^/CX^/CXP#___\E)?__
MMB4`MK8E)))M)23CX^/CX^/CX^/CX^/C`/\E)?__MB4`MK8E)))M)23CX^/C
MX^/CX^/CX^/CX^,`____MB4`MK8E)))M)23CX^/CX^/CX^/CX^/CX^/CXP#_
MMB4`MK8E)))M)23CX^/CX^/CX^/CX^/CX^/CX^/C```EMK8E)))M)23CX^/C
MX^/CX^/CX^/CX^/CX^/CX^/CXP``)9)M)23CX^/CX^/CX^/CX^/CX^/CX^/C
@X^/CX^/CX^,D)"7CX^/CX^/CX^/CX^/CX^/CX^/CX^,`
`
end
begin 666 device_cdrom.bmp
M0DTV" ```````#8$```H````( ```" ````!``@````````$````````````
M`````````````````$ ```" ````_P`````@``! ( ``@" ``/\@````0 ``
M0$ ``(! ``#_0 ```& ``$!@``" 8 ``_V ```" ``! @ ``@( ``/^ ````
MH ``0* ``("@``#_H ```, ``$# ``" P ``_\ ```#_``! _P``@/\``/__
M`````" `0 `@`( `( #_`" ``" @`$ @( " (" `_R @``! ( ! 0" `@$ @
M`/] ( ``8" `0& @`(!@( #_8" ``( @`$" ( " @" `_X @``"@( ! H" `
M@* @`/^@( ``P" `0, @`(# ( #_P" ``/\@`$#_( " _R `__\@````0 !
M`$ `@ ! `/\`0 ``($ `0"! `( @0 #_($ ``$! `$! 0 " 0$ `_T! ``!@
M0 ! 8$ `@&! `/]@0 ``@$ `0(! `(" 0 #_@$ ``*! `$"@0 " H$ `_Z!
M``# 0 ! P$ `@,! `/_ 0 ``_T `0/] `(#_0 #__T ```!@`$ `8 " `& `
M_P!@```@8 ! (& `@"!@`/\@8 ``0& `0$!@`(! 8 #_0& ``&!@`$!@8 "
M8& `_V!@``" 8 ! @& `@(!@`/^ 8 ``H& `0*!@`("@8 #_H& ``,!@`$#
M8 " P& `_\!@``#_8 ! _V `@/]@`/__8 ```( `0 " `( `@ #_`( ``""
M`$ @@ " (( `_R" ``! @ ! 0( `@$" `/] @ ``8( `0&" `(!@@ #_8( `
M`(" `$" @ " @( `_X" ``"@@ ! H( `@*" `/^@@ ``P( `0," `(# @ #_
MP( ``/^ `$#_@ " _X `__^ ````H ! `* `@ "@`/\`H ``(* `0""@`( @
MH #_(* ``$"@`$! H " 0* `_T"@``!@H ! 8* `@&"@`/]@H ``@* `0("@
M`(" H #_@* ``*"@`$"@H " H* `_Z"@``# H ! P* `@,"@`/_ H ``_Z `
M0/^@`(#_H #__Z ```# `$ `P " `, `_P# ```@P ! (, `@"# `/\@P ``
M0, `0$# `(! P #_0, ``&# `$!@P " 8, `_V# ``" P ! @, `@(# `/^
MP ``H, `0*# `("@P #_H, ``,# `$# P " P, `_\# ``#_P ! _\ `@/_
M`/__P ```/\`0 #_`( `_P#_`/\``"#_`$ @_P" (/\`_R#_``! _P! 0/\`
M@$#_`/] _P``8/\`0&#_`(!@_P#_8/\``(#_`$" _P" @/\`_X#_``"@_P!
MH/\`@*#_`/^@_P``P/\`0,#_`(# _P#_P/\``/__`$#__P" __\`____`./C
MX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/C
M)"3CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/C)24D)"0DX^/CX^/CX^/C
MX^/CX^/CX^/CX^/CX^/C*2DI)0``)"0D)./CX^/CX^/CX^/CX^/CX^/CX^/C
M24E)*0```````"0D)"3CX^/CX^/CX^/CX^/CX^/C24E)20```2(B)0`````D
M)"0DX^/CX^/CX^/CX^/C24E)20```28F)B8E)24`````)"0D`./CX^/CX^/C
M24E)20```28F)B8F)B4E)24E`````"0D``#CX^/C24E)20``)28F)B9*2DHF
M)24E)24E```````D````X^/C30``)28F)B9+2P$!2B8E)24E)24E````````
M`./CX^,`)49&1D9/3R4E)B:WMVZ.)24E)24D````````X^/C`"5&X$=O;R4E
M)B:WVY*.;FY.3B4E)24`````````X^,`;T='1R4E1T;;_Y.3DFYN;@``````
M`"0```````#CXP!O1Y]'1T?;_[.3DY*.;@``V]NWM[>S`````````./C`&]'
M1T?__[>WM[.2D@``__NWM[*2DJ.2D@``````X^,`;T?__[>WM[>WMY,`V___
MM[>WMI*2DH(2DFX```#CXP#__[>WM[>WM[>3DP#__]O_M[>VDI*C$Q(0C@`I
M`./CXP#[M[>WM[>WMY,`___;_]>WM[>RDJ,3$)!L;@``X^/CXP``^[>WM[>W
MDP#_V__;_[?;V]NW%Q20D(!N`./CX^/CX^,``/NWM]L`___;V]O;_XX``&T4
MM(" ;F!N`./CX^/CX^/C``#;MP#___O;V_^2`&YN`$T`;FYN3FX`X^/CX^/C
MX^/CXP```/__^]O;_P".;FX``+-N;FY.;@#CX^/CX^/CX^/CX^,``/_;V]O_
M``!NLK<`LVYN;DYN`./CX^/CX^/CX^/CXP#__]O;VP"2`-O;`$VS;FYN3FX`
MX^/CX^/CX^/CX^/C`/_@V^#@_!QN``!MMY)N;FY.;@#CX^/CX^/CX^/CX^/C
M`/_@_/P<&]O;U[>2LVZ2;FX`X^/CX^/CX^/CX^/CX^,`__S\'!_#M[:2DI*.
MDFYN;@#CX^/CX^/CX^/CX^/CX^,`_QP?'\.WLI*2DI)NDFX`X^/CX^/CX^/C
MX^/CX^/CXP#;_Q_#M[:2DI*2;I*.3@#CX^/CX^/CX^/CX^/CX^/CXP``^]O#
MLI*2DHZ2D@``X^/CX^/CX^/CX^/CX^/CX^/CX^,``-NWM[>SD@``X^/CX^/C
@X^/CX^/CX^/CX^/CX^/CX^/C````````X^/CX^/CX^,`
`
end
begin 666 folder_closed_blue.bmp
M0DTV" ```````#8$```H````( ```" ````!``@````````$````````````
M`````````````````$ ```" ````_P`````@``! ( ``@" ``/\@````0 ``
M0$ ``(! ``#_0 ```& ``$!@``" 8 ``_V ```" ``! @ ``@( ``/^ ````
MH ``0* ``("@``#_H ```, ``$# ``" P ``_\ ```#_``! _P``@/\``/__
M`````" `0 `@`( `( #_`" ``" @`$ @( " (" `_R @``! ( ! 0" `@$ @
M`/] ( ``8" `0& @`(!@( #_8" ``( @`$" ( " @" `_X @``"@( ! H" `
M@* @`/^@( ``P" `0, @`(# ( #_P" ``/\@`$#_( " _R `__\@````0 !
M`$ `@ ! `/\`0 ``($ `0"! `( @0 #_($ ``$! `$! 0 " 0$ `_T! ``!@
M0 ! 8$ `@&! `/]@0 ``@$ `0(! `(" 0 #_@$ ``*! `$"@0 " H$ `_Z!
M``# 0 ! P$ `@,! `/_ 0 ``_T `0/] `(#_0 #__T ```!@`$ `8 " `& `
M_P!@```@8 ! (& `@"!@`/\@8 ``0& `0$!@`(! 8 #_0& ``&!@`$!@8 "
M8& `_V!@``" 8 ! @& `@(!@`/^ 8 ``H& `0*!@`("@8 #_H& ``,!@`$#
M8 " P& `_\!@``#_8 ! _V `@/]@`/__8 ```( `0 " `( `@ #_`( ``""
M`$ @@ " (( `_R" ``! @ ! 0( `@$" `/] @ ``8( `0&" `(!@@ #_8( `
M`(" `$" @ " @( `_X" ``"@@ ! H( `@*" `/^@@ ``P( `0," `(# @ #_
MP( ``/^ `$#_@ " _X `__^ ````H ! `* `@ "@`/\`H ``(* `0""@`( @
MH #_(* ``$"@`$! H " 0* `_T"@``!@H ! 8* `@&"@`/]@H ``@* `0("@
M`(" H #_@* ``*"@`$"@H " H* `_Z"@``# H ! P* `@,"@`/_ H ``_Z `
M0/^@`(#_H #__Z ```# `$ `P " `, `_P# ```@P ! (, `@"# `/\@P ``
M0, `0$# `(! P #_0, ``&# `$!@P " 8, `_V# ``" P ! @, `@(# `/^
MP ``H, `0*# `("@P #_H, ``,# `$# P " P, `_\# ``#_P ! _\ `@/_
M`/__P ```/\`0 #_`( `_P#_`/\``"#_`$ @_P" (/\`_R#_``! _P! 0/\`
M@$#_`/] _P``8/\`0&#_`(!@_P#_8/\``(#_`$" _P" @/\`_X#_``"@_P!
MH/\`@*#_`/^@_P``P/\`0,#_`(# _P#_P/\``/__`$#__P" __\`____`./C
MX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/C
MX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CXP```````"CC
MX^/CX^/CX^/CX^/CX^/CX^/CX^/CXP``22@`````*"@HX^/CX^/CX^/CX^/C
MX^/CX^/CXP``DFU)* `````H*"@H*./CX^/CX^/CX^/CX^/CXP``DI*2;4DH
M`````"@H*"@H*./CX^/CX^/CX^/CXP``DI*2DI)M22@`````*"@H*"CCX^/C
MX^/CX^/CXP``DI*2DI*2DFU)* `````H*"CCX^/CX^/CX^/CXP``DI*2DI*2
MDI*2;4DH`````"CCX^/CX^/CX^/CXP``DI*2DI*2DI*2DI)M22@`````X^/C
MX^/CX^/CXP``DI*2DI*2DI*2DI*2DFU)* ````#CX^/CX^/CX^,`MI*2DI*2
MDI*2DI*2DI*2;4DH`````./CX^/CX^/C`)*VDI*2DI*2DI*2DI*2DI)M22@`
M````X^/CX^/CX^,`DK:2DI*2DI*2DI*2DI*2DFU)* ````#CX^/CX^/CXP"2
MMI*2DI*2DI*2DI*2DI*2;4DH`````./CX^/CX^/C`)*VDI*2DI*2DI*2DI*2
MDI)M22@`````X^/CX^/CX^,`DK:2DI*2DI*2DI*2DI*2DFU)* ````#CX^/C
MX^/CXP"2MI*2DI*2DI*2DI*2DI*2;4DH* ```./CX^/CX^/C`)*VDI*2DI*2
MDI*2DI*2DI)MMK9M````X^/CX^/CX^,`DK:2DI*2DI*2DI*2DI*2MK8`````
M``#CX^/CX^/CXP"2MI*2DI*2DI*2DI*2MK8`````CP```./CX^/CX^/C`)*V
MDI*2DI*2DI*2MK8`````CX^/````X^/CX^/CX^,`DK:2DI*2DI*2MK8`````
MCX^/CY-M``#CX^/CX^/CXP"2MI*2DI*2MK8`````CX^/CY-M``#CX^/CX^/C
MX^/C`)*VDI*2MK8`````CX^/CY-M``#CX^/CX^/CX^/CX^,`DK:2MK8`````
MCX\``)-M``#CX^/CX^/CX^/CX^/CXP"2MK8`````CX\``.,```#CX^/CX^/C
MX^/CX^/CX^/C`/\`````CX\``./CX^/CX^/CX^/CX^/CX^/CX^/CX^,`````
MCX\``./CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CXP```./CX^/CX^/CX^/C
MX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/C
@X^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^,`
`
end
begin 666 folder_settings.bmp
M0DTV" ```````#8$```H````( ```" ````!``@````````$````````````
M`````````````````$ ```" ````_P`````@``! ( ``@" ``/\@````0 ``
M0$ ``(! ``#_0 ```& ``$!@``" 8 ``_V ```" ``! @ ``@( ``/^ ````
MH ``0* ``("@``#_H ```, ``$# ``" P ``_\ ```#_``! _P``@/\``/__
M`````" `0 `@`( `( #_`" ``" @`$ @( " (" `_R @``! ( ! 0" `@$ @
M`/] ( ``8" `0& @`(!@( #_8" ``( @`$" ( " @" `_X @``"@( ! H" `
M@* @`/^@( ``P" `0, @`(# ( #_P" ``/\@`$#_( " _R `__\@````0 !
M`$ `@ ! `/\`0 ``($ `0"! `( @0 #_($ ``$! `$! 0 " 0$ `_T! ``!@
M0 ! 8$ `@&! `/]@0 ``@$ `0(! `(" 0 #_@$ ``*! `$"@0 " H$ `_Z!
M``# 0 ! P$ `@,! `/_ 0 ``_T `0/] `(#_0 #__T ```!@`$ `8 " `& `
M_P!@```@8 ! (& `@"!@`/\@8 ``0& `0$!@`(! 8 #_0& ``&!@`$!@8 "
M8& `_V!@``" 8 ! @& `@(!@`/^ 8 ``H& `0*!@`("@8 #_H& ``,!@`$#
M8 " P& `_\!@``#_8 ! _V `@/]@`/__8 ```( `0 " `( `@ #_`( ``""
M`$ @@ " (( `_R" ``! @ ! 0( `@$" `/] @ ``8( `0&" `(!@@ #_8( `
M`(" `$" @ " @( `_X" ``"@@ ! H( `@*" `/^@@ ``P( `0," `(# @ #_
MP( ``/^ `$#_@ " _X `__^ ````H ! `* `@ "@`/\`H ``(* `0""@`( @
MH #_(* ``$"@`$! H " 0* `_T"@``!@H ! 8* `@&"@`/]@H ``@* `0("@
M`(" H #_@* ``*"@`$"@H " H* `_Z"@``# H ! P* `@,"@`/_ H ``_Z `
M0/^@`(#_H #__Z ```# `$ `P " `, `_P# ```@P ! (, `@"# `/\@P ``
M0, `0$# `(! P #_0, ``&# `$!@P " 8, `_V# ``" P ! @, `@(# `/^
MP ``H, `0*# `("@P #_H, ``,# `$# P " P, `_\# ``#_P ! _\ `@/_
M`/__P ```/\`0 #_`( `_P#_`/\``"#_`$ @_P" (/\`_R#_``! _P! 0/\`
M@$#_`/] _P``8/\`0&#_`(!@_P#_8/\``(#_`$" _P" @/\`_X#_``"@_P!
MH/\`@*#_`/^@_P``P/\`0,#_`(# _P#_P/\``/__`$#__P" __\`____`./C
MX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/C```HX^/CX^/CXP``
M*./CX^/CX^/CX^/CX^/CX^/C``!"`"CCX^/CXP``0 `HX^/CXP```````"CC
MX^/CXP"30F,`*./CX^,`K8!@`"CCXP``22@`````*"@HX^/C`).#8P`HX^/C
MXP"M@& `* ``DFU)* `````H*"@H*.,`DX-C`"CCX^/C`*V@8 `HDI*2;4DH
M`````"@H*"@H* "WDX,`*./CX^,`K:!@`"B2DI)M22@`````*"@H*"CCXP``
M`"CCX^/CXP"MH( `*)*2DFU)* `````H*"CCX^/C`)(`*./CXP```*VM@ `H
MDI*2;4DH`````"CCX^/CX^,`M@`HXP``DI*2`"0`*)*2DI)M22@`````X^/C
MX^/CXP"V`"@`DI*2DI(`M@`HDI*2DFU)* ````#CX^/CX^/C`+8`*)*2DI*2
MD@"V`"B2DI*2;4DH`````./CX^/CX^,`D@`HDI*2DI*2`+8`*)*2DI)M22@`
M````X^/CX^/CXP```"B2D@``D@``M@``*"@`DFU)* ````#CX^/CX^/C`+8`
M*)(`39(`DB22)"0``+8`;4DH`````./CX^/CXP#;MI(`* #;DB3;DI*2DI*V
MVP!M22@`````X^/CX^/C`-NVD@`H`-O;V]NVMK:VMML`DFU)* ````#CX^/C
MX^,`V[:2`"@`V]L`V]O;V]O;`)*2;4DH* ```./CX^/CXP#;V]L`*)(``)(`
M``````"2DI)MMK9M````X^/CX^/C``````"2DI*2DI*2DI*2DI*2MK8`````
M``#CX^/CX^/CXP"2MI*2DI*2DI*2DI*2MK8`````CP```./CX^/CX^/C`)*V
MDI*2DI*2DI*2MK8`````CX^/````X^/CX^/CX^,`DK:2DI*2DI*2MK8`````
MCX^/CY-M``#CX^/CX^/CXP"2MI*2DI*2MK8`````CX^/CY-M``#CX^/CX^/C
MX^/C`)*VDI*2MK8`````CX^/CY-M``#CX^/CX^/CX^/CX^,`DK:2MK8`````
MCX\``)-M``#CX^/CX^/CX^/CX^/CXP"2MK8`````CX\``.,```#CX^/CX^/C
MX^/CX^/CX^/C`/\`````CX\``./CX^/CX^/CX^/CX^/CX^/CX^/CX^,`````
MCX\``./CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CXP```./CX^/CX^/CX^/C
MX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/C
@X^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^/CX^,`
`
end
------------------------------
** 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.development.system) 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-Development-System Digest
******************************