Re: lug-bg: Суров печат на кирилица върху Матричен принер

2004-11-25 Thread Nikolay Mitev

 ,.
Skeleta wrote:
snip
-   : ---
#include stdio.h
/*
 (c) Skelet (G. Georgiev) in terms of GNU GPL
 Converts cp1251 - DOS cyrillic.
*/
int main()
{
 unsigned char w;
 unsigned char First = 0xc0;
 unsigned char Last  = 0xff;
 do {
   w = getchar();
   if (!feof(stdin)) {
if ((w = First)  (w = Last)) w = w-64;
   ^^^
,   .   ,   .  ? 
, . AND- ** 
.   ,  =  =  ,   bool. 
  , ,   . 
 /   short circuit evaluation.  ,  
false,true,  
   evaluate-.  
,   side-effect ( 
,  ,  .),  / 
 .

  ,  ,   :-)
  ,  :
#include stdio.h
/*
(c) Skelet (G. Georgiev) in terms of GNU GPL
Converts cp1251 - DOS cyrillic.
*/
int main()
{
unsigned char w;
unsigned char First = 0xc0;
unsigned char Last  = 0xff;
while (!feof(stdin)) {
  w = getchar();
  if ((w = First)  (w = Last)) w -= 64;
  putchar(w);
}
return 0;
}
cheers,
face

A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers).
http://www.linux-bulgaria.org - Hosted by Internet Group Ltd. - Stara Zagora
To unsubscribe: http://www.linux-bulgaria.org/public/mail_list.html



Re: lug-bg: Суров печат на кирилица върху Матричен принер

2004-11-25 Thread Skeleta
Nikolay Mitev wrote:

 ,.
Skeleta wrote:
...
if ((w = First)  (w = Last)) w = w-64;

   ^^^
,   .   ,   .  
? , . AND- ** 
.   ,  =  =  ,   bool. 
  , ,   . 
 /   short circuit evaluation.  ,  
false,true,  
   evaluate-.  
,   side-effect ( 
,  ,  .),  / 
 .

  ,  ,  
 :-)

 - , C
  Pascal,  
-.  Pascal- side-effect
,  , 
''.,  
C- !

  ,  :
#include stdio.h
/*
(c) Skelet (G. Georgiev) in terms of GNU GPL
Converts cp1251 - DOS cyrillic.
*/
int main()
{
unsigned char w;
unsigned char First = 0xc0;
unsigned char Last  = 0xff;
while (!feof(stdin)) {
  w = getchar();
  if ((w = First)  (w = Last)) w -= 64;
  putchar(w);
}
return 0;
}
...

--
Skelet
-- http://skelet.hit.bg/


A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers).
http://www.linux-bulgaria.org - Hosted by Internet Group Ltd. - Stara Zagora
To unsubscribe: http://www.linux-bulgaria.org/public/mail_list.html



lug-bg: high volume traffic over pppoe

2004-11-25 Thread [EMAIL PROTECTED]
misleh si dali pppoe e dostatachno skaliruemo.. w smisal nali sled kato se 
naprawi 
pppoe wryzkata wsichkiq trafik minawa prez izgradeniq ppp kanal.
Toest eto taka :

 pppoe-client --- pppoe-server --- Internet

wmesto :

 pppoe-client --Lan--  Internet
/auth only/-  |-pppoe-server
toest trafika koito move da minawa zawisi ot towa kolko trafik move da routira 
pppoe server-a.
Ot koeto sledwa che taq shema ne e udobna za Gb ili 100-tici mbps

Praw li sam w tiq si razsyvdeniq ili nqkade barkam ? kade ?
Ako sam praw kak zaobikalqte tiq ogranicheniq ?

tia



A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers).
http://www.linux-bulgaria.org - Hosted by Internet Group Ltd. - Stara Zagora
To unsubscribe: http://www.linux-bulgaria.org/public/mail_list.html



Re: lug-bg: Fedora Core 3 - Виртуални конзоли ?

2004-11-25 Thread Andrey Andreev
Mihail Dimitrov wrote:
   F1 - F6,
 ,
  (  )
 ( ).
Fedora Core 3,  XFCE.
  .
,   ,   
http://marc.theaimsgroup.com/
 - 
http://marc.theaimsgroup.com/?l=fedora-listr=1w=2
  MARC   ,  
   , . 
 fedora-list   ,
