lug-bg: .odf file format

2005-02-03 Thread Nick Angelow
.
,.odf
.  ,  
HP LaserJet1100A,  .

  google (http://filext.com/detaillist.php?extdetail=ODF) 
 :

---
Extension: ODF   
Program and/or Extension Function: BattleZone Cartographers Guild File
---
Extension: ODF   
Program and/or Extension Function: OnkoS Data
Company: OnkoS
---
Extension: ODF   
Program and/or Extension Function: Open Document Interchange (ODIF)
---
Extension: ODF   
Program and/or Extension Function: OpenOffice/StarOffice OpenDocument 
(Ver 2) Formula
Company: Sun Microsystems, Inc.

Specific Notes
This file format is part of the Open Document Format for Office 
Applications (OpenDocument) 1.0 specification. This OASIS format is 
expected to become an industry standard for sharing documents. It is 
being adopted by the OpenOffice/StarOffice version 2 software suite but 
may appear in other products as well.
---

OpenOffice 1.9.m74  Linux  Windows   
 . ,   
  :

1.
(  openoffice );

2. 
  --  ?  -- 
   (imho),
   . google ,  
,  ...;

3. http://ftp.spnet.net/openoffice/developer/680_m74/, 
  Linux  OpenOffice .rpm ,  
. 
.rpm   , ,
   .  ,  ,   
 .

 .
--
the lamers team honourable member

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: .odf file format

2005-02-03 Thread SpyMac
spoko - ne e virus :-)
begin:vcard
fn:Vladimir Frish
n:Frish;Vladimir
org:BB Media Ltd.
adr:;;33 Vasil Levski blvd. ;Sofia;SF;1000;BULGARIA
email;internet:[EMAIL PROTECTED]
title:Worldwide CEO
tel;work:+359.2.9877918
tel;fax:+359.2.9877918
tel;cell:+359.899.162194
url:http://www.bbmedia.org
version:2.1
end:vcard



Re: lug-bg: .odf file format

2005-02-03 Thread Hristo Simenov Hristov
On Thursday 03 February 2005 11:08, Nick Angelow wrote:

 3. http://ftp.spnet.net/openoffice/developer/680_m74/,
   Linux  OpenOffice .rpm , 
 .
 .rpm   , ,   
.  ,  ,  
  .

RPM ,   
.  
 .  
 . 2  install  
uninstall  ., 
  root .install 
: ./install   rpm 
  rpm  - RPM.  
 RPMrpm .
- : /home/USER/OpenOffice.org2.0

   
 .
. .   
   
,   Ark,  7zip ( windows).


-- 
-
Hristo Simeonov Hristov
Leader of OpenOffice.org Bulgarian

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: Сраваняване на 2 променливи в баш

2005-02-03 Thread Vasil Kolev
On , 2005-02-03 at 11:45 +0200, Martin Kolev wrote:
 , 
 
  bash
 ,
 .
   :
 
 #!/bin/bash
 
 a=2390347223
 b=455455
 
 c=`echo $a+$b|bc`
 
 if [ $c -gt $b ];
   then
 echo c e po-goliamo ot b
   else
 echo c e po-malko ot b
 fi
 
 
  , 
 -.   
   ?
 

 c=a+b,b  0,   c   - 
 b,  
   .   
?

(,   |bc   
let c=$a+$b
)


signature.asc
Description: This is a digitally signed message part


Re: lug-bg: Сраваняване на 2 променливи в баш

2005-02-03 Thread Огнян Кулев
Martin Kolev wrote:
#!/bin/bash
a=2390347223
b=455455
c=`echo $a+$b|bc`
if [ $c -gt $b ];
then
echo c e po-goliamo ot b
else
echo c e po-malko ot b
fi
 , -.   
  ?
$ printf '%x\n' $c
8e80c0f6
   32-  32-   1, ..
   -gt.

,


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: Сраваняване на 2 променливи в баш

2005-02-03 Thread Peter Pentchev
On Thu, Feb 03, 2005 at 11:45:01AM +0200, Martin Kolev wrote:
 
 , 
 
  bash
 ,
 .
   :
 
 #!/bin/bash
 
 a=2390347223
 b=455455
 
 c=`echo $a+$b|bc`

   
 :)

  ,  
   bash, 
  portable shell 
scripts,  
 c=$(($a + $b))   .   
   
   ksh, 
  Korn shell, 
/bin/sh,
 ... so don't
do that.

  shell 
scripts   
 expr(1):

c  = `expr $a + $b`

...  
.

 if [ $c -gt $b ];

 
   
  ,
 
.  ...  , 
   'c' 
expr,  
 /bin/expr, 
 
  ...
