git-m - multiple git replication and management utility

2019-10-12 Thread Constantine Shulyupin
Hi friends,

Once I needed to replicate hundreds of repositories. Usually git modules
and tool repo are used for this task. But I had standalone gits without
repo or git modules or gits from different repo.

To solve this problem in generic way I made bash script and then python
utility for managing tree of git. The main replication feature scans tree
of gits metadata and then restores the tree using git clone and git
checkout.

I invite you to review and use the work:

https://github.com/makelinux/gitm/

Thank you
-- 
Constantine Shulyupin

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


bank statement import and analysis

2019-03-31 Thread Constantine Shulyupin
Hi all,

Is there an utility (preferable on python) for importing and analyzing
Israel banks statements in formats Bankin.dat, csv, xls/xml ?

Thanks
-- 
Constantine Shulyupin
___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: writes to /dev/kmsg

2019-02-20 Thread Constantine Shulyupin
stderr = fopen("/dev/kmsg", "w+");
fprintf(stderr, "%s:%i %s ", __FILE__, __LINE__, __func__);

Call a driver. In the driver:
#undef pr_fmt
#define pr_fmt(fmt)"%s.c:%d %s " fmt, KBUILD_MODNAME, __LINE__,
__func__
pr_debug("...");
or
printk("%s:%i %s ", __FILE__, __LINE__, __func__);

then from UM:
fprintf(stderr, "%s:%i %s ", __FILE__, __LINE__, __func__);

Thanks

On Wed, Feb 20, 2019 at 11:23 AM Lev Olshvang  wrote:

> Can you please elaborate, what you are trying to synchronize, I suppose
> messages from your driver are uniquely identified?
>
>
> 19.02.2019, 19:42, "Constantine Shulyupin" :
>
> I write to /dev/kmsg when it is need to synchronize UM and driver's logs.
>
> On Tue, Feb 19, 2019 at 3:34 PM Lev Olshvang  wrote:
>
> Kernel documentation describes interface
> https://www.kernel.org/doc/Documentation/ABI/testing/dev-kmsg
>
> I wonder what kind of applications use it?
> Why somebody need to use kmsg instead of syslog?
>
> Can anybody give example of such application?
>
> Regards,
> Lev
>
>
> _______
> Linux-il mailing list
> Linux-il@cs.huji.ac.il
> http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il
>
>
>
> --
> Constantine Shulyupin
> http://www.MakeLinux.co.il/
> Embedded Linux Systems
> Tel Aviv
>
>

-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems
Tel Aviv
___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: writes to /dev/kmsg

2019-02-19 Thread Constantine Shulyupin
I write to /dev/kmsg when it is need to synchronize UM and driver's logs.

On Tue, Feb 19, 2019 at 3:34 PM Lev Olshvang  wrote:

> Kernel documentation describes interface
> https://www.kernel.org/doc/Documentation/ABI/testing/dev-kmsg
>
> I wonder what kind of applications use it?
> Why somebody need to use kmsg instead of syslog?
>
> Can anybody give example of such application?
>
> Regards,
> Lev
>
>
> ___
> Linux-il mailing list
> Linux-il@cs.huji.ac.il
> http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il
>


-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems
Tel Aviv
___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: Memory consumption on a per user basis

2018-11-11 Thread Constantine Shulyupin
github mirror:

https://github.com/makelinux/lib/blob/master/snippets/load-watch.md
On Sun, Nov 11, 2018 at 5:47 PM Boruch Baum  wrote:
>
> On 2018-11-11 17:26, Constantine Shulyupin wrote:
> > I am using this bash functions for years:
> > https://gitlab.com/makelinux/lib/blob/master/snippets/load-watch.md
>
> AAARGH! OH NO! It's gitlab!
>
> I have a quasi- pet-peeve against gitlab because of its needless
> javascript and XHR requirements. Just in order to simply _view_ your
> script, I needed to to use a GUI browser (instead of a text browser),
> and to allow nine separate javascript elements from two separate source
> to do whatever mysterious things they want to try doing. Even then,
> all that wasn't enough - I needed to further allow two more XML
> requests.
>
> I encourage anyone open to listening to avoid using gitlab and other
> sites / packages that have similar attitudes to javascript.
>
> end rant; I feel better now.
>
> --
> hkp://keys.gnupg.net
> CA45 09B5 5351 7C11 A9D1  7286 0036 9E45 1595 8BC0



-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems
Tel Aviv

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: Memory consumption on a per user basis

2018-11-11 Thread Constantine Shulyupin
I am using this bash functions for years:
https://gitlab.com/makelinux/lib/blob/master/snippets/load-watch.md
It kills processes accordingly load average, cpu and memory usage.
OOM killer is less efficient.

On Sun, Nov 11, 2018 at 4:37 PM Josh Roden  wrote:
>
> Hi everyone
> I have a CentOS 6 machine used by around 20 to 30 students
> at a time and I need to do one of two things:
> 1. find and kill top memory user with script
> 2. limit memory usage
>
> Using cgroups, I have successfully limited memory usage to about 1.5 cpu's
> max (per user) out of 16 but evidently I have had less success with memory 
> hogs.
> I understand that memory is a bit complicated to compute because of shared
> memory etc. but I need to make the 32G of physical memory go around more
> evenly.
> Would appreciate any ideas.
> Thanks,
> Josh
>
> ___
> Linux-il mailing list
> Linux-il@cs.huji.ac.il
> http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il



-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems
Tel Aviv

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: Patch management tools?

2018-08-29 Thread Constantine Shulyupin
Try
guilt - quilt on top of git

On Tue, Aug 28, 2018 at 11:50 PM Omer Zak  wrote:
>
> I have a project, which uses a JavaScript library.
> I need to patch the library as part of integrating it into the project.
>
> Once in a while I need to upgrade to the most recently released version
> of the library i.e. reapply my patches. The library is available as a
> git repository from which I 'git pull" updates as needed.
>
> While I can reapply my patches by using 'git rebase', I am curious to
> know if there any specialized tools which assist in this process. Like
> the 'quilt' tool used by Debian package maintainers to deal with a very
> similar use case.
>
> --- Omer
>
>
> --
> "Prior to capitalism, the way people amassed great wealth was by
> looting, plundering and enslaving their fellow man. Capitalism made it
> possible to become wealthy by serving your fellow man." - Walter E.
> Williams
> My own blog is at https://tddpirate.zak.co.il/
>
> 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 https://www.zak.co.il/spamwarning.html
>
>
>
> ___
> Linux-il mailing list
> Linux-il@cs.huji.ac.il
> http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il



-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems
Tel Aviv

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Linux System calls sheet

2018-07-28 Thread Constantine Shulyupin
For better compression of Linux systems calls I've made wiki sheet of them:

https://en.wikibooks.org/wiki/The_Linux_Kernel/Syscalls

Motivation: There is about 400 systems calls. Man pages describe
groups of system calls and have alphabetical list of them. It is good
enough for reference but is not enough for exploration and learning.
Also there is not enough correlation between header files and
semantics of syscalls.

To make more order in the issue I've created this page. I used grep,
ctags, regex and scripting to extract raw list of syscalls from the
kernel. Then I arranged them accordingly header files.
Finally I categorized syscalls to fit the sheet in wiki.

The categorization is not ideal. Also there still is some
inconsistency. You are welcome to review, fix and update.

Thank you
-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Errors resolver

2016-08-30 Thread Constantine Shulyupin
Hi

I develop application, which analyzes and helps to solve various
compilation and system errors.

For example:

echo "warning: implicit declaration of function ‘pthread_create’" |
./errors_resolver.py

Output with solution:

CPPFLAGS+=' -include pthread.h';

Tn this example errors_resolver.py searches tags and provides missing
header file.

You are welcome to review it and give feedback:
https://github.com/makelinux/errors_resolver

Thanks

-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems
Tel Aviv

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Parsing compilation errors and automatic resolving

2015-04-21 Thread Constantine Shulyupin
Hi,

Again I am compiling big OSS project for embedded environment and receive a
lot of errors like:
warning: libXXX, needed by YYY, not found
fatal error: XXX: No such file or directory.
undefined reference to XX
etc

Then I look for missing packages with utilities: nm, apt-file search and
configure compilation.

Question:

Are there utility, which parses errors and proposes obvious solutions?

For example, following code proposes to add missing library to LDFLAGS:

perl -ne '/.*warning: lib(.*?)\..*, needed by .*, not found .*/  print
export LDFLAGS+=\ -l$1\\n;'  config.log

Thanks

-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems
Tel Aviv
___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: Mageia and NTFS disk

2015-04-16 Thread Constantine Shulyupin
It's possible that 2TB is just 32bit LONG_MAX 2147483647 and there is bug
in the utility.
Must to use long long int for disk sizes in bytes.



On Thu, Apr 16, 2015 at 7:19 PM, Shlomo Solomon shlomo.solo...@gmail.com
wrote:

 I'm about to format my new 4Tb drive as Ext4, but before I do, I
 wanted to see how it shows up out-of-the-box and got some strange
 results. I'm pretty sure formatting as Ext4 will solve this, but I'm
 curious if anyone can explain the following:

 I mounted the drive and I see:
 [solomon@shlomo1 ~]$ df |grep Seagate
 /dev/sdj1 3.7T  203M 3.7T 1% /run/media/solomon/Seagate Expansion Drive



 [root@shlomo1 solomon]# fdisk /dev/sdj

 Welcome to fdisk (util-linux 2.24.2).
 Changes will remain in memory only, until you decide to write them.
 Be careful before using the write command.

 Command (m for help): p
 Disk /dev/sdj: 3.7 TiB, 4000787025920 bytes, 976754645 sectors
 Units: sectors of 1 * 4096 = 4096 bytes
 Sector size (logical/physical): 4096 bytes / 4096 bytes
 I/O size (minimum/optimal): 4096 bytes / 4096 bytes
 Disklabel type: dos
 Disk identifier: 0xc64aae83

 DeviceBoot Start   End Blocks  Id System
 /dev/sdj1   2048 976752639 3907002368   7 HPFS/NTFS/exFAT



 But, when I run the Manage Disk Partitions utility in Mageia's
 Control Center I can see 1 small NTFS partition and another 1.9Tb of
 un-allocated space for a total of only about 60% of the disk:

 Device: sdj1
 Volume label: Seagate_Expansion_Drive
 DOS drive letter: C (just a guess)
 Type: NTFS-3G
 Size: 465GB (12%)

 Empty
 Size: 1.9TB (54%)
 Cylinder 60800 to 328149

 After hitting the clear all button I see more or less the proper size:
 Device: sdj
 Size: 3.6TB
 Name: NA4KTWL4


 As I wrote, I'm quite sure formatting EXT4 will solve this, but WTF?



 --
 Shlomo Solomon
 http://the-solomons.net
 Sent by Claws Mail 3.11.1 - KDE 4.12.15 - LINUX Mageia 4


 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il




-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems
Tel Aviv
___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: Mageia and NTFS disk

2015-04-16 Thread Constantine Shulyupin
Don't use fdisk, it doesn’t recognize GPT/UFI partitions.
use parded:
sudo parted /dev/sda unit B print
sudo parted /dev/sda print