high volume.

  ,

--
Andrey Andreev
University of Helsinki
Dept. of Computer Science

A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers).
http://www.linux-bulgaria.org - Hosted by Internet Group Ltd. - Stara Zagora
To unsubscribe: http://www.linux-bulgaria.org/public/mail_list.html



Re: lug-bg: Fedora Core 3 - Виртуални конзоли ?

2004-11-25 Thread Mihail Dimitrov
Andrey Andreev wrote:
,   ,   
http://marc.theaimsgroup.com/
 - 
http://marc.theaimsgroup.com/?l=fedora-listr=1w=2
  MARC   ,  
   , 
.  fedora-list   ,   
 high volume.

  ,


  ,.
,.   
   , 
   , 
   ..   
   ,   .
  ...

   *
.

A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers).
http://www.linux-bulgaria.org - Hosted by Internet Group Ltd. - Stara Zagora
To unsubscribe: http://www.linux-bulgaria.org/public/mail_list.html



Re: lug-bg: Суров печат на кирилица върху Матричен принер

2004-11-25 Thread Peter Pentchev
On Thu, Nov 25, 2004 at 09:59:50AM +0200, Nikolay Mitev wrote:
 
 
  ,.
[snip]

   ,  :
 
 #include stdio.h
 /*
 (c) Skelet (G. Georgiev) in terms of GNU GPL
 Converts cp1251 - DOS cyrillic.
 */
 
 int main()
 {
 unsigned char w;
 unsigned char First = 0xc0;
 unsigned char Last  = 0xff;
 while (!feof(stdin)) {
   w = getchar();
   if ((w = First)  (w = Last)) w -= 64;
   putchar(w);
 }
 return 0;
 }

..  ,   
 , :)  
  C getchar() (char),
 ( int).   
/  ,   
 , :

  int w;
  while ((w = getchar()) != -1) {
if (...)
  w -= 64;
putchar(w);
  }

  :)

   :   Unix-like
OS  tr(1):

  tr '[\300-\377]' '[\200-\277]'  source.txt  dest.txt

/  ,  tr(1)  
  ,  
.

   - :

http://zadnik.org/velin/txt/dos2win.asm
http://zadnik.org/velin/txt/dos2win.com

,  Linux ,  :)

,


-- 
Peter Pentchev  [EMAIL PROTECTED][EMAIL PROTECTED][EMAIL PROTECTED]
PGP key:http://people.FreeBSD.org/~roam/roam.key.asc
Key fingerprint FDBA FD79 C26F 3C51 C95E  DF9E ED18 B68D 1619 4553
I am not the subject of this sentence.


pgphZvsGO4qDP.pgp
Description: PGP signature


Re: lug-bg: qmail pop3 auth

2004-11-25 Thread Peter Pentchev
On Thu, Nov 25, 2004 at 09:39:46AM +0200, Denislav Ganchev wrote:
 On Wed, 2004-11-24 at 16:49 +0200, peyo wrote:
  . 
  
pop3d  qmail.
, pop3d   auth 
.
  , 
 timeot- ( auth). 
   
  1-2 .  ? 
,  IP-reverse   
  dns-a  ?
  
   .
   Qutlook
  -. 

 - tcpserver   -H,
   reverse DNS lookup   
.   -l local-hostname,
 DNS lookup , 
.  ,  ,
AUTH lookup, ,   , -R :)

 http://cr.yp.to/ucspi-tcp/tcpserver.html
:)   ,
manual pages  ucspi-tcp, djbdns  daemontools,  Gerritt Pape 
   - http://smarden.org/pape/djb/manpages/

,


-- 
Peter Pentchev  [EMAIL PROTECTED][EMAIL PROTECTED][EMAIL PROTECTED]
PGP key:http://people.FreeBSD.org/~roam/roam.key.asc
Key fingerprint FDBA FD79 C26F 3C51 C95E  DF9E ED18 B68D 1619 4553
This sentence contradicts itself - or rather - well, no, actually it doesn't!


pgpJpGHAb4zi7.pgp
Description: PGP signature


Re: lug-bg: RAID experience

2004-11-25 Thread Andrei Boyanov
.- 3ware.
  ,  , SATA 
RAID  .

   DFI *KM400-MLV 