, ,   if [ $c -gt 
$b ];
   then
 echo c e po-goliamo ot b
   else
 echo c e po-malko ot b
 fi
 
 
  , 
 -.   
   ?

   .  
:

#!/bin/bash

echo Proba s 'bc'

a=2390347223
b=455455

c=`echo $a+$b|bc`
echo a is $a, b is $b, c is $c

if [ $c -gt $b ];
  then
echo c e po-goliamo ot b
  else
echo c e po-malko ot b
fi

echo Proba s 'expr'

a=2390347223
b=455455

c=`expr $a + $b`
echo a is $a, b is $b, c is $c

if [ $c -gt $b ];
  then
echo c e po-goliamo ot b
  else
echo c e po-malko ot b
fi


   Debian Sarge  ...

,



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: Сраваняване на 2 променливи в баш

2005-02-03 Thread Georgi Chorbadzhiyski
Martin Kolev wrote:
 , 
 
  bash,
 .  :
 
 #!/bin/bash
 
 a=2390347223

  ?   bash-   
  -  max(long)

 b=455455
 
 c=`echo $a+$b|bc`

   #!/bin/bashc=$(($a+$b))

 if [ $c -gt $b ];
   then
 echo c e po-goliamo ot b
   else
 echo c e po-malko ot b
 fi
 
 
  , -.   
   ?

-- 
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: Сраваняване на 2 променливи в баш

2005-02-03 Thread Peter Pentchev
On Thu, Feb 03, 2005 at 12:00:26PM +0200, Vasil Kolev wrote:
 On , 2005-02-03 at 11:45 +0200, Martin Kolev wrote:
  , 
[snip]
  
   , 
  -.   
?
  
 
  c=a+b,b  0,   c   
 -  b,  
.   
 ?

 
'   -',
  ,   
 if ,  c 
-  b...   
 expr   
- echo-, .


32- : 
 a 2^32-1, 
  -
,   
32-   .
  bc- 
 ( ),
 bash-  ( 
... ,
,   ,   bash  
 echo $BASH_VERSION
? :)

,


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: .odf file format

2005-02-03 Thread Nick Angelow
Hristo Simenov Hristov wrote:
On Thursday 03 February 2005 11:08, Nick Angelow wrote:
 

3. http://ftp.spnet.net/openoffice/developer/680_m74/,
  Linux  OpenOffice .rpm , 
.
.rpm   , ,   
   .  ,  ,  
 .
   

RPM ,   
.  
 .  
 . 2  install  
uninstall  ., 
  root .install 
: ./install   rpm 
  rpm  - RPM.  
 RPMrpm .
- : /home/USER/OpenOffice.org2.0
 

,  .
  fedora core 2 =   rpm.
 rpm,man rpm :)

 ,   
tar -zxvf OOo_1.9.m74_native_LinuxIntel_install.tar.gz,   
 RPMS,:

openofficeorg-calc-1.9.74-1.i586.rpm
openofficeorg-core-1.9.74-1.i586.rpm
openofficeorg-draw-1.9.74-1.i586.rpm
openofficeorg-gnome-integration-1.9.74-1.i586.rpm
openofficeorg-graphicfilter-1.9.74-1.i586.rpm
openofficeorg-impress-1.9.74-1.i586.rpm
openofficeorg-javafilter-1.9.74-1.i586.rpm
openofficeorg-math-1.9.74-1.i586.rpm
openofficeorg-redhat-menus-1.9.74-1.noarch.rpm
openofficeorg-spellcheck-1.9.74-1.i586.rpm
openofficeorg-suse-menus-1.9.74-1.noarch.rpm
openofficeorg-testtool-1.9.74-1.i586.rpm
openofficeorg-writer-1.9.74-1.i586.rpm
openofficeorg-xsltfilter-1.9.74-1.i586.rpm
  -,  ,   
install  setup,  .
openofficeorg-core-1.9.74-1.i586.rpm,   ,  /   
 ,   ,  
  ,  .

   
 .
. .   
   
,   Ark,  7zip ( windows).
 

 ,,   
  -  hex ?
-?   , ,   
   ,  .

   windows,  file roller .
--
Nick Angelow
the lamers team honourable member

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: .odf file format

2005-02-03 Thread Georgi Chorbadzhiyski
Nick Angelow wrote:
 3. http://ftp.spnet.net/openoffice/developer/680_m74/, 
   Linux  OpenOffice .rpm ,  
 . 
 .rpm   , ,
.  ,  ,   
  .

  . rpm-  Slackware.

http://www.linuxquestions.org/questions/showthread.php?s=threadid=267411

-- 
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



lug-bg: concatenation

2005-02-03 Thread SpyMac
,
 - :
/*
Gather and unzip all required component files.
Then concatentate all unzipped files into one
single file named sol-10-GA-x86-dvd-iso.iso.
*/
 

