Hello everybody,
In my last email, I want to know about the next meeting of ILUG. In this email, I want to suggest some topic(s) that areneed to be discussed in this meeting. They are given below:-
1.. As already will be knowing that LINUX is not concerned itself with the system administrat
maybe you should try xf86config - i also faced the same prob, but unfortunately am not
able to remember how i resolved the issue. edit /etc/xinetd.d/telnet and modify it
(i.e. make "disable = no".
hth
vivek
On 03 Jul 2002 14:15 IST you wrote:
> People,
>I am having a strange problem with
hi
i believe their some prob with the mailing list. the reply-to headers are not being
rewritten - i.e. when i reply to a message it sends the reply back to the user who
posted it, and sometimes it sends it to [EMAIL PROTECTED] - i've to manually make the
"To: " field as [EMAIL PROTECTED] is i
and maybe we should also discuss linux on the desktop. though i've been using linux as
my only desktop for last 1.5 years, i'm not able to convert people easily to linux
(inspite of having all the bells and whistles and all sorts of liquid aqua themes). we
can also discuss about what linux equ
anyone?
maybe you can ask your cable operator to give you an rpm of the authentication system.
i am shortly getting cable conn. myself, and when i asked my provider he told me that
for windows he has an exe and for a linux he has an rpm. i haven't seen it and thus
can't comment yet.
vivek
On
Hi All,
Can some one tell or atleast gimme some pointers as, how do i print to
a printer connected on my lan.
I want to print from a redhat 7.2 M/C and the printer ia attached to a
NT M/C.
Bye and thanx in adv.
shekhar...
To subscribe,
Hi! Vivek
Initiall response from my cabel operator has not been very encouraging..his people will come tmrw morningso lets see then...by the way i have tried all the steps u said..and also noted down the steps of what all i have taken/ tried:(
hope ur cable guy gives u the rpmand h
nitin...the rpm that was talked about is the rpm of the client that is
used to log in to the cable network... if you dont use anything to do that...then
you dont need any rpm.
Nitin Chandra wrote:
Hi! Vivek
Initiall response from my cabel operator has not been very encouraging..his
peo
Hi! Saith
i use a exe programme supplied by the cabel operator when i log on through Win..
so in that contextwont an rpm be required ..as suggested...if there is any other wayhoping there iswould love to try that out
thanks
NitinDo You Yahoo!?
New! SBC Yahoo! Dial - 1st Month Free
just to check if anyone on this mailing list has written this mail/document
---
From
Director, DMC, SOI
17 E C Road
Dehra Dun
Thank you for your letter on Free Software. Kindly provide us more information on
Open Source Software especially in the f
Hi!
No, this is from 'Director, Digital Mapping Center,Survey of India, Dehara Dun', ... Gen B.C.Roy ...i believe is in charge of it...and checking is good...:)
Nitin ChandraDo You Yahoo!?
New! SBC Yahoo! Dial - 1st Month Free & unlimited access
Use printtool command ( i guess this pointer is enough since it has
a user firendly interface)
Lalit
begin 666 Wipro_Disclaimer.txt
M*BHJ*BHJ*BHJ*BHJ*BHJ*BHJ*BHJ*BHJ*BI$:7-C;&%I;65R*BHJ*BHJ*BHJ
M*BHJ*BHJ*BHJ*BHJ*BHJ*BHJ*BHJ*BHJ*BHJ#0H-"DEN9F]R;6%T:6]N(&-O
M;G1A:6YE9"!I;B!T:&ES($4M34%)3"!B96EN
well nitin if you are using an exe program then most probably it is called
24online or cyberroam client...cos that is what is most common with the
cable operators around... the linux version of the same is available
online...try searching for cyberroam client on www.sf.net and you shall
find it.
thanks Prateek i did go to sourcefourge i did find some thing related to 24online...but nothing as cyberroamand i got on known as 'direct2net'..
well hope my cabel guy does not act cheekyits 'or else' then...
...the one i downloaded is known as 'linc' will try and let u know...
t
Hi! All,
Here is what I did for the cable operator in Vasant Vihar. First of all to
complicate the issue I told him I don't have a PC but I have a router
instead (Dlink DL707), so neither an RPM nor an EXE would work for me. It
had to be a login free account. He hummed and hawed and then relented
hello shell script gurus
i have this query,
i want to redirect the output of one c program directly to the shell..
eg:
test.c
void main()
{
cout << "ls -l"
}
I want the output of test.c to be passed to shell ..how do i do that.
one way I found was
./test > tempFile
chmod +x tempFile
./tempFi
> "Lalit" == Lalit Bhasin <[EMAIL PROTECTED]> writes:
Lalit> [snip]
Lalit> begin 666 Wipro_Disclaimer.txt
Lalit> M*BHJ*BHJ*BHJ*BHJ*BHJ*BHJ*BHJ*BHJ*BI$:7-C;&%I;65R*BHJ*BHJ*BHJ
Lalit> M*BHJ*BHJ*BHJ*BHJ*BHJ*BHJ*BHJ*BHJ*BHJ#0H-"DEN9F]R;6%T:6]N(&-O
Lalit> M;G1A:6YE9"!I;B!T:&ES
Hi
U can use the "system" function, is an ANSI C API, can be used for this
purpose.
>From the C /C++ lang progranm u can call this way: system("ls -l");
This will invoke the Shell ( generally /bin/sh) and gives it . Subsequently
shell runs the command and
returns the exit status of the c
Hi,
Write a simple shell script and put the line "ls -l" in it.
Harshal.
- Original Message -
From: "Yash Dayal" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, July 04, 2002 1:11 AM
Subject: [ilugd]: how to pass c output to shell??
> hello shell script gurus
>
> i have t
Hi,
Simple, compile the program and pipe the output to sh or any shell.
Tested on a Red Hat Linux 7.3 bash shell.
The shell outputs are given below
---Shell outputs start--
[venkat@eagle venkat]$ cat test.cc
#include
int main()
{
cout << "
> -Original Message-
> From: Harshal Vaidya [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, July 04, 2002 10:04 AM
> To: multiple recipients of
> Subject: Re: [ilugd]: how to pass c output to shell??
>
>
> Hi,
>
> Write a simple shell script and put the line "ls -l" in it.
Manish>> _ROTFL
> Simple, compile the program and pipe the output to sh or any shell.
>
wont creating a child process by fork() and then exec() (or some variation
like execv or execp or something) help ? i never tried it myself, but i
remember reading about it.
regards,
Gami
===
You are trying to execute output of a c program using
sh.
Cheers,
Amol.
--- "D.Venkatasubramanian, Noida"
<[EMAIL PROTECTED]> wrote:
> Hi,
> Simple, compile the program and pipe the output to
> sh or any shell.
> Tested on a Red Hat Linux 7.3 bash shell.
> The shell outputs are given below
> --
Hi Kishore!
On Wed, Jul 03, 2002 at 11:37:32PM +0530, Kishore Bhargava shouted thus from the trees:
> software he was using for subscriber management was 24Online (which
> incidently is based on Linux, runs on a Linux box and has a Windows
> client, not sure about the linux client though).
Inc
People,
I was thinking if we can configure ilugd mail system
not to include message on the bottom about
subscription etc if its already there in the message
body. This will really reduce the size of mails people
are replying to.
Is that like, possibleprobably a small grep trick
before attach
Not sure if there is a solution to this problem. Couldn't find anything
to this effect in the SmartList FAQ.
Until it is fixed, please spend an extra minute to clean up your mails
before posting them to the mailing list.
Regards,
Nishi
Amol Rao wrote:
>
> People,
> I was thinking if we can con
Hi there,
It's not under my control. The disclaimer message (whatso ever format
it may be) is appended by the company's mail server, and it it wont be
possible for me to make any changes in the company rules just for my own
sake.
Maybe if this is against list guidelines, I woulld probably r
Hi! Sandip
I am facing some what the same problem from my cabel guyhe has for the time being said that Linux client for its dialer cannot be made available..i was looking for 24online but found " linc-1.0"...i have not been able to work with it even after installing
I got a win dialer of "
Hi!
Kishore
Looking forward for the next meeting ...but in the meen time please do explain free login accout u mean to say they all have a free login accounti was able to download some thing from sourecefourge.net > (search)cyberroam OR 24online...
what i got was "linc-1.0" rpm...any idea
Hi Nitin,
For you and other folks looking for the linux version of the
24online client, take a look at this ...
http://mm.ilug-bom.org.in/pipermail/linuxers/Week-of-Mon-20020408/004614.html
- Sandip
On Wed, Jul 03, 2002 at 11:53:19PM -0700, Nitin Chandra shouted thus from the trees:
>
> Hi
30 matches
Mail list logo