(http://www.dfi.com.tw/Product/xx_product_spec_details_r_us.jsp?PRODUCT_ID=1960CATEGORY_TYPE=MBSITE=NA).*

   SATA  
  .   
 .



Vasil Kolev wrote:
On , 2004-11-23 at 17:45 +0200, Andrei Boyanov wrote:
 

[...]
3ware,   -  
,   ( 9xxx2.4.27,28
, 3ware   source).
marla.ludost.net  2   , 
   .
( marla 3 3ware ,  
 :) )
 

--
Andrei Boyanov
CEO of Active Solutions Ltd.
http://activesolutions.bg; http://andrei.activesolutions.bg

A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers).
http://www.linux-bulgaria.org - Hosted by Internet Group Ltd. - Stara Zagora
To unsubscribe: http://www.linux-bulgaria.org/public/mail_list.html



lug-bg: ip spoofing?!

2004-11-25 Thread slv69
!  
, . .
 nat.,  
 ,mail ,
 . ..   
  nat-  .   .
  - relaing denied.   ...  
!  mail-ip-,  ,   
 ,  .
...  traceroute, 
mail-. 
 .   
 .
!!..   .
 /  /,
   ,   vlan-.-

-:   ? 
  "  -"-  1 
  72 .: 11  (), . 
http://lifeconsult.info?mbg_m 


Re: lug-bg: ip spoofing?!

2004-11-25 Thread Peter Pentchev
On Thu, Nov 25, 2004 at 01:15:35PM +0200, [EMAIL PROTECTED] wrote:
 
 !
 
, .
 
  .  nat.
,, 
   mail
 ,  . ..  
nat- 
 .   .
 
  
   -
 relaing denied.   ...   !
   mail-ip-,  ,  
   ,
  . ...  traceroute, 
 mail-.

 ,- traceroute  
- man-in-the-middle  
Ethernet ( ) .   ARP
cache-  , IP ,   
,,   MAC( - 
 default gateway),   - MAC  
. ARP'arp -a -n'   
,   ,  
arp(1):)

 , MAC   default
gateway...,   
 default gateway?   'route print' (
Windows)  'netstat -rn' ( -   
)?

,


-- 
Peter Pentchev  [EMAIL PROTECTED][EMAIL PROTECTED][EMAIL PROTECTED]
PGP key:http://people.FreeBSD.org/~roam/roam.key.asc
Key fingerprint FDBA FD79 C26F 3C51 C95E  DF9E ED18 B68D 1619 4553
This would easier understand fewer had omitted.


pgpWSnu7EfhFd.pgp
Description: PGP signature


Re: lug-bg: RAID experience

2004-11-25 Thread Andrei Boyanov

Andrei Boyanov wrote:
.- 3ware.
  ,  , 
SATA RAID  .

   DFI *KM400-MLV 
(http://www.dfi.com.tw/Product/xx_product_spec_details_r_us.jsp?PRODUCT_ID=1960CATEGORY_TYPE=MBSITE=NA).* 


   RAID   VIA 8237


A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers).
http://www.linux-bulgaria.org - Hosted by Internet Group Ltd. - Stara Zagora
To unsubscribe: http://www.linux-bulgaria.org/public/mail_list.html



Re: lug-bg: RAID experience

2004-11-25 Thread Hristo Erinin
,

On Wed, 24 Nov 2004 21:54:37 +0200
Doncho N. Gunchev wrote:

   -software raid? ..  
  , ..?,  
   RAID.
  
 
  ,
  . IDE
  (hda  hdb  )
,
 IDE   PCI.,
IDE ,   
 300 USD   RAID   Linux,   .

www.asbis.bg  PCI SATA,   
   PATA  .  Silicon Image 3114 
 Promise TX2.


(   ) -  ()
 - 
   2.5 (160G ). 
   ( 
  RAID   ). /,

 MBR,
 BIOS hda  hdc, boot-  
.  ,   oops-,
 . , 
RAID1 ,
 .
 ?


-- 
Best Regards,
Hristo Erinin
Spectrum Net Jsc.
+35929657615

A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers).
http://www.linux-bulgaria.org - Hosted by Internet Group Ltd. - Stara Zagora
To unsubscribe: http://www.linux-bulgaria.org/public/mail_list.html



Re: lug-bg: ip spoofing?!

