<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel about="http://permalink.gmane.org/gmane.linux.colinux.devel">
    <title>gmane.linux.colinux.devel</title>
    <link>http://permalink.gmane.org/gmane.linux.colinux.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.colinux.devel/4051"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.colinux.devel/4050"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.colinux.devel/4049"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.colinux.devel/4048"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.colinux.devel/4047"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.colinux.devel/4046"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.colinux.devel/4045"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.colinux.devel/4044"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.colinux.devel/4043"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.colinux.devel/4042"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.colinux.devel/4041"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.colinux.devel/4040"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.colinux.devel/4039"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.colinux.devel/4038"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.colinux.devel/4037"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.colinux.devel/4036"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.colinux.devel/4035"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.colinux.devel/4034"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.colinux.devel/4033"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.colinux.devel/4032"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.colinux.devel/4051">
    <title>[ colinux-Bugs-2357595 ] Some network card can'twork well with ndis-bridge</title>
    <link>http://permalink.gmane.org/gmane.linux.colinux.devel/4051</link>
    <description>Bugs item #2357595, was opened at 2008-11-29 02:59
Message generated for change (Comment added) made by nobody
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;atid=622063&amp;aid=2357595&amp;group_id=98788

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: v0.8.x (devel)
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: Some network card can't work well with ndis-bridge

Initial Comment:
"Atheros AR8121/AR8113/AR8114 PCI-E Ethernet Controller", this card is integrated with asus p5q-se motherboard(I have updated to the latest driver), ping between the host and the colinux will hang the host(but arping works well). 

I also tested another card "Realtek RTL8168C(P)/8111C(P) PCI-E Gigabit Ethernet NIC", it is integrated with giga ep31 motherboard, but it did not have th</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2008-12-04T07:15:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.colinux.devel/4050">
    <title>patch for cocon for permit resize of console</title>
    <link>http://permalink.gmane.org/gmane.linux.colinux.devel/4050</link>
    <description>Hi Henry,
I understand the oops of stty rows=nn cols=mm.

The problem was the return of

==&gt;File CoCon.c , function cocon_set_origin
This function must return 0, not 1 !

See drivers/char/vt.c, function set_origin.
vc-&gt;vc_origin must be the same of vc-&gt;vc_origin.
The easier way is that the if statement is true, that is a condition
in the brackets.

I have studied a lot the problem and in my opinion this is the best
way, so we cannot touch other files. I have tried a script that
continues to resize severla consoles and for me now all is OK.
Before that I wrote this patch, I had a oops after few seconds.


==&gt;File CoCon.c , function cocon_resize
if (width&gt;MAX_CONSOLE_SIZE_X || heught&gt;MAX_CONSOLE_SIZE_Y)
{
    return -EINVAL;
}
return 0;

Now, with the latest versions it is possible to say at startup the
console size, so my MAX_CONSOLE_SIZE_X and MAX_CONSOLE_Y are those
chosen by the user.
For now I have these as #define, so I cannot indicate exactly how
write this code.

Bye,
Paolo

---------------------------</description>
    <dc:creator>Paolo Minazzi</dc:creator>
    <dc:date>2008-12-03T16:22:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.colinux.devel/4049">
    <title>[ colinux-Bugs-2357595 ] Some network card can'twork well with ndis-bridge</title>
    <link>http://permalink.gmane.org/gmane.linux.colinux.devel/4049</link>
    <description>Bugs item #2357595, was opened at 2008-11-29 02:59
Message generated for change (Comment added) made by nobody
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;atid=622063&amp;aid=2357595&amp;group_id=98788

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: v0.8.x (devel)
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: Some network card can't work well with ndis-bridge

Initial Comment:
"Atheros AR8121/AR8113/AR8114 PCI-E Ethernet Controller", this card is integrated with asus p5q-se motherboard(I have updated to the latest driver), ping between the host and the colinux will hang the host(but arping works well). 

I also tested another card "Realtek RTL8168C(P)/8111C(P) PCI-E Gigabit Ethernet NIC", it is integrated with giga ep31 motherboard, but it did not have th</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2008-12-02T21:21:33</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.colinux.devel/4048">
    <title>[ colinux-Bugs-2357595 ] Some network card can'twork well with ndis-bridge</title>
    <link>http://permalink.gmane.org/gmane.linux.colinux.devel/4048</link>
    <description>Bugs item #2357595, was opened at 2008-11-29 02:59
Message generated for change (Comment added) made by nobody
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;atid=622063&amp;aid=2357595&amp;group_id=98788

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: v0.8.x (devel)
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: Some network card can't work well with ndis-bridge

