Re: debian netinst q

2007-04-28 Thread Yedidyah Bar-David
On Fri, Apr 27, 2007 at 11:03:15PM +0300, Maxim Veksler wrote: > On 4/27/07, Yedidyah Bar-David <[EMAIL PROTECTED]> wrote: > >Yes. Try something like > >apt-get install xorg > >I did not check what exactly it installs - you might want to install > >some more stuff even if you do not want gnome/kde.

Re: Find the usb device pragmatically

2007-04-28 Thread ik
Hi, First of all I wish to thank you all for the answers. It seems that adding rules to udev made the job, and now the device is always ttyUSB0. Thanks, Ido On 4/25/07, Ehud Karni <[EMAIL PROTECTED]> wrote: On Tue, 24 Apr 2007 20:37:12 ik wrote: > > I have a serial usb device, that from time

Re: Find the usb device pragmatically

2007-04-28 Thread Amos Shapira
On 26/04/07, Ehud Karni <[EMAIL PROTECTED]> wrote: point. If you have only one such usb device you can do something like this (in bash): DEV=`echo /dev/ttyUSB?` and you'll get your device. Just as a side note - the "echo" is redundant, it's enough to do "DEV=/dev/ttyUSB?" --Amos (crusader ag

strange behaviour of montage (imageMagick)?

2007-04-28 Thread Avraham Rosenberg
Hi, I am building maps by collating minimaps downloaded from the site of mapa. I am using the convert and montage programs from imageMagick, within the following script (bbigmap) #!/bin/sh case $# in 0)echo "Use: $0 number_of_cols_of_minimaps file_with_list_of_minimaps output_file crop/no

Re: Find the usb device pragmatically

2007-04-28 Thread Maxim Veksler
On 4/28/07, Amos Shapira <[EMAIL PROTECTED]> wrote: On 26/04/07, Ehud Karni <[EMAIL PROTECTED]> wrote: > point. If you have only one such usb device you can do something like > this (in bash): DEV=`echo /dev/ttyUSB?` and you'll get your device. Just as a side note - the "echo" is redundant, it's