begin:vcard
fn:Vladimir Frish
n:Frish;Vladimir
org:BB Media Ltd.
adr:;;33 Vasil Levski blvd. ;Sofia;SF;1000;BULGARIA
email;internet:[EMAIL PROTECTED]
title:Worldwide CEO
tel;work:+359.2.9877918
tel;fax:+359.2.9877918
tel;cell:+359.899.162194
url:http://www.bbmedia.org
version:2.1
end:vcard



Re: lug-bg: Сраваняване на 2 променливи в баш

2005-02-03 Thread Peter Pentchev
On Thu, Feb 03, 2005 at 12:08:57PM +0200, Georgi Chorbadzhiyski wrote:
 Martin Kolev wrote:
  , 
  
   bash
  ,
  .
:
  
  #!/bin/bash
  
  a=2390347223
 
   ? 
   bash-   
   -  max(long)

...  :)

[EMAIL PROTECTED]:pts/5 ~/tmp/foo/bash-2.05b-2/bash-2.05b]$ echo $BASH_VERSION
2.05b.0(1)-release

 CHANGES:

[snip   2.05-alpha1  2.05b...]

This document details the changes between this version, bash-2.05b-alpha1,
and the previous version, bash-2.05a-release.

[snip]

3.  New Features in Bash

[snip]

j.  The shell now performs arithmetic in the largest integer size the
machine supports (intmax_t), instead of long.


   
  bash  :)
 
  b=455455
  
  c=`echo $a+$b|bc`
 
#!/bin/bashc=$(($a+$b))

 .. ,
 :)


,   ,
 Linux :)  (, , 
bash Linux, 
  ,
   #!/bin/sh,   ...)

,


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: concatenation

2005-02-03 Thread Georgi Chorbadzhiyski
SpyMac wrote:
  - :
 
 /*
 Gather and unzip all required component files.
 
 Then concatentate all unzipped files into one
 single file named sol-10-GA-x86-dvd-iso.iso.
 */
 
  

 .

-- 
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: Сраваняване на 2 променливи в баш

2005-02-03 Thread Georgi Chorbadzhiyski
Peter Pentchev wrote:
 On Thu, Feb 03, 2005 at 12:08:57PM +0200, Georgi Chorbadzhiyski wrote:
 
Martin Kolev wrote:

, 

 bash
,
.
  :

#!/bin/bash

a=2390347223

  ? 
  bash-   
  -  max(long)
 
 
 ...  :)
 
 [EMAIL PROTECTED]:pts/5 ~/tmp/foo/bash-2.05b-2/bash-2.05b]$ echo $BASH_VERSION
 2.05b.0(1)-release
 
  CHANGES:
 
 [snip   2.05-alpha1  2.05b...]
 
 This document details the changes between this version, bash-2.05b-alpha1,
 and the previous version, bash-2.05a-release.
 
 [snip]
 
 3.  New Features in Bash
 
 [snip]
 
 j.  The shell now performs arithmetic in the largest integer size the
 machine supports (intmax_t), instead of long.

[EMAIL PROTECTED]:~$ echo $BASH_VERSION
3.00.15(2)-release

[EMAIL PROTECTED]:~$ sh ./xx
c e po-goliamo ot b

 .


   bash  :)
 
b=455455