Initial Comment:
"Atheros AR8121/AR8113/AR8114 PCI-E Ethernet Controller", this card is integrated with asus p5q-se motherboard(I have updated to the latest driver), ping between the host and the colinux will hang the host(but arping works well). 

I also tested another card "Realtek RTL8168C(P)/8111C(P) PCI-E Gigabit Ethernet NIC", it is integrated with giga ep31 motherboard, but it did not have th</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2008-12-01T14:25:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.colinux.devel/4047">
    <title>[ colinux-Bugs-2357595 ] Some network card can'twork well with ndis-bridge</title>
    <link>http://permalink.gmane.org/gmane.linux.colinux.devel/4047</link>
    <description>Bugs item #2357595, was opened at 2008-11-29 02:59
Message generated for change (Comment added) made by nobody
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;atid=622063&amp;aid=2357595&amp;group_id=98788

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: v0.8.x (devel)
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: Some network card can't work well with ndis-bridge

Initial Comment:
"Atheros AR8121/AR8113/AR8114 PCI-E Ethernet Controller", this card is integrated with asus p5q-se motherboard(I have updated to the latest driver), ping between the host and the colinux will hang the host(but arping works well). 

I also tested another card "Realtek RTL8168C(P)/8111C(P) PCI-E Gigabit Ethernet NIC", it is integrated with giga ep31 motherboard, but it did not have th</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2008-12-01T13:42:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.colinux.devel/4046">
    <title>autobuild org.colinux.devel 20081130 23:03:20</title>
    <link>http://permalink.gmane.org/gmane.linux.colinux.devel/4046</link>
    <description>The autobuild system has detected a new revision in the source repository.
Review last changed from changelog.txt, also attached in mail.

Download the compiled version:
http://www.henrynestler.com/colinux/autobuild/devel-20081130/

 colinux-0.8.0-20081130.src.tgz  (694335 Bytes)
 daemons-0.8.0-20081130.dbg.zip  (595192 Bytes)
 daemons-0.8.0-20081130.zip  (480551 Bytes)

Note, the autobuild compilation does not include an installer.
Remember to reload the driver with these commands:

colinux-daemon.exe --remove-driver
colinux-daemon.exe --install-driver

The vmlinux and modules are up to date. Please use last version from
http://www.henrynestler.com/colinux/autobuild/devel-20081129/

The autobuild compilations are not official releases of Cooperative Linux
software.  There is no warranty that any autobuild version is stable.  If
use this autobuild version, please give us feedback of your experience.

Job runs on machine with 64 bit version of gcc 4.1.2.
A service from http://gcc.gnu.org/wiki/CompileFarm

</description>
    <dc:creator>coLinux autobuild</dc:creator>
    <dc:date>2008-12-01T05:06:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.colinux.devel/4045">
    <title>[ colinux-Bugs-2152550 ] rsync cannot set mtimecorrectly on cofs</title>
    <link>http://permalink.gmane.org/gmane.linux.colinux.devel/4045</link>
    <description>Bugs item #2152550, was opened at 2008-10-08 05:29
Message generated for change (Settings changed) made by henryn
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;atid=622063&amp;aid=2152550&amp;group_id=98788

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: v0.8.x (devel)
Resolution: Fixed
Priority: 5
Private: No
Submitted By: Xuefer (xuefer)
Assigned to: Henry N. (henryn)
Summary: rsync cannot set mtime correctly on cofs

Initial Comment:
$ cd ~
(native mount, non-cofs, good result)
$ rm -f a b; touch -d 1970-1-1 a ; rsync -a a b;  ls --full-time a b ; rm -f a b-rw-r--r-- 1 xuefer xuefer 0 1970-01-01 00:00:00.000000000 +0800 a
-rw-r--r-- 1 xuefer xuefer 0 1970-01-01 00:00:00.000000000 +0800 b

$ cd /c/tmp
(cofs mount, wrong result)
$ rm -f a b; touch -d 1970-1-1 a ; rsync -a a b;  ls --full-time a b ; rm -f a b-rwxr-xr-x 1 xuefer users 0 1970-01-01 00:0</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2008-11-30T23:23:24</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.colinux.devel/4044">
    <title>[ colinux-Bugs-2357595 ] Some network card can'twork well with ndis-bridge</title>
    <link>http://permalink.gmane.org/gmane.linux.colinux.devel/4044</link>
    <description>Bugs item #2357595, was opened at 2008-11-29 03:59