On Thu, Apr 16, 2015 at 7:19 PM, Shlomo Solomon shlomo.solo...@gmail.com
wrote:

 I'm about to format my new 4Tb drive as Ext4, but before I do, I
 wanted to see how it shows up out-of-the-box and got some strange
 results. I'm pretty sure formatting as Ext4 will solve this, but I'm
 curious if anyone can explain the following:

 I mounted the drive and I see:
 [solomon@shlomo1 ~]$ df |grep Seagate
 /dev/sdj1 3.7T  203M 3.7T 1% /run/media/solomon/Seagate Expansion Drive



 [root@shlomo1 solomon]# fdisk /dev/sdj

 Welcome to fdisk (util-linux 2.24.2).
 Changes will remain in memory only, until you decide to write them.
 Be careful before using the write command.

 Command (m for help): p
 Disk /dev/sdj: 3.7 TiB, 4000787025920 bytes, 976754645 sectors
 Units: sectors of 1 * 4096 = 4096 bytes
 Sector size (logical/physical): 4096 bytes / 4096 bytes
 I/O size (minimum/optimal): 4096 bytes / 4096 bytes
 Disklabel type: dos
 Disk identifier: 0xc64aae83

 DeviceBoot Start   End Blocks  Id System
 /dev/sdj1   2048 976752639 3907002368   7 HPFS/NTFS/exFAT



 But, when I run the Manage Disk Partitions utility in Mageia's
 Control Center I can see 1 small NTFS partition and another 1.9Tb of
 un-allocated space for a total of only about 60% of the disk:

 Device: sdj1
 Volume label: Seagate_Expansion_Drive
 DOS drive letter: C (just a guess)
 Type: NTFS-3G
 Size: 465GB (12%)

 Empty
 Size: 1.9TB (54%)
 Cylinder 60800 to 328149

 After hitting the clear all button I see more or less the proper size:
 Device: sdj
 Size: 3.6TB
 Name: NA4KTWL4


 As I wrote, I'm quite sure formatting EXT4 will solve this, but WTF?



 --
 Shlomo Solomon
 http://the-solomons.net
 Sent by Claws Mail 3.11.1 - KDE 4.12.15 - LINUX Mageia 4


 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il




-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems
Tel Aviv
___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


OCF CESA

2014-11-11 Thread Constantine Shulyupin
Hi friends,

Has anybody experience with  openssl, ocf-linux and CESA on ARM Armaga 370?

Thanks
-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems
Tel Aviv

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: OT: video capture

2014-11-02 Thread Constantine Shulyupin
http://www.ebay.com/bhp/usb-video-capture-device

On Sun, Nov 2, 2014 at 11:18 AM, Mord Behar mord...@gmail.com wrote:
 We have a lot of VHS tapes that we want to digitize.
 Anybody out there have a video capture card?
 What kind?
 Where did you buy it?
 How much?
 What sort of software do you use?
 Are you satisfied with the results?

 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il




-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems
Tel Aviv

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: OT: video capture

2014-11-02 Thread Constantine Shulyupin
I've used EasyCAP. I satisfied.

On Sun, Nov 2, 2014 at 11:51 AM, Mord Behar mord...@gmail.com wrote:


 On Sun, Nov 2, 2014 at 11:41 AM, Constantine Shulyupin
 co...@makelinux.co.il wrote:

 http://www.ebay.com/bhp/usb-video-capture-device


 Thanks, but I was looking for a more personal experience. I found devices as
 cheap as $5 on Chinese sites, some of them with free shipping. I'm looking
 for success or failure stories. What the setup was, how easy or hard it was
 to use, what the final results are like.


 On Sun, Nov 2, 2014 at 11:18 AM, Mord Behar mord...@gmail.com wrote:
  We have a lot of VHS tapes that we want to digitize.
  Anybody out there have a video capture card?
  What kind?
  Where did you buy it?
  How much?
  What sort of software do you use?
  Are you satisfied with the results?
 
  ___
  Linux-il mailing list
  Linux-il@cs.huji.ac.il
  http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il
 



 --
 Constantine Shulyupin
 http://www.MakeLinux.co.il/
 Embedded Linux Systems
 Tel Aviv





-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems
Tel Aviv

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: diff/patch rootfs

2014-07-10 Thread Constantine Shulyupin
Simple solution:
1. diff -N, --new-file  treat absent files as empty

Comprehensive solution:
2. create git repository on rootfs and work with git init, commit,
diff, git-format-patch, am

On Thu, Jul 10, 2014 at 9:08 AM, Erez D erez0...@gmail.com wrote:
 hello


 i am dealing with rootfs images  i install on embedded linux

 from time to time i update the rootfs - add some file, remove other,
 update others, mknod etc ...

 currently, when i do this, i need to reinstall the image

 i am looking to create a patch, i can patch an old rootfs to update it

 however, diff does not handle create file, remove file, special files
 and binary files very well

 i am looking for a tool that can do that.

 anyone ?


 btw: distro is emdebian/debian on armel

 thanks,
 erez.

 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il



-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems
Tel Aviv

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: NTP

2014-05-01 Thread Constantine Shulyupin
There is only one inactive server on il.pool.ntp.org, see
http://www.pool.ntp.org/zone/il
try asia.pool.ntp.org, europe.pool.ntp.org, anorth-america.pool.ntp.org

On Thu, May 1, 2014 at 10:02 PM, Tzafrir Cohen tzaf...@cohens.org.il wrote:
 On Thu, May 01, 2014 at 09:45:45PM +0300, Geoff Shang wrote:

 2.  Has anyone found a server that works?

 Have you tried il.pool.ntp.org ?

 --
 Tzafrir Cohen | tzaf...@jabber.org | VIM is
 http://tzafrir.org.il || a Mutt's
 tzaf...@cohens.org.il ||  best
 tzaf...@debian.org|| friend

 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il



-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems
Tel Aviv

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


shell functions library

2014-04-26 Thread Constantine Shulyupin
Hi,

I am using bash and others shells like busybox ash for many year on
desktop and for embedded Linux projects. Eventually I've collected
number of shell functions, aliases and tricks.

I've published my reusable utilities here:

https://github.com/makelinux/lib

It is implemented as easy to use single file script. It consits of 300
SLOC, 40 functions and aliases. Most useful functions are: make-debug,
trap_err, readline-bindings, duplicates, fs_usage,
system_status_short, git_fixup, tcpdump-text, git_ign_add, for_each,
mem_avail_kb

Moreover I've collected and reviewed other shell functions libraries here:

http://elinux.org/Scripting

Have you your useful functions, tips, tricks to share?


Thanks

-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems
Tel Aviv

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Shell libraries

2014-01-11 Thread Constantine Shulyupin
Hi,

I use extensively shell and shell script for more than ten years. I've
collected many helper functions and aliases in my bashrc. Finally I
published possible most interesting stuff in reusable form here:
https://github.com/makelinux/lib
It is easy to use single file script of 300 SLOC. It contains 40
functions and aliases with short description.

Most interesting functions are:

ps-cpu - lists most CPU consuming processes
ps-mem - lists most memory consuming processes
ps-wchan - shows what processes are waiting for, used in debugging
blocked processes
mem_avail_kb - Returns available for allocation RAM, which is sum of
MemFree, Buffers and Cached memory
readline-bindings - shows current readline bindings, used as shell
keyboard shortcuts, in more readable format, see also man readline
duplicates - finds duplicate files
for_each - applies an operation to set of arguments one by one
fs_usage - show biggest directories and optionally files on a
filesystem, for example on root: fs_usage -a /
system_status_short - shows short summary of system resources (RAM,CPU) usage
git_fixup - interactive fixup of specified number of last git commits
tcpdump-text - tcpdump of payload in text
git_ign_add - add files' names with path to appropriate .gitignore list


Also I found and expanded list of existed shell libraries and
published in wiki: http://elinux.org/Scripting

Reuse, reviews, fixes, updates and discussions are highly appreciated.

Thanks
-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems
Tel Aviv

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: gdb q

2013-08-05 Thread Constantine Shulyupin
It is possible
Read more
http://sourceware.org/gdb/onlinedocs/gdb/Separate-Debug-Files.html
http://marcioandreyoliveira.blogspot.co.il/2008/03/how-to-debug-striped-programs-with-gdb.html


On Mon, Aug 5, 2013 at 9:20 AM, Erez D erez0...@gmail.com wrote:
 hello,


 using remote gdb, can i use a stripped binary on the target, and a
 non-stiripped locally ?


 thanks,
 erez

 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il




-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems
Tel Aviv

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: bash q

2013-04-24 Thread Constantine Shulyupin
The log form is more readable and self documented.
I prefer to use long form in scripts and short in command line.

Verbose mode:
set -o verbose
set -v
bash -v script.sh

http://tldp.org/LDP/Bash-Beginners-Guide/html/sect_02_03.html

On Wed, Apr 24, 2013 at 10:19 PM, Nadav Har'El n...@math.technion.ac.il wrote:
 On Mon, Apr 08, 2013, Constantine Shulyupin wrote about Re: bash q:
 For debugging bash scripts I use

 set -o xtrace # long form of -x
 set -o pipefail
 set -o errexit

 The last one also has a short form: set -e.

 You might also want to look at set -v - it also lists the commands it
 runs, but before evaluation. In some cases both set -v and set -x
 can come in handy.


 --
 Nadav Har'El|Wednesday, Apr 24 2013, 15 Iyyar 5773
 n...@math.technion.ac.il 
 |-
 Phone +972-523-790466, ICQ 13349191 |I want to be a human being, not a human
 http://nadav.harel.org.il   |doing -- Scatman John



-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems
Tel Aviv

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: bash q

2013-04-08 Thread Constantine Shulyupin
For debugging bash scripts I use

set -o xtrace # long form of -x
set -o pipefail
set -o errexit

# print file, line number and function name while tracing
PS4='+ $(echo -en \\033[1;36m`basename $0`:$LINENO $FUNCNAME()\033[0m )'




On Mon, Apr 8, 2013 at 10:32 AM, Erez D erez0...@gmail.com wrote:

 to debug a shell script i can run it as 'sh -x myscript'
 but how can i enable the debug from within the script if run with 'sh
 myscript' ?

 thanks,
 erez.

 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il




-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems
Tel Aviv
___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


looking for sysadmin freelancer

2012-11-13 Thread Constantine Shulyupin
Hi,

A friend of mine is looking System Administrator freelancer for some
hours of work on web hosing  to reinstall server: Linux (Debian),
Nginx, Apache, MySQL5, PHP.

Thanks
-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: Requesting Input about a New Page about Text Processing Tools

2012-09-25 Thread Constantine Shulyupin
column - columnate lists
join - join lines of two files on a common field
colrm - remove columns from a file

On Tue, Sep 25, 2012 at 12:32 AM, Shlomi Fish shlo...@shlomifish.org wrote:
 Hi all,

 I've set up a new page about text processing tools:

 http://www.shlomifish.org/open-source/resources/text-processing-tools/

 Currently I need to add some links to core UNIX text-processing commands
 (e.g: grep, sed, paste, cut, cat, etc.), as well as some general purpose
 languages with good support for text parsing and processing (e.g: Perl,
 Python, Ruby, Lua, etc.), but I intend to do so soon.

 But I want to ask you - is there anything you think I should add there?

 Please comment on the list.

 Regards,

 Shlomi Fish

 --
 -
 Shlomi Fish   http://www.shlomifish.org/
 Humanity - Parody of Modern Life - http://shlom.in/humanity

 COBOL is the old Java.

 Please reply to list if it's a mailing list post - http://shlom.in/reply .

 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il



-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems,
Device Drivers, TI DaVinci

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: Requesting Input about a New Page about Text Processing Tools

2012-09-25 Thread Constantine Shulyupin
csplit - split a file into sections determined by context lines
http://www.makelinux.net/man/1/C/csplit

http://tldp.org/LDP/GNU-Linux-Tools-Summary/html/text-related-tools.html

On Tue, Sep 25, 2012 at 12:32 AM, Shlomi Fish shlo...@shlomifish.org wrote:
 Hi all,

 I've set up a new page about text processing tools:

 http://www.shlomifish.org/open-source/resources/text-processing-tools/

 Currently I need to add some links to core UNIX text-processing commands
 (e.g: grep, sed, paste, cut, cat, etc.), as well as some general purpose
 languages with good support for text parsing and processing (e.g: Perl,
 Python, Ruby, Lua, etc.), but I intend to do so soon.

 But I want to ask you - is there anything you think I should add there?

 Please comment on the list.

 Regards,

 Shlomi Fish

 --
 -
 Shlomi Fish   http://www.shlomifish.org/
 Humanity - Parody of Modern Life - http://shlom.in/humanity

 COBOL is the old Java.

 Please reply to list if it's a mailing list post - http://shlom.in/reply .

 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il