c=`echo $a+$b|bc`

   #!/bin/bashc=$(($a+$b))
 
 
  .. ,
  :)

  
 ,   ,
  Linux :)  (, , 
 bash Linux, 
   ,
#!/bin/sh,   ...)

   #!/bin/bash

-- 
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: concatenation

2005-02-03 Thread George Danchev
On Thursday 03 February 2005 12:37, SpyMac wrote:
 ,

  - :

 /*
 Gather and unzip all required component files.

 Then concatentate all unzipped files into one
 single file named sol-10-GA-x86-dvd-iso.iso.
 */

  

   :
http://www.sun.com/software/solaris/download_instruction.xml

For UNIX:
Using the UNIX cat command, copy the files in the correct order, into a single 
file named:
sol-10-GA-x86-dvd.iso for x86, or
sol-10-GA-sp-dvd.iso for SPARC:

Note: The correct syntax for the cat command is: cat file1 file2 ... [ fileN] 
 file where file1, file2, fileN are the download images and file is 
the .iso file you are creating.

For Windows:
To concatenate the files, type copy /b file1 + file2 [+ fileN] file at command 
prompt (file1 through fileN are the images that were downloaded. All files 
should be concatenated into a single file named:
sol-10-GA-x86-dvd.iso for x86, or
sol-10-GA-sp-dvd.iso for SPARC:

  x86  (dtrace, predictive self-healing...) 
 ;-) 

  :
http://www.filibeto.org/mailman/listinfo/
 
-- 
pub 4096R/0E4BD0AB 2003-03-18 danchev.fccf.net/key pgp.mit.edu
fingerprint1AE7 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: .odf file format

2005-02-03 Thread Hristo Simenov Hristov
On Thursday 03 February 2005 12:17, Nick Angelow wrote:
 ,  .

   fedora core 2 =   rpm.   
  rpm,man rpm :)

  ,   
 tar -zxvf OOo_1.9.m74_native_LinuxIntel_install.tar.gz,  
  RPMS,:

 openofficeorg-calc-1.9.74-1.i586.rpm
 openofficeorg-core-1.9.74-1.i586.rpm
 openofficeorg-draw-1.9.74-1.i586.rpm
 openofficeorg-gnome-integration-1.9.74-1.i586.rpm
 openofficeorg-graphicfilter-1.9.74-1.i586.rpm
 openofficeorg-impress-1.9.74-1.i586.rpm
 openofficeorg-javafilter-1.9.74-1.i586.rpm
 openofficeorg-math-1.9.74-1.i586.rpm
 openofficeorg-redhat-menus-1.9.74-1.noarch.rpm
 openofficeorg-spellcheck-1.9.74-1.i586.rpm
 openofficeorg-suse-menus-1.9.74-1.noarch.rpm
 openofficeorg-testtool-1.9.74-1.i586.rpm
 openofficeorg-writer-1.9.74-1.i586.rpm
 openofficeorg-xsltfilter-1.9.74-1.i586.rpm

   -,  ,  
 install  setup,  .   
 openofficeorg-core-1.9.74-1.i586.rpm,   ,  /  
  ,   , 
   ,  .
 :)  
ftp://ftp.spnet.net/ooo-bg/
 2 . 
  RPM,   /home/user 
- .RPM_OFFICEDATABASE
uninstall  . 
 .   
 SuSE  :)
  bg   (   
).   2.0  
 (   ).

  ,,  
   -  hex ?   
 -?   , ,  
,  .

windows,  file roller .

   file roller   , 
.
-- 
-
Hristo Simeonov Hristov
Leader of OpenOffice.org Bulgarian

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: Re: lug-bg: Сраваняване на 2 променливи в баш

2005-02-03 Thread Martin Kolev

Georgi Chorbadzhiyski wrote:

Martin Kolev wrote:
  

,

 bash, 
.  :

  


? :

#!/bin/bash
a=23453623997000888
b=235363499600
if [ $(echo $a  $b | bc) -eq 1 ]; then
echo a  b
else
echo a  b
fi



--
The complicated problems have simple and easy for understanding bad answers.

Georgi Genov
[EMAIL PROTECTED]



  ,   .   
 .

,
 



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: Re: lug-bg: Сраваняване на 2 променливи в баш

2005-02-03 Thread Romeo Ninov
  :
c=$[$a-$b]

c=`echo $a+$b|bc`

:
=12345678901234567890;b=12345678801234567880;export a b
echo $[$a-$b]
1010
Martin Kolev wrote:
On Thu, Feb 03, 2005 at 11:45:01AM +0200, Martin Kolev wrote:
,
 bash, 
.  :

#!/bin/bash
a=2390347223
b=455455
c=`echo $a+$b|bc`

:)
  , bash,   
portable shell scripts,c=$(($a +
$b))   .   
  ksh,   Korn shell, 
/bin/sh, ... so don't do that.
  shell scripts
expr(1):
c  = `expr $a + $b`
...  .

if [ $c -gt $b ];

 
 ,  .
...  ,'c'
 expr,   /bin/expr,  
  ...
, ,   if [ $c -gt $b ];
then
echo c e po-goliamo ot b
else
echo c e po-malko ot b
fi
 , -.  
?

   .  :
#!/bin/bash
echo Proba s 'bc'
a=2390347223
b=455455
c=`echo $a+$b|bc`
echo a is $a, b is $b, c is $c
if [ $c -gt $b ];
  then
echo c e po-goliamo ot b
  else
echo c e po-malko ot b
fi
echo Proba s 'expr'
a=2390347223
b=455455
c=`expr $a + $b`
echo a is $a, b is $b, c is $c
if [ $c -gt $b ];
  then
echo c e po-goliamo ot b
  else
echo c e po-malko ot b
fi

   , :