2004-11-25 Thread Vesselin Kolev
Peter Pentchev wrote:
 ,- traceroute  
- man-in-the-middle  
Ethernet ( ) .   ARP
cache-  , IP ,   
,,   MAC( - 
 default gateway),   - MAC  
. ARP'arp -a -n'   
,   ,  
arp(1):)
 , MAC   default
gateway...,   
 default gateway?   'route print' (
Windows)  'netstat -rn' ( -   
)?
 

 ip spoofing  Windows  
   .,
  MAC   default gateway.   Windows  
   RIP listener   RIP   
  . RIP listener-  Windows  ,  
  .
. 3
  (  
  RIP  3 ;2 
 ,   metric=16).

default 
gateway. (  
 ,).  
   - default gateway ( 
,-default). 
   :)   ,   
 .   
Linux/UNIX  ( 
  ).

 ,  ,  .
 .

  
 

A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers).
http://www.linux-bulgaria.org - Hosted by Internet Group Ltd. - Stara Zagora
To unsubscribe: http://www.linux-bulgaria.org/public/mail_list.html



Re: lug-bg: ip spoofing?!

2004-11-25 Thread Peter Pentchev
On Thu, Nov 25, 2004 at 01:54:01PM +0200, Vesselin Kolev wrote:
 Peter Pentchev wrote:
 
 
  ,- traceroute  
 - man-in-the-middle  
 Ethernet ( ) .   ARP
 cache-  , IP ,   
 ,,   MAC( - 
  default gateway),   - MAC  
 . ARP'arp -a -n'   
 ,   ,  
 arp(1):)
 
  , MAC   default
 gateway...,   
  default gateway?   'route print' (
 Windows)  'netstat -rn' ( -   
 )?
 
  ip spoofing  Windows  
.,
   MAC   default gateway.   Windows  
RIP listener   RIP   
   .
[snip]

..   , , 
,  
  'route print'  **,   
   default gateway,... , 
,  :) 
  ,...

 .. 'route print'  
'netstat -rn'? :)

  ,  ,  .
  .

,-   
  .

,


-- 
Peter Pentchev  [EMAIL PROTECTED][EMAIL PROTECTED][EMAIL PROTECTED]
PGP key:http://people.FreeBSD.org/~roam/roam.key.asc
Key fingerprint FDBA FD79 C26F 3C51 C95E  DF9E ED18 B68D 1619 4553
This sentence is false.


pgpFou16Picgw.pgp
Description: PGP signature


lug-bg: C/C++ Crypth library

2004-11-25 Thread Aleksandar Valchev
   (, )  
BSD . 
 .

A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers).
http://www.linux-bulgaria.org - Hosted by Internet Group Ltd. - Stara Zagora
To unsubscribe: http://www.linux-bulgaria.org/public/mail_list.html



Re: lug-bg: C/C++ Crypth library

2004-11-25 Thread Nikolay Mitev
Aleksandar Valchev wrote:
   (, )  BSD . 
 .
 

de-facto standard
http://openssl.org :-)
cheers,
face

A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers).
http://www.linux-bulgaria.org - Hosted by Internet Group Ltd. - Stara Zagora
To unsubscribe: http://www.linux-bulgaria.org/public/mail_list.html



Re: lug-bg: ip spoofing?!

2004-11-25 Thread Vesselin Kolev
Peter Pentchev wrote:
[snip]
..   , , 
,  
  'route print'  **,   
   default gateway,... , 
,  :) 
  ,...
 .. 'route print'  
'netstat -rn'? :)
 

  . .., 
. :) 
route print  . ,  ,   
 :) ,
. ,  ,  
 POP3 ,   
.  e
   ,   
   :)  
  . 
 - ,   

.SMTP.
   plain text auth   
  :) ,
 ,  ..   ,
. .. -   
.

  ...   RIP   
Peer-to-Peer  520/udp   .   unicast  
 . ,multicas ,
.   broadcast-. 
 unicast.

 ,   SSL . 
:)  .  , 
POP3S  SMTP/TLS.   
. -   
  CA
/   (Mozilla (  Mozilla Mail) 
 IE (  Outlook Express) - SMTP/TLS,  
POP3S ).  ,   
, CA  - 
  .  
-   . 
-,   ..   
,.  ,
, ( , 
  ,   
  CA ,,  
  ,  
:)
.   
   , :) 
 ,   MAC ,.. 
  .,
 .