-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems,
Device Drivers, TI DaVinci

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


LDT - Linux Driver Template

2012-09-20 Thread Constantine Shulyupin
Hi

I develop template of Linux driver. It is good sample for Linux driver
development for beginners and as starting point for a new drivers.

To run driver with test script just run:
 git clone git://github.com/makelinux/ldt.git  cd ldt  ./ldt-test

Readme and sources: https://github.com/makelinux/ldt/blob/master/README.md

Your feedback, code reviews, ideas and proposals are welcome!

Thanks.

-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems,
Device Drivers, TI DaVinci

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


printer

2012-09-19 Thread Constantine Shulyupin
Which multifunctional printer for home (SOHO) would you recommend to
purchase from available currently in Israel?
Which store network?

Thanks

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: Getting rid of proprietary fonts

2012-01-22 Thread Constantine Shulyupin
You can gunzip odp file and grep xml sources.

On Sun, Jan 22, 2012 at 4:34 PM, Nadav Har'El n...@math.technion.ac.ilwrote:

 Hi, I have an 80 page OpenOffice document (Hspell's niqqudless.odt)
 which I wrote, shamefully, assuming Microsoft's TrueType fonts.

 Now, I wanted to switch this document to use only free fonts, such as
 the Culmus fonts for Hebrew, Nimbus Sans for English, and the DejaVu
 fonts for other languages in this document (Arabic, Turkish, Greek,
 Russian,
 etc.). The result will not only be freeer - it actually looks better!

 Starting the transformation was easy - I modified the few main paragraph
 and character styles that I was using, and in a few minutes, most of the
 document was converted to the free fonts.

 But my problem is that the long document *still* uses the non-free fonts in
 some places. I can see this if I export the document to PDF, and run
 pdffonts
 on it. I indeed found a bunch of places where this happened (e.g., I
 explicitly used a certain font on some word, instead of relying on a
 style),
 but couldn't find *ALL* of them, so my document still depends on these
 non-free fonts.

 I wonder if anybody knows how I can use OpenOffice, or some other tool,
 to find *where* in the document a certain font is being used?

 As a last resort, I plan to open the .odt file and read the XML where
 this information has to exist - but before I do that, I wonder if
 someone knows an easier OpenOffice option, or tool, exists.

 Thanks,
 Nadav.

 --
 Nadav Har'El|Sunday, Jan 22
 2012,
 n...@math.technion.ac.il
 |-
 Phone +972-523-790466, ICQ 13349191 |Earth First! We can strip-mine the
 other
 http://nadav.harel.org.il   |planets later...

 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il




-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems,
Device Drivers, TI DaVinci
___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: Goodbye, Lingnu

2011-11-14 Thread Constantine Shulyupin
I experience the same problems.
I hope market situation get better soon and we'll get more inserting and
profitable projects.

2011/11/14 Shachar Shemesh shac...@shemesh.biz

  I'm sorry to announce that another Linux consulting company is biting the
 dust.

 Full details at my blog:
 http://blog.shemesh.biz/2011/11/%D7%94%D7%99%D7%99-%D7%A9%D7%9C%D7%95%D7%9D-%D7%9C%D7%99%D7%A0%D7%92%D7%A0%D7%95/

 Shachar

 --
 Shachar Shemesh
 Lingnu Open Source Consulting Ltd.http://www.lingnu.com


 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il




-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems,
Device Drivers, TI DaVinci
___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: [YBA] Looking for TI 365 video help

2011-10-31 Thread Constantine Shulyupin
Do you mean DM365?
I do.

On Mon, Oct 31, 2011 at 2:07 PM, Jonathan Ben Avraham y...@tkos.co.il wrote:
 Dear ILUG colleagues,
 I am looking for someone with recent experience using the TI 265 (DaVinci)
 video coprocessor functions for video format transformations.
 Please contact me off list.

  - yba


 --
  EE 77 7F 30 4A 64 2E C5  83 5F E7 49 A6 82 29 BA    ~. .~   Tk Open Systems
 =}ooO--U--Ooo{=
     - y...@tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -

 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il




-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems,
Device Drivers, TI DaVinci

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: MS buys Skype - will it support Linux

2011-05-15 Thread Constantine Shulyupin
A new article about Linux Skype alternatives:
Bye Bye Skype, Top 3 Free Replacements:
http://ostatic.com/blog/bye-bye-skype-top-3-free-replacements


-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems,
Device Drivers, TI DaVinci

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: MS buys Skype - will it support Linux

2011-05-15 Thread Constantine Shulyupin
Have you checked this list: http://directory.fsf.org/category/tel/

On Sun, May 15, 2011 at 7:02 PM, Oleg Goldshmidt p...@goldshmidt.org wrote:
 On Sun, May 15, 2011 at 6:07 PM, Constantine Shulyupin
 co...@makelinux.co.il wrote:
 A new article about Linux Skype alternatives:
 Bye Bye Skype, Top 3 Free Replacements:
 http://ostatic.com/blog/bye-bye-skype-top-3-free-replacements

 Unfortunately, I don't see anything there that satisfies _any_ of the
 three requirements I posted earlier in this thread.

 :-(

 --
 Oleg Goldshmidt | o...@goldshmidt.org




-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems,
Device Drivers, TI DaVinci

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: sending mail from the command line

2011-05-10 Thread Constantine Shulyupin
I use msmtp

with msmtprc:

account default
auth on
tls on
tls_starttls on
tls_trust_file /etc/ssl/certs/ca-certificates.crt
syslog LOG_MAIL
domain .net
from X

account gmail : default
host smtp.gmail.com
port 587
user x...@gmail.com
password 


On Tue, May 10, 2011 at 2:17 PM, Dan Shimshoni danshi...@gmail.com wrote:
 I am trying this from a Linux machine which is connected to the
 internet via PPPoE ( for the test, no firewall):
  mail -s test danshi...@gmail.com  /dev/null

 and also this
  mail -s test danshi...@gmail.com
 enter
 add some text
 enter
 ctrl-d


 I don't get any mail in danshi...@gmail.com.

 What is wrong here ? what should I do in order to send successfully an
 e-mail from the command line with mail ?

 DS

 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il




-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems,
Device Drivers, TI DaVinci

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


20th Anniversary T-Shirt Design Contest

2011-05-07 Thread Constantine Shulyupin
Hi,

I am designing image  for annual Linux.com Store T-shirt design
contest: http://www.linux.com/tshirt-design-contest

The draft of the image is here: http://www.makelinux.net/art/20y/

Can you please give me your feedback to improve the image?
Please note, I am not professional graphics designer. It is just hobby.

Thanks

-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems,
Device Drivers, TI DaVinci

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: 20th Anniversary T-Shirt Design Contest

2011-05-07 Thread Constantine Shulyupin
Thank you, Shlomi. I've updated the image ( http://www.makelinux.net/art/20y/ )

On Sat, May 7, 2011 at 4:56 PM, Shlomi Fish shlo...@iglu.org.il wrote:
 Hi Constantine,

 first of all, thanks for your effort. I'm commenting what I feel about your
 image in public - I hope it's OK. Good luck in the competition.

 On Saturday 07 May 2011 16:02:35 Constantine Shulyupin wrote:
 Hi,

 I am designing image  for annual Linux.com Store T-shirt design
 contest: http://www.linux.com/tshirt-design-contest

 The draft of the image is here: http://www.makelinux.net/art/20y/

 Can you please give me your feedback to improve the image?
 Please note, I am not professional graphics designer. It is just hobby.


 Well, for professional vs. amateur see:

 http://www.paulgraham.com/opensource.html

 An amateur used to mean someone who does what they do for love of their
 art/craft/science/etc. instead (or in addition to) money, and was actually a
 compliment. I consider myself an amateur for many fields, and while a
 professional is often a good idea, the open-minded professionals can still
 sometimes learn from amateurs. I asked someone with a Ph.D. in psychotherapy
 and a lot of experience in dealing with patients, and he agreed with me that
 there are some things he can still learn from people with little experience in
 psychotherapy. That's the way it is.

 Well, back to the image, and I'm not an expert graphics designer either:

 1. In general, I think it's nice. I don't think I could have ever created such
 a well-drawn aesthetic penguin myself. :-) (At least not using a mouse, which
 I find unsuitable for that.).

 2. I think the feet of the penguin are a bit too unrealistic.

 3. I don't like the fade-to-white gradients - they obstruct recognising the
 view. Maybe try a different gradient, perhaps from one colour to the other.

 4. 20Y is too obscure. Maybe say 20 with a smaller years.

 5. I find the Penguin too unrealistic, cartoony and it seems to generate a
 negative impression in me. Maybe try making it more positive. The original Tux
 the penguin image by Larry Ewing ( http://en.wikipedia.org/wiki/Tux ) is cute
 and adorable and make us emphasise with Linux and identify with it.

 

 These are the things off the top of my head.

 Shabath Shalom, and enjoy the Memorial Day and the Israeli Independence Day.

 Regards,

        Shlomi Fish

 P.S: in a self-promotion, you may wish to take a look at
 http://www.shlomifish.org/humour/Selena-Mandrake/ , which is a screenplay I've
 begun writing that aims to be a supernatural dramedie, and one of my most
 farfetched pieces yet. I've only written the first few scenes, but I have a
 solid idea for more stuff there.

 Furthermore, if you have a kindle, you may wish to buy the Kindle version of
 The Enemy and How I Helped to Fight it:

 http://www.amazon.com/Enemy-How-Helped-Fight-ebook/dp/B004YTSWS0/ref=sr_1_1

 The price is higher than what I wanted, but if you want, you can read the
 story on my site, and just comment about it for future generations (and maybe
 make a smaller donation to my PayPal account).

 --
 -
 Shlomi Fish       http://www.shlomifish.org/
 My Aphorisms - http://www.shlomifish.org/humour.html

 C++ is complex, complexifying and complexified.
 (With apologies to the Oxford English Dictionary).

 Please reply to list if it's a mailing list post - http://shlom.in/reply .




-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems,
Device Drivers, TI DaVinci

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: VLC can read it but I cannot?

2011-04-05 Thread Constantine Shulyupin
strace -o vlc.log vlc ?

On Tue, Apr 5, 2011 at 12:56 AM, Gabor Szabo szab...@gmail.com wrote:
 I have a CD with a short video film on it. I can see the video using
 VLC but when I try to copy the
 VIDEO_TS I get an error:


 ls -al /media/cdrom/
 ls: cannot access /media/cdrom/.: Permission denied
 ls: cannot access /media/cdrom/..: Permission denied
 ls: cannot access /media/cdrom/VIDEO_TS: Permission denied
 total 0
 d? ? ? ? ?                ? .
 d? ? ? ? ?                ? ..
 ?? ? ? ? ?                ? VIDEO_TS
 gabor@localhost:~$ ls -al /media/cdrom/VIDEO_TS
 ls: cannot access /media/cdrom/VIDEO_TS: Permission denied


 sudo ls -la /media/cdrom/
 ls: cannot access /media/cdrom/VIDEO_TS: Permission denied
 total 6
 dr--r--r-- 3 4294967295 4294967295   88 2006-09-26 16:23 .
 drwxr-xr-x 4 root       root       4096 2011-04-04 23:00 ..
 ?? ? ?          ?             ?                ? VIDEO_TS
 gabor@localhost:~$ sudo ls -la /media/cdrom/VIDEO_TS
 ls: cannot access /media/cdrom/VIDEO_TS: Permission denied

 Any idea why is that and how could I copy the video?


 BTW running Ubuntu 10.10 and this is a personal video.

 Gabor

 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il




-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems,
Device Drivers, TI DaVinci

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: VLC can read it but I cannot?

2011-04-05 Thread Constantine Shulyupin
Use option Convert and save the stream.

On Tue, Apr 5, 2011 at 12:56 AM, Gabor Szabo szab...@gmail.com wrote:
 I have a CD with a short video film on it. I can see the video using
 VLC but when I try to copy the
 VIDEO_TS I get an error:


 ls -al /media/cdrom/
 ls: cannot access /media/cdrom/.: Permission denied
 ls: cannot access /media/cdrom/..: Permission denied
 ls: cannot access /media/cdrom/VIDEO_TS: Permission denied
 total 0
 d? ? ? ? ?                ? .
 d? ? ? ? ?                ? ..
 ?? ? ? ? ?                ? VIDEO_TS
 gabor@localhost:~$ ls -al /media/cdrom/VIDEO_TS
 ls: cannot access /media/cdrom/VIDEO_TS: Permission denied


 sudo ls -la /media/cdrom/
 ls: cannot access /media/cdrom/VIDEO_TS: Permission denied
 total 6
 dr--r--r-- 3 4294967295 4294967295   88 2006-09-26 16:23 .
 drwxr-xr-x 4 root       root       4096 2011-04-04 23:00 ..
 ?? ? ?          ?             ?                ? VIDEO_TS
 gabor@localhost:~$ sudo ls -la /media/cdrom/VIDEO_TS
 ls: cannot access /media/cdrom/VIDEO_TS: Permission denied

 Any idea why is that and how could I copy the video?


 BTW running Ubuntu 10.10 and this is a personal video.

 Gabor

 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il




-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems,
Device Drivers, TI DaVinci

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: Script to create an image from text?

2011-02-02 Thread Constantine Shulyupin
yet another way:
- create svg template
- alter it
- inkscape --export-png

2011/2/2 Amichai Rotman amic...@iglu.org.il:
 Hi,
 I am looking for a script to be used at a web site that will accept certain
 details as input (say: Name, Phone, etc.) and then convert it to a jpeg
 image file that will include a template (say: A diploma graphic) and the
 text entered incorporated...
 I hope I was clear enough
 Thanks,
 Amichai.
 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il





-- 
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems,
Device Drivers, TI DaVinci

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


CELF Open Project Proposal 2011

2011-01-22 Thread Constantine Shulyupin
Remainder:  One week till proposals for the initial 2011 project
deadline January 31, 2011.

http://elinux.org/CELF_Open_Project_Proposal_2011

--
Constantine Shulyupin
http://www.MakeLinux.co.il/
Embedded Linux Systems,
Device Drivers, TI DaVinci

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Embedded Linux Fast Boot: Only 560 milliseconds from reset to shell

2011-01-09 Thread Constantine Shulyupin
Shalom,

I achieved embedded Linux boot in 560 ms (about a half of a second) on
TI DM365 (ARM 300 MHz) with NAND flash.

Boot log with timestamps Logging starts at 20 ms from reset.

0.000 0.000: DM36x initialization passed!
0.000 0.000: Optimized TI UBL 1.50 http://www.MakeLinux.com/emb/fastboot
0.010 0.010: Compiled on Jan  5 2011 at 02:38:56 with gcc 4.3.3
0.010 0.000: Starting NAND Copy...
0.479 0.469: length=0x00156000   DONE
0.479 0.000: Jumping to entry point at 0x80008000.
0.542 0.063: BusyBox v1.16.2 hush - the humble shell

Please visit http://www.makelinux.com/emb/fastboot/ for more details
and binary demo.

For engineering and consultancy services please contact co...@makelinux.com

--
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Web interface for embedded Linux system administration

2010-12-28 Thread Constantine Shulyupin
Hi,

I am looking web interface for embedded Linux system administration.
It should provide base system administration and be configurable for
additional applications configuration.

I found two candidates:
- Webmin http://www.webmin.com/   http://en.wikipedia.org/wiki/Webmin
- Webif²  http://x-wrt.org/ http://en.wikipedia.org/wiki/X-Wrt

Webmin looks too heavy for embedded because it uses perl.
Webif² look more suable for embedded.

What can you say about this candidates?
Can you recommend another solutions?

Thanks.
Happy New year!
-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: Linux kernel map

2010-12-14 Thread Constantine Shulyupin
see request_irq, netif_receive_skb  and dev_queue_xmit
Thank you!

PS: use replay to All (shortcut A), instead of Replay

On Tue, Dec 14, 2010 at 5:29 PM, Alexander Indenbaum
alexander.indenb...@gmail.com wrote:
 Costa,

 Cool map, nice idea and implementation! Keep up the great work.

 I had no chance to look through all the 440 items, however I did zoom
 on network device drivers and was surprised to find there driver
 specific implementation function like e100_xmit_frame() or
 e1000_intr(), However I would like to see there generic kernel
 interfaces enabling to register interrupt handler or transmit routine,
 used by specific drivers.

 My 2 cents,
 ~baum

 On Sun, Dec 5, 2010 at 5:03 PM, Constantine Shulyupin
 co...@linuxdriver.co.il wrote:
 Hi,

 I've updated the Linux kernel map: http://www.makelinux.net/kernel_map
 It contains about 440 items and updated to linux-2.6.36.
 You welcome to give me feedback.

 After improving the map I am going to order offset  printing of big
 poster of the map.

 Anyone who will give me feedback will get the POSTER for FREE!
 (in Tel Aviv area)

 Thank you!
 --
 Constantine Shulyupin
 Embedded Linux Expert
 TI DaVinci Expert
 Tel-Aviv Israel
 http://www.LinuxDriver.co.il/

 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il





-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Linux kernel map

2010-12-05 Thread Constantine Shulyupin
Hi,

I've updated the Linux kernel map: http://www.makelinux.net/kernel_map
It contains about 440 items and updated to linux-2.6.36.
You welcome to give me feedback.

After improving the map I am going to order offset  printing of big
poster of the map.

Anyone who will give me feedback will get the POSTER for FREE!
(in Tel Aviv area)

Thank you!
-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


tidy IP/IF table report tool

2010-10-16 Thread Constantine Shulyupin
Hi,

Are there tool, which outputs tidy table of interfaces and IP like this:

eth0   up   nolink10.100.101.100  00:21:85:18:35:73
vmnet1  up   link192.168.171.100:50:56:c0:00:01

-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: hosting in USA

2010-05-06 Thread Constantine Shulyupin
FYI: bluehost.com doesn't host CO.IL

2010/5/6 Hetz Ben Hamo het...@gmail.com:
 Rackspace? it's like killing a Mosquito with a Canon, and their price is
 really big..
 It really depends on the person's needs: Is he looking for Dedicated
server?
 VPS? or a simple shared account?
 He/she should also take into consideration other details such:
 * Where his target audience is located? if his customers are located in
 Israel, perhaps it's best to find a good deal here in IL
 * Is shared hosting good enough for him? then something like bluehost.com
 could be sufficient for him (although their uptime record is horrible)
 * How many people are accessing his web site?
 After answering these questions (to himself) it would be easier for him to
 find a good company for his needs.
 Hetz

 2010/5/6 Marc Volovic marcvolo...@me.com

 rackspace

 On May 6, 2010, at 4:30 PM, Serge wrote:

  Hello there,
  Could you advise any good hosting provider in USA? Somebody wants to
  move from godaddy. Any input very  appreciated.
 
  Thanks, Serge.
 
 
 
 
  ___
  Linux-il mailing list
  Linux-il@cs.huji.ac.il
  http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il

 Marc Volovic
 marcvolo...@me.com




 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


 --
 my blog (hebrew): http://benhamo.org
 Skype: heunique
 MSN: hetz-b...@benhamo.org

 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il





-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/
___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: hosting in USA

2010-05-06 Thread Constantine Shulyupin
Thanks, I'll check again

On Thu, May 6, 2010 at 5:33 PM, Hetz Ben Hamo het...@gmail.com wrote:

 Hmm? I hosted there 4 web sites, 3 of them were with co.il up to 4 months
 ago.

 Hetz

 2010/5/6 Constantine Shulyupin co...@linuxdriver.co.il

 FYI: bluehost.com doesn't host CO.IL

 2010/5/6 Hetz Ben Hamo het...@gmail.com:

  Rackspace? it's like killing a Mosquito with a Canon, and their price is
  really big..
  It really depends on the person's needs: Is he looking for Dedicated
 server?
  VPS? or a simple shared account?
  He/she should also take into consideration other details such:
  * Where his target audience is located? if his customers are located in
  Israel, perhaps it's best to find a good deal here in IL
  * Is shared hosting good enough for him? then something like
 bluehost.com
  could be sufficient for him (although their uptime record is horrible)
  * How many people are accessing his web site?
  After answering these questions (to himself) it would be easier for him
 to
  find a good company for his needs.
  Hetz
 
  2010/5/6 Marc Volovic marcvolo...@me.com
 
  rackspace
 
  On May 6, 2010, at 4:30 PM, Serge wrote:
 
   Hello there,
   Could you advise any good hosting provider in USA? Somebody wants to
   move from godaddy. Any input very  appreciated.
  
   Thanks, Serge.
  
  
  
  
   ___
   Linux-il mailing list
   Linux-il@cs.huji.ac.il
   http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il
 
  Marc Volovic
  marcvolo...@me.com
 
 
 
 
  ___
  Linux-il mailing list
  Linux-il@cs.huji.ac.il
  http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il
 
 
  --
  my blog (hebrew): http://benhamo.org
  Skype: heunique
  MSN: hetz-b...@benhamo.org
 
  ___
  Linux-il mailing list
  Linux-il@cs.huji.ac.il
  http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il
 
 



 --
 Constantine Shulyupin
 Embedded Linux Expert
 TI DaVinci Expert
 Tel-Aviv Israel
 http://www.LinuxDriver.co.il/


 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il




 --
 my blog (hebrew): http://benhamo.org
 Skype: heunique
 MSN: hetz-b...@benhamo.org




-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/
___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


GPRS modem for embedded Linux

2010-04-22 Thread Constantine Shulyupin
Hi,

Can anybody recommend GPRS modem for embedded Linux?
for embedded Linux means simple, cheap, durable.

Currently I integrate AirPrime Fastrack GO GPRS modem. It is USB ACM device.
I suppose there are better solutions.

Thanks

-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: Reminder: TelFOSS Meeting TOMORROW: Version Control Systems ( 21-Apr-2010 )

2010-04-20 Thread Constantine Shulyupin

 --
 -
 Shlomi Fish       http://www.shlomifish.org/
 List of Portability Libraries - http://shlom.in/port-libs

 Deletionists delete Wikipedia articles that they consider lame.
 Chuck Norris deletes deletionists whom he considers lame.

 Please reply to list if it's a mailing list post - http://shlom.in/reply .
 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il




-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/
___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Nexus One

2010-04-12 Thread Constantine Shulyupin
Hi,

How may list list subscribers use Nexus One?
(I know Gilad do)
What are your impressions?
Does it worth to purchase?
Where it worth to purchase?

Thanks

Keywords: Nexus One, Google phone, HTC, Android

-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: faster rsync of huge directories

2010-04-12 Thread Constantine Shulyupin
 By default cpio also will not overwrite files if the source is not newer.

Consider cp -ur

rsync also can --delete extraneous files from dest dirs

-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Linux OS internals

2010-01-09 Thread Constantine Shulyupin
Hi friends,

I going to finish my new map of Linux OS internals. I compliments my
previous interactive maps of Linux. You my find that maps on top three
links here: http://www.makelinux.net/resources . The goal of the map
is visualization of  internal structure of GNU/Linux systems.

Can you please review draft of new map and give me you advices. What
is you opinion about  design? Can you suggest more items to add to the
map? What need to change?

Here is draft of the map:
http://www.makelinux.net/system/Linux_OS_internals_1200.png

Thank you.
-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: FW: very interesting - Sixth Sense Device

2009-12-13 Thread Constantine Shulyupin
Amazing!

On Sun, Dec 13, 2009 at 11:42 PM, Amos Shapira amos.shap...@gmail.com wrote:
 Anyone needing an idea for an open-source project? (listen carefully
 to his answer to the first question after the talk)

 http://economictimes.indiatimes.com/tv/TED-India-Pranav-Mistrty/videoshow_ted/5231080.cms

 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il




-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: active server and passive client

2009-12-12 Thread Constantine Shulyupin
Right.
Thank you!

On Wed, Dec 9, 2009 at 9:31 PM, Dotan Shavit do...@shavitos.com wrote:
 On Wednesday 09 December 2009 19:31:07 Constantine Shulyupin wrote:
 And how will I use netcat to reverse/forward connection?
 e.g [not tested]:

 nc -l -p 81 -c nc -l -p 80
 and
 nc -c nc client 80  server 80





-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: active server and passive client

2009-12-09 Thread Constantine Shulyupin
Thanks, Arie.

2009/12/8 Arie Skliarouk sklia...@gmail.com:
 Hi,

 On Tue, Dec 8, 2009 at 17:24, Constantine Shulyupin
 co...@linuxdriver.co.il wrote:
 for simple protocols (http, scp) you can use reverse port forwarding feature
 of ssh:
 Run on the server following:
 ssh -R 9922:127.0.0.1:22 a...@client.somecompany.com

 Causes ssh to login into a...@client.somecompany.com, listen for connections
 on
 port 9922 on the remote machine and forward them to 127.0.0.1:22 (back
 to the server)

 Then you will be able to ssh into the server from the client by ssh'ing into
 port 9922 on the client.

 --
 Arie


 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il





-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: active server and passive client

2009-12-09 Thread Constantine Shulyupin
And how will I use netcat to reverse/forward connection?

On Wed, Dec 9, 2009 at 10:26 AM, Dotan Shavit do...@shavitos.com wrote:
 On Tuesday 08 December 2009 17:24:02 Constantine Shulyupin wrote:
 The question is, is there already ready solution for the task or is
 there simple solution than described?

 man netcat




-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


active server and passive client

2009-12-08 Thread Constantine Shulyupin
Hi colleagues,

I have: servers (HTTP, FTP, RTSP and other) behind firewall and a
client PC. The client wishes to connect to severer. But firewall
doesn't allows him to connect to server.

The server knows the clients IP and can open a connection.
Unfortunately I can't set up tunneling/VPN on client because of system
administration limitation.

Theoretically, I can rewrite inetd to make connection to client and
rewrite FTP client to listen for connection from server or code custom
protocol.

The question is, is there already ready solution for the task or is
there simple solution than described?

Thank you.
-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: web hosting

2009-09-29 Thread Constantine Shulyupin
Requirements:

disk space 0.5-1 GB
download size of frequent pages - 3MB
average visits - 300 per day ~= 1 GB / day = 30 GB/month
peak load: slashdot effect - 100 K per day ~= 30 Mbps = 300 GB
~ 2 peak days in month = 0.6 TB (GoDaddy failed to service promised
1.5 TB of dedicated hosting)

Fast web access without redundant javascript and flashed. (GoDaddy
uses a lot javascript and flash, and is slow)

FTP access

web or real-time access to access.log and error.log

Most of bandwidth - US,
For Israel I use only small homepage

php, ssh, wiki, svn, blogs could be nice but is not yet necessary

Where to allocate it?
A few additional dollars per month are not very important.

On Mon, Sep 28, 2009 at 10:37 PM, Amos Shapira amos.shap...@gmail.com wrote:
 What kind of specifications do you need?

 Bluehost is being mentioned as a good option whenever cheap VPS is
 asked about for a few years now.

 -Amos

 On 9/29/09, Constantine Shulyupin co...@linuxdriver.co.il wrote:
 First of all my site was not functional for the first (during 2 days)
 because it was mentioned on slashdot (in a comment).
 A some time ago it was not a problem.
 GD suggests to switch to [virtually]dedicated server.
 Second: during 2 hours I can't update my site. FTP connection just
 stalls. It happened many times.
 The third: Overloaded with JavaScript and flash web interface.
 + absence ability to get access log - available for dedicated server only


 On Mon, Sep 28, 2009 at 9:17 PM, ASAF HALILI asaf.hal...@gmail.com wrote:
 Dreamhost.com good, but pretty slow response time for Israel.
 Why do you tired from GoDaddy?

 On Mon, Sep 28, 2009 at 9:07 PM, Constantine Shulyupin
 co...@linuxdriver.co.il wrote:

 I tired from GoDaddy,

 what do you suggest?

 --
 Constantine Shulyupin
 Embedded Linux Expert
 TI DaVinci Expert
 Tel-Aviv Israel
 http://www.LinuxDriver.co.il/

 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il





 --
 Constantine Shulyupin
 Embedded Linux Expert
 TI DaVinci Expert
 Tel-Aviv Israel
 http://www.LinuxDriver.co.il/

 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il





-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


web hosting

2009-09-28 Thread Constantine Shulyupin
I tired from GoDaddy,

what do you suggest?

-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: web hosting

2009-09-28 Thread Constantine Shulyupin
First of all my site was not functional for the first (during 2 days)
because it was mentioned on slashdot (in a comment).
A some time ago it was not a problem.
GD suggests to switch to [virtually]dedicated server.
Second: during 2 hours I can't update my site. FTP connection just
stalls. It happened many times.
The third: Overloaded with JavaScript and flash web interface.
+ absence ability to get access log - available for dedicated server only


On Mon, Sep 28, 2009 at 9:17 PM, ASAF HALILI asaf.hal...@gmail.com wrote:
 Dreamhost.com good, but pretty slow response time for Israel.
 Why do you tired from GoDaddy?

 On Mon, Sep 28, 2009 at 9:07 PM, Constantine Shulyupin
 co...@linuxdriver.co.il wrote:

 I tired from GoDaddy,

 what do you suggest?

 --
 Constantine Shulyupin
 Embedded Linux Expert
 TI DaVinci Expert
 Tel-Aviv Israel
 http://www.LinuxDriver.co.il/

 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il





-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: web hosting

2009-09-28 Thread Constantine Shulyupin
Thank you!
I could be an option.
ssh is not too important.

On Mon, Sep 28, 2009 at 9:23 PM, David Suna da...@davidsconsultants.com wrote:
 What are you looking for?  I have been happy with icdsoft.com for shared
 hosting in a linux environment using PHP but there is no SSH support.

 David Suna
 da...@davidsconsultants.com



 Constantine Shulyupin wrote:

 I tired from GoDaddy,

 what do you suggest?






-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Join Linux Israel @ linkedIn.com

2009-05-21 Thread Constantine Shulyupin
Hi,

I created group Linux Israel at linkedIn.com to promote Linux in
Israel High-Tech.

 http://www.linkedin.com/groups?about=gid=1962511trk=anet_ug_grppro

Welcome!

-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Embedded Linux job opportunity

2009-05-18 Thread Constantine Shulyupin
Hi,

My company is looking for Embedded Linux developers.

Job description:
• Company http://www.aplicatech.com/
• Developing video devices on TI DaVinci processors

Required skills and experience:
• C/C++
• Embedded Linux
• Linux kernel and drivers
• desire to work hard and learn a lot

Desired skills and experience:
• GUI development under Linux
• Internet protocols
• video processing
• various embedded devices

Please contact with relevant experience only.
Mail resume please to res...@linuxdriver.co.il
Updated job description located at http://www.linuxdriver.co.il/jobs

Good luck!
-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Linux printing job opportunity

2009-05-18 Thread Constantine Shulyupin
Hi,

Somebody is looking for a Linux based software engineer (C/C++) who
could write a backend module that could be executed on the print
stream of any print application running on the Linux platform.

Please send relevant resume to  printing-res...@linuxdriver.co.il
-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Join Linux Israel at linux.com

2009-05-16 Thread Constantine Shulyupin
Hi friends,

Th Linux Foundation started new site on linux.com domain.

I opened Linux Israel group:

http://www.linux.com/community/groups/viewgroup/605-Linux+Israel

Join!

--
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


usb packet analyzer on windows

2009-05-12 Thread Constantine Shulyupin
Hi,

Can you please software USB packet analyzer on Windows .
I have a device that works on Windows. I  going to develop  driver on Linux
for the device.

Thanks.

-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/
___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: usb packet analyzer on windows

2009-05-12 Thread Constantine Shulyupin
Yes, I need USB Windows sniffer to develop driver on Linux.
And somebody on this mailing list has this experience.

On Tue, May 12, 2009 at 3:24 PM, Noam Rathaus no...@beyondsecurity.comwrote:

 Hi Constantine,

 Can you be a bit clearer on what you seek?

 Is it a USB sniffer for Windows? if so, this is a Linux mailing list and I
 don't think this is the right place to ask - unless someone has past
 experience and can recommend one.

 On Tuesday 12 May 2009 10:37:46 Constantine Shulyupin wrote:
  Hi,
 
  Can you please software USB packet analyzer on Windows .
  I have a device that works on Windows. I  going to develop  driver on
 Linux
  for the device.
 
  Thanks.

 --
 Regards,
 Noam Rathaus
 CTO
 Beyond Security




-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/
___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: usb packet analyzer on windows

2009-05-12 Thread Constantine Shulyupin
Thank you!

On Tue, May 12, 2009 at 4:14 PM, Shlomi Fish shlo...@iglu.org.il wrote:

 On Tuesday 12 May 2009 15:29:17 Constantine Shulyupin wrote:
  Yes, I need USB Windows sniffer to develop driver on Linux.
  And somebody on this mailing list has this experience.
 

 Well, a quick Google search for windows usb sniffer yielded this:

 http://sourceforge.net/projects/usbsnoop/

 Last release is from 2002, but it may still be good enough. An older
 version
 of this program was used by Emil Kohn to prepare a Linux driver for a USB
 ADSL
 modem that was only supported under Windows:

 http://www.mail-archive.com/lin-c...@vipe.technion.ac.il/msg01287.html

 Regards,

Shlomi Fish

 --
 -
 Shlomi Fish   http://www.shlomifish.org/
 The Human Hacking Field Guide - http://xrl.us/bjn8q

 God gave us two eyes and ten fingers so we will type five times as much as
 we
 read.




-- 
Constantine Shulyupin
Embedded Linux Expert
TI DaVinci Expert
Tel-Aviv Israel
http://www.LinuxDriver.co.il/
___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


off-topic: support Israel in commons.wikimedia.org

2009-02-27 Thread Constantine Shulyupin
Hi,

Please help to support pro-Israel images and on commons.wikimedia.org.

Recently uploaded image
http://commons.wikimedia.org/wiki/File:Fighting_Israel_for_dummies.png
is voted for deletion:

http://commons.wikimedia.org/wiki/Commons:Deletion_requests/File:Fighting_Israel_for_dummies.png

Please take part in the voting!

Thank you!
-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


[Linux-il] Web browser on ARM

2009-01-25 Thread Constantine Shulyupin
HI,

I going to cross compile a web browser for ARM (TI DaVinci, MontaVista Linux 4).
I already unsuccessfully tried to compile WebKit.
There are a lot of problems of versions and configurations
incompatibilities among libraries.
Have somebody already tried to do that?
Have you any suggestion where to get ready web browser for ARM or
speed up the cross compilation.


Thank you
-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: [Linux-il] Web browser on ARM

2009-01-25 Thread Constantine Shulyupin
Thank you, Matan!
I'll try it too.
BTW: Modori based in WebKit

On Sun, Jan 25, 2009 at 4:20 PM, Matan Ziv-Av ma...@svgalib.org wrote:
 On Sun, 25 Jan 2009, Constantine Shulyupin wrote:

 HI,

 I going to cross compile a web browser for ARM (TI DaVinci, MontaVista
 Linux 4).
 I already unsuccessfully tried to compile WebKit.
 There are a lot of problems of versions and configurations
 incompatibilities among libraries.
 Have somebody already tried to do that?
 Have you any suggestion where to get ready web browser for ARM or
 speed up the cross compilation.

 The main question is what libraries you are allowed to use.

 Debian has an arm version which includes browsers such as firefox and
 midori.

 Maemo platform (maemo.org) has an easy to use cross compiling environment
 and a few free software browsers available.


 --
 Matan Ziv-Av. ma...@svgalib.org






-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: [Linux-il] Web browser on ARM

2009-01-25 Thread Constantine Shulyupin
Thank you, Hetz

I already going to test qt-embedded-linux-opensource-src-4.4.3

On Sun, Jan 25, 2009 at 4:55 PM, Hetz Ben Hamo het...@gmail.com wrote:
 Hi,

 If I recall correctly, QT4 has webkit inside, and I think it already
 compiles well on ARM (including QTopia). How about trying that?

 Thanks,
 Hetz

 On Sun, Jan 25, 2009 at 2:28 PM, Constantine Shulyupin
 co...@linuxdriver.co.il wrote:
 HI,

 I going to cross compile a web browser for ARM (TI DaVinci, MontaVista Linux 
 4).
 I already unsuccessfully tried to compile WebKit.
 There are a lot of problems of versions and configurations
 incompatibilities among libraries.
 Have somebody already tried to do that?
 Have you any suggestion where to get ready web browser for ARM or
 speed up the cross compilation.


 Thank you
 --
 Constantine Shulyupin
 Freelance Embedded Linux Engineer
 054-4234440
 http://www.linuxdriver.co.il/

 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il




 --
 Skepticism is the lazy person's default position.
 my blog (hebrew): http://benhamo.org




-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: [Linux-il] Web browser on ARM

2009-01-25 Thread Constantine Shulyupin
Thank you, Gilad,

I am installing maemo-scratchbox-install_4.1.2.sh and maemo-sdk-install_4.1.2.sh

On Sun, Jan 25, 2009 at 5:00 PM, Gilad Ben-Yossef gi...@codefidence.com wrote:
 Constantine Shulyupin wrote:

 HI,

 I going to cross compile a web browser for ARM (TI DaVinci, MontaVista Linux
 4).


 Well, an interesting longer term solution will be to use the Android stack
 of course, but being that it's MV4 you're talking about this is not the fast
 path

 I already unsuccessfully tried to compile WebKit.
 There are a lot of problems of versions and configurations
 incompatibilities among libraries.


 Cross compiling sucks and MV4 is using old versions of well... everything -
 but you really need to supply some more details on what you tried and what
 didn't work.

 Have somebody already tried to do that?


 Use a build envrionment like buildroot, Ptxdist or Scratchbox.

 Have you any suggestion where to get ready web browser for ARM or
 speed up the cross compilation.


 The Nokia 770 is an Arm based Linux device and as it is a web tablet it
 obviously has a browser. They use Scratchbox - so that's a good start.

 Good luck,
 Gilad


 --
 Gilad Ben-Yossef
 Chief Coffee Drinker

 Codefidence Ltd.
 The code is free, your time isn't.(TM)

 Web:http://codefidence.com
 Email:  gi...@codefidence.com
 Office: +972-8-9316883 ext. 201
 Fax:+972-8-9316885
 Mobile: +972-52-8260388

   The Doctor: Don't worry, Reinette, just a nightmare.
   Everyone has nightmares. Even monsters from under the
   bed have nightmares, don't you, monster?
   Reinette: What do monsters have nightmares about?
   The Doctor: Me!




-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: [Linux-il] Web browser on ARM

2009-01-25 Thread Constantine Shulyupin
Thank you!

On Sun, Jan 25, 2009 at 5:57 PM, Lionel Elie Mamane lio...@mamane.lu wrote:
 On Sun, Jan 25, 2009 at 02:28:09PM +0200, Constantine Shulyupin wrote:

 I going to cross compile a web browser for ARM

 Have you any suggestion where to get ready web browser for ARM

 The whole of Debian is available on ARM; it contains precompiled
 binaries for several web browsers. However, it is not obvious that
 these binaries will work on the other distribution you want to use. If
 not, maybe at least the build-dependency information contained in the
 packages may be useful to resolve the version-dependency hell?

 http://www.debian.org/ports/arm/

 --
 Lionel




-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: [Linux-il] Web browser on ARM

2009-01-25 Thread Constantine Shulyupin
Finally, I successfully compiled and ran WebKit from
qt-embedded-linux-opensource-src-4.4.3

On Sun, Jan 25, 2009 at 6:45 PM, Diego Iastrubni elc...@kde.org wrote:
 On Sunday 25 January 2009 14:28:09 Constantine Shulyupin wrote:
 HI,

 I going to cross compile a web browser for ARM (TI DaVinci, MontaVista
 Linux 4). I already unsuccessfully tried to compile WebKit.

 Webkit on what? Qt45? GTK?

 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il




-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.il/

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: Fwd: Fedora 8 and 9 updates re-enabled

2008-09-11 Thread Constantine Shulyupin
My yum updated this:

Updating:
 PackageKit  i386   0.2.5-1.fc9  updates   561 k
 PackageKit-libs i386   0.2.5-1.fc9  updates   106 k
 fedora-release  noarch 9-5.transition   updates34 k
 gnome-packagekiti386   0.2.5-2.fc9  updates   1.1 M
 yum-packagekit  i386   0.2.5-1.fc9  updates11 k



On Thu, Sep 11, 2008 at 1:17 PM, Nadav Har'El [EMAIL PROTECTED] wrote:
 On Wed, Sep 10, 2008, Oron Peled wrote about Fwd: Fedora 8 and 9 updates 
 re-enabled:
 Date: Wednesday, 10 � September 2008
 From: Jesse Keating [EMAIL PROTECTED]
 In a few hours, updates for Fedora 8 and Fedora 9 will start hitting
 mirrors.  These updates are designed to transition users from our old
 repo locations to new locations that have all our updates re-signed with
 a new set of keys.
...

 More than a day has passed, and yum update still does nothing on my
 Fedora 9.  Does anyone know what is going on?

 --
 Nadav Har'El|  Thursday, Sep 11 2008, 11 Elul 5768
 [EMAIL PROTECTED] |-
 Phone +972-523-790466, ICQ 13349191 |If at first you don't succeed, skydiving
 http://nadav.harel.org.il   |is not for you.

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





-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.il/


Re: New Welcome to Linux Series

2008-09-11 Thread Constantine Shulyupin
Hi,

I would like to tell about GNU/Linux structure and how to find a route
in wild world of Linux  FOSS
using the Map of GNU/Linux OS and FOSS: http://www.makelinux.net/system/

-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.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]



Interactive map of GNU/Linux OS and FOSS

2008-09-03 Thread Constantine Shulyupin
Hi,

I made map of GNU/Linux: http://www.makelinux.net/system/
Do you remember poster O'Reilly Charting the Linux Anatomy? Here is
new reincarnation of the poster. It demonstrates anatomy of a
GNU/Linux system and popular Free Open Source Software. Items on the
interactive map are hyperlinks to articles and documentation. Image of
the map is original wallpaper. It looks like internals of a your
GNU/Linux system.

Have you any comments or suggestions?

Thank you.

-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.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: [Herzelinux] Linux Kernel Networking - the Routing Subsystem (Rami Rosen)

2008-08-06 Thread Constantine Shulyupin
Excellent!
I just now update http://www.makelinux.net/kernel_map.

On Wed, Aug 6, 2008 at 12:52 PM, Gilad Ben-Yossef [EMAIL PROTECTED] wrote:
 Hi all,


 On Thursday, 7/8, Hezelinux will hold it's second meeting.


 Topic: Linux Kernel Networking - the Routing Subsystem

 Lecturer: Rami Rosen

 Where: Hi Tech College, Maskit 27, Herzelia Pituch.

 Time: Thursday, 7/8, 18:30.

 Note: this is a re-run of the lecture of the same name that ran In Haifux.


 Herzel-what?


 Herzelinux is a new Linux Linux user group. It's aim is to try to bridge the
 gap between professional Linux programmers working for Hi tech companies and
 the Linux Open Source community and bring them into the fold.


 As such:


 - The meeting topics will tend towards the advance technical stuff which is
 of interest to professional programmers.

 - The meeting takes place in Herzelia Pituch (Maskit 27, In hi-tech
 college), a short walking distance from most of Silicon Wadi companies, to
 the pleasure of the lazy Hi Tech bums :-)


 Other then that it's just yet anther LUG, like Haifux and Telux, whose
 format we're basically mimicking (read: most sincere form of flattery and so
 on...)


 Needless to say, it's free, both in speech and in coffee (not very good
 coffee but it's provided for free by Hi tech College so we shouldn't
 complain) and you are all invited. In fact, I'd truly appreciate if you can
 spread the word and invite fellow programmers working on Linux which are not
 alpha Linux geeks.


 For more details: http://tuxology.net/herzelinux


 For facebook lovers - join our group on facebook:
 http://www.facebook.com/pages/Herzliya-Israel/Herzelinux/10832254949


 See you there,

 Gilad



 --
 Gilad Ben-Yossef Chief Coffee Drinker

 Codefidence Ltd.
 The code is free, your time isn't.(TM)

 Web:http://codefidence.com
 Email:  [EMAIL PROTECTED]
 Office: +972-8-9316883 ext. 201
 Fax:+972-8-9316885
 Mobile: +972-52-8260388

