You can subscribe to this list here.
2004 |
Jan
(64) |
Feb
(530) |
Mar
(266) |
Apr
(580) |
May
(360) |
Jun
(161) |
Jul
(185) |
Aug
(164) |
Sep
(123) |
Oct
(160) |
Nov
(59) |
Dec
(84) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(156) |
Feb
(95) |
Mar
(124) |
Apr
(81) |
May
(79) |
Jun
(179) |
Jul
(35) |
Aug
(64) |
Sep
(56) |
Oct
(57) |
Nov
(18) |
Dec
(41) |
2006 |
Jan
(65) |
Feb
(37) |
Mar
(59) |
Apr
(73) |
May
(65) |
Jun
(27) |
Jul
(54) |
Aug
(76) |
Sep
(103) |
Oct
(23) |
Nov
(45) |
Dec
(29) |
2007 |
Jan
(41) |
Feb
(47) |
Mar
(61) |
Apr
(24) |
May
(14) |
Jun
(6) |
Jul
(23) |
Aug
(30) |
Sep
(16) |
Oct
(9) |
Nov
(53) |
Dec
(36) |
2008 |
Jan
(19) |
Feb
(49) |
Mar
(74) |
Apr
(21) |
May
(24) |
Jun
(5) |
Jul
(9) |
Aug
(53) |
Sep
(26) |
Oct
(23) |
Nov
(32) |
Dec
(19) |
2009 |
Jan
(47) |
Feb
(49) |
Mar
(39) |
Apr
(61) |
May
(28) |
Jun
(19) |
Jul
(12) |
Aug
(10) |
Sep
(31) |
Oct
(16) |
Nov
(60) |
Dec
(26) |
2010 |
Jan
(17) |
Feb
(9) |
Mar
(32) |
Apr
(11) |
May
(24) |
Jun
(33) |
Jul
(5) |
Aug
(2) |
Sep
(7) |
Oct
(8) |
Nov
(17) |
Dec
(7) |
2011 |
Jan
(12) |
Feb
(16) |
Mar
(2) |
Apr
(12) |
May
(5) |
Jun
(10) |
Jul
(3) |
Aug
(3) |
Sep
(2) |
Oct
(1) |
Nov
(17) |
Dec
(1) |
2012 |
Jan
(9) |
Feb
(9) |
Mar
(8) |
Apr
(4) |
May
(2) |
Jun
(1) |
Jul
(4) |
Aug
(8) |
Sep
(11) |
Oct
(1) |
Nov
(2) |
Dec
(2) |
2013 |
Jan
|
Feb
(7) |
Mar
(4) |
Apr
(10) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(5) |
Dec
(3) |
2016 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2023 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
From: Michael H. <hal...@ho...> - 2004-02-11 19:40:24
|
Doing it that way gives the following error: mkswap: error: swap area needs to be at least 40kB Usage: mkswap [-c] [-v0|-v1] [-pPAGESZ] /dev/name [blocks] and I've been spoiled with gentoo linux... in order to make a swap all I normally need to type is 'mkswap /dev/hdxx' >From: ePAc <ep...@ko...> >To: Jonathan Ballard <sac...@ya...> >CC: Michael Haller <hal...@ho...>, coLinux Development ><col...@li...> >Subject: Re: [coLinux-devel] Is there a way to increase total memory? >Date: Wed, 11 Feb 2004 11:22:54 -0800 (PST) > > > <?xml version="1.0" encoding="UTF-8"?> > > <colinux> > > <block_device index="0" > > path="\DosDevices\c:\coLinux\Debian-3.0r0.ext3.1gb" > > enabled="true"> > > </block_device> > > <block_device index="1" > > path="\DosDevices\c:\coLinux\cobd.1" > > enabled="true"> > > </block_device> > > <bootparams>root=/dev/cobd0</bootparams> > > <image path="vmlinux"></image> > > </colinux> > >that is good. > > > > > * startup coLinux-daemon with the new config [ > > "colinux-daemon -d -c > > colinux.xml" ] > > * login as root > >that is not necessary: > > > * $ mkdir /mnt/cobd1 > > * $ mkfs.ext3 /dev/cobd1 > > * $ mount /dev/cobd1 /mnt/cobd1 > > * $ cd /mnt/cobd1 > > * $ dd if=/dev/zero of=swapfile bs=1024 count=262144 > > [ 1024*bs*256=256MB > > swapfile ] > > * edit /etc/fstab and add entries for cobd1 and the > > swapfile in mount order, > > like: > > > > /dev/cobd0 / ext2 defaults 0 1 > > proc /proc proc defaults 0 0 > > /dev/cobd1 /mnt/cobd1 ext2 defaults 0 2 > > /mnt/cobd1/swapfile none swap defaults 0 0 > > > > * $ mount -a > > * $ swapon -a > > > >that on the other hand, is extra work. > >why not use the "raw" cobd for swap ? > >you should be able to do: > >mkswap /dev/cobd1 >and add >---8<---8<--- >/dev/cobd1 none swap defaults >---8<---8<--- >to your fstab and have the same result, without using an extra >mountpoint... >then the same swapon -a .. the fstab, the next time you boot should take >care of doing the swapon for you.. :o) > >Jok > > >--- >Nothing is foolproof to a sufficiently talented fool... > oo >,(..)\ > ~~ _________________________________________________________________ Find great local high-speed Internet access value at the MSN High-Speed Marketplace. http://click.atdmt.com/AVE/go/onm00200360ave/direct/01/ |
From: ePAc <ep...@ko...> - 2004-02-11 19:22:46
|
> <?xml version="1.0" encoding="UTF-8"?> > <colinux> > <block_device index="0" > path="\DosDevices\c:\coLinux\Debian-3.0r0.ext3.1gb" > enabled="true"> > </block_device> > <block_device index="1" > path="\DosDevices\c:\coLinux\cobd.1" > enabled="true"> > </block_device> > <bootparams>root=/dev/cobd0</bootparams> > <image path="vmlinux"></image> > </colinux> that is good. > > * startup coLinux-daemon with the new config [ > "colinux-daemon -d -c > colinux.xml" ] > * login as root that is not necessary: > * $ mkdir /mnt/cobd1 > * $ mkfs.ext3 /dev/cobd1 > * $ mount /dev/cobd1 /mnt/cobd1 > * $ cd /mnt/cobd1 > * $ dd if=/dev/zero of=swapfile bs=1024 count=262144 > [ 1024*bs*256=256MB > swapfile ] > * edit /etc/fstab and add entries for cobd1 and the > swapfile in mount order, > like: > > /dev/cobd0 / ext2 defaults 0 1 > proc /proc proc defaults 0 0 > /dev/cobd1 /mnt/cobd1 ext2 defaults 0 2 > /mnt/cobd1/swapfile none swap defaults 0 0 > > * $ mount -a > * $ swapon -a > that on the other hand, is extra work. why not use the "raw" cobd for swap ? you should be able to do: mkswap /dev/cobd1 and add ---8<---8<--- /dev/cobd1 none swap defaults ---8<---8<--- to your fstab and have the same result, without using an extra mountpoint... then the same swapon -a .. the fstab, the next time you boot should take care of doing the swapon for you.. :o) Jok --- Nothing is foolproof to a sufficiently talented fool... oo ,(..)\ ~~ |
From: Jonathan B. <sac...@ya...> - 2004-02-11 19:13:00
|
> Have you tried to make the 4 gig file? If so what did you do in order to > format it? I have not been able to do so sucessfully. Check the size of the created file and see if it is equal to 4GB. If not, the copy command defaulted to text mode. Do a "copy/b ..." to get a binary mode copy. Then follow the rest of the procedures to format: ----- Original Message ----- From: "Michael Haller" <hal...@ho...> [...] > >* $ mkdir /mnt/cobd1 > >* $ mkfs.ext3 /dev/cobd1 [...] __________________________________ Do you Yahoo!? Yahoo! Finance: Get your refund fast by filing online. http://taxes.yahoo.com/filing.html |
From: Michael H. <hal...@ho...> - 2004-02-11 18:30:32
|
Jonathan, Have you tried to make the 4 gig file? If so what did you do in order to format it? I have not been able to do so sucessfully. Mike >From: Jonathan Ballard <sac...@ya...> >To: Michael Haller <hal...@ho...>, coLinux Development ><col...@li...> >Subject: Re: [coLinux-devel] Is there a way to increase total memory? >Date: Wed, 11 Feb 2004 09:01:55 -0800 (PST) > > > Is there an easy way to increase total memory? 29MB >just isn't enough to >do > > anything graphical. > >An easy way? Okay: > >* shutdown coLinux [ "shutdown -h now" ] >* change directory to your coLinux installation [ >C:\coLinux by default ] >* copy "Debian-3.0.r0.ext3.1gb" to "cobd.1" >* copy "default.colinux.xml" to "colinux.xml" >* edit colinux.xml to add device index #1, like: > ><?xml version="1.0" encoding="UTF-8"?> ><colinux> > <block_device index="0" >path="\DosDevices\c:\coLinux\Debian-3.0r0.ext3.1gb" >enabled="true"> > </block_device> > <block_device index="1" >path="\DosDevices\c:\coLinux\cobd.1" >enabled="true"> > </block_device> > <bootparams>root=/dev/cobd0</bootparams> > <image path="vmlinux"></image> ></colinux> > >* startup coLinux-daemon with the new config [ >"colinux-daemon -d -c >colinux.xml" ] >* login as root >* $ mkdir /mnt/cobd1 >* $ mkfs.ext3 /dev/cobd1 >* $ mount /dev/cobd1 /mnt/cobd1 >* $ cd /mnt/cobd1 >* $ dd if=/dev/zero of=swapfile bs=1024 count=262144 > [ 1024*bs*256=256MB >swapfile ] >* edit /etc/fstab and add entries for cobd1 and the >swapfile in mount order, >like: > >/dev/cobd0 / ext2 defaults 0 1 >proc /proc proc defaults 0 0 >/dev/cobd1 /mnt/cobd1 ext2 defaults 0 2 >/mnt/cobd1/swapfile none swap defaults 0 0 > >* $ mount -a >* $ swapon -a > >If you used my numbers, you have an extra 256MB of >memory. Since coLinux >runs on NT, there is no need to format a swap >partition or device unless you >need the extra speed with raw access. The swapfile >should perform >practically the same as a swap device. And, you can >use the extra rest of >cobd1 as a regular mounted drive with a swapfile. > >If you want a larger cobd1 filesystem before you make >cobd1, from NT: > >copy >Debian-3.0.r0.ext3.1gb+Debian-3.0.r0.ext3.1gb+Debian-3.0.r0.ext3.1gb+Debian- >3.0.r0.ext3.1gb cobd.1 > >That would give you a 4GB device. > >I thought I would make a utitility to do these steps >easier. Still >thinking... > > > > >__________________________________ >Do you Yahoo!? >Yahoo! Finance: Get your refund fast by filing online. >http://taxes.yahoo.com/filing.html _________________________________________________________________ Optimize your Internet experience to the max with the new MSN Premium Internet Software. http://click.atdmt.com/AVE/go/onm00200359ave/direct/01/ |
From: Sean B. <sea...@so...> - 2004-02-11 18:23:44
|
fCBUaGUgc3dhcGZpbGUNCnwgc2hvdWxkIHBlcmZvcm0NCnwgcHJhY3RpY2FsbHkgdGhlIHNhbWUg YXMgYSBzd2FwIGRldmljZS4gICBBbmQsIHlvdSBjYW4NCnwgdXNlIHRoZSBleHRyYSByZXN0IG9m DQp8IGNvYmQxIGFzIGEgcmVndWxhciBtb3VudGVkIGRyaXZlIHdpdGggYSBzd2FwZmlsZS4NCg0K VGhvdWdoIGl0IG9idmlvdXNseSB3b3JrcyBmb3IgeW91IEkgdGhpbmsgdGhpcyBpcyBhIGJhZCBp ZGVhLg0KT24gYSAncmVhbCcgTGludXggYm94IHRoZSBzd2FwIGZpbGUgaXMgc3RvcmVkIG9uIGEg c2VwZXJhdGUNCnBhcnRpdGlvbiwgdXN1YWxseSBuZWFyIHRoZSBzdGFydCBvZiB0aGUgZGlzayBh bGwgZm9yIHBlcmZvcm1hbmNlDQpyZWFzb25zLiBTbyBJIGRpc2FncmVlIHdpdGggeW91ciBwZXJm b3JtYW5jZSBwb2ludC4gQ29uc2lkZXINCnRvbyB0aGF0IHRoZSBsYXJnZXIgYSBmaWxlIHN5c3Rl bSwgdGhlIG1vcmUgbWVtb3J5IHRoYXQgaXMgcmVxdWlyZWQNCnRvIG1vdW50IGl0Lg0KDQp8IA0K fCBJZiB5b3Ugd2FudCBhIGxhcmdlciBjb2JkMSBmaWxlc3lzdGVtIGJlZm9yZSB5b3UgbWFrZQ0K fCBjb2JkMSwgZnJvbSBOVDoNCnwgDQp8IGNvcHkNCnwgRGViaWFuLTMuMC5yMC5leHQzLjFnYitE ZWJpYW4tMy4wLnIwLmV4dDMuMWdiK0RlYmlhbi0zLjAucjAuZXh0My4xZ2IrRGViaWFuLQ0KfCAz LjAucjAuZXh0My4xZ2IgY29iZC4xDQp8IA0KfCBUaGF0IHdvdWxkIGdpdmUgeW91IGEgNEdCIGRl dmljZS4NCg0KQ2FuIHlvdSB0ZWxsIG1lIGlmIHlvdSBoYXZlIGFjdHVhbGx5IHRyaWVkIHRoaXMg YW5kIHNvIGtub3cgaXQgd29ya3M/DQoNCnwgDQp8IEkgdGhvdWdodCBJIHdvdWxkIG1ha2UgYSB1 dGl0aWxpdHkgdG8gZG8gdGhlc2Ugc3RlcHMNCnwgZWFzaWVyLiAgU3RpbGwNCnwgdGhpbmtpbmcu Li4NCnwgDQp8IA0KfCANCnwgDQp8IF9fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX18N CnwgRG8geW91IFlhaG9vIT8NCnwgWWFob28hIEZpbmFuY2U6IEdldCB5b3VyIHJlZnVuZCBmYXN0 IGJ5IGZpbGluZyBvbmxpbmUuDQp8IGh0dHA6Ly90YXhlcy55YWhvby5jb20vZmlsaW5nLmh0bWwN CnwgDQp8IA0KfCAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tDQp8IFNGLk5ldCBpcyBzcG9uc29yZWQgYnk6IFNwZWVkIFN0YXJ0IFlvdXIgTGlu dXggQXBwcyBOb3cuDQp8IEJ1aWxkIGFuZCBkZXBsb3kgYXBwcyAmIFdlYiBzZXJ2aWNlcyBmb3Ig TGludXggd2l0aA0KfCBhIGZyZWUgRFZEIHNvZnR3YXJlIGtpdCBmcm9tIElCTS4gQ2xpY2sgTm93 IQ0KfCBodHRwOi8vYWRzLm9zZG4uY29tLz9hZF9pZD0xMzU2JmFsbG9jX2lkPTM0Mzgmb3A9Y2xp Y2sNCnwgX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX18NCnwg Y29MaW51eC1kZXZlbCBtYWlsaW5nIGxpc3QNCnwgY29MaW51eC1kZXZlbEBsaXN0cy5zb3VyY2Vm b3JnZS5uZXQNCnwgaHR0cHM6Ly9saXN0cy5zb3VyY2Vmb3JnZS5uZXQvbGlzdHMvbGlzdGluZm8v Y29saW51eC1kZXZlbA== |
From: Sean B. <sea...@so...> - 2004-02-11 18:04:02
|
LS0tLS0gT3JpZ2luYWwgTWVzc2FnZSAtLS0tLSANCkZyb206ICJKb25hdGhhbiBCYWxsYXJkIiA8 c2FjcmFtZW50b2tpZGRAeWFob28uY29tPg0KVG86ICJEYW4gQWxvbmkiIDxkYS14QGdteC5uZXQ+ OyAiQ29vcGVyYXRpdmUgTGludXggRGV2ZWxvcG1lbnQiIDxjb2xpbnV4LWRldmVsQGxpc3RzLnNv dXJjZWZvcmdlLm5ldD4NClNlbnQ6IFdlZG5lc2RheSwgRmVicnVhcnkgMTEsIDIwMDQgNTowMiBQ TQ0KU3ViamVjdDogUmU6IFtjb0xpbnV4LWRldmVsXSBIb3N0IEZTIHN1cHBvcnQNCg0KDQp8IEkg dGhvdWdodCBhYm91dCB0aGF0IGFscmVhZHkuICBJIGluc3RhbGxlZCBTTUIsIHdpdGgNCnwgU2Ft YmEgY2xpZW50L3NlcnZlciwgdG8NCnwgc2VlIGlmIEkgY2FuIGNyZWF0ZSBhIHNtYWxsIGFuZCBz aW1wbGUgcmVhZC1vbmx5IHJvb3QNCnwgZHJpdmUgdG8gY3JlYXRlIGFuDQp8IGVmZmVjdCBsaWtl IHRoZSBjeWd3aW4gc2hlbGwgd2l0aCBTTUIgc2hhcmVzLiAgVGhhdA0KfCB3b3VsZCBiZSBtdWNo IGVhc2llcg0KfCB0aGVuIHRvIHdyaXRlIGFub3RoZXIgdmlydHVhbCBmaWxlIHN5c3RlbSBhbmQg bWFpbnRhaW4NCnwgaXQgc2luY2UgU2FtYmEgaXMNCnwgdmVyeSBhY3RpdmUuICANCkRvZXMgdGhh dCBtZWFuIHlvdSByb2xsZWQgeW91ciBvd24ga2VybmVsIGZvciBjb0xpbnV4Pw0KSWYgc28sIGRp ZCBTYW1iYSB3b3JrPw0KDQpCZWNhdXNlIG9mIHRoYXQsIEkgdGhpbmsgdGhlIGN1cnJlbnQNCnwg c2V0dXAgb2YgY29MaW51eCBpcw0KfCBlZmZlY3RpdmUgZm9yIGNyZWF0ZSBhIHBzdWVkby12aXJ0 dWFsIGZpbGVzeXN0ZW0uDQpXaGF0IGlzIGEgJ3BzdWVkby12aXJ0dWFsIGZpbGVzeXN0ZW0nPw0K DQp8IA0KfCBUbyBtYWtlIHRoZSBwcm9ncmVzc2lvbiBlYXNpZXIgYmV0d2VlbiB0aGUgdHdvDQp8 IHN5c3RlbXMsIHdlIG5lZWQgYSB3YXkgdG8NCnwgcmVmbGVjdCBjaGFuZ2VzIGluIHRoZSBOVCBh Y2NvdW50cyBvbnRvIHRoZSBjb0xpbnV4DQp8IGFjY291bnRzLiAgUGVyaGFwcywgYQ0KfCBncm91 cCBjYWxsZWQgIm50ZnMiIGluIGNvTGludXggd291bGQgZ2l2ZSBkZWZhdWx0DQp8IGFjY2VzcyB0 byB0aGUgTlQgc2hhcmVzLg0KVGhpcyBhbHJlYWR5IGV4aXN0cyBpbiBtYW55IGRpZmZlcmVudCBp bXBsZW1lbnRhdGlvbnMuDQpPbmUgb2YgdGhlIG1vc3QgcG9wdWxhciBpcyBjYWxsZWQgJ1NhbWJh JyBhbmQgd29ya3MNCndpdGggV2luZG93cyBuZXR3b3JraW5nIDspIFRha2UgYSBsb29rIGF0IE5E Uy9lRGlyZWN0b3J5LA0KQ29kYSwgQUZTLCAuLi4uIGV0Yy4gVGhlcmUgYXJlIGxvdHMgb2Ygd2F5 cyBvZiBkb2luZyB0aGlzLg0KVGhpcyBpcyBqdXN0IGEgc29mdHdhcmUgc2V0dXAgaXNzdWUgQUZB SUFDLg0KUmF0aGVyIHRoYW4gcmVpbnZlbnRpbmcgd2hlZWxzIGl0IHdvdWxkIGJlIGJlc3QgdG8g YWxsb3cNCmF2YWlsYWJsZSBjb25maWcgb3B0aW9ucyB0aGF0IGFyZSBhbHJlYWR5IGluIHRoZSBr ZXJuZWwgdG8NCmJ1aWxkIGFnYWluc3QgdGhlIHBsYXRmb3JtIHRoYXQgY29MaW51eCB3b3VsZCBy dW4gb24gKGlmIHRoZXkNCmRvbnQgYWxyZWFkeSB3b3JrKS4NCg0KfCANCnwgVGhlcmUgaXMgYWxz byBhIHdheSB0byBkbyB0aGUgc2hhcmVzIHdpdGggTkZTLCB5ZXQgSQ0KfCB0aGluayB0aGF0IHdv dWxkIGJlDQp8IG1vcmUgY29tcGxleCB0byBtYW5hZ2UuDQpORlMgY291bGQgYmUgYW4gb3B0aW9u IChpdHMgaW4gdGhlIGtlcm5lbCBidHcpIGFuZCBhZ2FpbiBpcw0KYSBzb2Z0d2FyZSBzZXR1cCBp c3N1ZS4gQmUgYXdhcmUgdGhhdCBORlMgaGFzIGxvdHMgb2YgaXNzdWVzDQphbmQgdGhlcmUgYXJl IGJldHRlciBuZXdlciBhbHRlcm5hdGl2ZXMuIFNlZSBhYm92ZS4NCg0KfCANCnwgLS0tLS0gT3Jp Z2luYWwgTWVzc2FnZSAtLS0tLQ0KfCBGcm9tOiAiRGFuIEFsb25pIiA8ZGEteEBnbXgubmV0Pg0K fCBUbzogIkNvb3BlcmF0aXZlIExpbnV4IERldmVsb3BtZW50Ig0KfCA8Y29saW51eC1kZXZlbEBs aXN0cy5zb3VyY2Vmb3JnZS5uZXQ+DQp8IFNlbnQ6IFR1ZXNkYXksIEZlYnJ1YXJ5IDEwLCAyMDA0 IDk6NTQgUE0NCnwgU3ViamVjdDogW2NvTGludXgtZGV2ZWxdIEhvc3QgRlMgc3VwcG9ydA0KfCAN CnwgDQp8ID4gSGVsbG8sDQp8ID4NCnwgPiBJdCB3b3VsZCBiZSBwb3NzaWJsZSB0byBpbXBsZW1l bnQgYSB2aXJ0dWFsIGZpbGUNCnwgc3lzdGVtIGluIGNvTGludXggd2hpY2gNCnwgPiB0cmFuc3Bh cmVudGx5IGltcG9ydHMgYSBkaXJlY3RvcnkgdHJlZSBmcm9tIFdpbmRvd3MNCnwgYXMgYSBVTklY IGZpbGVzeXN0ZW0uDQp8ID4gVGhpcyB3YXksIHlvdSB3b24ndCBuZWVkIHRoYXQgYmlnIGJsb2Nr IGRldmljZSwgYW5kDQp8IGluc3RlYWQgeW91J2QNCnwgPiBlbmhlbmNlIGludGVyb3BlcmFiaWxp dHkgYmV0d2VlbiB0aGUgdHdvIHN5c3RlbXMsDQp8IGxpa2UgaW4gY3lnd2luLg0KfCA+DQp8ID4g QW5kLCBpdCBpcyBhbHNvIGEgY29MaW51eCBmZWF0dXJlIHRoYXQgc29tZSBvZiB5b3UNCnwgY2Fu IHZvbHVudGVlciB0bw0KfCA+IGNvZGUuDQp8ID4NCnwgPiAtLQ0KfCA+IERhbiBBbG9uaQ0KfCA+ IGRhLXhAZ214Lm5ldA0KfCA+DQp8ID4NCnwgPg0KfCAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQp8ID4gVGhlIFNGLk5ldCBlbWFpbCBpcyBz cG9uc29yZWQgYnkgRWNsaXBzZUNvbiAyMDA0DQp8ID4gUHJlbWllcmUgQ29uZmVyZW5jZSBvbiBP cGVuIFRvb2xzIERldmVsb3BtZW50IGFuZA0KfCBJbnRlZ3JhdGlvbg0KfCA+IFNlZSB0aGUgYnJl YWR0aCBvZiBFY2xpcHNlIGFjdGl2aXR5LiBGZWJydWFyeSAzLTUgaW4NCnwgQW5haGVpbSwgQ0Eu DQp8ID4gaHR0cDovL3d3dy5lY2xpcHNlY29uLm9yZy9vc2RuDQp8ID4gX19fX19fX19fX19fX19f X19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX18NCnwgPiBjb0xpbnV4LWRldmVsIG1haWxp bmcgbGlzdA0KfCA+IGNvTGludXgtZGV2ZWxAbGlzdHMuc291cmNlZm9yZ2UubmV0DQp8ID4NCnwg aHR0cHM6Ly9saXN0cy5zb3VyY2Vmb3JnZS5uZXQvbGlzdHMvbGlzdGluZm8vY29saW51eC1kZXZl bA0KfCA+DQp8IA0KfCANCnwgDQp8IF9fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX18N CnwgRG8geW91IFlhaG9vIT8NCnwgWWFob28hIEZpbmFuY2U6IEdldCB5b3VyIHJlZnVuZCBmYXN0 IGJ5IGZpbGluZyBvbmxpbmUuDQp8IGh0dHA6Ly90YXhlcy55YWhvby5jb20vZmlsaW5nLmh0bWwN CnwgDQp8IA0KfCAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tDQp8IFNGLk5ldCBpcyBzcG9uc29yZWQgYnk6IFNwZWVkIFN0YXJ0IFlvdXIgTGlu dXggQXBwcyBOb3cuDQp8IEJ1aWxkIGFuZCBkZXBsb3kgYXBwcyAmIFdlYiBzZXJ2aWNlcyBmb3Ig TGludXggd2l0aA0KfCBhIGZyZWUgRFZEIHNvZnR3YXJlIGtpdCBmcm9tIElCTS4gQ2xpY2sgTm93 IQ0KfCBodHRwOi8vYWRzLm9zZG4uY29tLz9hZF9pZD0xMzU2JmFsbG9jX2lkPTM0Mzgmb3A9Y2xp Y2sNCnwgX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX18NCnwg Y29MaW51eC1kZXZlbCBtYWlsaW5nIGxpc3QNCnwgY29MaW51eC1kZXZlbEBsaXN0cy5zb3VyY2Vm b3JnZS5uZXQNCnwgaHR0cHM6Ly9saXN0cy5zb3VyY2Vmb3JnZS5uZXQvbGlzdHMvbGlzdGluZm8v Y29saW51eC1kZXZlbA== |
From: Paul S. <coo...@ua...> - 2004-02-11 17:21:43
|
Hello Matt, Wednesday, February 11, 2004, 5:03:03 PM, you wrote: MB> On Wed, Feb 11, 2004 at 09:30:07AM -0500, Michael J. Haller wrote: >> Sorry I should have been clearer in my post... I want actual memory, not >> swapfile memory. My machine has 1gig and coLinux is only showing usage of >> 26MB or so. MB> Yes, that was also covered in the list archives. MB> http://sourceforge.net/mailarchive/message.php?msg_id=7148840 And still some brave souls would prefer to have more real memory despite any would-be crashes. Dan, could you find some time to implement xml config element to set that? There's no need to put it by default, just implement and describe somewhere ;-) -- Best regards, Paul mailto:coo...@ua... |
From: Richard G. <ric...@ri...> - 2004-02-11 17:17:57
|
It's "free" but is also a very large download and I'm still not sure the depths of the licensing as relates to non-server operating systems. Do you know? ----- Original Message ----- From: "Ian C. Blenke" <ia...@bl...> To: "Jonathan Ballard" <sac...@ya...> Cc: "Dan Aloni" <da...@gm...>; "Cooperative Linux Development" <col...@li...> Sent: Wednesday, February 11, 2004 11:09 AM Subject: Re: [coLinux-devel] Host FS support > On Wed, Feb 11, 2004 at 09:02:31AM -0800, Jonathan Ballard wrote: > > There is also a way to do the shares with NFS, yet I > > think that would be > > more complex to manage. > > Booting from a NFS root is actually a bit easier than booting to an > smbfs mounted share. Seriously consider using Microsoft's > Services For Unix for this - it's "free" now. > > - Ian C. Blenke <ia...@bl...> > > > ------------------------------------------------------- > SF.Net is sponsored by: Speed Start Your Linux Apps Now. > Build and deploy apps & Web services for Linux with > a free DVD software kit from IBM. Click Now! > http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click > _______________________________________________ > coLinux-devel mailing list > coL...@li... > https://lists.sourceforge.net/lists/listinfo/colinux-devel > > |
From: Ian C. B. <ia...@bl...> - 2004-02-11 17:10:58
|
On Wed, Feb 11, 2004 at 09:02:31AM -0800, Jonathan Ballard wrote: > There is also a way to do the shares with NFS, yet I > think that would be > more complex to manage. Booting from a NFS root is actually a bit easier than booting to an smbfs mounted share. Seriously consider using Microsoft's Services For Unix for this - it's "free" now. - Ian C. Blenke <ia...@bl...> |
From: Jonathan B. <sac...@ya...> - 2004-02-11 17:03:17
|
I thought about that already. I installed SMB, with Samba client/server, to see if I can create a small and simple read-only root drive to create an effect like the cygwin shell with SMB shares. That would be much easier then to write another virtual file system and maintain it since Samba is very active. Because of that, I think the current setup of coLinux is effective for create a psuedo-virtual filesystem. To make the progression easier between the two systems, we need a way to reflect changes in the NT accounts onto the coLinux accounts. Perhaps, a group called "ntfs" in coLinux would give default access to the NT shares. There is also a way to do the shares with NFS, yet I think that would be more complex to manage. ----- Original Message ----- From: "Dan Aloni" <da...@gm...> To: "Cooperative Linux Development" <col...@li...> Sent: Tuesday, February 10, 2004 9:54 PM Subject: [coLinux-devel] Host FS support > Hello, > > It would be possible to implement a virtual file system in coLinux which > transparently imports a directory tree from Windows as a UNIX filesystem. > This way, you won't need that big block device, and instead you'd > enhence interoperability between the two systems, like in cygwin. > > And, it is also a coLinux feature that some of you can volunteer to > code. > > -- > Dan Aloni > da...@gm... > > > ------------------------------------------------------- > The SF.Net email is sponsored by EclipseCon 2004 > Premiere Conference on Open Tools Development and Integration > See the breadth of Eclipse activity. February 3-5 in Anaheim, CA. > http://www.eclipsecon.org/osdn > _______________________________________________ > coLinux-devel mailing list > coL...@li... > https://lists.sourceforge.net/lists/listinfo/colinux-devel > __________________________________ Do you Yahoo!? Yahoo! Finance: Get your refund fast by filing online. http://taxes.yahoo.com/filing.html |
From: Jonathan B. <sac...@ya...> - 2004-02-11 17:02:42
|
> Is there an easy way to increase total memory? 29MB just isn't enough to do > anything graphical. An easy way? Okay: * shutdown coLinux [ "shutdown -h now" ] * change directory to your coLinux installation [ C:\coLinux by default ] * copy "Debian-3.0.r0.ext3.1gb" to "cobd.1" * copy "default.colinux.xml" to "colinux.xml" * edit colinux.xml to add device index #1, like: <?xml version="1.0" encoding="UTF-8"?> <colinux> <block_device index="0" path="\DosDevices\c:\coLinux\Debian-3.0r0.ext3.1gb" enabled="true"> </block_device> <block_device index="1" path="\DosDevices\c:\coLinux\cobd.1" enabled="true"> </block_device> <bootparams>root=/dev/cobd0</bootparams> <image path="vmlinux"></image> </colinux> * startup coLinux-daemon with the new config [ "colinux-daemon -d -c colinux.xml" ] * login as root * $ mkdir /mnt/cobd1 * $ mkfs.ext3 /dev/cobd1 * $ mount /dev/cobd1 /mnt/cobd1 * $ cd /mnt/cobd1 * $ dd if=/dev/zero of=swapfile bs=1024 count=262144 [ 1024*bs*256=256MB swapfile ] * edit /etc/fstab and add entries for cobd1 and the swapfile in mount order, like: /dev/cobd0 / ext2 defaults 0 1 proc /proc proc defaults 0 0 /dev/cobd1 /mnt/cobd1 ext2 defaults 0 2 /mnt/cobd1/swapfile none swap defaults 0 0 * $ mount -a * $ swapon -a If you used my numbers, you have an extra 256MB of memory. Since coLinux runs on NT, there is no need to format a swap partition or device unless you need the extra speed with raw access. The swapfile should perform practically the same as a swap device. And, you can use the extra rest of cobd1 as a regular mounted drive with a swapfile. If you want a larger cobd1 filesystem before you make cobd1, from NT: copy Debian-3.0.r0.ext3.1gb+Debian-3.0.r0.ext3.1gb+Debian-3.0.r0.ext3.1gb+Debian- 3.0.r0.ext3.1gb cobd.1 That would give you a 4GB device. I thought I would make a utitility to do these steps easier. Still thinking... __________________________________ Do you Yahoo!? Yahoo! Finance: Get your refund fast by filing online. http://taxes.yahoo.com/filing.html |
From: Richard G. <ric...@ri...> - 2004-02-11 15:47:07
|
I think something similar is used by the XBconnect and Xlink programs that allow a PC to capture and transmit XBOX packets over the internet (they are tunnel apps that simulate local LAN links). I'm no coder, but perhaps someone can research against those projects for suggestions? ----- Original Message ----- From: "Dan Aloni" <da...@gm...> To: "Cooperative Linux Development" <col...@li...> Sent: Tuesday, February 10, 2004 11:43 PM Subject: [coLinux-devel] Network bridging without the TAP driver > Modularization of the conet daemon opens new doors for us. > > A feature can be added that allows coLinux's eth0 to be bridged > into a real NIC adapater in Windows without using the TAP driver, > and in a platform independent manner, that may ease up the > installation of coLinux. > > libpcap can turn on an interface's promiscuous mode, allowing > the reception of packets for other MACs. It also allows the > transmission of raw packets from the NIC. > > It think it would be possible to use this functionallity for > bridging, and perhaps one of you can volunteer to code it. > > -- > Dan Aloni > da...@gm... > > > ------------------------------------------------------- > The SF.Net email is sponsored by EclipseCon 2004 > Premiere Conference on Open Tools Development and Integration > See the breadth of Eclipse activity. February 3-5 in Anaheim, CA. > http://www.eclipsecon.org/osdn > _______________________________________________ > coLinux-devel mailing list > coL...@li... > https://lists.sourceforge.net/lists/listinfo/colinux-devel > > |
From: Matt B. <ma...@zi...> - 2004-02-11 15:03:51
|
On Wed, Feb 11, 2004 at 09:30:07AM -0500, Michael J. Haller wrote: > Sorry I should have been clearer in my post... I want actual memory, not > swapfile memory. My machine has 1gig and coLinux is only showing usage of > 26MB or so. Yes, that was also covered in the list archives. http://sourceforge.net/mailarchive/message.php?msg_id=3D7148840 --=20 Matt Behrens <ma...@zi...> <http://www.zigg.com/> Life's too short to recompile what you don't hack. <http://www.debian.org/> |
From: Matt B. <ma...@zi...> - 2004-02-11 14:25:50
|
On Wed, Feb 11, 2004 at 08:55:31AM -0500, Michael Haller wrote: > Is there an easy way to increase total memory? 29MB just isn't enough to= =20 > do anything graphical. This was covered in the list archives. You want to set up a new cobd device for swap. --=20 Matt Behrens <ma...@zi...> <http://www.zigg.com/> Life's too short to recompile what you don't hack. <http://www.debian.org/> |
From: Michael H. <hal...@ho...> - 2004-02-11 13:56:13
|
Is there an easy way to increase total memory? 29MB just isn't enough to do anything graphical. Thanks in advance. _________________________________________________________________ Choose now from 4 levels of MSN Hotmail Extra Storage - no more account overload! http://click.atdmt.com/AVE/go/onm00200362ave/direct/01/ |
From: Ivan W. <em...@iv...> - 2004-02-11 12:27:42
|
----- Original Message ----- From: "Ivan Wong" <em...@iv...> To: <col...@li...> Sent: Wednesday, February 11, 2004 5:48 PM Subject: Re: [coLinux-devel] Host FS support > Just in case you don't have or don't want xserver on cygwin, try: > > http://www.linuxnetmag.com/share/issue5/xserver.zip > and > http://the.earth.li/~sgtatham/putty/latest/x86/putty.exe > > start xs.exe and ssh into your colinux using putty (or may be you have > telnetd and use telnet.exe) > > export DISPLAY=192.168.0.1:0 > startkde > > It's quite fast on my machine. > > Rgrds, > Ivan > > ----- Original Message ----- > From: "Vinay Kumar" <lvi...@ho...> > To: <col...@li...> > Sent: Friday, February 06, 2004 4:26 PM > Subject: [coLinux-devel] How to start KDE on Colinux > > > > Does any have idea how to start KDE on colinux > > > > Thanks > > -Vinay > > > > > > > > ------------------------------------------------------- > > The SF.Net email is sponsored by EclipseCon 2004 > > Premiere Conference on Open Tools Development and Integration > > See the breadth of Eclipse activity. February 3-5 in Anaheim, CA. > > http://www.eclipsecon.org/osdn > > _______________________________________________ > > coLinux-devel mailing list > > coL...@li... > > https://lists.sourceforge.net/lists/listinfo/colinux-devel > > > > ------------------------------------------------------- > The SF.Net email is sponsored by EclipseCon 2004 > Premiere Conference on Open Tools Development and Integration > See the breadth of Eclipse activity. February 3-5 in Anaheim, CA. > http://www.eclipsecon.org/osdn > _______________________________________________ > coLinux-devel mailing list > coL...@li... > https://lists.sourceforge.net/lists/listinfo/colinux-devel |
From: Ivan W. <em...@iv...> - 2004-02-11 09:54:39
|
Just in case you don't have or don't want xserver on cygwin, try: http://www.linuxnetmag.com/share/issue5/xserver.zip and http://the.earth.li/~sgtatham/putty/latest/x86/putty.exe start xs.exe and ssh into your colinux using putty (or may be you have telnetd and use telnet.exe) export DISPLAY=192.168.0.1:0 startkde It's quite fast on my machine. Rgrds, Ivan ----- Original Message ----- From: "Vinay Kumar" <lvi...@ho...> To: <col...@li...> Sent: Friday, February 06, 2004 4:26 PM Subject: [coLinux-devel] How to start KDE on Colinux > Does any have idea how to start KDE on colinux > > Thanks > -Vinay > > > > ------------------------------------------------------- > The SF.Net email is sponsored by EclipseCon 2004 > Premiere Conference on Open Tools Development and Integration > See the breadth of Eclipse activity. February 3-5 in Anaheim, CA. > http://www.eclipsecon.org/osdn > _______________________________________________ > coLinux-devel mailing list > coL...@li... > https://lists.sourceforge.net/lists/listinfo/colinux-devel |
From: Vlad D. <vl...@w-...> - 2004-02-11 09:22:45
|
Dan Aloni wrote: > It would be possible to implement a virtual file system in coLinux which > transparently imports a directory tree from Windows as a UNIX filesystem. > This way, you won't need that big block device, and instead you'd > enhence interoperability between the two systems, like in cygwin. I'd like to note that it would be almost useless without correctly- implemented two-way permission-mapping between NTFS and coLinux. I've seen such a thing in UML (there was a "host filesystem" driver, where all files belonged to root inside UML). -- vlad |
From: Bart K. <Bar...@su...> - 2004-02-11 08:53:58
|
Hi, First impression: VERY GOOD - install easy, network config might need a few lines in the readme.txt I'm running cL on my Window2K laptop, and everytime the laptop suspends, after waking up cL takes upto 90% of the CPU. Also ntpd is unable to set the system time (though ntp server config seems right). This might be caused by the NAT-transversal of NTP (UDP) packets. I would favor a form of regular bridging as Dan Aloni already mentioned, this makes it possible to run the Linux as a daemon on your host. Best regards, Bart -- Bart Kerver SURFnet bv - dep. Middleware Services phone : +31 (0)30 2 305 373 fax : +31 (0)30 2 305 329 web : http://www.surfnet.nl/en/ |
From: Dan A. <da...@gm...> - 2004-02-11 05:55:03
|
Hello, It would be possible to implement a virtual file system in coLinux which transparently imports a directory tree from Windows as a UNIX filesystem. This way, you won't need that big block device, and instead you'd enhence interoperability between the two systems, like in cygwin. And, it is also a coLinux feature that some of you can volunteer to code. -- Dan Aloni da...@gm... |
From: Dan A. <da...@gm...> - 2004-02-11 05:44:28
|
Modularization of the conet daemon opens new doors for us. A feature can be added that allows coLinux's eth0 to be bridged into a real NIC adapater in Windows without using the TAP driver, and in a platform independent manner, that may ease up the installation of coLinux. libpcap can turn on an interface's promiscuous mode, allowing the reception of packets for other MACs. It also allows the transmission of raw packets from the NIC. It think it would be possible to use this functionallity for bridging, and perhaps one of you can volunteer to code it. -- Dan Aloni da...@gm... |
From: Ian L. <Ian...@mq...> - 2004-02-11 05:26:30
|
Hi 3D, I think you'll find that there's no ISO FS support in the coLinux kernel (mentioned a few days ago on the list IIRC) ... you'll not get it to mount an ISO FS without support for it. If you want to use that ISO, you'll need to copy the contents onto an ext2/3 file system and use that instead. Regards, ----- Original Message ----- >From: "3DoFF" <3D...@ma...> >To: <col...@li...> >Subject: [coLinux-devel] Some problems.... >Date: Wed, 11 Feb 2004 00:46:01 +0300 > > Hello, colinux-devel, > > See the screenshot. > I'm trying to run MorphixBase-0.3-4.iso which I copied into C:coLinux > dir. > Do I have to change default.colinux.xml file? > I changed it to: > <?xml version="1.0" encoding="UTF-8"?> > <colinux> > <block_device index="0" path="DosDevicesc:coLinuxMorphixBase-0.3-4.iso" enabled="true"> > </block_device> > <bootparams>root=/dev/cobd0</bootparams> > <image path="vmlinux">MorphixBase-0.3-4.iso</image> > </colinux> > > and so: > > <?xml version="1.0" encoding="UTF-8"?> > <colinux> > <block_device index="0" path="DosDevicesc:coLinuxMorphixBase-0.3-4.iso" enabled="true"> > </block_device> > <bootparams>root=/dev/cobd0</bootparams> > <image path="vmlinux"></image> > </colinux> > > Nothing works. It leads me to error, shown on print screen in the > attach. > > -- > 3DoFF -- Ian Latter Internet and Networking Security Officer Macquarie University Meet me at the Australian Unix and open systems User Group (AUUG) Security Symposium; 2004 http://www.auug.org.au/events/2004/security/ |
From: Ballard J. <sac...@ho...> - 2004-02-11 04:24:28
|
> This also happens because of a bug in apt-utils. In order to upgrade > apt-utils, you'll need to eliminate all but the testing line in Done did. At least we know that the MMap message was not because of coLinux. Thanks |
From: Ballard J. <sac...@ho...> - 2004-02-11 02:49:21
|
After I read an article, http://www.mayin.org/ajayshah/COMPUTING/debian-principles.html, you must be right. I thought the lists could be concatenated. Thanks ----- Original Message ----- From: "Richard Goodwin" <ric...@ri...> To: "coLinux Development" <col...@li...> Sent: Tuesday, February 10, 2004 5:48 PM Subject: Re: [coLinux-devel] 0.5.3pre2: dselect, mmap [ was: klog, dpkg, alloc_pages error ] > Can you have all three sources at once? stable, testing, and unstable? Won't > your packages get all out of sync if you try to mix releases? > > I'm not super familiar with Debian so excuse me if I'm wrong :-) > > Richard > > > > ----- Original Message ----- > From: "Ballard Jonathan" <sac...@ho...> > To: "coLinux Development" <col...@li...> > Sent: Tuesday, February 10, 2004 8:05 PM > Subject: [coLinux-devel] 0.5.3pre2: dselect, mmap [ was: klog, dpkg, > alloc_pages error ] > > > > I added 256MB of a swapfile. After I added more entries to the > > /etc/apt/sources.list, dselect complained about MMap. > > > > --- > > > > Reading Package Lists... Error! > > E: Dynamic MMap ran out of room > > E: Error occured while processing doc-rfc-3000-3999 (NewVersion1) > > E: Problem with MergeList > > > /var/lib/apt/lists/http.us.debian.org_debian_dists_testing_non-free_binary-i > > 386_Packages > > E: The package lists or status file could not be parsed or opened. > > > > update available list script returned error exit status 1. > > > > --- > > > > I did not find any kernel message displayed about the issue. > > Here is my /etc/apt/sources.list: > > > > ---- > > > > > > deb http://http.us.debian.org/debian stable main contrib non-free > > deb http://http.us.debian.org/debian testing main contrib non-free > > deb http://http.us.debian.org/debian unstable main contrib non-free > > > > --- > > > > I guess I can shorten the list for now. > > > > ----- Original Message ----- > > From: "Richard Goodwin" <ric...@ri...> > > To: "coLinux Development" <col...@li...> > > Sent: Tuesday, February 10, 2004 9:47 AM > > Subject: Re: [coLinux-devel] 0.5.3pre2: klog, dpkg utils errored while > > configed > > > > > > > Jonathan, > > > > > > I belive from what I have discussed with Dan that that is a standard > "out > > of > > > memory" condition. Have you setup swap space? > > > > > > > > > > > ------------------------------------------------------- > > The SF.Net email is sponsored by EclipseCon 2004 > > Premiere Conference on Open Tools Development and Integration > > See the breadth of Eclipse activity. February 3-5 in Anaheim, CA. > > http://www.eclipsecon.org/osdn > > _______________________________________________ > > coLinux-devel mailing list > > coL...@li... > > https://lists.sourceforge.net/lists/listinfo/colinux-devel > > > > > > > > ------------------------------------------------------- > The SF.Net email is sponsored by EclipseCon 2004 > Premiere Conference on Open Tools Development and Integration > See the breadth of Eclipse activity. February 3-5 in Anaheim, CA. > http://www.eclipsecon.org/osdn > _______________________________________________ > coLinux-devel mailing list > coL...@li... > https://lists.sourceforge.net/lists/listinfo/colinux-devel > |
From: John L. <jo...@su...> - 2004-02-11 02:48:11
|
Ballard Jonathan wrote: >I added 256MB of a swapfile. After I added more entries to the >/etc/apt/sources.list, dselect complained about MMap. > >--- > >Reading Package Lists... Error! >E: Dynamic MMap ran out of room >E: Error occured while processing doc-rfc-3000-3999 (NewVersion1) >E: Problem with MergeList >/var/lib/apt/lists/http.us.debian.org_debian_dists_testing_non-free_binary-i >386_Packages >E: The package lists or status file could not be parsed or opened. > >update available list script returned error exit status 1. > >--- > >I did not find any kernel message displayed about the issue. >Here is my /etc/apt/sources.list: > >---- > > >deb http://http.us.debian.org/debian stable main contrib non-free >deb http://http.us.debian.org/debian testing main contrib non-free >deb http://http.us.debian.org/debian unstable main contrib non-free > > > This also happens because of a bug in apt-utils. In order to upgrade apt-utils, you'll need to eliminate all but the testing line in sources.list, then do apt-get update. then apt-get -t testing install apt-utils. After that, your apt-get should work even with all those sources... John |