Proba s 'bc'
a is 2390347223, b is 455455, c is 2390802678
./math: [: 2390802678: integer expression expected
c e po-malko ot b
Proba s 'expr'
a is 2390347223, b is 455455, c is -1904164618
c e po-malko ot b
:
Debian Woody
Linux backup 2.4.19 #17 SMP Wed Sep 18 21:42:45 EEST 2002 i686 unknown
..   ,  expr, let, bc,  
  : c=$(($a + $b)), c e po-malko ot b.
 ,: if [ $c \
$b ];
,
 



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



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: LDAP based IMAP virtual hosting

2005-02-03 Thread Vesselin Kolev
,
  -   .   IMAP 
,LDAP   ?   
MTA (
   IMAPMTA, 
Perl)   socket map.


LDAP? LDAP   
DN (test.example.comLDAP 
  ou=People,dn=test,dn=example,dn=com,
mail.domain.net   ou=People,dn=mail,dn=domain,dn=net  ..). 
, IMAP   DN  
  (  )  ( 
   )   LDAP   
. 
LDAP (digest-MD5).

  Cyrus,  base DN 
   DN (..  
--DN   ,   
   DN. 
: 
 ( 
 ).

CourierDN ,   
 ,SMTP 
   MTA  
(DNS   
   SMTPSendmail,  
, ).

  .
 
   

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: Re: lug-bg: Сраваняване на 2 променливи в баш

2005-02-03 Thread Peter Pentchev
On Thu, Feb 03, 2005 at 01:49:37PM +0200, Romeo Ninov wrote:
   :
 c=$[$a-$b]
 
 c=`echo $a+$b|bc`

,  $[] -   
 - portable 
$(()), ,   ,  
Korn
shells,  ,   
   
POSIX-   /bin/sh.
,   
 -  ,
  - $((..))
   
,
  , 
.

 
 :
 =12345678901234567890;b=12345678801234567880;export a b
 echo $[$a-$b]
 1010


 ,   , 
Bash 2.05-alpha1  :)

  
  Bash...

,


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: Re: lug-bg: Re: lug-bg: Сраваняване на 2 променливи в баш

2005-02-03 Thread Martin Kolev
On Thu, Feb 03, 2005 at 01:49:37PM +0200, Romeo Ninov wrote:
   :
 c=$[$a-$b]
 
 c=`echo $a+$b|bc`

,  $[] -- portable 
$(()), ,   ,  Korn
shells,  ,  
POSIX-   /bin/sh.,   
 -  ,  - $((..)) 
  ,  
, .

 
 :
 =12345678901234567890;b=12345678801234567880;export a b echo $[$a-$b] 
 1010


 ,   , Bash 2.05-alpha1  :)

Bash...

,




 Bash e:

GNU bash, version 2.05a.0(1)-release (i386-pc-linux-gnu)
Copyright 2001 Free Software Foundation, Inc.

,
 



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: .odf file format

2005-02-03 Thread Hristo Erinin
,

On Thu, 03 Feb 2005 12:17:23 +0200
Nick Angelow wrote:

  ,,   
   -  hex ?  
  -?   , , 
 ,  .

  file(1)  strings(1)   
 .   Fedorata -   magic .


-- 
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: Re: lug-bg: Re: lug-bg: Сраваняване на 2 променливи в баш

2005-02-03 Thread Peter Pentchev
On Thu, Feb 03, 2005 at 02:35:49PM +0200, Martin Kolev wrote:
[I wrote:]

Bash...
 
  Bash e:
 
 GNU bash, version 2.05a.0(1)-release (i386-pc-linux-gnu)
 Copyright 2001 Free Software Foundation, Inc.

,   'a'  .   2.05b  
bash 
-  
 ,  
  $(()),  -gt, -lt  ..  
.   
 bash   2.05b.

  , 
   Outlook-
,
   , 
   
,   ? :)
   ' ' 
  ,   
   .  ,   
,-
,   ,
,
  :)

,


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: USB irda Bridge SITr4200 Slackware current

2005-02-03 Thread alexandar_angelov
  

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: USB irda Bridge SITr4200 Slackware current

2005-02-03 Thread alexandar_angelov
  
  Samsung X600

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: LDAP based IMAP virtual hosting

2005-02-03 Thread Sava Chankov
Vesselin Kolev wrote:
,
  -   .   IMAP 
,LDAP   ?   
MTA (
   IMAPMTA, 
Perl)   socket map.


LDAP? LDAP   
DN (test.example.comLDAP 
  ou=People,dn=test,dn=example,dn=com,
mail.domain.net   ou=People,dn=mail,dn=domain,dn=net  ..). 
dc=test,dc=example,dc=com (dc - domain component, 
   map-  DNS  LDAP)? .. LDAP
,,  
.

, IMAP   DN  
  (  )  ( 
   )   LDAP   
. 
LDAP (digest-MD5).
 (.. )  LDAP  