Q: How many NSA agents does it take to replace a lightbulb?
A: dSva7DrYiY24yeTItKyyogFXD5gRuoRqPNQ9v6WCLLywZPINlu!



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





-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.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]



GNU/Linux anatomy 2

2008-07-20 Thread Constantine Shulyupin
Hi,

Many years ago I was impressed by famous O'Reily poster of Linux
anatomy. Did you liked it? I've missed more updated version. Finally
I've made my own:
http://www.makelinux.net/home/

The work is still under development and your opinion certainly very valuable.

Thanks.

-
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.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: USB and HD switching places

2008-07-18 Thread Constantine Shulyupin
As option, you can compile usb-storage as module and load it latter,
when SATA is already recognized

On Fri, Jul 18, 2008 at 11:37 AM, Noam Rathaus [EMAIL PROTECTED] wrote:
 Hi,

 I have a strange problem where my external HD is assigned to /dev/sdb and my
 SATA disk is assigned to /dev/sda

 But every once in a while, they decide to switch places (during boot), any
 idea how I can fix this - so they do not switch places?

 --
 Noam Rathaus
 CTO
 [EMAIL PROTECTED]
 http://www.beyondsecurity.com

 Know that you are safe.

 Beyond Security Finalist for the Red Herring 100 Global Awards 2007

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