Message generated for change (Comment added) made by henryn
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;atid=622063&amp;aid=2357595&amp;group_id=98788

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: v0.8.x (devel)
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: Some network card can't work well with ndis-bridge

Initial Comment:
"Atheros AR8121/AR8113/AR8114 PCI-E Ethernet Controller", this card is integrated with asus p5q-se motherboard(I have updated to the latest driver), ping between the host and the colinux will hang the host(but arping works well). 

I also tested another card "Realtek RTL8168C(P)/8111C(P) PCI-E Gigabit Ethernet NIC", it is integrated with giga ep31 motherboard, but it did not have th</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2008-11-30T23:16:33</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.colinux.devel/4043">
    <title>[ colinux-Bugs-2365031 ] NDIS bridge with AOEsupport?</title>
    <link>http://permalink.gmane.org/gmane.linux.colinux.devel/4043</link>
    <description>Bugs item #2365031, was opened at 2008-11-30 16:39
Message generated for change (Comment added) made by henryn
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;atid=622063&amp;aid=2365031&amp;group_id=98788

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Daemons (Windows)
Group: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: NDIS bridge with AOE support?

Initial Comment:
Please add AOE (ATA over ethernet), ethernet type 0x88A2 to NDIS bridge filter. pcap-bridge is too sloww..... to use, NDIS bridge is good, but only forward ARP and IP packets.

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

Date: 2008-12-01 00:13

Message:
This is similar to Bug #2357494.

The new filter rule is "(ether dst mac) or (ether broadcast)".
More the same as under pcap-bridge. Only multicast hav</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2008-11-30T23:13:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.colinux.devel/4042">
    <title>[ colinux-Bugs-2357494 ] ndis-bridge can't workwell with pppoe</title>
    <link>http://permalink.gmane.org/gmane.linux.colinux.devel/4042</link>
    <description>Bugs item #2357494, was opened at 2008-11-29 03:12
Message generated for change (Comment added) made by henryn
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;atid=622063&amp;aid=2357494&amp;group_id=98788

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: v0.8.x (devel)
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: ndis-bridge can't work well with pppoe

Initial Comment:
I tried to use pppoe in colinux, but pppoeconf can't find modem when using ndis-bridge, changing to pcap-bridge did not have this problem

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

Date: 2008-12-01 00:10

Message:
The new filter rule is "(ether dst mac) or (ether broadcast)".
More the same as under pcap-bridge. Only multicast have not enabled.

I was able to use pppoeconf and a connection was e</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2008-11-30T23:10:43</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.colinux.devel/4041">
    <title>[ colinux-Bugs-2357494 ] ndis-bridge can't workwell with pppoe</title>
    <link>http://permalink.gmane.org/gmane.linux.colinux.devel/4041</link>
    <description>Bugs item #2357494, was opened at 2008-11-29 02:12
Message generated for change (Comment added) made by nobody
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;atid=622063&amp;aid=2357494&amp;group_id=98788

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: v0.8.x (devel)
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: ndis-bridge can't work well with pppoe

Initial Comment:
I tried to use pppoe in colinux, but pppoeconf can't find modem when using ndis-bridge, changing to pcap-bridge did not have this problem

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

Comment By: Nobody/Anonymous (nobody)
Date: 2008-11-30 15:44

Message:
Yes, ndis-bridge only support ARP/IP protocol. It doesn't support AOE (in
my case) &amp; PPPOE.

----------------------</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2008-11-30T15:44:46</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.colinux.devel/4040">
    <title>[ colinux-Bugs-2365031 ] NDIS bridge with AOEsupport?</title>
    <link>http://permalink.gmane.org/gmane.linux.colinux.devel/4040</link>
    <description>Bugs item #2365031, was opened at 2008-11-30 15:39
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;atid=622063&amp;aid=2365031&amp;group_id=98788

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Daemons (Windows)
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: NDIS bridge with AOE support?

Initial Comment:
Please add AOE (ATA over ethernet), ethernet type 0x88A2 to NDIS bridge filter. pcap-bridge is too sloww..... to use, NDIS bridge is good, but only forward ARP and IP packets.

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

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;atid=622063&amp;aid=2365031&amp;group_id=98788

----------------------</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2008-11-30T15:39:47</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.colinux.devel/4039">
    <title>autobuild org.colinux.devel 20081129 23:25:06</title>
    <link>http://permalink.gmane.org/gmane.linux.colinux.devel/4039</link>
    <description>The autobuild system has detected a new revision in the source repository.
Review last changed from changelog.txt, also attached in mail.