,   , :)   .
 
   


A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers).
http://www.linux-bulgaria.org - Hosted by Internet Group Ltd. - Stara Zagora
To unsubscribe: http://www.linux-bulgaria.org/public/mail_list.html



Re: lug-bg: Linux Install Fest - Dobrich 2004

2004-11-25 Thread Delian Krustev
On Thursday 25 November 2004 12:35, Marian Marinov wrote:
 
 Linux Install Fest - Dobrich
 2004.  10-() 

  
...

   
 11-().
   
...

11-  12- ..

A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers).
http://www.linux-bulgaria.org - Hosted by Internet Group Ltd. - Stara Zagora
To unsubscribe: http://www.linux-bulgaria.org/public/mail_list.html



Re: lug-bg: C/C++ Crypth library

2004-11-25 Thread Peter Pentchev
On Thu, Nov 25, 2004 at 02:39:06PM +0200, Aleksandar Valchev wrote:
(, )  BSD . 
  .

  OpenSSL -- 
, .
,   
  :)

   mcrypt - http://mcrypt.sourceforge.net/ - -,
-, -non-portable,,
   -,OS/distributions.

,


-- 
Peter Pentchev  [EMAIL PROTECTED][EMAIL PROTECTED][EMAIL PROTECTED]
PGP key:http://people.FreeBSD.org/~roam/roam.key.asc
Key fingerprint FDBA FD79 C26F 3C51 C95E  DF9E ED18 B68D 1619 4553
I've heard that this sentence is a rumor.


pgpGsZJzhXh9J.pgp
Description: PGP signature


Re: lug-bg: Суров печат на кирилица върху Матричен принер

2004-11-25 Thread George Danchev
On Thursday 25 November 2004 12:19, Peter Pentchev wrote:
--cut--
:   Unix-like
 OS  tr(1):

   tr '[\300-\377]' '[\200-\277]'  source.txt  dest.txt

 /  ,  tr(1)  
   ,  
 .

- :

 http://zadnik.org/velin/txt/dos2win.asm
 http://zadnik.org/velin/txt/dos2win.com

trscripts... :
upstream: ftp://lml.bas.bg/home/anton/linux/
()
ftp://ftp.bg.debian.org/debian/pool/main/t/trscripts/

-- 
pub 4096R/0E4BD0AB  2003-03-18  keyserver.bu.edu ; pgp.mit.edu
fingerprint 1AE7 7C66 0A26 5BFF DF22 5D55 1C57 0C89 0E4B D0AB 

A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers).
http://www.linux-bulgaria.org - Hosted by Internet Group Ltd. - Stara Zagora
To unsubscribe: http://www.linux-bulgaria.org/public/mail_list.html



Re: lug-bg: RAID experience

2004-11-25 Thread Hristo Erinin
,

On Thu, 25 Nov 2004 12:42:15 +0200
Andrei Boyanov wrote:

 
 .- 3ware.
 
   ,  , SATA 
 RAID  .
 
DFI *KM400-MLV 
 (http://www.dfi.com.tw/Product/xx_product_spec_details_r_us.jsp?PRODUCT_ID=1960CATEGORY_TYPE=MBSITE=NA).*

 
SATA  
   .   
  .

   -, 
  .

  RAID   :
1) RAID .
  ,   .
http://linux.yyz.us/sata/faq-sata-raid.html

2)  (1)   -  
http://forums.viaarena.com/messageview.cfm?catid=28threadid=55977enterthread=y

3) -RAID  
http://spamaps.org/raidtests.php
http://forums.viaarena.com/messageview.cfm?catid=28threadid=59695enterthread=y

4) 
, RAID-   
.

5)   

 RAID .

 :RAID ,   !  
  ,   ,
   RAID .. RAID   
   .



-- 
Best Regards,
Hristo Erinin

A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers).
http://www.linux-bulgaria.org - Hosted by Internet Group Ltd. - Stara Zagora
To unsubscribe: http://www.linux-bulgaria.org/public/mail_list.html



Re: lug-bg: C/C++ Crypth library