-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.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: building kernel for TI Davinci and Powerpc e300

2008-06-15 Thread Constantine Shulyupin
Hi,

About Davinci.
Good place to get kernel is DVEVM BSP. see http://www.ti.com/litv/pdf/spraah2a
Kernel http://source.mvista.com/git/ is kernel for hacking.

Regards

On Sun, Jun 15, 2008 at 8:50 AM, Ravid Baruch Naali [EMAIL PROTECTED] wrote:
 Hello list,

 My comapny (S.A.E Afikim) is looking into using Linux in our next generation
 product. our products require the usage of the following processor/chip set:

 1.   Powerpc MPC5200B (core e300)

 2.   TI DaVinci DM355.

 Is there any existing crosstool or good instruction on building such for the
 e300 (Can I use the powerpc-603 crosstool)?
 How well does the kernel support the e300 ?
 Is the montavista repisotory a good place to get the source for the kernel
 supporting Davinci?

 I'll be greatfull for a partial or a complete answer
 Thanks in advance
 --
 Ravid Baruch Naali
 E-mail: [EMAIL PROTECTED]
 Mobile: 052-5830021
 Home/Office:04-6732729



-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.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]



Valgrind on ARM (or other memory leaks tracking program on ARM)

2008-06-05 Thread Constantine Shulyupin
Hi,

