Re: How do I implement insmod from a program?

2005-11-06 Thread Shachar Shemesh
Muli Ben-Yehuda wrote: >On Sun, Nov 06, 2005 at 02:35:19AM +0200, David Harel wrote: > > >>Hi, >> >>Without doing system("insmod usb-storage"); how do I implement this >>operation on system calls level? >> >> > >Read the source of the utilities that do implement it, concentrating >on init_m

Re: How do I implement insmod from a program?

2005-11-06 Thread Amos Shapira
On 11/6/05, David Harel <[EMAIL PROTECTED]> wrote: > Hello Amos, > > I guess you know the answer, I will be very happy with a reference to an > elaborate example then please. I gave you one - get the sources of the insmod program. > No I didn't look into the resources you mentioned simply because

Re: Linux distro for new user with Hebrew support and open office

2005-11-06 Thread Moish
Geoffrey S. Mendelson wrote: On Sun, Nov 06, 2005 at 08:05:03AM +0200, Aaron wrote: would I gain something from ubuntu? I'd like to amplify Marc's answer. Ubuntu is sort of the "Windows" of Linux. Instead of trying to make Linux look and act like Windows, as in "Lindows", etc, the founders of

Re: How do I implement insmod from a program?

2005-11-06 Thread Lionel Elie Mamane
On Sun, Nov 06, 2005 at 10:37:47AM +0200, Shachar Shemesh wrote: >> On Sun, Nov 06, 2005 at 02:35:19AM +0200, David Harel wrote: > If that is the case, David, just do "system" (I prefer fork+exec - saves > on the intermediate shell, but maybe that's just renmants of my Windows > days talking) Not

Re: Linux distro for new user with Hebrew support and open office

2005-11-06 Thread Oded Arbel
On Sunday, 6 בNovember 2005 09:32, Geoffrey S. Mendelson wrote: > On Sun, Nov 06, 2005 at 08:05:03AM +0200, Aaron wrote: > > would I gain something from ubuntu? > > I'd like to amplify Marc's answer. Ubuntu is sort of the "Windows" > of Linux. Instead of trying to make Linux look and act like Wind

Re: Apache to do everything except milk delivery (was: Re: My Anti-qmail Page)

2005-11-06 Thread Arik Baratz
On 11/6/05, Omer Zak <[EMAIL PROTECTED]> wrote: > > Then all it will miss is mod_bootloader. > > You forgot the catch-all mod_emacs. Uh uh, tsk tsk. mod_vi comes first, I say! -- Arik

A Conundrum: weird load average

2005-11-06 Thread Oded Arbel
Hi list. I have a problem with a P4 (hyper-threaded) powered server. It constantly has a load average of 2.something, while looking with top I don't see any process actually taking all that CPU resource. Here's a snippet of /proc/cpuinfo: vendor_id : GenuineIntel cpu family : 15 mod

OT: Doctor Who video collection -- BETA TAPES

2005-11-06 Thread Geoffrey S. Mendelson
I know this is off topic for Linux, but most of the people I know on this list are sci-fi fans or know them and Hebrew lists are beyond my reach (and comprehension). When I made aliyah nine years ago I brought with me my video collection which included just about very Doctor Who episode that had b

Re: How do I implement insmod from a program?

2005-11-06 Thread Amos Shapira
On 11/6/05, Lionel Elie Mamane <[EMAIL PROTECTED]> wrote: > On Sun, Nov 06, 2005 at 10:37:47AM +0200, Shachar Shemesh wrote: > >> On Sun, Nov 06, 2005 at 02:35:19AM +0200, David Harel wrote: > > > If that is the case, David, just do "system" (I prefer fork+exec - saves > > on the intermediate shell

Re: Linux distro for new user with Hebrew support and open office

2005-11-06 Thread Marc A. Volovic
Quoth Aaron: > would I gain something from ubuntu? no -- ---MAV Marc A. Volovic [EMAIL PROTECTED] Swiftouch, LTD +972-544-676764 = To unsubscribe,

mount system call.

2005-11-06 Thread David Harel
Hi all, I am trying to mount a vfat file system (digital camera on a USB port). Something like: if (mount(dev, mpoint, fstype, mountflags, mopts) == -1) { ... } Looking at strace mount: strace -s64 mount -t vfat -o uid=harel \ /dev/sda1 /mnt/camera 2>/tmp/mount.tra

Re: mount system call.

2005-11-06 Thread Muli Ben-Yehuda
On Sun, Nov 06, 2005 at 05:16:13PM +0200, David Harel wrote: > The problem is I can't find the above flags in any include file. > Tried: > > find /tmp/util-linux-2.12r -type f | xargs grep -l MS_POSIXACL > > find /usr/include -name '*.h' | xargs grep -l MS_POSIXACL What is actually happening here

Re: mount system call.

2005-11-06 Thread guy keren
On Sun, 6 Nov 2005, David Harel wrote: > I am trying to mount a vfat file system (digital camera on a USB port). > Something like: > if (mount(dev, mpoint, fstype, mountflags, mopts) == -1) > { > ... > } > Looking at strace mount: strace -s64 mount -t vfat -o uid=harel \ >

Re: mount system call.

2005-11-06 Thread David Harel
Can you send me the file mentioned? guy keren wrote: On Sun, 6 Nov 2005, David Harel wrote: I am trying to mount a vfat file system (digital camera on a USB port). Something like: if (mount(dev, mpoint, fstype, mountflags, mopts) == -1) { ... } Looking at strac

Re: mount system call.

2005-11-06 Thread David Harel
Eventually I found that the flags match the constant: MS_MGC_VAL Thank you all for your help. Muli Ben-Yehuda wrote: On Sun, Nov 06, 2005 at 05:16:13PM +0200, David Harel wrote: The problem is I can't find the above flags in any include file. Tried: find /tmp/util-linux-2.12r -type f | xar

Re: How do I implement insmod from a program?

2005-11-06 Thread Micha Feigin
On Sun, 6 Nov 2005 19:57:16 +1100 Amos Shapira <[EMAIL PROTECTED]> wrote: > On 11/6/05, David Harel > <[EMAIL PROTECTED]> wrote: > > Hello Amos, > > > > I guess you know the answer, I will be very happy with a reference to an > > elaborate example then please. > > I gave you one - get the sources

Re: A Conundrum: weird load average

2005-11-06 Thread Yedidyah Bar-David
On Sun, Nov 06, 2005 at 01:05:39PM +0200, Oded Arbel wrote: > > Hi list. > > I have a problem with a P4 (hyper-threaded) powered server. It > constantly has a load average of 2.something, while looking with top I > don't see any process actually taking all that CPU resource. I don't have a ver

Re: OT: Doctor Who video collection -- BETA TAPES

2005-11-06 Thread Oron Peled
On Sunday, 6 בNovember 2005 13:21, Geoffrey S. Mendelson wrote: > When I made aliyah nine years ago I brought with me my video collection > which included just about very Doctor Who episode that had been broadcast > in the U.S. With or without the "Broadcast Flag" ;-) (couldn't resist) -- Oron

Re: mount system call.

2005-11-06 Thread Oron Peled
On Sunday, 6 בNovember 2005 18:29, David Harel wrote: > Can you send me the file mentioned? Are you kidding? Send files? Hop-off to: http://lxr.linux.no/source/include/linux/fs.h#L105 Shorter for everyone... -- Oron Peled Voice/Fax: +972-4-8228492 [EMAIL PROTECTED

(Hebrew) FOSS applications and games on Windows

2005-11-06 Thread Gábor Szabó
In two schools in Modiin there are going to be fund-raising fairs in the coming weeks. The first will be on 25th November. The idea is that parents and/or various vendors sell their goods at some relatively low price and the income goes to the school to cover various expenses. I would like to be

Re: (Hebrew) FOSS applications and games on Windows

2005-11-06 Thread Amos Shapira
On 11/7/05, Gábor Szabó <[EMAIL PROTECTED]> wrote: > - CDs with Open Source applications running on Windows Are you familiar with The Open CD project (http://www.theopencd.org/)? Even if it isn't quite the exact answer to your need, maybe it'll be a good basis for a version of your own... HTH,

Re: (Hebrew) FOSS applications and games on Windows

2005-11-06 Thread Gábor Szabó
On 11/7/05, Amos Shapira <[EMAIL PROTECTED]> wrote: > On 11/7/05, Gábor Szabó <[EMAIL PROTECTED]> wrote: > > - CDs with Open Source applications running on Windows > > Are you familiar with The Open CD project (http://www.theopencd.org/)? I would not say I am familiar with it but I have used its a