2004-11-25 Thread Peter Pentchev
On Thu, Nov 25, 2004 at 02:54:06PM +0200, Peter Pentchev wrote:
 On Thu, Nov 25, 2004 at 02:39:06PM +0200, Aleksandar Valchev wrote:
 (, )  BSD . 
   .
 
   OpenSSL -- 
 , .
 ,   
   :)
 
mcrypt - http://mcrypt.sourceforge.net/ - -,
 -, -non-portable,,
-,OS/distributions.

...
OpenSSL  SSL connection -  key exchange 
,  optional authentication   ,  
 ...  
  OpenSSL /  
  API-  :)

,


-- 
Peter Pentchev  [EMAIL PROTECTED][EMAIL PROTECTED][EMAIL PROTECTED]
PGP key:http://people.FreeBSD.org/~roam/roam.key.asc
Key fingerprint FDBA FD79 C26F 3C51 C95E  DF9E ED18 B68D 1619 4553
If you think this sentence is confusing, then change one pig.


pgp0kHx0AnP7q.pgp
Description: PGP signature


Re: lug-bg: Linux Install Fest - Dobrich 2004

2004-11-25 Thread Dean Stoeff
Delian Krustev wrote:
On Thursday 25 November 2004 12:35, Marian Marinov wrote:
 

Linux Install Fest - Dobrich
2004.  10-()
   

 
...
 

  11-().
   

  
...
11-  12- ..
 

:) 

A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers).
http://www.linux-bulgaria.org - Hosted by Internet Group Ltd. - Stara Zagora
To unsubscribe: http://www.linux-bulgaria.org/public/mail_list.html



Re: [OT] lug-bg: Linux Install Fest - Dobrich 2004

2004-11-25 Thread Georgi Chorbadzhiyski
Dean Stoeff wrote:
 Delian Krustev wrote:
On Thursday 25 November 2004 12:35, Marian Marinov wrote:
 


   
 Linux Install Fest - Dobrich
2004.  10-() 
   
 
...
  
11-().
  
...

11-  12- ..
 
 :) 

 .  , 
  , 
  ,   
,
 10-  
.

-- 
Georgi Chorbadzhiyski
http://georgi.unixsol.org/

A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers).
http://www.linux-bulgaria.org - Hosted by Internet Group Ltd. - Stara Zagora
To unsubscribe: http://www.linux-bulgaria.org/public/mail_list.html



Re: lug-bg: RAID experience

2004-11-25 Thread Andrei Boyanov
,
Hristo Erinin wrote:
,
 

[...]

  RAID   :
1) RAID .
  ,   .
http://linux.yyz.us/sata/faq-sata-raid.html
2)  (1)   -  
http://forums.viaarena.com/messageview.cfm?catid=28threadid=55977enterthread=y
 

  
3Ware, .

.


A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers).
http://www.linux-bulgaria.org - Hosted by Internet Group Ltd. - Stara Zagora
To unsubscribe: http://www.linux-bulgaria.org/public/mail_list.html



Re: lug-bg: ip spoofing?!

2004-11-25 Thread slv69
! 
 ,   ,
 gateway,   
'' /..  /   
 ? .. ,  
   , ?  LAN-a  Windows 98
XP.-/  
/,  ...,
  - . ,
 .-

-:   ? 
  "  -"-  1 
  72 .: 11  (), . 
http://lifeconsult.info?mbg_m 


Re: lug-bg: Linux Install Fest - Dobrich 2004

2004-11-25 Thread Marian Marinov
   :( 
 
  
  :(
   11-  -   
e  
 12-  .

  .  

.

On Thursday 25 November 2004 01:21 pm, Dean Stoeff wrote:
 Delian Krustev wrote:
 On Thursday 25 November 2004 12:35, Marian Marinov wrote:

  Linux Install Fest - Dobrich
 2004.  10-() 

 
   
 ...
 
   
 11-().
 

 ...
 
 11-  12- ..
 
 :) 

 ===
= A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers).
 http://www.linux-bulgaria.org - Hosted by Internet Group Ltd. - Stara
 Zagora To unsubscribe: http://www.linux-bulgaria.org/public/mail_list.html
 ===
=

-- 
One Planet, One Internet.
We Are All Connected!

A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers).
http://www.linux-bulgaria.org - Hosted by Internet Group Ltd. - Stara Zagora
To unsubscribe: http://www.linux-bulgaria.org/public/mail_list.html



Re: lug-bg: Суров печат на кирилица върху Матричен принер