I found that Valgrind dosn't support by arm default. There are some
old guidelines how to do that. Have any body positive experience
running Valgrind  on arm? Does it worth to do that? Or easier to make
custom malloc/free counting? Are there other similar tools for arm?

Thanks.
-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.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: SourceForge down?

2008-04-30 Thread Constantine Shulyupin
I too. from 012

On Wed, Apr 30, 2008 at 2:47 PM, ronys [EMAIL PROTECTED] wrote:
 Hi,

  Is it only me, or is sourceforge.net unavailable over the last few hours?

  I can't reach them from Netvision or from Bezeqint.

  Slashdot.org also seems down (both are owned by SourceForge Inc. - odd).

  Rony


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





-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.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: SourceForge down?

2008-04-30 Thread Constantine Shulyupin
http://sourceforge.net/ is back!

On Wed, Apr 30, 2008 at 3:59 PM, ronys [EMAIL PROTECTED] wrote:
 It's official:

  http://www.theregister.co.uk/2008/04/30/slashdot_website_down/

  :-(



  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
  On Behalf Of Omer Zak
  Sent: Wednesday, April 30, 2008 3:06 PM
  To: linux-il
  Subject: Re: SourceForge down?

  Upon seeing the following E-mail, I tested sourceforge.net and
  slashdot.org.  As of 15:15 I can reach neither of them, and I am
  connected via Golden Lines (012.net).

  Anyone from outside of Israel, check both sites please?


  On Wed, 2008-04-30 at 14:47 +0300, ronys wrote:
   Hi,
  
   Is it only me, or is sourceforge.net unavailable over the last few hours?
  
   I can't reach them from Netvision or from Bezeqint.
  
   Slashdot.org also seems down (both are owned by SourceForge Inc. - odd).
  
   Rony



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





-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.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: debian etch, how do I upgrade the kernel

2008-04-08 Thread Constantine Shulyupin
Hi,

A some time ago I compiled custom kernel for my Debian.
On bottom of page http://kernelnewbies.org/KernelBuild you may find
links to official Debian kernel manuals.

On Tue, Apr 8, 2008 at 3:10 PM, Geoffrey S. Mendelson [EMAIL PROTECTED] wrote:
 I upgraded a debian system I have (the only one) from sarge to etch using
  apt-get and it worked, except that I have two problems:

  The first is that it did not update the kernel. How do I update the
  Kernel? I can't find any packages called kernel.

  The second is that it assigns an IP address in the 192.168 range
  to my ethernet interface. If I log on to the console and do an
  ifdown eth0; ifup eth0 and it assigns the right IP address
  using DHCP. What am I missing. Before the upgrade it worked.

  Thanks,

  Geoff.



  --
  Geoffrey S. Mendelson, Jerusalem, Israel [EMAIL PROTECTED]  N3OWJ/4X1GM

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





-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.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: Replacing kernel 2.4 - 2.6

2008-04-02 Thread Constantine Shulyupin
There are newer 2.4 kernels. Why do you need to use 2.6?

On Wed, Apr 2, 2008 at 9:53 PM, Aviram Jenik [EMAIL PROTECTED] wrote:
 I have a machine that I want to replace the kernel on. It's an old Redhat 7.3
  and it works; but it's too old to use an rpm. Upgrading to a newer version
  (or different distribution) is not an option.

  I intend to compile a new kernel (a 2.6.x) and put it on there. What should I
  be taking into account? Will all the applications work? Are there any libc
  dependencies or similar trickery?

  - Aviram

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





-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.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: Sound not working in flash (e.g. youtube)

2008-02-25 Thread Constantine Shulyupin
what happend when you run
   ll /dev/dsp
   echo 1 2 3   /dev/dsp
?

On Mon, Feb 25, 2008 at 10:00 AM, Tom Rosenfeld [EMAIL PROTECTED] wrote:
 Thanks for the tip, however this does not seem to help.
 But I have a few questions.

 - I do not have an 'alsa reload' Did you mean 'alsactl restore'?
 - How do you recommend I tweak gnome-sound-properties? I currentlky have the
 default which does NOT enable sound server startup.

 At any rate these instructions just seem to re-init sound, but my flash
 sound problems happens even right after a reboot.

 Thanks,
 -tom




 On Thu, Feb 21, 2008 at 8:02 PM, Constantine Shulyupin
 [EMAIL PROTECTED] wrote:

  I have two another suggestions (run from root):
 
  1.
 kill `lsof -t /dev/dsp` `lsof -t /dev/snd/* `
 alsa reload
 
test with:
 
echo 1 2 3 4 5 6 7   /dev/dsp
 
  2. tweak gnome-sound-properties
 
 
 
 
  On Thu, Feb 21, 2008 at 6:24 PM, Tom Rosenfeld [EMAIL PROTECTED]
 wrote:
   I tried Noam's suggestion below but it did not help.
  
   I did not have an /etc/firefox/firefoxrc file, so I created it as
 described
   below. I restarted firefox, but flash still di not work. /dev/dsp was
 fine.
   Again sound works fine in all my other media apps.
  
   Any more suggestions?
  
   Thanks,
   -tom
  
  
  
  
   On Mon, Feb 18, 2008 at 3:53 PM, Noam Rathaus [EMAIL PROTECTED]
   wrote:
Hi,
   
I seen this behavior which is caused by ALSA configuration not being
 used
   by
the flash player, make sure:
   
1) In /etc/firefox/firefoxrc
FIREFOX_DSP=aoss
   
