ubuntu JE ? slightly off topic

2006-09-06 Thread aamehl

A co-worker just informed me that there is now a ubuntu ce (christian edition)
and while I haven't had the time to take a look, I thought it might be nice to
have a je. (jewish edition)

some thought that struck my over-worked mind were:


* comes with a default lunar calendar and has popups for how many cleaning days
left till pesach.
* Daf Yomi for Linux in 32 languages
* your choice of slang, hebrew, yiddish or aramaic
* (this one's for Marc V.) instead of a fortune your favorite Aphorisims from
Avadia Yosef.
* gematria of the day

Come on this is a project waiting to happen,

I see the line waiting to sign up getting longer and longer, as I type...





=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



subversion ouch

2006-06-29 Thread aamehl

Hi all,

for various reasons I have been using subversion at work.

This has worked fine for me when I was the only one using the repository.
I started a project where I am working with a coworker who has agreed to use
subversion.


Now I see things are not working correctly.

I of course set up subversion locally, duh and now I gather there is no way to
add users.

I put the repository on the companies remote server, to get this working must I
have a server installed there?

If not can I continue as I have been and somehow fix something.

Right now the problems I see are that while each of us can update and commit we
don't see each others work.

What must I do to get this working?

Thanks,
Aaron




=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



was no subject now is autoreconnect

2006-06-20 Thread aamehl


HI again,

On second thought I didn't catch that the previous script is run at time 
periods.

What I was looking for was it to be event driven not time driven.


the connection dies, the system reconnects.


So I gather to do this I would need a daemon running which checks for a live
connection and then if the connection dies its notification would trigger the
connect script to run?


I found pppstatus but I am not sure it will be of help.

Is this possible?

Thanks
Aaron



=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



(no subject)

2006-06-19 Thread aamehl


Hi all,

I am looking for an elegant solution to my internet connecivity.

I use actcom and connect with a script.
What I want is some fine tuning. I would like the script to run.
When my computer reboots (which isn't often, its Linux after all) When my
connection dies (this is the most important since I often access my home
computer from work)

I was given a script to use with cron, but I never found that it worked for me,
but I could be something I am doing wrong.

I would prefer a more elegent approach which checks to see if I am connected,
the way I do manually ie ifconfig and pinging a known address. If the connection
is down then run the connect script.

Any ideas would be most helpful. I will paste the various scripts I have at the
end of this email.
Thanks,
Aaron

-
[EMAIL PROTECTED]:/usr/sbin# cat ptstart
#!/bin/sh
# Put your connection startup commands here VPN=172.26.255.198
USER=[EMAIL PROTECTED]
MTU=1350
CABLEGW=`route -n | grep ^0.0.0.0 | awk '{ print $1 }'`

cat /etc/ppp/resolv.conf  /etc/resolv.conf

route del default
#route add 172.26.255.198 gw $CABLEGW
route add 172.26.255.198 gw 172.25.96.1
PPTP=`which pptp`
$PPTP $VPN user $USER defaultroute noauth mtu $MTU exit 0 [EMAIL 
PROTECTED]:/usr/sbin#  

---

[EMAIL PROTECTED]:/usr/sbin# cat ptstop
#!/bin/bash
#Put your connection stop commands here
killall pptp
exit 0
/etc/init.d/networking restart
[EMAIL PROTECTED]:/usr/sbin#

-
[EMAIL PROTECTED]:/usr/sbin# cat ptcron
#!/bin/sh
TESTHOST=198.133.219.25 #Host to ping-test: cisco.com
STOPSCRIPT=/usr/sbin/ptstop #Script to stop a connection
STARTSCRIPT=/usr/sbin/ptstart #Script to start a connection #Make sure we
don't have 2 instances on this script running at once [ -e /var/run/ptcron.pid ]
 exit 0 touch /var/run/ptcron.pid # The actual connectivity testing is right
here PING=`which ping` if $PING -c 3 -n $TESTHOST  /dev/null; then exit 0 rm -f
/var/run/ptcron.pid fi

echo -e Link is dead, reloading
$STOPSCRIPT
# wait a little while to let the pppd processes to shut down sleep 2
$STARTSCRIPT rm -f /var/run/ptcron.pid exit 0 [EMAIL PROTECTED]:/usr/sbin#
--

:)



=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: (no subject)

2006-06-19 Thread aamehl
Thanks that is what I was looking for,

Aaron


Quoting Geoffrey S. Mendelson [EMAIL PROTECTED]:

 On Tue, Jun 20, 2006 at 08:12:57AM +0300, [EMAIL PROTECTED] wrote:
  I am looking for an elegant solution to my internet connecivity.
 
 I use a script called cablecheck. It runs every minute and if there is no
 PPP connection, it runs a script called cablestart.
 
 ---
 #!/bin/bash
 
 X=`ifconfig ppp0 2/dev/null`
 if [  $X ==   ] ; then
   /usr/local/bin/cablestart
 fi
 ---
 
 The relevant parts of cablestart are:
 ---
 #!/bin/bash
 
 CPS=`ps -ax | grep cablestart | grep -cv grep `
 
 echo cps is  $CPS
 
 if [ 2 == $CPS ] ; then
   echo ok starting cable connection
   else
   echo cablestart is already running.
   exit
 fi
 
 PS=`ps -ax | grep dhclient | grep eth1 | awk {print \\$1}`
 
 if [   !=  $PS ] ; then
   echo killing dhcp client for eth1 psid  $PS
   kill -KILL $PS
   else
   echo no dhcp client running for eth1 (good)
 fi
 
 PS=`ps -ax | grep cable.netvision.net.il | grep pptp-linux | awk {print
 \\$1}`
 
 if [   !=  $PS ] ; then
   echo killing pptp client for netvision psid  $PS
   kill -KILL $PS
   else
   echo no pptp client running for netvision (good)
 fi
 
 
 echo shutting down eth1
 /sbin/ifdown eth1
 echo restarting eth1
 /sbin/ifup eth1
 
 ---
 
 It's probably sloppy code, but it works. It check to make sure there is
 not already a cablestart running  and if there is none, starts one.
 
 Geoff.
 
 -- 
 Geoffrey S. Mendelson, Jerusalem, Israel [EMAIL PROTECTED]  N3OWJ/4X1GM
 IL Voice: (07)-7424-1667  IL Fax: 972-2-648-1443 U.S. Voice: 1-215-821-1838 
 Visit my 'blog at http://geoffstechno.livejournal.com/
 






=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



no x

2006-03-29 Thread aamehl

Hi all,
I successfully installed colinux on winxp but probably with all the fiddling I
did I messed something up.

When I try starting x, I get and error that it cannot stat /etc/X11/X (no such
file or directory)

I googled and found that X is a symlink to the xserver, but the link they
suggested is for xfree86 not xorg, which is what I am running.

What is the link from X  the the xorg server executable?

I am using debian (ubuntu).

Thanks
Aaron




=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



accessing my computer from a windows box

2006-03-08 Thread aamehl

Hi all,

I need a way to get some files from my home computer (Ubuntu) and bring them to
my work computer.

I don't want any permanent solution, but something like scp.

I tried the pscp from putty but it won't open for me.

I of course can't fiddle with win network settings.
I was able to enter my home computer with ssh and putty, but had no idea how to
use it to get files from there to here.

Any ideas would be most appreciated.

thanks
Aaron




=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Trying to play *.wmv files in Linux (Debian Sarge) using totem

2006-03-06 Thread aamehl
Quoting Omer Zak [EMAIL PROTECTED]:
I had the same problem and google said it is a problem with wmv9 dll, which I
have installed.

I also haven't gotten wmv's to work.

Aaron
 totem complains that it does not have codecs to play *.wmv files.
 
 I found MPlayer's Web site downlaod section at
 http://mplayerhq.hu/homepage/design7/dload.html
 and downloaded from there essential-20050412.tar.bz2.
 
 After bunzipping+untarring it to a temporary directory, I invoked
 totem's add proprietary plugins, and it moved the files to
 ~/.gnome2/totem-addons
 
 After doing the above, totem still does not recognize *.wmv files.
 The README file in the above .tar.bz2 only explains how to use the
 plugins in MPlayer, which does not exist in Debian Sarge main (fully
 Free software).
 
 What (if anything) did I miss?
   Thanks,
--- Omer
 -- 
 My Commodore 64 is suffering from slowness and insufficiency of memory;
 and its display device is grievously short of pixels.  Can anyone help?
 My own blog is at http://tddpirate.livejournal.com/
 
 My opinions, as expressed in this E-mail message, are mine alone.
 They do not represent the official policy of any organization with which
 I may be affiliated in any way.
 WARNING TO SPAMMERS:  at http://www.zak.co.il/spamwarning.html
 
 
 =
 To unsubscribe, send mail to [EMAIL PROTECTED] with
 the word unsubscribe in the message body, e.g., run the command
 echo unsubscribe | mail [EMAIL PROTECTED]
 
 






=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



copying from 1 to 2

2004-12-26 Thread aamehl
Hi all,

I fiddled to much with things I really didn't understand, udev and 2.6.8
kernel plus other things (it was fun).

now I have reinstalled debian on another partition.

I was wondering if there is a way to get information from my old debian
to quickly get my new one to have the same apps and setup.

Aaron


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Did upgrade from Evolution 1.4 to Evolution 2.0.3 costed me RSS following capability?

2004-12-26 Thread aamehl
Additionally, I just installed 2.03 copied my evolution/local/*
directories and they don't show up.

Evolution didn't install a /home/me/evolution folder, has this changed?

how do I get my old folders to come back to life?

Thanks
Aaron
On Sat, 2004-12-25 at 18:54 +0200, Muli Ben-Yehuda wrote:
 On Sat, Dec 25, 2004 at 04:16:57PM +, Baruch Even wrote:
  Omer Zak wrote:
  In the previous version of Evolution, I had a nice Summary view, in
  which could register and keep track of several RSS streams.
  [...]
  Does anyone know anything about this?
  
  It's gone. Evo folks decided to take it away.
  
  What (if at all) can I use in lieu of this lost feature?
  
  One of the many other programs intended for this purpose. You can find 
  RSS support in Firefox.
 
 If you like having it in your MUA (I do) and don't want to be tied to
 a particular MUA, stick rss2email in a cronjob and enjoy the
 love. http://www.aaronsw.com/2002/rss2email/. 
 
 Cheers, 
 Muli


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Did upgrade from Evolution 1.4 to Evolution 2.0.3 costed me RSS following capability?

2004-12-26 Thread aamehl
A differnt problem, in my case,

I didn't upgrade but installed from scratch on a different partition and
copied /home/me/evolution (-R) to the new home (evolution didn't install
an evolution dir in my new home?

so now I am trying to figure out how to keep my previous setting without
losing the saved emails...

Aaron
On Sun, 2004-12-26 at 20:33 +0200, Omer Zak wrote:
 This part of the Evolution upgrade prcess was, surprisingly enough, a
 non-problem for me.
 
 I adhered religiously to aptitude.
 
 When Evolution 2.0.3 started up for the first time, it imported my
 Evolution 1.4 files (except for the RSS feed definitions *sob*).
 
 It then asked me if I want to delete the old files.  The dialog offered me
 three options - Ask me later, Yes, No.  For the time being, I select Ask
 me later every time I start up Evolution.
 
 On Sun, 26 Dec 2004, aamehl wrote:
 
  Additionally, I just installed 2.03 copied my evolution/local/*
  directories and they don't show up.
 
  Evolution didn't install a /home/me/evolution folder, has this changed?
 
  how do I get my old folders to come back to life?
  --- Omer
 My opinions, as expressed in this E-mail message, are mine alone.
 They do not represent the official policy of any organization with which
 I may be affiliated in any way.
 WARNING TO SPAMMERS:  at http://www.zak.co.il/spamwarning.html
 
 
 =
 To unsubscribe, send mail to [EMAIL PROTECTED] with
 the word unsubscribe in the message body, e.g., run the command
 echo unsubscribe | mail [EMAIL PROTECTED]
 


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



hebew gpe

2004-07-25 Thread aamehl
Hi all,

I am trying to add hebrew to my linux ipaq/with gpe.

I wrote the users group and recieved the following reply about hebrew:

 Is it possible to add hebrew support to gpe?
 
 Yes. Please see
   http://www.handhelds.org:8080/wiki/GPEInternationalisation
 for a start.
 
 For the onscreen keyboard, use one of the *.xkbd files on
 http://handhelds.org/~mallum/xkbd/ as an example.
 
 Cheers,
   Colin


I am however not sure how these help me. Could I use the xkbd file from
iglu?

And what .po does for me? Is there a hebrew one already available
somewhere. 

Or is this of no help and must I do something else.

gpe will btw install debs with no problem.
Thanks

Aaron


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: A story in Yediot

2004-07-20 Thread aamehl
Hey a friend translates it as the last idiot...


anyways another friend installed XP on five partitions on the same
computer and couldn't understand why nothing worked.

I don't know many who install their would OS, and partitioning under
linux I find to be much easier than with windoze.

Also the distro they choose was most unfair, a windoze person would most
likely try a lindows/xandros etc etc. type of distro before suse or
friends.

my 2 cents (agorot)

Aaron
On א', 2004-07-18 at 14:34, Yosef Meller wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 
 Yediot Kalkala has a story today about installing Linux for the home
 user. They sampled Kazit and SUSE.
 
 although the problems they mention are real, As usual on that paper the
 subtext is pro-windows. I was esp. surprised about the writer's surprise
 when his LiveCD did not remmember ghis setting from run to run. Duh... I
 can't decide whether this is disinformation or plain ignorance from the
 writer's side.
 
 - --
 ~  No, I do not contain myself,
 ~  were the final words from the set of self-excluding sets. :-)
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.2.4 (GNU/Linux)
 Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
 
 iD8DBQFA+l2GaElZPz0soKgRAk5dAJsFQrhSNg+pEUL3wi+5Y++gyzXlNgCgqjnL
 nzQgXQLjB2E1IQvHzntu2lw=
 =Ua88
 -END PGP SIGNATURE-
 
 =
 To unsubscribe, send mail to [EMAIL PROTECTED] with
 the word unsubscribe in the message body, e.g., run the command
 echo unsubscribe | mail [EMAIL PROTECTED]
 


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Developing Platform for web programing

2004-07-13 Thread aamehl
I am not sure what you mean by a platform exactly.

But the nuke world if you are a php person offers a lot.
the zope/plone world if you don't mind a steep learning curve offers
some amazing things in addition to what you asked for.

Aa
On ג', 2004-07-13 at 12:13, Ben-Nes Michael wrote:
 As my company grew i discovered im lacking some mechanizim that will
 control the web site developing.
  
 Currently every one in the company that edit a html, class file need
 to first ask if any one already working on it. this starting to become
 a major problem because sometimes workers working on the same file
 which result in total chaos.
  
 I need some kind of developing system that will enable me to:
 * keep track of what have been done.
 * version control.
 * some kind of publish action that will upload the files to the
 server.
 * file locking.
 * permission handeling.
 * debuging
 * any other nifty feature like: link checks, image check ...
  
 Any one know of such solution ?
  
 It should work on Linux :) but its not have to be free software
  
 Thanks
 --
 Canaan Surfing Ltd.
 Internet Service Providers
 Ben-Nes Michael - Manager
 Tel: 972-4-6991122
 Fax: 972-4-6990098
 http://www.canaan.net.il
 --
 


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Developing Platform for web programing

2004-07-13 Thread aamehl
As I said the zope/plone world answers the call, but the learning curve
is steep.

Aaron
On ', 2004-07-13 at 16:33, Ben-Nes Michael wrote:
 - Original Message - 
 From: aamehl [EMAIL PROTECTED]
 To: Ben-Nes Michael [EMAIL PROTECTED]
 Cc: linux isreal [EMAIL PROTECTED]
 Sent: Tuesday, July 13, 2004 1:02 PM
 Subject: Re: Developing Platform for web programing
 
 
  I am not sure what you mean by a platform exactly.
 
  But the nuke world if you are a php person offers a lot.
  the zope/plone world if you don't mind a steep learning curve offers
  some amazing things in addition to what you asked for.
 
 im looking for an esier aproch to build big web site by group. and not a php
 solution like php nuke.
 a method that will insure that no one working on a file while
 simultaniously. ( for example )
 
  Aa
  On ', 2004-07-13 at 12:13, Ben-Nes Michael wrote:
   As my company grew i discovered im lacking some mechanizim that will
   control the web site developing.
  
   Currently every one in the company that edit a html, class file need
   to first ask if any one already working on it. this starting to become
   a major problem because sometimes workers working on the same file
   which result in total chaos.
  
   I need some kind of developing system that will enable me to:
   * keep track of what have been done.
   * version control.
   * some kind of publish action that will upload the files to the
   server.
   * file locking.
   * permission handeling.
   * debuging
   * any other nifty feature like: link checks, image check ...
  
   Any one know of such solution ?
  
   It should work on Linux :) but its not have to be free software
  
   Thanks
   --
   Canaan Surfing Ltd.
   Internet Service Providers
   Ben-Nes Michael - Manager
   Tel: 972-4-6991122
   Fax: 972-4-6990098
   http://www.canaan.net.il
   --
  
 
 
  =
  To unsubscribe, send mail to [EMAIL PROTECTED] with
  the word unsubscribe in the message body, e.g., run the command
  echo unsubscribe | mail [EMAIL PROTECTED]
 
 
 


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Good office suite with powerful formulas?

2004-06-29 Thread aamehl
I hate to mention it but,

LaTex was created for this. Lyx should give you what you need. I will
warn you that it is a paradine switch.

good luck
Aaron


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



cp -a

2004-06-27 Thread aamehl
Hi I looked this up and I still don't understand it.

I am following directions that tell me to do the following:

cp -a /usr/. /mnt/card

man cp tells me that -a means archive.

but what archive means I don't get. Also what does the . (dot) do?

The terminal output I get is strange as well.

cp: unable to remove `/mnt/card/./bin/[': Success
cp: unable to remove `/mnt/card/./bin/w': Success


I don't understand what cp has with removing and if it can't what is
Success?

Thanks
Aaron


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



links in pdf

2004-06-24 Thread aamehl
Hi all,

A friend asked me to make him some pdfs from a word doc for him. This
was no problem from OO I made a ps and ran ps2pdf.

But none of the links in his document work.
I know that distiller will preserve links, is there a way to do this on
linux??

Thanks
Aaron


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: links in pdf

2004-06-24 Thread aamehl
thanks

Aaron
On ו', 2004-06-25 at 07:50, Shoshannah Forbes wrote:
 From: Shoshannah Forbes [EMAIL PROTECTED]
 Date: 07:42:17 GMT+03:00 25 יוני 2004
 To: aamehl [EMAIL PROTECTED]
 Cc: linux isreal [EMAIL PROTECTED]
 Subject: Re: links in pdf
 Content-Type: text/plain; charset=US-ASCII; format=flowed
 
 
 On 24/06/2004, at 23:17, aamehl wrote:
  But none of the links in his document work.
  I know that distiller will preserve links, is there a way to do this on
  linux??
 
 Use the extended pdf macro for OOo (GPL):
 http://www.jdisoftware.co.uk/pages/epdf-home.php
 
 ---
 Shoshannah Forbes
 http://www.xslf.com
 
 
 =
 To unsubscribe, send mail to [EMAIL PROTECTED] with
 the word unsubscribe in the message body, e.g., run the command
 echo unsubscribe | mail [EMAIL PROTECTED]
 


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: CrossOver Office 3.0.0 Hebrew support

2004-06-14 Thread aamehl
This is of course only good with version 3.0 right?

Thanks
Aaron
On ב', 2004-06-14 at 08:53, Shachar Shemesh wrote:
 Hi all,
 
 We are offering a replacement DLL to add Hebrew support for CrossOver 
 Office 3.0.0. This does NOT solve the keyboard problem in Word, but does 
 bring the BiDi support already provided by Wine into CrossOver Office.
 
 More details, as well as actual download:
 http://www.lingnu.com/support.html
 
  Shachar


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: CrossOver Office 3.0.0 Hebrew support

2004-06-14 Thread aamehl
cxoffice  2.1.0.

Aaron


On ', 2004-06-14 at 13:51, Shachar Shemesh wrote:
 This particular binary is aimed at 3.0. Wine, of course, has it 
 regardless of the above. What other versions are you referring to?
 
  Shachar
 
 aamehl wrote:
 
 This is of course only good with version 3.0 right?
 
 Thanks
 Aaron
 On ', 2004-06-14 at 08:53, Shachar Shemesh wrote:
   
 
 Hi all,
 
 We are offering a replacement DLL to add Hebrew support for CrossOver 
 Office 3.0.0. This does NOT solve the keyboard problem in Word, but does 
 bring the BiDi support already provided by Wine into CrossOver Office.
 
 More details, as well as actual download:
 http://www.lingnu.com/support.html
 
  Shachar
 
 
 
   
 
 


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: CrossOver Office 3.0.0 Hebrew support

2004-06-14 Thread aamehl
Hmn,
I think I am in a 'catch 22'.
I bought Xandros, I didn't buy codeweaver.
This means that Xandros is responible for the upgrade.

It could be that the upgrade is available through Xandros, I will give
it a try.

thanks
Aaron
On ב', 2004-06-14 at 14:05, Shachar Shemesh wrote:
 aamehl wrote:
 
 cxoffice  2.1.0.
 
 Aaron
 
 
 On ב', 2004-06-14 at 13:51, Shachar Shemesh wrote:
   
 
 This particular binary is aimed at 3.0. Wine, of course, has it 
 regardless of the above. What other versions are you referring to?
 
  Shachar
 
 aamehl wrote:
 
 
 
 This is of course only good with version 3.0 right?
 
 Thanks
 Aaron
   
 
 If you are feeling brave, you can try. While this is, of course, free 
 software, this REALLY means all guarantees are off.
 
 Then again, if you ask CodeWeavers nicely, they may just let you upgrade 
 due to this reason.
 
  Shachar


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: ALSA+Fedora core 2

2004-06-14 Thread aamehl
The best solution for alsa and fedora is planet CCRMA.
http://ccrma.stanford.edu/planetccrma/software/
This is an apt-get repository which will get your audio up and running.

Aaron

On ב', 2004-06-14 at 19:56, Oded Arbel wrote:
 On Monday 14 June 2004 19:09, Amir Spivak wrote:
  Hi all,
  i have Fedora core 2, it has alsa utils already in it, but the sound card
  on my ASUS motherboard wasn't detected properly, how can i activate alsa
  to detect it? there is no alsaconf, alsaconfig binary anywhere on the
  system. thanks.
 
 best get the correct module to be modprobed at run time (/etc/modprobe.conf). 
 try to run kudzo for detection stuff


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: CrossOver Office 3.0.0 Hebrew support

2004-06-14 Thread aamehl
On ב', 2004-06-14 at 08:53, Shachar Shemesh wrote:
 Hi all,
 
 We are offering a replacement DLL to add Hebrew support for CrossOver 
 Office 3.0.0. This does NOT solve the keyboard problem in Word,

What keyboard problem?
Thanks
Aaron
  but does 
 bring the BiDi support already provided by Wine into CrossOver Office.
 
 More details, as well as actual download:
 http://www.lingnu.com/support.html
 
  Shachar


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



RE: Off Topic (or not) What whould you have done insted ?

2004-06-09 Thread aamehl
I am using Hot also,

The service men were fixing cables on the street. I asked them if this
could be the reason for my poor service for the last month and they
answered me no it was just a problem for today which would be fixed
shortly. (it took all day)

I couldn't connect and call hot. I got the same response you did, they
only support windoze. I told him to let me translate to linux an just do
his tests.

He had me try to connect without using my dialer, (I have a fixed ip)
nothing happened and he hung up on me. I used the dialer and connected
no problem.

Actcom assured me that the problem is either the cable company or my
hardware.

I get the feeling that broadband in Israel, not just sorta a joke, they
really don't know what they're doing.

my connection goes down at least twice a day if not more.


Aaron


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: reinstalling sound driver

2004-06-08 Thread aamehl
Did you look in the alsa sound card matrix?

Aaron
On ג', 2004-06-08 at 14:41, Amir Spivak wrote:
 Hi all,
 I setup a Fedora core 1 machine with a new ASUS motherboard, the audio
 device is onboard and was detected as Intel Corp...
 it isn't Intel sound card and i don't know how to reinstall the
 driver. the true sound card is:
 AI Audio technology
 SoundMAX ADI AD1985 AC '97 audio CODEC.
 where can i find a Linux driver for this device'
 thx.


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



who sells ipaq accessories?

2004-06-03 Thread aamehl
HI,

I just recieved a used ipaq 3630. I even installed opie (linux) on it. I
am looking for somewhere to buy accessories for it in Israel.

Does anyone know who handles ipaq here in Israel?

Thanks
Aaron


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: shell game

2004-04-29 Thread aamehl
Yup that did it,

Thanks
Aaron
On Thu, 2004-04-29 at 11:18, Oded Arbel wrote:
 On Thursday 29 April 2004 07:22, aamehl wrote:
  I recently switched from Xandros to Mepis. On Xandros, Fedora and MDK I
  had a nice addition to my panel, a shell menu, where I could choose
  konsole, konsole root, a python shell etc.
 
  On Mephis I don't see it. Does anyone know what it is called so I can
  check to see if it is installed?
 
 If you mean - the KDE panel, then its just a matter of having it in the 
 defaults - in new MDKs it isn't there also. just right click the panel, 
 choose panel menu-add-special button-terminal sessions.

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



hebrc

2004-04-28 Thread aamehl
Well I see that the keyboard issue is what makes the hebrc worthwhile. I
went through the iglu howto and am overwhelmed by to much information.


Could someone distill the keyboard issue into a few lines for me?

I gather I must download a keyboardmap and then copy it somewhere?

Then I need to update my XF86Config file with something?

Then?

Thanks
Aaron

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: hebrewrc

2004-04-28 Thread aamehl
hmn,

thanks I just changed my XF86Config and nothing happened. I still have
no hebrew.

Also in the openoffice printsetup I no longer see a place to add fonts?

How do I determine why I don't have hebrew?

I installed all the proper fonts and applications.

still no hebrew?

Any ideas how to trace where the problem is?

Aaron
On Wed, 2004-04-28 at 16:08, Tzafrir Cohen wrote:
 On Tue, Apr 27, 2004 at 04:22:42AM +0300, Micha Feigin wrote:
  On Sun, Apr 25, 2004 at 11:22:50PM +0300, aamehl wrote:
   On Sunday 25 April 2004 14:32, [EMAIL PROTECTED] wrote:
   Hi 
   Yes I know about alien,
   but if you saw my previous thread you would see that on debian things
   are not 
   called the same names or in the same places.
   
  
  Most files (i.e the ones in /usr/share) seem like they should go in the
  same place.
  
  The only file that seems to be a problem is etc/X11/Xkbmap which I am
  not sure how it should be converted automatically (you can add it
  manually to XF86config-4). It will probably take a sed script or
  something like that.
 
 IIRC debian does not have anything equivalent.
 
 Though you can add a simple setxkbmap command in a separate file under
 /etc/X11/Xsession.d . Editing XF86Config* in such a script is generally
 not a good idea, as it is not easy to undo.
 
 BTW: the proper place for vim files has changed a bit from wody to
 sarge, IIRC: I think it is in something like /usr/share/vim/common on
 sarge .

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: hebrc

2004-04-28 Thread aamehl
Thanks for the quick reply,

That is what I did but I got no hebrew so I just now did
dpkg-reconfigure locales and I will see if that helps.
In fact hebrew wasn't checked...
Aaron
On Wed, 2004-04-28 at 17:27, Micha Feigin wrote:
 On Wed, Apr 28, 2004 at 12:39:27PM +0300, aamehl wrote:
  Well I see that the keyboard issue is what makes the hebrc worthwhile. I
  went through the iglu howto and am overwhelmed by to much information.
  
  
  Could someone distill the keyboard issue into a few lines for me?
  
  I gather I must download a keyboardmap and then copy it somewhere?
  
  Then I need to update my XF86Config file with something?
  
 
 Find the InputDevice section of your XF86Config, it should have a line
 at least similar to 
 Driver keyboard
 Which means its related to the keyboard. in there you should either put
 or modify the line to have something like
   Option  XkbLayout us,il
   Option  XkbOptionsgrp:shift_toggle,grp_led:scroll
 The layout defines the keyboard layout (the il is the hebrew layout
 that comes with X). the grp:... options define the key sequence to
 switch the language and grp_led:scroll makes the scroll lock light up
 to show that you are in hebrew mode. pressing both shift keys switches
 the language.
 This is for X 4.3, use just il instead of us,il for X 4.2.
 
 
  Then?
  
  Thanks
  Aaron
  
  =
  To unsubscribe, send mail to [EMAIL PROTECTED] with
  the word unsubscribe in the message body, e.g., run the command
  echo unsubscribe | mail [EMAIL PROTECTED]
  
   
   +++
   This Mail Was Scanned By Mail-seCure System
   at the Tel-Aviv University CC.
  
 
 =
 To unsubscribe, send mail to [EMAIL PROTECTED] with
 the word unsubscribe in the message body, e.g., run the command
 echo unsubscribe | mail [EMAIL PROTECTED]
 

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: hebrewrc

2004-04-27 Thread aamehl
great

Aaron
On Tue, 2004-04-27 at 04:22, Micha Feigin wrote:
 On Sun, Apr 25, 2004 at 11:22:50PM +0300, aamehl wrote:
  On Sunday 25 April 2004 14:32, [EMAIL PROTECTED] wrote:
  Hi 
  Yes I know about alien,
  but if you saw my previous thread you would see that on debian things
  are not 
  called the same names or in the same places.
  
 
 Most files (i.e the ones in /usr/share) seem like they should go in the
 same place.
 
 The only file that seems to be a problem is etc/X11/Xkbmap which I am
 not sure how it should be converted automatically (you can add it
 manually to XF86config-4). It will probably take a sed script or
 something like that.
 
 I hope I will have time to look at it closer to the weekend.
 
  to translate I meant who can tell me what is ok as is and what needs to
  be 
  adjusted for debian.
  
  Thanks
  Aaron
   aamehl wrote:
   Next can someone help me translate the hebrc rpm into debian?
  
   Are you familiar with alien?
  
   --Amos
  
  
  
   =
   To unsubscribe, send mail to [EMAIL PROTECTED] with
   the word unsubscribe in the message body, e.g., run the command
   echo unsubscribe | mail [EMAIL PROTECTED]
  
  
  =
  To unsubscribe, send mail to [EMAIL PROTECTED] with
  the word unsubscribe in the message body, e.g., run the command
  echo unsubscribe | mail [EMAIL PROTECTED]
  
   
   +++
   This Mail Was Scanned By Mail-seCure System
   at the Tel-Aviv University CC.
  
 
 =
 To unsubscribe, send mail to [EMAIL PROTECTED] with
 the word unsubscribe in the message body, e.g., run the command
 echo unsubscribe | mail [EMAIL PROTECTED]
 

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: hebrewrc

2004-04-26 Thread aamehl
Well I tried posting to my site but for some reason from plone I can't
download from an anchor..

I guess I will just have to wait until ivrix is up and running again.
Aaron

On Mon, 2004-04-26 at 16:50, aamehl wrote:
 Hmm why is ivrix down??
 
 anyways I put two versions of the rpms on the plone page I am
 experimenting with 
 On Mon, 2004-04-26 at 02:11, Lior Kaplan wrote:
  Since http://ivrix.org.il/redhat doesn't work at all. I can't even look at
  what you refer...
  (nmap doesn't show a web service at the regular port)
  
  Could you place the file in an accessible place?
  
  Regards,
  
  Lior Kaplan
  [EMAIL PROTECTED]
  http://www.Guides.co.il
  
  - Original Message -
  From: aamehl [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Sent: Sunday, April 25, 2004 10:22 PM
  Subject: Re: hebrewrc
  
  
   On Sunday 25 April 2004 14:32, [EMAIL PROTECTED] wrote:
   Hi
   Yes I know about alien,
   but if you saw my previous thread you would see that on debian things
   are not
   called the same names or in the same places.
  
   to translate I meant who can tell me what is ok as is and what needs to
   be
   adjusted for debian.
  
   Thanks
   Aaron
aamehl wrote:
Next can someone help me translate the hebrc rpm into debian?
   
Are you familiar with alien?
   
--Amos
   
   
   
=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]
  
  
   =
   To unsubscribe, send mail to [EMAIL PROTECTED] with
   the word unsubscribe in the message body, e.g., run the command
   echo unsubscribe | mail [EMAIL PROTECTED]
  
  
  
  
  =
  To unsubscribe, send mail to [EMAIL PROTECTED] with
  the word unsubscribe in the message body, e.g., run the command
  echo unsubscribe | mail [EMAIL PROTECTED]
  
 
 =
 To unsubscribe, send mail to [EMAIL PROTECTED] with
 the word unsubscribe in the message body, e.g., run the command
 echo unsubscribe | mail [EMAIL PROTECTED]
 

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



crossover to hebrew

2004-04-25 Thread aamehl
Hi all,
I just convinced a friend who has been experiencing windows problems to
switch to linux.

He did this on the condition that he could run his Ms Word Excel etc.
(He has a list of windows programs that he must have on his sytem
because of his work)
I told him about cxoffice and he seemed happy. I got a call that he
opened an execel file and it was corrupted. After asking I realized it
wasn't corrupted but just a hebrew excel file.

I need a transparent way to get this working for him.
1. to set up his debian box with hebrew
2. to get cxoffice to work with hebrew.

ideally I would like a .deb that would do the trick but I would settle
for a shell script.

In my mind what http://www.ivrix.org.il/redhat/ has plus a hebrc.deb.

The shell script would just check sources.list that it contains whatever
are the correct sources to give me the files I need, then an apt-get
install for all the packages, and apt-get hebrc and apt-get setup
crossover office with hebrew.

1. Is this doable?
2. how do I translate hebrc from the above site to debian. (system stuff
is in different places in debian so I can't just use alien to convert
it.)
3. Where is there a clear explaination of how I get cxoffice to work
with hebrew
4. Does hebrc in its present form address the debian font keyboard etc.
issues?
5. Is there anything I am missing?
Thanks
Aaron

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: crossover to hebrew

2004-04-25 Thread aamehl

 I'm having similar problems with the cx excel; all other office documents work 
 fine, but Hebrew Excels are problematic (what I'm experiencing is excel 
 displaying Hebrew ok, but as soon as some change is made or even if I click 
 on the spreadsheet, all the Hebrew characters become unreadable).
 
 However, for me the solution was to use openoffice to didplay excel files. 
 While the Writer (word equivalent) still has some problems with regards to 
 converting to/from word files, calc (the excel equivalent) works flawlessly 
 since version 1.1.1.
For me I never use windows programs but he is a atzmahi technical writer
who must have all of office working. In the meantime he is dual booting.
I do remember a thread about hebrew issues in cxoffice and still am
wondering if this is the problem.

Aaron

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



hebrewrec

2004-04-25 Thread aamehl
HI and thanks for the information on cxoffice. I probably won't confuse
him with wine yet, but at least he can dual boot until the new cxoffice
comes out.

Next can someone help me translate the hebrc rpm into debian?

I need a way of creating a deb that will do the same thing although I
have no idea where the various pieces are found within debian.

Or am I off base and there is a way to change all needed files by dkpg?

Thanks
Aaron

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: hebrewrc

2004-04-25 Thread aamehl
On Sunday 25 April 2004 14:32, [EMAIL PROTECTED] wrote:
Hi 
Yes I know about alien,
but if you saw my previous thread you would see that on debian things
are not 
called the same names or in the same places.

to translate I meant who can tell me what is ok as is and what needs to
be 
adjusted for debian.

Thanks
Aaron
 aamehl wrote:
 Next can someone help me translate the hebrc rpm into debian?

 Are you familiar with alien?

 --Amos



 =
 To unsubscribe, send mail to [EMAIL PROTECTED] with
 the word unsubscribe in the message body, e.g., run the command
 echo unsubscribe | mail [EMAIL PROTECTED]


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: crossover to hebrew

2004-04-25 Thread aamehl
Thanks

I am not sure what it means by  Install MS Office using LANG=heb_IL all
the way. (where do I set this??)


 Intall the English Language pack, ensuring that dialog and help is set
to English. (does this matter what version of office? heb or eng?)



On Mon, 2004-04-26 at 00:25, Lior Kaplan wrote:
 Might help you...
 http://mirror.hamakor.org.il/archives/linux-il/03-2004/9102.html
 
 Regards, 
 
 Lior Kaplan
 [EMAIL PROTECTED]
 http://www.Guides.co.il
 
 - Original Message - 
 From: Shachar Shemesh [EMAIL PROTECTED]
 To: aamehl [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Sent: Sunday, April 25, 2004 11:13 AM
 Subject: Re: crossover to hebrew
 
 
  aamehl wrote:
  
  2. to get cxoffice to work with hebrew.

  
  The latest cxoffice (version 2.1) was not compiled with Hebrew support. 
  I have contacted CodeWeavers already, and they said that this should be 
  fixed in the upcoming version (3.0, due out soon).
  
  As for specific Hebrew related problesm in Word and Excel, as far as I 
  know, keyboard detectin code is still not good enough to get it working 
  flawlessly. I have heared one report to the contrary, and I have not yet 
  had a chance to sit down and trace the code to find out for sure myself. 
  You should really direct these questions to CodeWeavers directly.
  
  Now, if you were talking about Wine...
  
Shachar
  
  -- 
  Shachar Shemesh
  Lingnu Open Source Consulting
  http://www.lingnu.com/
  
  
  =
  To unsubscribe, send mail to [EMAIL PROTECTED] with
  the word unsubscribe in the message body, e.g., run the command
  echo unsubscribe | mail [EMAIL PROTECTED]
  
  
 

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: mandrake

2004-02-27 Thread aamehl
No the rpm only exists on the 8 disk.

Aaron

They have released PP for 9.2 (if it's relevant), at least for standard
registration but I think it's on public servers too now.
- Original Message - 
From: Meir Kriheli [EMAIL PROTECTED]
To: aamehl [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Friday, February 27, 2004 12:33
Subject: Re: mandrake

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Friday 27 February 2004 01:19, aamehl wrote:
 

Hi,

does anyone on this list have Mandrake 8 powerpack?

I am looking for an RPM from disc 4.

Thanks
Aaron
   

I think I have one on the office, will check on sunday. Which rpm ?

- -- 
Meir Kriheli
MKsoft systems
http://www.mksoft.co.il
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFAPxzqRkS5DWK1mZkRAsD1AJ9QQZf0i/68hTdcSLMfeFEeT3UohgCgzgot
j0Uo6p3gee7FedOcX0T0VrY=
=3dXe
-END PGP SIGNATURE-
==
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]
 



=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]


mandrake

2004-02-26 Thread aamehl
Hi,

does anyone on this list have Mandrake 8 powerpack?

I am looking for an RPM from disc 4.

Thanks
Aaron
=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]


alien invasion, help (deb attack)

2004-02-25 Thread aamehl
Hi all,

I have been playing with a script that uses rpm2cpio.

After running it alien invokes rpm2cpio and tries to make a cpio instead 
of a deb.
This is what I get on the console:

theone:/usr/local/viavoice/rh-6.2# alien -i 
ViaVoice_runtime-3.0-1.2.i386.rpm
mkdir: cannot create directory `ViaVoice_runtime-3.0': File exists
sh: line 1: rpm2cpio: command not found
mkdir: cannot create directory `ViaVoice_runtime-3.0/debian': File exists

theone:/usr/local/viavoice/rh-6.2#

Any idea how to fix this?

Thanks
Aaron
=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]


Re: language screwed up

2004-02-24 Thread aamehl
Thats the command, thanks
Aaron
Idan Sofer wrote:

aamehl wrote:

Hi all,

I am running debian and my language settings got all messed up and I 
can't remember what I need to do to fix them.

I also can't remember the command to reconfigure my language settings.

Help!
here is the reoccuring error I get.
Also I can't burn cds all the resulting discs have ??? ??? as file 
names.


You might wish to try dpkg-reconfigure locales, perhaps some of the 
locales you use are not configured.

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]


Re: language screwed up

2004-02-24 Thread aamehl
HI Micha,
and all,
I have no windows, this is a new problem which happen after I totally 
distroyed everything and reinstalled Xandros again. They have an option 
to save your personal settings. Which I know I had hacked to get hebrew 
working. I assume that is the issue, if I can't get things to work, I 
will probably backup what I have and reinstall from scratch...

Thanks
Aaron
As for cds, is it ??? also on windows (it could either be an encoding
problem or a mounting problem).
 

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]
+++
This Mail Was Scanned By Mail-seCure System
at the Tel-Aviv University CC.
   

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]
 



=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]


Re: Can I help to Bittorrent Kinneret?

2004-02-23 Thread aamehl
Whait's involved?
my ip is not static.
Aaron
[EMAIL PROTECTED] wrote:
Hi,

I have a static IP (actcom) on an ADSL line (96Kb upload). It's not much
but would it help if I downloaded Kinneret via Bittorrent and kept the 
Bittorrent
up?

Would it help if others in this forum did this?

--Amos

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]


language screwed up

2004-02-23 Thread aamehl
Hi all,

I am running debian and my language settings got all messed up and I 
can't remember what I need to do to fix them.

I also can't remember the command to reconfigure my language settings.

Help!
here is the reoccuring error I get.
Also I can't burn cds all the resulting discs have ??? ??? as file names.
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
   LANGUAGE = en_US,
   LC_ALL = he_IL,
   LANG = he_IL
   are supported and installed on your system.
perl: warning: Falling back to the standard locale (C).
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
Thanks
Aaron
=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]