<html>
<head>
  <meta  http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <link  REL="SHORTCUT ICON" HREF="/img/favicon.ico">
  <title>Grupos do Google : comp.os.linux.development</title>
<style type="text/css"><!--
.scripthide { display:none; }
.script12hide { display:inline; }
.noscripthide { display:inline; }
--></style>
<noscript><style type="text/css"><!--
.scripthide { display:inline; }
.noscripthide { display:none; }
--></style></noscript>
<script language="javascript1.2"><!--
document.write('<style type="text/css">.script12hide { display: none; }</style>');
--></script>
<style type="text/css"><!-- 



  
  a:link,.w,a.w:link,.w a:link{color:#0000cc}
  a:visited,.fl:visited{color:#551a8b}
  a:active,.fl:active{color:#f00}
  .f,.fl:link{color:#6f6f6f}
  .f:visited{color:#6f6f6f}
  .z{display:none}


  .sniplink:visited, .sniplink:link, .sniplink:active, .sniplink {
    color:#676767;
  }

  .on, .on:visited, .on:link {
    color:#0000cc;
  }
  .on:active {
    color:#f00000;
  }

  .q a:visited,.q a:link,.q a:active,.q {
     color: #0000cc;
   }
  .qo a:visited,.qo a:link,.qo a:active,.qo {
     color: #0000cc;
   }

   
   .vlnk a:visited,.vlnk a:link,.vlnk a:active,.vlnk {
     color: #840284;
   }


  .mbody {
  
   margin-top:4px;
  }
  .ar {
    padding-bottom:6px;
  }








body, td {
  font-family: arial, sans-serif;
  font-size: 83%;
}

.fixed_width {
  font-family: fixed-width, monospace;
  font-size: 90%;
}

form {  margin:0; }

.tick {
 font-family: webdings;
 text-decoration:none !important;
}

.qr { width: 100%;padding:4px; font-family: arial, sans-serif; }

table.content td {  padding: 2px 4px 2px 0px; }
input.ck { margin-left:-2px; }






.gl,.gl:link,.gl:active,.gl:visited { color: #008000 }  
a.grouplnk:link { color:#008000; }
a.grouplnk:visited { color:#008000; }
a.grouplnk:active { color:#008000; }
a.grouplnk:hover { color:#008000 }
.groupname:link { color:#008000 }
.groupname:visited { color:#008000 }
.groupname:active { color:#008000 }
.groupname:hover { color:#008000 }




.b:link,.b:visited { color:#000; }

.nu { text-decoration:none; }

.gt { border-collapse:collapse; }
.gt td { padding: .3em 4px; border-right:1px solid #ffcc33; }
.gm td { padding: .3em 1em .3em 0px;}

.bnk { border: 1px solid #ffcc33;}
.bnk td { border-right-width:0px !important; white-space:nowrap;}

.sel td { 
background-color: #FFF4C2;
padding: 4px 4px .4em .4em;
border:1px solid #ffcc33;
border-right:none;
font-weight: bold;
}

.adb {  border-left: 1px solid  #fff4c2; }






p.b { margin-bottom: 1.5em; margin-top:.3em;}
.r { width:45em; }
.msgdate { color: #676767; }
.md { color: #555555; }
.st { margin-left:-1px; }
.nb { white-space:nowrap;}
.np { padding:0px; }

.p { font-weight:bold; }

.mc { table-layout:fixed; }
.mo { margin: .5em 0 0 0 ;  }
.mt { overflow:hidden; text-overflow:ellipsis; cursor:pointer; white-space:nowrap;}
.oa { padding: 2px .5em; }
.qt:link, .qt:visited, .qt { color: #5050b0; text-decoration:none; } 



.rtdiv { margin-bottom:2px; margin-left:1em; }
.rtspan { margin-left:-1em; }

.sbox { margin-top:1em; margin-bottom:1em; }
button a:link {text-decoration:none;color:black;}
button a:hover {text-decoration:none;color:black;}
-->
</style>
<script language="javascript"><!--

// ----------------------------------
// used for dynamic function generation on event handlers

var loaddef = "";
var resizedef = "";

// ----------------------------------
// cross-browser functions

var IE_all_cache = new Object();
function IE_getElementById(id) {
  if (IE_all_cache[id] == null) {
    IE_all_cache[id] = document.all[id];
  }
  return IE_all_cache[id];
}

if (document.all) {
  if (!document.getElementById) {
    document.getElementById = IE_getElementById;
  }
}

//-----------------------------------
// Browser detection

var agt = navigator.userAgent.toLowerCase();

var is_opera = (agt.indexOf("opera") != -1);
var is_ie = (agt.indexOf("msie") != -1) && document.all && !is_opera;
var is_ie5 = (agt.indexOf("msie 5") != -1) && document.all;

//----------------------------------
// Timezone detection (sets cookie)

try {
  var tz_offset = (new Date()).getTimezoneOffset();
  document.cookie = 'GTZ=' + tz_offset + ';path=/;expires=Mon, 01-Jan-2024 00:00:01 GMT';
} catch(e) {}  // might not be able to set cookies through js

// ---------------------------------
// shelled functions for old javascript
function tog() {}

//--></script>
<script language="javascript1.2"><!--

// ----------------------------------
// visibility functions

function tog() {
  // tog: toggle the visibility of html elements (arguments[1..]) from none to
  // arguments[0].  Return what should be returned in a javascript onevent().
  display = arguments[0];
  for( var i=1; i<arguments.length; i++ ) {    
    var x = document.getElementById(arguments[i]);
    if (x.style.display == "none" || x.style.display == "") {
      x.style.display = display;
    } else {
      x.style.display = "none";
    }
  } 

  var e = is_ie ? window.event : this;
  if (e) {
    if (is_ie) {
      e.cancelBubble = true;
      e.returnValue = false;
      return false;
    } else {
      return false;
    }
  }
}

// ----------------------------------
// XML Http requests

function CreateXmlHttpReq(handler) {
  var xmlhttp = null;

  if (is_ie) {
    // Guaranteed to be ie5 or ie6
    var control = (is_ie5) ? "Microsoft.XMLHTTP" : "Msxml2.XMLHTTP";
    try {
      xmlhttp = new ActiveXObject(control);
    } catch(e) {
      // TODO: better help message
      alert("You need to enable active scripting and activeX controls");
      DumpException(e);
    }
  } else {
    // Mozilla
    xmlhttp = new XMLHttpRequest();
  }
  xmlhttp.onreadystatechange = function() {
    handler(xmlhttp);
  }
  return xmlhttp;
}

var uniqnum_counter = (new Date).getTime();
function UniqueNum() {
  ++uniqnum_counter;
  return uniqnum_counter;
}

// Send a (hidden, non blocking) update message to the server
// by sending a xmlhttp request
function SendServerRequest(url) {
  StartGETRequest(url, function() {});
}

// Send a request to the server
function StartGETRequest(url, handler) {
  var xmlhttp = CreateXmlHttpReq(handler);
  xmlhttp.open('GET', url + "&rand=" + UniqueNum(), true);
  xmlhttp.send(null);
}

// Send a post request to the server
function StartPOSTRequest(url, data, handler) {
  var xmlhttp = CreateXmlHttpReq(handler);
  xmlhttp.open('POST', url, true);
  xmlhttp.send(data);
}

//--></script>
<script language="javascript1.2"><!--

//--></script>
<script language="javascript"><!--
function sf() {}
function ad_resize() {}
function qs() {}
//--></script>
<script language="javascript1.2"><!--
function sf() {
    document.gs.q.focus();
}
function ad_resize(w, h) {
  if (document.getElementById){  
    document.getElementById("google_ads_frame").style.height = h;
    document.getElementById("google_ads_frame").style.width = w; 
  }
}

//--></script>
</head>
<body  onresize="" onload="" topmargin=3 marginheight=3 bgcolor=white >
<table cellpadding=0 cellspacing=0 width=100% border=0>
<tr>
<td width=1% nowrap>
</td>
<td align=right>
         <font size=-1>
         <a  href="/">Home page dos grupos</a> |
  <a target="_blank" href="/support?hl=pt_BR">Ajuda</a> | <A  target=_top href="https://www.google.com/groups/signin?q=1&cd=US&hl=pt-BR&_done=http:%2F%2Fgroups.google.com%2Fgroup%2Fcomp.os.linux.development%2Fmsg%2Fa32d4e2ef3bcdcc6%3Foutput%3Dgplain">Acessar</a>
        </font>
        </td>
  </tr>
  <tr height=4><td><img src="/img/dot_clear.gif" alt="" height=1 width=1></td></tr>
</table>
<table cellpadding=0 cellspacing=0 border=0>
<tr>
  <td valign=top> <a  href="/"><img src="/groups/img/groups_medium_pt-BR.gif" width=150 height=58 alt="Go to Google Groups Home" border=0 vspace=3></a>
  </td>
<td>&nbsp;&nbsp;</td>
<td valign=top>
<table cellpadding=0 cellspacing=0 border=0>
<tr>
<td height=14 valign=bottom>
<script><!--
function qs(el) {if (window.RegExp && window.encodeURIComponent) {var ue=el.href;var qe=encodeURIComponent(document.gs.q.value);if(ue.indexOf("q=")!=-1){el.href=ue.replace(new RegExp("q=[^&$]*"),"q="+qe);}else{el.href=ue+"&q="+qe;}}return 1;}
// -->
</script><table border=0 cellpadding=4 cellspacing=0><tr><td class=q><font size=-1><a id=t0a class=q href="http://www.google.com/search?output=gplain&sa=N&tab=gw" onClick="return qs(this);">Web</a>&nbsp;&nbsp;&nbsp;&nbsp;<a id=t1a class=q href="http://images.google.com/images?output=gplain&sa=N&tab=gi" onClick="return qs(this);">Imagens</a>&nbsp;&nbsp;&nbsp;&nbsp;<font color=#000000><b>Grupos</b></font>&nbsp;&nbsp;&nbsp;&nbsp;<a id=t3a class=q href="http://www.google.com/search?output=gplain&cat=gwd/Top&sa=N&tab=gd" onClick="return qs(this);">Diretório</a>&nbsp;&nbsp;&nbsp;&nbsp;</font></td></tr></table>
</td>
</tr>
<tr>
<td>
<table cellpadding=0 cellspacing=0 border=0>
<tr>
<td nowrap>
<form name=gs method=GET action=/groups>
<input  type=text name=q size=41 maxlength=2048 value=""><font size=-1>
<input type="submit" name="qt_s" value="Pesquisar"></td>
<td nowrap><font size=-2>&nbsp;&nbsp;<a  href="/advanced_search?q=&"><nobr>Pesquisa de grupos avançada</nobr></a><br>&nbsp;&nbsp;<a  href="http://www.google.com/preferences?hl=pt-BR&prev=http://groups.google.com%2Fgroup%2Fcomp.os.linux.development%2Fmsg%2Fa32d4e2ef3bcdcc6%3Foutput%3Dgplain">Preferências</a></font> </td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</form>
</table>
<script language="javascript"><!--
// Shelled functions for javascript compatibility
function c() {}
function op() {}
function rl() {}
function tog_quote() {}
//--></script>
<script language="javascript1.2"><!--

function c( idnum ) {        //cancel a message -- clear text and toggle the reply box. slight delay gives user time to perceive that text is being cleared.
  document.getElementById( 't'+idnum ).value="";
  func = "rl( '" + idnum + "' )";
  window.setTimeout( func, 300 );
}

function op( idnum )  // hide/show headers
{
  optionLink = document.getElementById( 'o'+idnum );
  x = tog('block', 'h'+idnum );
  
  if( optionLink.innerHTML.indexOf( "mostrar opções" ) != -1 ) 
  {
    optionLink.innerHTML = "ocultar opções";
  } else {
    optionLink.innerHTML = "mostrar opções";
  }
  optionLink.blur();
  return x;
}

function rl( idnum ) {  //function to toggle "reply" link; gets rid of annoying linkfocus & toggles ticks
  replyblockid = 'r' + idnum;
  textareaObj = document.getElementById( 't'+idnum );
  linkobj = document.getElementById( 'lo'+idnum );
  x = tog('block', replyblockid);
  
  visible = document.getElementById( replyblockid ).style.display;
  tick = document.getElementById( 'ti'+idnum );
  if( visible == "none" ) {
    linkobj.blur();
    tick.src = "/img/r.gif";
  } else {
    textareaObj.focus();
    tick.src = "/img/d.gif";
  }
  return x;
}

function tog_quote( idnum ) {
  x = tog( 'block', 'qheader_shown_' + idnum, 'qheader_hidden_' + idnum,
           'qhide_' + idnum );
  

  return x;
}

//--></script>
<div style="margin-left:15; margin-right:15;">
<div style="padding:3 3 3 3;background:#FFF7D7;border-top:1px solid #FFCC33;border-bottom:1px solid #FFCC33;">
<b><a  href="/group/comp.os.linux.development">comp.os.linux.development</a> &gt; <a  href="/group/comp.os.linux.development/browse_thread/thread/31ddcca1dce0e535/a32d4e2ef3bcdcc6#a32d4e2ef3bcdcc6">New release under development; suggestions requested</a></b>
</div>
<table border=0 cellspacing=0 cellpadding=0 align=right width=25% id="rn">
<tr valign=top>
<td width=8%><img id="rn_image" height=300 width=1 border=0 src="/img/dot_clear.gif" alt=""></td>
<td>
  <table width="100%" border="0" cellpadding="2" cellspacing="0">
  <tr>
  <td align="right">
  <a class=fixed_width href="http://groups.google.com/group/comp.os.linux.development/msg/a32d4e2ef3bcdcc6?output=gplain&fwc=1">Fonte fixa</a> - <b>Fonte proporcional</b>
  </td>
  </tr>
  </table>
</td></tr>
</table>
  <table class=mo id=hdropeneda32d4e2ef3bcdcc6 width=100% cellspacing=0 cellpadding=2 border=0>
  <tr>
  <td  title="Ian A Murdock <imurd...@shell.portal.com>" bgcolor=#B71C0C class=oa nowrap width=1% ><b><font color=#ffffff>Ian A Murdock</font></b></td>
  <td>&nbsp; 16 ago 1993 10:09 &nbsp; &nbsp; <span class=noscripthide><a href="#" id=oa32d4e2ef3bcdcc6 onclick="return op('a32d4e2ef3bcdcc6');" class=f>mostrar opções</a></span></td>
  </tr>
  </table>
  <div id="ha32d4e2ef3bcdcc6" class=scripthide>
  <table cellspacing=0 cellpadding=2 border="0" width="100%" bgcolor="#e8e8e8">
  <tr><td>Grupos de notícias: <b>comp.os.linux.development</b></td></tr>
  <tr><td>De: <span><b>imurd<a target=_parent href="/groups/unlock?msg=a32d4e2ef3bcdcc6&_done=/group/comp.os.linux.development/msg/a32d4e2ef3bcdcc6%3Foutput%3Dgplain">...</a>@shell.portal.com (Ian A Murdock)</b></span> - <a  href="/groups?enc_author=hZKjWBkAAABnq0rwjS4UJWoe5sucbdjxL_xQmtCGrXA7NAGTPqTiWQ" target=_top>Localizar mensagens deste autor</a> </td></tr>
  <tr><td>Data: <b>Mon, 16 Aug 1993 13:05:37 GMT</b></td></tr>
  <tr><td>Local: <b>Seg 16 ago 1993 10:05</b> </td></tr>
  <tr><td>Assunto: <b>New release under development; suggestions requested</b></td></tr>
  <tr>
  <td class=ar><font size=-1>
  <a  target=_top href="/group/comp.os.linux.development/post?inreplyto=a32d4e2ef3bcdcc6&reply_to=author&_done=%2Fgroup%2Fcomp.os.linux.development%2Fmsg%2Fa32d4e2ef3bcdcc6%3Foutput%3Dgplain%26&">Responder ao autor</a> | <a  target=_top href="/group/comp.os.linux.development/post?inreplyto=a32d4e2ef3bcdcc6&forward=1&_done=%2Fgroup%2Fcomp.os.linux.development%2Fmsg%2Fa32d4e2ef3bcdcc6%3Foutput%3Dgplain%26&">Encaminhar</a> | <a  target=_blank href="/group/comp.os.linux.development/msg/a32d4e2ef3bcdcc6?dmode=print">Imprimir</a>
         | <a  href="/group/comp.os.linux.development/browse_thread/thread/31ddcca1dce0e535/a32d4e2ef3bcdcc6#a32d4e2ef3bcdcc6" target=_parent>Ver encadeamento</a>
  | <a  target=_blank href="/group/comp.os.linux.development/msg/a32d4e2ef3bcdcc6?dmode=source">Mostrar original</a>
  | <a  target=_blank href="/groups/abuse?group=comp.os.linux.development&url=http:%2F%2Fgroups.google.com%2Fgroup%2Fcomp.os.linux.development%2Fmsg%2Fa32d4e2ef3bcdcc6">Comportamento abusivo - Denuncie</a> </td>
  </tr>
  </table>
  </div>
  <div class=mbody id=mbodya32d4e2ef3bcdcc6>
  <p>
  <a name="msg_a32d4e2ef3bcdcc6"></a><p>Fellow Linuxers, <br> <p>This is just to announce the imminent completion of a brand-new Linux release, <br> which I'm calling the Debian Linux Release. &nbsp;This is a release that I have put <br> together basically from scratch; in other words, I didn't simply make some <br> changes to SLS and call it a new release. &nbsp;I was inspired to put together this <br> release after running SLS and generally being dissatisfied with much of it, <br> and after much altering of SLS I decided that it would be easier to start <br> from scratch. &nbsp;The base system is now virtually complete (though I'm still <br> looking around to make sure that I grabbed the most recent sources for <br> everything), and I'd like to get some feedback before I add the &quot;fancy&quot; stuff. <br> <p>Please note that this release is not yet completed and may not be for several <br> more weeks; however, I thought I'd post now to perhaps draw a few people out <br> of the woodwork. &nbsp;Specifically, I'm looking for: <br> <p>&nbsp; &nbsp; &nbsp; &nbsp; 1) someone who will eventually be willing to allow me to upload the <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; release to their anonymous ftp-site. &nbsp;Please contact me. <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Be warned that it will be rather large :) <br> <p>&nbsp; &nbsp; &nbsp; &nbsp; 2) comments, suggestions, advice, etc. from the Linux community. &nbsp;This <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; is your chance to suggest specific packages, series, or <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; anything you'd like to see part of the final release. <br> <p>Don't assume that because a package is in SLS that it will necessarily be <br> included in the Debian release! &nbsp;Things like ls and cat are a given, but if <br> there's anything that's in SLS that you couldn't live without please let me <br> know! <br> <p>I'd also like suggestions for specific features for the release. &nbsp;For example, <br> a friend of mine here suggested that undesired packages should be selected <br> BEFORE the installation procedure begins so the installer doesn't have to <br> babysit the installation. &nbsp;Suggestions along that line are also welcomed. <br> <p>What will make this release better than SLS? &nbsp;This: <br> <p>&nbsp; &nbsp; &nbsp; &nbsp; 1) Debian will be sleeker and slimmer. &nbsp;No more multiple binaries and <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; manpages. <br> &nbsp; &nbsp; &nbsp; &nbsp; 2) Debian will contain the most up-to-date of everything. &nbsp;The system <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; will be easy to keep up-to-date with a 'upgrading' script in <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; the base system which will allow complete integration of <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; upgrade packages. <br> &nbsp; &nbsp; &nbsp; &nbsp; 3) Debian will contain a installation procedure that doesn't need to <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; be babysat; simply install the basedisk, copy the distribution <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; disks to the harddrive, answer some question about what <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; packages you want or don't want installed, and let the machine <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; install the release while you do more interesting things. <br> &nbsp; &nbsp; &nbsp; &nbsp; 4) Debian will contain a system setup procedure that will attempt to <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; setup and configure everything from fstab to Xconfig. <br> &nbsp; &nbsp; &nbsp; &nbsp; 5) Debian will contain a menu system that WORKS... menu-driven <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; package installation and upgrading utility, menu-driven <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; system setup, menu-driven help system, and menu-driven <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; system administration. <br> &nbsp; &nbsp; &nbsp; &nbsp; 6) Debian will make Linux easier for users who don't have access to the <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Internet. &nbsp;Currently, users are stuck with whatever comes with <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SLS. &nbsp;Non-Internet users will have the option of receiving <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; periodic upgrade packages to apply to their system. &nbsp;They will <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; also have the option of selecting from a huge library of <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; additional packages that will not be included in the base <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; system. &nbsp;This library will contain packages like the S3 <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; X-server, nethack and Seyon; basically packages that you and I <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; can ftp but non-netters cannot access. <br> &nbsp; &nbsp; &nbsp; &nbsp; 7) Debian will be extensively documented (more than just a few <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; READMEs). <br> &nbsp; &nbsp; &nbsp; &nbsp; 8) As I put together Debian, I am keeping a meticulous record of <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; where I got everything. &nbsp;This will allow the end-user to <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; not only know where to get the source, but whether or not <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; the most recent version is a part of Debian. &nbsp;This record <br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; will help to keep the Debian release as up-to-date as possible. <br> &nbsp; &nbsp; &nbsp; &nbsp; 9) Lots more, but I'll detail later... <br> <p>Anyway, I'll provide more specifics in a week or so after I receive enough <br> replies. <br> <p>Please, all replies by mail. &nbsp;I'll post a followup. &nbsp;If you wish to discuss <br> this in the newsgroup, please don't turn it into a flamewar. :) <br> <p>Until later, <br> <p>Ian <br> -- <br> Ian Murdock &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Internet: imurd<a target=_parent href="/groups/unlock?msg=a32d4e2ef3bcdcc6&_done=/group/comp.os.linux.development/msg/a32d4e2ef3bcdcc6%3Foutput%3Dgplain">...</a>@shell.portal.com <br> The Linux Warehouse <br> <p>Please mail me for more information on the status of the Debian Linux Release. <br>
  </div>
<Table width=100% cellspacing=0 cellpadding=0>
<tr><td bgcolor=#ffcc33><img height=1 src="/groups/img/dot_clear.gif"></td></tr>
</table>
<table width="100%" border="0" cellpadding="4" cellspacing="0">
  <tr valign=center>
  <td align="center" style="padding-right: 1em;"> <a href="http://www.google.com/webhp?hl=pt-BR">Página inicial do Google</a> - <a href="/intl/pt-BR/googlegroups/terms_of_service.html">Termos de Uso</a> - <a href="http://www.google.com/intl/pt-BR/privacy.html">Política de Privacidade</a> - <a href="http://www.google.com/intl/pt-BR/about.html">Empregos, Imprensa &amp; Ajuda</a></td>
  </tr>
</table>
<p align="center"><font size="-2">©2005 Google</font></p>
<script language="javascript"><!--

if( loaddef != "" ) {
  window.onload=new Function( loaddef );
}
if( resizedef != "" ) {
  window.onresize = new Function( resizedef );
}
//--></script>
</body>
</html>
</div>