Download the compiled version:
http://www.henrynestler.com/colinux/autobuild/devel-20081129/

 colinux-0.8.0-20081129.src.tgz  (694348 Bytes)
 daemons-0.8.0-20081129.dbg.zip  (595212 Bytes)
 daemons-0.8.0-20081129.zip  (480570 Bytes)
 modules-2.6.22.18-co-0.8.0-20081129.tgz  (2603040 Bytes)
 vmlinux-2.6.22.18-co-0.8.0-20081129.zip  (1762481 Bytes)

Note, the autobuild compilation does not include an installer.
Remember to reload the driver with these commands:

colinux-daemon.exe --remove-driver
colinux-daemon.exe --install-driver

Inside coLinux please update modules as follow:

rm -rf /lib/modules/*-co-*
tar -xzf modules-*-co-*-20081129.tgz -C /

The autobuild compilations are not official releases of Cooperative Linux
software.  There is no warranty that any autobuild version is stable.  If
use this autobuild version, please give us feedback of your experience.

Jo</description>
    <dc:creator>coLinux autobuild</dc:creator>
    <dc:date>2008-11-30T05:11:22</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.colinux.devel/4038">
    <title>[ colinux-Feature Requests-1591412 ] 64bit colinuxto run on Windows Server 2003 64 bit</title>
    <link>http://permalink.gmane.org/gmane.linux.colinux.devel/4038</link>
    <description>Feature Requests item #1591412, was opened at 2006-11-06 15:55
Message generated for change (Comment added) made by henryn
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;atid=622066&amp;aid=1591412&amp;group_id=98788

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: 64bit colinux to run on Windows Server 2003 64 bit

Initial Comment:
Would anybody have a build of 64bit colinux to run on 
Windows Server 2003 64 bit?

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

Date: 2008-11-30 01:38

Message:
Have started a Dashboard for 64 bit in the Wiki:
http://colinux.wikia.com/wiki/Dashboard_for_developing_a_64_bit_coLinux

Developers wanted!

This is not a Bug, I move it to Feature Request now.


--------------</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2008-11-30T00:38:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.colinux.devel/4037">
    <title>[ colinux-Bugs-2359423 ] cofs: "rm -r" fails ondirectories with more as 200 files</title>
    <link>http://permalink.gmane.org/gmane.linux.colinux.devel/4037</link>
    <description>Bugs item #2359423, was opened at 2008-11-29 18:54
Message generated for change (Settings changed) made by henryn
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;atid=622063&amp;aid=2359423&amp;group_id=98788

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Henry N. (henryn)
Assigned to: Nobody/Anonymous (nobody)

Initial Comment:
If a directory has more as 200 entries the call "rm -r testdir" fails with:

rm: cannot remove `testdir/file-000.tmp': No such file or directory
rm: cannot remove `testdir/file-001.tmp': No such file or directory
rm: cannot remove `testdir/file-002.tmp': No such file or directory
...
rm: cannot remove `testdir/file-200.tmp': No such file or directory


A "rm -rf testdir" on such directories goes in an endless loop with full cpu load. The rm command can sim</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2008-11-30T00:31:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.colinux.devel/4036">
    <title>[ colinux-Bugs-2176188 ] file sync wrong on cofs,command after mv/rename fails</title>
    <link>http://permalink.gmane.org/gmane.linux.colinux.devel/4036</link>
    <description>Bugs item #2176188, was opened at 2008-10-18 09:20
Message generated for change (Comment added) made by henryn
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;atid=622063&amp;aid=2176188&amp;group_id=98788

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: v0.8.x (devel)
Status: Open
Resolution: Fixed
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Henry N. (henryn)
Summary: file sync wrong on cofs, command after mv/rename fails

Initial Comment:
I found some problem in cofs filesystem.
ex:
mv t1 t2
stat t2

many times I got "t2 not found".
it see like the second command exec before the first finished.


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

Date: 2008-11-30 01:30

Message:
The d_move patch was replaced by inode_rename patch on host side,
see SVN revision r1148 + r1149.


----------------------</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2008-11-30T00:30:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.colinux.devel/4035">
    <title>[ colinux-Bugs-2359423 ] cofs: "rm -r" fails ondirectories more as 200 files</title>
    <link>http://permalink.gmane.org/gmane.linux.colinux.devel/4035</link>
    <description>Bugs item #2359423, was opened at 2008-11-29 18:54
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;atid=622063&amp;aid=2359423&amp;group_id=98788

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Henry N. (henryn)
Assigned to: Nobody/Anonymous (nobody)
Summary: cofs: "rm -r" fails on directories more as 200 files

Initial Comment:
If a directory has more as 200 entries the call "rm -r testdir" fails with:

rm: cannot remove `testdir/file-000.tmp': No such file or directory
rm: cannot remove `testdir/file-001.tmp': No such file or directory
rm: cannot remove `testdir/file-002.tmp': No such file or directory
...
rm: cannot remove `testdir/file-200.tmp': No such file or directory


A "rm -rf testdir" on such di</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2008-11-29T17:54:46</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.colinux.devel/4034">
    <title>autobuild org.colinux.devel 20081128 23:06:21</title>
    <link>http://permalink.gmane.org/gmane.linux.colinux.devel/4034</link>
    <description>The autobuild system has detected a new revision in the source repository.
Review last changed from changelog.txt, also attached in mail.

Download the compiled version:
http://www.henrynestler.com/colinux/autobuild/devel-20081128/

 colinux-0.8.0-20081128.src.tgz  (693994 Bytes)
 daemons-0.8.0-20081128.dbg.zip  (594944 Bytes)
 daemons-0.8.0-20081128.zip  (480307 Bytes)

Note, the autobuild compilation does not include an installer.
Remember to reload the driver with these commands:

colinux-daemon.exe --remove-driver
colinux-daemon.exe --install-driver

The vmlinux and modules are up to date. Please use last version from
http://www.henrynestler.com/colinux/autobuild/devel-20081112/

The autobuild compilations are not official releases of Cooperative Linux
software.  There is no warranty that any autobuild version is stable.  If
use this autobuild version, please give us feedback of your experience.

Job runs on machine with 64 bit version of gcc 4.1.2.
A service from http://gcc.gnu.org/wiki/CompileFarm

</description>
    <dc:creator>coLinux autobuild</dc:creator>
    <dc:date>2008-11-29T05:07:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.colinux.devel/4033">
    <title>[ colinux-Bugs-2357595 ] Some network card can'twork well with ndis-bridge</title>
    <link>http://permalink.gmane.org/gmane.linux.colinux.devel/4033</link>
    <description>Bugs item #2357595, was opened at 2008-11-29 02:59
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;atid=622063&amp;aid=2357595&amp;group_id=98788

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: v0.8.x (devel)
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: Some network card can't work well with ndis-bridge

Initial Comment:
"Atheros AR8121/AR8113/AR8114 PCI-E Ethernet Controller", this card is integrated with asus p5q-se motherboard(I have updated to the latest driver), ping between the host and the colinux will hang the host(but arping works well). 

I also tested another card "Realtek RTL8168C(P)/8111C(P) PCI-E Gigabit Ethernet NIC", it is integrated with giga ep31 motherboard, but i</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2008-11-29T02:59:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.colinux.devel/4032">
    <title>[ colinux-Bugs-2357494 ] ndis-bridge can't workwell with pppoe</title>
    <link>http://permalink.gmane.org/gmane.linux.colinux.devel/4032</link>
    <description>Bugs item #2357494, was opened at 2008-11-29 02:12
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;atid=622063&amp;aid=2357494&amp;group_id=98788

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: v0.8.x (devel)
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: ndis-bridge can't work well with pppoe

Initial Comment:
I tried to use pppoe in colinux, but pppoeconf can't find modem when using ndis-bridge, changing to pcap-bridge did not have this problem

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

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;atid=622063&amp;aid=2357494&amp;group_id=98788

------------------------------------------------------</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2008-11-29T02:12:21</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.colinux.devel/4031">
    <title>[ colinux-Feature Requests-2025225 ] Support forWindows x64</title>
    <link>http://permalink.gmane.org/gmane.linux.colinux.devel/4031</link>
    <description>Feature Requests item #2025225, was opened at 2008-07-23 02:16
Message generated for change (Comment added) made by henryn
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;atid=622066&amp;aid=2025225&amp;group_id=98788

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: Support for Windows x64

Initial Comment:
All the machines in our office are running either Vista x64 or Server 2008 x64 and thus I can't use coLinux on my desktop despite really wanting to.

Obviously there are driver signing issues to work through.  Requiring the user to self-sign is not necessarily a blocker, at least for us.


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

Date: 2008-11-28 00:06

Message:
Have started a Dashboard for 64</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2008-11-27T23:06:33</dc:date>
  </item>
  <textinput about="http://search.gmane.org/?group=$group=gmane.linux.colinux.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.linux.colinux.devel</link>
  </textinput>
</rdf:RDF>