cyrus   -  auxprop   OpenLDAP  Howard 
Cho  saslauthd  Igor Brezac. .
,
LDAP , (referrals),
.

  Cyrus,  base DN 
   DN (..  
--DN   ,   
   DN. 
: 
 ( 
 ).
cyrus,ldap_
  ptloader , .  ,
   %1, %2, ... %9ldap_base 
-  man   imapd.conf,  
  :) %1-9 = domain tokens (%1 = tld, %2 = domain when %d = 
domain.tld), ..

ldap_base = dc=%3,dc=%2,dc=%1
.
   ,  LDAP-  LDAP ,  
:

root of LDAP
|
+---domain1.tld
||
|+---Group
|| |
|| +---cn=groupname
|| |
||...
||
|+---People
|  |
|  +---uid=username
|  |
| ...
...
+---domainN.tld
 -   
 LDAP 
   , ,   
 organizationalUnit .

   - IMAP:   postfix   
 cyrus  LMTP (Local Mail Transfer Protocol). 
   Diego Rivera, 
   (2.1.5). postfix, 
  : 1)  (  postfix 2.1.5,  
   ) 2)- 
postfix  2.1.,  2.0.x 

 MTA-   
  socket map   .

/ , 
  .

--
Sava Chankov  
research and development
http://www.blueboard.biz  

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: LDAP based IMAP virtual hosting

2005-02-03 Thread Vasil Kolev
On , 2005-02-03 at 13:58 +0200, Vesselin Kolev wrote:
 ,
 
   -   .  
  IMAP 
 ,LDAP  
  ?   

  MTA (
IMAPMTA, 
 
 Perl)   socket map.
 

,  postfix-ldap  
courier-imap,  
 LDAP? courier-   
  , 
MTA-  ..,   
  courier-mta,  
courier-imap.


signature.asc
Description: This is a digitally signed message part


Re: lug-bg: LDAP based IMAP virtual hosting

2005-02-03 Thread Vesselin Kolev
Sava Chankov wrote:
Vesselin Kolev wrote:
   
 LDAP? LDAP  
 DN (test.example.com  
  LDAP   ou=People,dn=test,dn=example,dn=com,  
  mail.domain.net   
ou=People,dn=mail,dn=domain,dn=net  ..). 

dc=test,dc=example,dc=com (dc - domain component, 
   map-  DNS  LDAP)? .. LDAP 
   ,
,  .

.  LDAP . 
  user
uid=user,ou=People,dc=test,dc=example,dc=com.

 (.. )  
LDAP  cyrus   -  auxprop   
OpenLDAP  Howard Cho  saslauthd  Igor Brezac.
 .,   
 LDAP ,
 (referrals),   
 .

saslauthd , 
 . ,  
saslauthd (  REALM): 
[EMAIL PROTECTED]  [EMAIL PROTECTED]

cyrus,ldap_  
ptloader , 
.  ,
   %1, %2, ... %9
ldap_base -  man   imapd.conf,  
  :) %1-9 = domain tokens (%1 = tld, %2 
= domain when %d = domain.tld), ..

ldap_base = dc=%3,dc=%2,dc=%1
.
   ,  LDAP-  LDAP 
,  :

root of LDAP
|
+---domain1.tld
||
|+---Group
|| |
|| +---cn=groupname
|| |
||...
||
|+---People
|  |
|  +---uid=username
|  |
| ...
...
+---domainN.tld
,  ,  
LDAP root   ,  sub  
.   
saslauthd   [EMAIL PROTECTED]  
domain1.tld?  .

...
,. LDAP 
. , 
:(

 MTA- 
socket map   .
Socket mapembeded USB ,  
  cyrus  lmtp  .  ,  
  (   cyrusv2),   
socket map.   Sendmail  Cyrus   :

http://anfi.homeunix.net/sendmail/rtcyrus-socket.html
 embeded :)   ..
 .
  

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: Berkeley DB C++ compile

2005-02-03 Thread Aleksandar Valchev
 .

 libdb-4.2.   
 ,   
  .#include 
db4/db.h.   
gcc -Wall -o test test.c -ldb-4
   
.

,  ,  ++.  ++  
:
#include db4/db_cxx.h

int main()
{ 
 Db db(NULL, 0);
 
 return 0; 
}

  .
   
g++ -Wall -Wno-deprecated -o test test.cpp -ldb-4
:
/tmp/cczSirYq.o(.text+0x2b): In function `main':
: undefinied reference to `Db::Db[in-charge](DbEnv*, unsigned)'
/tmp/cczSirYq.o(.text+0x2b): In function `main':
: undefinied reference to `Db::~Db [in-charge]'
collect2: ld returned 1 exit status

.-ldb-4
, .

   Slackware-current.   
  
libdb-4.2.a,   , 
++.   
  ,Slackware,
   ++?

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: LDAP based IMAP virtual hosting

2005-02-03 Thread Vesselin Kolev
Vasil Kolev wrote:
,  postfix-ldap  courier-imap,  
 LDAP? courier- , 