2004-11-25 Thread Doncho N. Gunchev
On 2004-11-25 (Thursday) 09:05, Ivaylo Toshev wrote:
 Georgi Chorbadzhiyski wrote:
 
 Doncho N. Gunchev wrote:
 
 On 2004-11-24 (Wednesday) 18:24, Skeleta wrote:
 
 Ivaylo Toshev wrote:
 
   , .
 
  .
  Windows  DOS  ,  LINUX.
 Linux   postscript  -  
 ,... .
   STAR LC-7211 -  Google -   .
,   ...   
 -.
 
  
 
 
   ,   
 Epson LX-300.  
cp-1251,
  MIC  .
 
 ,  ,
 -  .
 
 cat utf8.txt | iconv -f utf-8 -t cp1251 ? :)
 
 
cat :)
 
 iconv -f utf-8 -t cp1251  utf8.txt
 
   cat,  
 

 ,   ... 
  -,  .


   iconvMIC  MIK  
.
 ICONV -  .
 

,   :(,  
  ?

-- 
Regards,
  Doncho N. GunchevRegistered Linux User #291323 at counter.li.org
  GPG-Key-ID: 1024D/DA454F79http://pgp.mit.edu
  Key fingerprint = 684F 688B C508 C609 0371  5E0F A089 CB15 DA45 4F79

A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers).
http://www.linux-bulgaria.org - Hosted by Internet Group Ltd. - Stara Zagora
To unsubscribe: http://www.linux-bulgaria.org/public/mail_list.html



Re: lug-bg: RAID experience

2004-11-25 Thread Doncho N. Gunchev
On 2004-11-25 (Thursday) 13:43, Hristo Erinin wrote:
 ,
 
 On Wed, 24 Nov 2004 21:54:37 +0200
 Doncho N. Gunchev wrote:
 
-software raid? ..  
   , ..?,  
RAID.
   
  
   ,
   . IDE
   (hda  hdb  )
 ,
  IDE   PCI.,
 IDE ,   
  300 USD   RAID   Linux,   .
 
 www.asbis.bg  PCI SATA,   
PATA  .  Silicon Image 3114 
  Promise TX2.
 

10xz a lot

 
 (   ) -  ()
  - 
2.5 (160G ). 
( 
   RAID   ). /,
 
  MBR,
  BIOS hda  hdc, boot-  

 , BIOS- map-   0x80   .
   (   BIOS-). 
   
BIOS-,   bootloader-  0x80.
   : 
   (,
 BIOS-   )/   
/.

 .  ,   oops-,
  . , 
 RAID1 ,
  .
  ?
 

  .  fedora-devel  test, 
/ .
 BIOS-  (   
 GRUB/bootloader-/) .  
RAID1  GRUB,   ,  
(   /initrd).
  ... .-
,  2-3 MB   160 GB ,  
.

-- 
Regards,
  Doncho N. GunchevRegistered Linux User #291323 at counter.li.org
  GPG-Key-ID: 1024D/DA454F79http://pgp.mit.edu
  Key fingerprint = 684F 688B C508 C609 0371  5E0F A089 CB15 DA45 4F79

A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers).
http://www.linux-bulgaria.org - Hosted by Internet Group Ltd. - Stara Zagora
To unsubscribe: http://www.linux-bulgaria.org/public/mail_list.html



Re: lug-bg: RAID experience

2004-11-25 Thread Doncho N. Gunchev
On 2004-11-24 (Wednesday) 23:13,   wrote:
 Doncho N. Gunchev wrote:
 ,
 IDE ,   
  300 USD   RAID   Linux,   .
 
  ,   FAQ, SATA: 
 http://linux.yyz.us/sata/faq-sata-raid.html
 
  RADI-,   
   ,   RAID
  ...?   http://www.linuxbios.org/?

-- 
Regards,
  Doncho N. GunchevRegistered Linux User #291323 at counter.li.org
  GPG-Key-ID: 1024D/DA454F79http://pgp.mit.edu
  Key fingerprint = 684F 688B C508 C609 0371  5E0F A089 CB15 DA45 4F79

A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers).
http://www.linux-bulgaria.org - Hosted by Internet Group Ltd. - Stara Zagora
To unsubscribe: http://www.linux-bulgaria.org/public/mail_list.html