2) /dev/dsp is there
   
if not
cd /dev
sudo ./MAKEDEV audio
   
   
These two solved it for me.
   
   
   
   
On Monday 18 February 2008 15:31:13 Tom Rosenfeld wrote:
 I am having trouble with sound not working in flash. E.g. Youtube
 videos
 play video fine but there is no sound. Web searches show others are
   having
 the same trouble, usually with older versions of the plugin, but I
 have
   not
 seen any real solutions. Reading the web leads me to conclude that
 maybe
   I
 need to change some ALSA setting, but I have no idea where to start.

 Sound seems to work fine in other applications (e.g. vlc, mplayer)).
   Here
 is my config:

 CentOS 4 64 bit
 Firefox 2, 32 bit
 Flash plugin 9,0,115,0

 Any suggestions?
 Thanks,
 -tom
 054-244-8025
   
   
   
--
Noam Rathaus
CTO
[EMAIL PROTECTED]
http://www.beyondsecurity.com
   
Know that you are safe.
   
Beyond Security Finalist for the Red Herring 100 Global Awards 2007
   
  
  
  
   --
   -tom
   054-244-8025
 
 
 
  --
  Constantine Shulyupin
  Freelance Embedded Linux Engineer
  054-4234440
  http://www.linuxdriver.co.il/
 



 --
 -tom
 054-244-8025



-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.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: Sound not working in flash (e.g. youtube)

2008-02-25 Thread Constantine Shulyupin
Yea, it looks problem in the plug in only. (would you like to reinstall it?)

BTW, do you use Skype? Does it work?

On Mon, Feb 25, 2008 at 1:00 PM, Tom Rosenfeld [EMAIL PROTECTED] wrote:



 On Mon, Feb 25, 2008 at 11:09 AM, Constantine Shulyupin
 [EMAIL PROTECTED] wrote:
  what happend when you run
ll /dev/dsp
echo 1 2 3   /dev/dsp
  ?
 # ll /dev/dsp
 crw---  1 tom_rosenfeld root 14, 3 Feb 10 08:43 /dev/dsp

 The permissions look fine and the echo produces a click.
 Again, all my other sound apps work fine except for youtube!

 Thanks,
 -tom


 
 
 
  On Mon, Feb 25, 2008 at 10:00 AM, Tom Rosenfeld [EMAIL PROTECTED]
 wrote:
   Thanks for the tip, however this does not seem to help.
   But I have a few questions.
  
   - I do not have an 'alsa reload' Did you mean 'alsactl restore'?
   - How do you recommend I tweak gnome-sound-properties? I currentlky have
 the
   default which does NOT enable sound server startup.
  
   At any rate these instructions just seem to re-init sound, but my flash
   sound problems happens even right after a reboot.
  
   Thanks,
   -tom
  
  
  
  
   On Thu, Feb 21, 2008 at 8:02 PM, Constantine Shulyupin
   [EMAIL PROTECTED] wrote:
  
I have two another suggestions (run from root):
   
1.
   kill `lsof -t /dev/dsp` `lsof -t /dev/snd/* `
   alsa reload
   
  test with:
   
  echo 1 2 3 4 5 6 7   /dev/dsp
   
2. tweak gnome-sound-properties
   
   
   
   
On Thu, Feb 21, 2008 at 6:24 PM, Tom Rosenfeld [EMAIL PROTECTED]
   wrote:
 I tried Noam's suggestion below but it did not help.

 I did not have an /etc/firefox/firefoxrc file, so I created it as
   described
 below. I restarted firefox, but flash still di not work. /dev/dsp
 was
   fine.
 Again sound works fine in all my other media apps.

 Any more suggestions?

 Thanks,
 -tom




 On Mon, Feb 18, 2008 at 3:53 PM, Noam Rathaus
 [EMAIL PROTECTED]
 wrote:
  Hi,
 
  I seen this behavior which is caused by ALSA configuration not
 being
   used
 by
  the flash player, make sure:
 
  1) In /etc/firefox/firefoxrc
  FIREFOX_DSP=aoss
 
  2) /dev/dsp is there
 
  if not
  cd /dev
  sudo ./MAKEDEV audio
 
 
  These two solved it for me.
 
 
 
 
  On Monday 18 February 2008 15:31:13 Tom Rosenfeld wrote:
   I am having trouble with sound not working in flash. E.g.
 Youtube
   videos
   play video fine but there is no sound. Web searches show others
 are
 having
   the same trouble, usually with older versions of the plugin, but
 I
   have
 not
   seen any real solutions. Reading the web leads me to conclude
 that
   maybe
 I
   need to change some ALSA setting, but I have no idea where to
 start.
  
   Sound seems to work fine in other applications (e.g. vlc,
 mplayer)).
 Here
   is my config:
  
   CentOS 4 64 bit
   Firefox 2, 32 bit
   Flash plugin 9,0,115,0
  
   Any suggestions?
   Thanks,
   -tom
   054-244-8025
 
 
 
  --
  Noam Rathaus
  CTO
  [EMAIL PROTECTED]
  http://www.beyondsecurity.com
 
  Know that you are safe.
 
  Beyond Security Finalist for the Red Herring 100 Global Awards
 2007
 



 --
 -tom
 054-244-8025
   
   
   
--
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.il/
   
  
  
  
   --
   -tom
   054-244-8025
 
 
 
  --
 
 
 
  Constantine Shulyupin
  Freelance Embedded Linux Engineer
  054-4234440
  http://www.linuxdriver.co.il/
 



 --
 -tom
 054-244-8025



-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.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: Sound not working in flash (e.g. youtube)

2008-02-21 Thread Constantine Shulyupin
I have two another suggestions (run from root):

1.
kill `lsof -t /dev/dsp` `lsof -t /dev/snd/* `
alsa reload

   test with:

   echo 1 2 3 4 5 6 7   /dev/dsp

2. tweak gnome-sound-properties