MTA-  .., courier-mta,  
courier-imap.
 

.   postfix  MTA,
 MDAmaildir-   courier-imap.
 .  LDAP ,  
 IMAP
   LDAP   IMAP ?

  cyrus   -o,   
 Postifix  Sendmail
 socket  IMAP LDAP. IMAP 
,,  
( 
   ).
..
  ,.

 
   

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: LDAP based IMAP virtual hosting

2005-02-03 Thread Sava Chankov
Vesselin Kolev wrote:
Sava Chankov wrote:
Vesselin Kolev wrote:
   
 LDAP? LDAP  
 DN (test.example.com  
  LDAP   ou=People,dn=test,dn=example,dn=com,  
  mail.domain.net   
ou=People,dn=mail,dn=domain,dn=net  ..). 

dc=test,dc=example,dc=com (dc - domain component, 
   map-  DNS  LDAP)? .. LDAP 
   ,
,  .

.  LDAP . 
  user
uid=user,ou=People,dc=test,dc=example,dc=com.

 (.. )  
LDAP  cyrus   -  auxprop   
OpenLDAP  Howard Cho  saslauthd  Igor Brezac.
 .,   
 LDAP ,
 (referrals),   
 .

saslauthd , 
 . ,  
saslauthd (  REALM): 
[EMAIL PROTECTED]  [EMAIL PROTECTED]
ldap_servers: ldap://ldap.domain.net ldap://ldap.domain.com
ldap_bind_dn: uid=golemiyat_chitatel,ou=People,dc=%2,dc=%1
ldap_bind_pw: nyakakva_parola
ldap_search_base: ou=People,dc=%2,dc=%1
ldap_auth_method: bind
ldap_filter: uid=%U
ldap_scope: sub
ldap_version: 3
   ,:
uid=golemiyat_chitatel,ou=People,dc=domain,dc=net
uid=golemiyat_chitatel,ou=People,dc=domain,dc=com
  .  ,   
ldaps://   ldap_start_tls ,   LDAP 
.

--
Sava Chankov  
research and development
http://www.blueboard.biz  

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: Berkeley DB C++ compile

2005-02-03 Thread George Danchev
On Thursday 03 February 2005 16:47, Aleksandar Valchev wrote:
  .

  libdb-4.2.   
  , 
.   
  #include db4/db.h. 
   gcc -Wall -o test test.c -ldb-4

 .

 ,  ,  ++.  ++  
 :
 #include db4/db_cxx.h

#include db_cxx.h

 int main()
 {
  Db db(NULL, 0);

  return 0;
 }

   .
   
 g++ -Wall -Wno-deprecated -o test test.cpp -ldb-4
 :

-ldb_cxx

 /tmp/cczSirYq.o(.text+0x2b): In function `main':
 : undefinied reference to `Db::Db[in-charge](DbEnv*, unsigned)'

 /tmp/cczSirYq.o(.text+0x2b): In function `main':
 : undefinied reference to `Db::~Db [in-charge]'

 collect2: ld returned 1 exit status

 .-ldb-4   
  ,
 .

g++ -Wall -Wno-deprecated -o test test.cpp -ldb_cxx

Slackware-current.   
  
 libdb-4.2.a,   , 
 ++. 
,Slackware,  
  ++?

  ...   : http://www.sleepycat.com/download.html

dpkg -L libdb4.2++-dev
/.
/usr
/usr/include
/usr/include/db_cxx.h
/usr/lib
/usr/lib/libdb_cxx-4.2.a
/usr/lib/libdb_cxx-4.2.la
/usr/lib/libdb_cxx.a
/usr/share
/usr/share/doc
/usr/share/doc/libdb4.2++-dev
/usr/share/doc/libdb4.2++-dev/copyright
/usr/share/doc/libdb4.2++-dev/changelog.Debian.gz
/usr/lib/libdb_cxx-4.so
/usr/lib/libdb_cxx.so

 usr/include/db_cxx.h ( 
  ) 
libdevel/libdb3++-dev,libdevel/libdb4.3++-dev,libdevel/libdb4.2++-dev,libdevel/libdb4.1++-dev,libdevel/libdb4.0++-dev
   .

-- 
pub 4096R/0E4BD0AB 2003-03-18 danchev.fccf.net/key pgp.mit.edu
fingerprint1AE7 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: Berkeley DB C++ compile

2005-02-03 Thread Aleksandar Valchev
++  
. .

.

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: LDAP based IMAP virtual hosting