On Thu, Feb 21, 2008 at 6:24 PM, Tom Rosenfeld [EMAIL PROTECTED] wrote:
 I tried Noam's suggestion below but it did not help.

 I did not have an /etc/firefox/firefoxrc file, so I created it as described
 below. I restarted firefox, but flash still di not work. /dev/dsp was fine.
 Again sound works fine in all my other media apps.

 Any more suggestions?

 Thanks,
 -tom




 On Mon, Feb 18, 2008 at 3:53 PM, Noam Rathaus [EMAIL PROTECTED]
 wrote:
  Hi,
 
  I seen this behavior which is caused by ALSA configuration not being used
 by
  the flash player, make sure:
 
  1) In /etc/firefox/firefoxrc
  FIREFOX_DSP=aoss
 
  2) /dev/dsp is there
 
  if not
  cd /dev
  sudo ./MAKEDEV audio
 
 
  These two solved it for me.
 
 
 
 
  On Monday 18 February 2008 15:31:13 Tom Rosenfeld wrote:
   I am having trouble with sound not working in flash. E.g. Youtube videos
   play video fine but there is no sound. Web searches show others are
 having
   the same trouble, usually with older versions of the plugin, but I have
 not
   seen any real solutions. Reading the web leads me to conclude that maybe
 I
   need to change some ALSA setting, but I have no idea where to start.
  
   Sound seems to work fine in other applications (e.g. vlc, mplayer)).
 Here
   is my config:
  
   CentOS 4 64 bit
   Firefox 2, 32 bit
   Flash plugin 9,0,115,0
  
   Any suggestions?
   Thanks,
   -tom
   054-244-8025
 
 
 
  --
  Noam Rathaus
  CTO
  [EMAIL PROTECTED]
  http://www.beyondsecurity.com
 
  Know that you are safe.
 
  Beyond Security Finalist for the Red Herring 100 Global Awards 2007
 



 --
 -tom
 054-244-8025



-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.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: Paper journals

2008-01-28 Thread Constantine Shulyupin
If you looking something nice Linux related for lobby, I could gift
you: a poster of Linux kernel:
http://www.linuxdriver.co.il/kernel_map_poster

On Jan 28, 2008 12:31 PM, Leonid Podolny [EMAIL PROTECTED] wrote:
 Gilad Ben-Yossef wrote:
  Leonid Podolny wrote:
  Hi,
  My employer considers purchasing a subscription to some linux
  journals. I mean, paper (aka hardcopy) ones. The intended public is
  developers, not sales/management, so it must be sufficiently
  technical. Can someone recommend something specific?
 
  Knowing what you guys there are doing with Linux, don't waste your time
  and money with Linux paper magazines.  Get your employer to buy a group
  corporate account to Linux Weekly News instead.
 
  For my money, it's the best technical up to date technical Linux
  resource on the planet and it's dirt cheap:
 
  http://lwn.net/op/CorporateSubscriptions.lwn
 
  (No, I'm not affiliated with them in any way, just a happy subscriber)
 

 Absolutely. Some 4-5 years ago, when I had a pleasure of working with
 Tzafrir, he told me about LWN and I am a happy subscriber ever since.
 And it is dirt cheap for the quality of a content it provides.
 However, as I understand, the purpose of the whole issue is for those
 journals to lie around in the lobby/kitchen with people sometimes pick
 them up and learn a thing or two about linux.

 --


   Leonid Podolny   |  [EMAIL PROTECTED]
|
   Software Engineer|  +972- 3-7668960
   Linux Platform Team  |  +972-54-5696948

 =

 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]





-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.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]



managing two interfaces

2008-01-16 Thread Constantine Shulyupin
Hi,

I have a computer connected with two interfaces to same network. Each
one backups another.
When eth0 is down, eth1 have to work.
When eth1 is down, eth0 have to work.
The most sutable solution I've found is to monitor RUNNING status of
interfaces and change the routing table from my program.
Could you please suggests already implemented solution for the problem?

-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.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: managing two interfaces

2008-01-16 Thread Constantine Shulyupin
Thank you for everybody. Bonding is indeed the best solution for interface
backup.
For my case I looking something more simpler. For my project the best
solution is to set IP of disconnected IF to 0.0.0.0 and restore on
connection.

On Jan 16, 2008 9:31 PM, Marc Volovic [EMAIL PROTECTED] wrote:
 This is indeed teaming. In your case, teaming does not even require
 teaming on the other side of the cable pair since you do not actively
 intend to run the paired cables active/active.

 The specific kernel module is bonding

 Marc


 On Jan 16, 2008, at 16:33 PM, Dotan Shavit wrote:

  You just described teaming of your network interfaces.
 
  #
 
  On Wednesday 16 January 2008, Constantine Shulyupin wrote:
  Hi,
 
  I have a computer connected with two interfaces to same network. Each
  one backups another.
  When eth0 is down, eth1 have to work.
  When eth1 is down, eth0 have to work.
  The most sutable solution I've found is to monitor RUNNING status of
  interfaces and change the routing table from my program.
  Could you please suggests already implemented solution for the
  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]
 





-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.il/


Re: gcc thoughts

2008-01-15 Thread Constantine Shulyupin
1. compilation could be broken and you  still need to browse it
2. gcc don't know about cpp (preprocessor) defines
more tricks:
 gcc -E gives you preprocessed file and you could check defines and  ifdefs
 objdump -S - gives you disassemble

On Jan 15, 2008 12:57 PM, Leonid Podolny [EMAIL PROTECTED] wrote:
 Hi, list,
 This letter is probably better suited to hackers-il, but I need help
 from people that are better acquainted with a development process of gcc.
 This morning, while browsing through pages of frustratingly irrelevant
 cscope output, I got an idea. In every kosher *nix development
 environment, the cross-references (i.e. jump to definition of this
 struct/function) are built by some crippled 3rd party tool (such as
 ctags, cscope or home-brewed set of elisp scrips). On the other hand,
 the only tool that actually knows what is going on during compilation is
 gcc, so it's only logical that it should build cross-references along
 the way.
 It would be simply fantastic. The index would reflect the actual set of
 #ifdef's I currently work with. It would always point you to the header
 file that was actually #include-d. It would be immediately useful to
 almost everyone in FOSS world.
 I have a couple of ideas, how it might be tailored into gcc running
 sequence. However, I'm a humble gcc user  and I have almost no
 experience with its inner workings.
 The idea by itself is so obvious and on-the-surface that it everyone
 using gcc must come up with it sooner or later. There must be a very
 sound technical reason not to do so. What is it?
 --


   Leonid Podolny   |  [EMAIL PROTECTED]
|
   Software Engineer|  +972- 3-7668960
   Linux Platform Team  |  +972-54-5696948

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





-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.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: gcc thoughts

2008-01-15 Thread Constantine Shulyupin
-S too

On Jan 15, 2008 2:45 PM, Tzafrir Cohen [EMAIL PROTECTED] wrote:
 On Tue, Jan 15, 2008 at 01:47:22PM +0200, Constantine Shulyupin wrote:
  1. compilation could be broken and you  still need to browse it
  2. gcc don't know about cpp (preprocessor) defines
  more tricks:
   gcc -E gives you preprocessed file and you could check defines and  ifdefs
   objdump -S - gives you disassemble

 You meant: gcc -S, to save the middleware.

 --
 Tzafrir Cohen | [EMAIL PROTECTED] | VIM is
 http://tzafrir.org.il || a Mutt's
 [EMAIL PROTECTED] ||  best
 ICQ# 16849754 || friend


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





-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.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: gcc thoughts

2008-01-15 Thread Constantine Shulyupin
On Jan 15, 2008 2:28 PM, Leonid Podolny [EMAIL PROTECTED] wrote:
 Constantine Shulyupin wrote:
  1. compilation could be broken and you  still need to browse it
 Yes, but you can always revert to cscope to solve compilation errors.
If you could revert, why do need duplicated functionality in gcc?


  2. gcc don't know about cpp (preprocessor) defines
 First, cpp could pass this info via intermediate files. Second, this
 info info somehow does reach a compiler, because a debuginfo ELF section
 contains information about a file and a line number every instruction
 came from.
Tell me please how info of #define goes to debuginfo?

  more tricks:
   gcc -E gives you preprocessed file and you could check defines and  ifdefs
   objdump -S - gives you disassemble
 
 Yes, I know. Why?
It it possible to generate ctags file from  objdump -S output and
other listings.


 --



   Leonid Podolny   |  [EMAIL PROTECTED]
|
   Software Engineer|  +972- 3-7668960
   Linux Platform Team  |  +972-54-5696948



-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.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: gcc thoughts

2008-01-15 Thread Constantine Shulyupin
BTW, I have script, that makes tags for Linux kernel only for
configured architecture.

On Jan 15, 2008 5:05 PM, Leonid Podolny [EMAIL PROTECTED] wrote:

 were never included (such as wrong architectures and not included code
 during kernel development).

-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.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: gcc thoughts

2008-01-15 Thread Constantine Shulyupin
This script builds name file:line table from object/exe file. It is
easy to make tags from this.
objsrc()
{
nm --defined $1 | cut -f 1 -d ' ' | addr2line -e bin/eb_client
 /tmp/lines
nm --defined $1 | cut -f 3 -d ' '  /tmp/name
paste /tmp/name /tmp/lines
}


On Jan 15, 2008 12:57 PM, Leonid Podolny [EMAIL PROTECTED] wrote:
 Hi, list,
 This letter is probably better suited to hackers-il, but I need help
 from people that are better acquainted with a development process of gcc.
 This morning, while browsing through pages of frustratingly irrelevant
 cscope output, I got an idea. In every kosher *nix development
 environment, the cross-references (i.e. jump to definition of this
 struct/function) are built by some crippled 3rd party tool (such as
 ctags, cscope or home-brewed set of elisp scrips). On the other hand,
 the only tool that actually knows what is going on during compilation is
 gcc, so it's only logical that it should build cross-references along
 the way.
 It would be simply fantastic. The index would reflect the actual set of
 #ifdef's I currently work with. It would always point you to the header
 file that was actually #include-d. It would be immediately useful to
 almost everyone in FOSS world.
 I have a couple of ideas, how it might be tailored into gcc running
 sequence. However, I'm a humble gcc user  and I have almost no
 experience with its inner workings.
 The idea by itself is so obvious and on-the-surface that it everyone
 using gcc must come up with it sooner or later. There must be a very
 sound technical reason not to do so. What is it?
 --


   Leonid Podolny   |  [EMAIL PROTECTED]
|
   Software Engineer|  +972- 3-7668960
   Linux Platform Team  |  +972-54-5696948

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





-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.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: vnc in window mode ?

2008-01-08 Thread Constantine Shulyupin
Do you mean something like configurable X-proxy?

On Jan 8, 2008 5:18 PM, Erez D [EMAIL PROTECTED] wrote:

 i am looking for a way to open a window, and then later move it to another
 computer (somthing like changing the display dynamically)

 i know i can do it for a whole desktop with vnc
 and in text mode via screen

 how can i do it for a single window (without running every window on a
 seperate display with multiple vncservers, one per window)


 thanks,
 erez.




Re: copy boot image

2008-01-06 Thread Constantine Shulyupin
mount -o bind / /mnt/tmp/ # to eliminate /proc /sys etc
tar czf $SOMEWHERE_NOT_ROOT/root.tgz -C /mnt/tmp/

On Jan 6, 2008 4:58 PM, Tom Rosenfeld [EMAIL PROTECTED] wrote:
 What is the recommended method to distributing linux images?

 If I have a workstation with a tuned installation and I want to replicate it
 to other workstation. The old fashion way is to open the box and physically
 copy the disk with ghost. How can I do this without a screwdriver?

 Thanks,
 -tom



=
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: Processing time spent in IRQ handling and what to do about it

2007-12-20 Thread Constantine Shulyupin
And my word to this never ending story:

You may use  get_cycles
(http://lxr.linux.no/linux/include/asm-i386/tsc.h#L19) to measure time
(cycles) in interrupts.
Read more here: http://www.linuxdriver.co.il/ldd3/linuxdrive3-CHP-7-SECT-1.html


-- 
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.co.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]



  1   2   >