2005-02-03 Thread Vesselin Kolev
Sava Chankov wrote:
ldap_servers: ldap://ldap.domain.net ldap://ldap.domain.com
ldap_bind_dn: uid=golemiyat_chitatel,ou=People,dc=%2,dc=%1
ldap_bind_pw: nyakakva_parola
ldap_search_base: ou=People,dc=%2,dc=%1
ldap_auth_method: bind
ldap_filter: uid=%U
ldap_scope: sub
ldap_version: 3
  :),  
   mail.domain.com  domain.net?   
  [EMAIL PROTECTED],  dc=%2,dc=%1   
dc=mail,dc=com..   [EMAIL PROTECTED] dc=%2,dc=%1 ,  
dc=domain,dc=net. dc=mail  
   ?

   ldap_search_base: 
ou=People,dc=%3,dc=%2,dc=%1  [EMAIL PROTECTED], 
dc DN.

 ?
 


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: Търся помощници за Тиликс

2005-02-03 Thread Ilia Bazliancov
   1 (0.6) 
   , 
  .   
 ,  
,   C++

:
1. UnionFS  tmpfs.
, UnionFS  -  
-  
  RAM 
.   
  -  
  - 
-   .

2. SquashFS  cloop.
- SquashFS   
30 % -
  cloop,   -  
   -
 .

3.   bootsplash  gfxboot
, 
   .

  ,   
 ,.

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: LDAP based IMAP virtual hosting

2005-02-03 Thread Delian Krustev
On Thursday 03 February 2005 21:17, Vesselin Kolev wrote:

   qmail.

  .   
   
   

 (  , 
  IMAP . 

  ,   ,   

 .  qmail 
   
 /var/qmail/users/assign

   
 , 
  
 UID/GID?   
   
   ?   
   
 .

  
  uid/gid,  
   .  

  .qmail   web interface, 
 
   .qmail 
. 
.. Maildir quotas.

   qmail. DJB 
   
  .

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: Търся помощници за Тиликс

2005-02-03 Thread Alexander P. Panov
Ilia Bazliancov wrote:
   1 (0.6), 
  .,  
,   C++
:
1. UnionFS  tmpfs.
, UnionFS  -  -  
  RAM .   
  -- 
-   .
2. SquashFS  cloop.
- SquashFS   30 % -
  cloop,   - -
 .
3.   bootsplash  gfxboot
,.
  ,,.
 ,,  
  .
--
Best Regards
Alexander P. Panov
ICQ: 18926904
Tel: ++359 2 8725880
GSM: ++359 887 602185
www.evitatrade.com/alex
www.karatebulgaria.com/alex

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: LDAP based IMAP virtual hosting

2005-02-03 Thread Vasil Kolev
On , 2005-02-03 at 21:17 +0200, Vesselin Kolev wrote:
 Vasil Kolev wrote:
 
  imap 
, 
  .   
  -
 ,  
, 
 .
 
  ,   
   LDAP-
 .
   
 
  .   

   
 
 (  , 
  IMAP .
 , 
   
 UID/GID?   

   ?   

 .
 
  ,  ... 
  
UID-,  
 ,   
 -  
 UID-.

 --  - 
   nss-ldap
   ,  

  LDAP- :) 


signature.asc
Description: This is a digitally signed message part


Re: lug-bg: LDAP based IMAP virtual hosting

2005-02-03 Thread Vesselin Kolev
Delian Krustev wrote:
On Thursday 03 February 2005 21:17, Vesselin Kolev wrote:
   qmail.
 

 ...
  ,   ,   
 .  qmail
 /var/qmail/users/assign
 

  ... 
  .LDAP   
 ... ( ).

uid/gid,  
   . 

 
  .qmail   web interface,  
   .qmail . 
.. Maildir quotas.
   qmail. DJB
  .
 

 DJB,  qmail.   
 Cyrus  Courier (),  
 Communicate Gate Pro, 
  Netscape.


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: LDAP based IMAP virtual hosting

2005-02-03 Thread Vesselin Kolev
Sava Chankov wrote:
ldap_servers: ldap://ldap.domain.net ldap://ldap.domain.com
ldap_bind_dn: uid=golemiyat_chitatel,ou=People,dc=%2,dc=%1
ldap_bind_pw: nyakakva_parola
ldap_search_base: ou=People,dc=%2,dc=%1
ldap_auth_method: bind
ldap_filter: uid=%U
ldap_scope: sub
ldap_version: 3
   ,:
uid=golemiyat_chitatel,ou=People,dc=domain,dc=net
uid=golemiyat_chitatel,ou=People,dc=domain,dc=com
  .  , 
  ldaps://   
ldap_start_tls ,   LDAP .


  .. 
   :)  
 .

 Cyrus . web  
,  .

 ... .
 
   

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-1 на дискове на две различни машини

2005-02-03 Thread Anton Tinchev
ISCSI - http://linux-iscsi.sourceforge.net/

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