On Thu, 11 Dec 2003 11:46:10 -0500,
David Z Maze <[EMAIL PROTECTED]> wrote in message
<[EMAIL PROTECTED]>:
> Marcos José Setim <[EMAIL PROTECTED]> writes:
>
> > Please, which the function of make dep?
>
> It depends on how the makefile is set up (search for a line that says
> "dep:"), but usua
In article <[EMAIL PROTECTED]>, Stephen Liu wrote:
> My Debian box can't connect Internet, Broadband connected.
1. What provider?
2. Broadband means cable rather than DSL, right?
I use comcast at home, connected a debian sarge machine to
a cable modem.
To allow anything from going in / out, yo
On Fri, Dec 12, 2003 at 08:38:18PM +0200, Aryan Ameri wrote:
>
> "Write a program, which promts the uset to enter some numbers. The user
> should terminate the sequence of numbers by entering EOF character. The
> program should put numbers entered by the user in to a 1D array".
The real answer
To install Gnome under Sid, is it recommended to simply do:
apt(titude)-get install gnome-desktop-environment
Or is it better to install things piecemeal:
apt(titude)-get install gnome-core gdm etc.
Thanks for any suggestions
--
me.kirchhoff
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
w
On Friday 12 December 2003 22:04, Wesley J Landaker wrote:
> On Friday 12 December 2003 11:38 am, Aryan Ameri wrote:
> > #include
> >
> > main()
> > {
> > int tmp, cnt = 0;
> > static int arr[cnt];
> > printf( "Enter Number\n");
> > scanf( "%d", &tmp);
> > while ( (tmp = getchar() ) != EOF ) {
>
* Jamin W. Collins ([EMAIL PROTECTED]) wrote:
> On Fri, Dec 12, 2003 at 03:02:24AM -0800, Doctorcam wrote:
> > I have managed to get jabber installed, and running it from the command
> > line seems to work fine, following the instructions in the 1.4.x
> > administration guide.
>
> Which user did y
Logged and back in and went to save my test file. The test
failed. That is, I'm still being prompted for the coding system, and
utf-16-le is offered as the default.
The command $ locales tells me that locales is installed (status is
ii).
However, the $ locale command still only returns LANG=POST
I am trying to apply kernel patches with make-kpkg, but am running into
difficulties, particularly on repeated runs.
First, I am not able to find the .rej files when patches fail to apply.
I thought this might have been from a subsequent make-kpkg clean, but
even without that, they're not there.
On Friday 12 December 2003 22:38, Alex Malinovich wrote:
> On Fri, 2003-12-12 at 14:04, Wesley J Landaker wrote:
> > On Friday 12 December 2003 11:38 am, Aryan Ameri wrote:
> > > Hi There:
> > Hmmm... sounds a lot like a homework problem... =)
>
> Yes, it does... :)
See, this is what I was afrai
On Wed, 10 Dec 2003 22:16:25 -0800,
"Scarletdown" <[EMAIL PROTECTED]> wrote in message
<[EMAIL PROTECTED]>:
> I am once again giving a whirl at compiling a 2.4.22 kernel; this
> time on my test box which I am telnetted into so I don't have to
> keep switching back and forth via the KV switch.
Do you know how I can get a file called
apt_0.5.4_i386.deb that is not corrupt?
The install CD is corrupt
Clark DavidsonCLARK
STUDIOS712-737-2020[EMAIL PROTECTED]http://www.frontiernet.net/~clickin/INDEX.htm
On Fri, 2003-12-12 at 16:00, Aryan Ameri wrote:
[...]
> To the person who suggested the linked-list thing to me. Thanks very
> much. I don't know what they are yet, but it seems something really
> interesting. I'll go back to my cave now, to study them.
Hi, another thing you might want to check
> "Alex" == Alex Malinovich <[EMAIL PROTECTED]> writes:
[...]
Alex> And I wouldn't even bother putting the linked list into an array
Alex> in the first place. If you write a good linked list implementation
Alex> (which, as I said, would be a good exercise) it will already
Alex> support all of
> "Wesley" == Wesley J Landaker <[EMAIL PROTECTED]> writes:
[...]
Wesley> It would be better to allocate memory in chunks, ...
Yes. If you reallocate for every number you read, then it takes O(n^2)
time to read n numbers (assuming realloc has to relocate the data every
time). If you make y
Using Sarge mostly, with a few Sid packages as well.
I've been using jpilot for some time now to sync and backup my Palm
m500. My last sync was Nov.24th. Today, I go to sync and jpilot errors
out. Attempts at "pilot-xfer -l" give an error that/dev/pilot (link
to/dev/ttyUSB1) is not connected. Hrm.
> "John" == John Smith <[EMAIL PROTECTED]> writes:
John> #include
John> int main
John> (
John>int nNumberofArguments,
Your variable names are too long, which decreases readability. Having
such a long name does not convey any more information than a shorter
name such as "numArgs" (or
On Fri, Dec 12, 2003 at 10:21:36PM +0100, John Smith wrote:
> #include
>
> int main
> (
>int nNumberofArguments,
>char* apszArgument []
> )
Hungarian notation! Ugh!
--
Colin Watson [EMAIL PROTECTED]
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
wi
On Fri, Dec 05, 2003 at 11:41:27AM -0800, Karsten M. Self wrote:
> > 5) It splits a programs docs into multiple pages.
> >
> > Again you can convert it to html all on one page.
>
> You brilliantly miss the somewhat minor point that the info document
> *isn't* a single page, readily searchable, an
* Todd Pytel <[EMAIL PROTECTED]> [031212 16:35]:
>
> Hardware-wise, nothing at all has changed in the last 3 weeks. No new
> devices, same kernel, same modules.
Have you rebooted in that time?
--
Lance Simmons
signature.asc
Description: Digital signature
Just wondering - is it possible to write a script for mailing a few
initial subscribe or unsubscribe messages for one's favorite lists to
the server managing the listmembers or does this process depend on the
web page/cgi or whatever?
Not that it is all too much work via the web page, but typin
On Friday 12 December 2003 1:41 pm, Aryan Ameri wrote:
> On Friday 12 December 2003 22:04, Wesley J Landaker wrote:
> > Something like this would work if you fill in some of the blanks:
> >
> > int main() {
> > int *array = malloc(sizeof(int));
> > int size = 0;
> > printf("Enter Number\n");
On Fri, Dec 12, 2003 at 01:59:27PM -0800, Doctorcam wrote:
> * Jamin W. Collins ([EMAIL PROTECTED]) wrote:
> > On Fri, Dec 12, 2003 at 03:02:24AM -0800, Doctorcam wrote:
> > > I have managed to get jabber installed, and running it from the command
> > > line seems to work fine, following the instru
On Fri, 12 Dec 2003 16:57:00 -0600
Lance Simmons <[EMAIL PROTECTED]> wrote:
> * Todd Pytel <[EMAIL PROTECTED]> [031212 16:35]:
> >
> > Hardware-wise, nothing at all has changed in the last 3 weeks. No
> > new devices, same kernel, same modules.
>
> Have you rebooted in that time?
Yes, I reboot
On Thu, 11 Dec 2003 16:46:18 -0500,
Mark Roach <[EMAIL PROTECTED]> wrote in message
<[EMAIL PROTECTED]>:
> On Thu, 2003-12-11 at 16:41, Nunya wrote:
>
> > [1] I know you can read a sender tag, so there's no hiding here.
> > I'd ask that you respect my wishes in the "From" line, "just
> > becau
On Fri, Dec 12, 2003 at 05:54:56PM -0500, Bijan Soleymani wrote:
> Cool well if the only problem is that you people like man format better
^^
Oops! I didn't mean to write you people. First I meant to write you. Then
I decided to write people. But I f
On Fri, 12 Dec 2003 17:03:39 -0600
Todd Pytel <[EMAIL PROTECTED]> wrote:
> > Have you rebooted in that time?
>
> Yes, I rebooted today after I noticed the problem, wondering if the
> cradle had maybe temporarily flaked out. No difference.
Sorry - I realize you're really asking about rebooting be
On Thu, 11 Dec 2003 17:18:05 -0700,
"Monique Y. Herman" <[EMAIL PROTECTED]> wrote in message
<[EMAIL PROTECTED]>:
> On Fri, 12 Dec 2003 at 00:07 GMT, tripolar penned:
> > I am familiar with compiling kernel #make menuconfig #make dep &&
> > make clean && make bzImage && make modules && make modu
> "Aryan" == Aryan Ameri <[EMAIL PROTECTED]> writes:
[...]
Aryan> About initializing the array as static, well I thought that way,
Aryan> when I reinitialize it, I would be able to save it's contents (if
Aryan> you know what I mean). I was afraid that if it was a automatic
Aryan> array, when
* Jamin W. Collins ([EMAIL PROTECTED]) wrote:
>
> Are you manually sending the XML? Have you tried using a Jabber client
> to register with the server? Did you set the host name of the server?
>
Yes, no, and yes. I was using telnet to test jabber itself. Rather
tedious, but a bit of an intro
On Fri, 12 Dec 2003 20:39:36 +0100,
"Joseph MICHEL" <[EMAIL PROTECTED]> wrote in message
<[EMAIL PROTECTED]>:
> Hello,
>
> I would like to install debian.
..onto what?
> But when I read the installation manual
> http://www.debian.org/releases/stable/installmanual,
> I feel lost because
On Fri, 12 Dec 2003 14:51:44 -0600,
"CLARK DAVIDSON" <[EMAIL PROTECTED]> wrote in message
<[EMAIL PROTECTED]>:
> Do you know how I can get a file called apt_0.5.4_i386.deb that is
> not corrupt?
>
>
> The install CD is corrupt
>
>
> Clark Davidson
> CLARK STUDIOS
> 712-737-2020
> [EMAIL PR
* CLARK DAVIDSON ([EMAIL PROTECTED]) [031212 14:29]:
> Do you know how I can get a file called apt_0.5.4_i386.deb that is not corrupt?
/pool/main/a/apt/apt_0.5.4_i386.deb
from your local debian mirror. For example:
http://http.us.debian.org/debian/pool/main/a/apt/apt_0.5.4_i386.deb
good times
After reading the fine source I can now answer some, but not all, of my
questions. I understand more about why it's failing, but don't know how
to make it work right or diagnose the failures (well, I probably could
diagnose them by untarring the patch file and comparing it to the
target, though th
On Fri, 12 Dec 2003 at 23:24 GMT, Arnt Karlsen penned:
> On Thu, 11 Dec 2003 17:18:05 -0700, "Monique Y. Herman"
> <[EMAIL PROTECTED]> wrote in message
><[EMAIL PROTECTED]>:
>
>> On Fri, 12 Dec 2003 at 00:07 GMT, tripolar penned:
>> > I am familiar with compiling kernel #make menuconfig #make dep
On Fri, 12 Dec 2003 20:38:18 +0200, Aryan Ameri wrote:
> Hi There:
>
> I am a first year CS student, learning C. A while ago I was asked this
> question from a fellow friend of mine:
>
> "Write a program, which promts the uset to enter some numbers. The user
> should terminate the sequence of
On Fri, Dec 12, 2003 at 08:38:18PM +0200, Aryan Ameri wrote:
> Hi There:
>
> I am a first year CS student, learning C. A while ago I was asked this
> question from a fellow friend of mine:
>
> "Write a program, which promts the uset to enter some numbers. The user
> should terminate the sequenc
Hello
Hope some would be kind to help me with this. As you will notice I'm new to this.
I have a Debian unit with fetchmail, exim4 and procmail installed. Everything is
setup and all seems to work fine.
I can receive mail if I were to use the following:
fetchmail -k -v
I use -k just to be safe
* Todd Pytel <[EMAIL PROTECTED]> [031212 17:23]:
> What's the implication of doing so, however? That the device numbering
> might change or something? Since the Palm is my only USB serial
> device, that seems unlikely, and I tried the other ports anyway.
I'm not sure, but maybe the modules didn't
On Fri, 12 Dec 2003 at 23:40 GMT, Paul Morgan penned:
[snip]
>
> In the real world:
>
> Do the simplest thing that is consistent with the specification.
> Someone, whose skill level you can't predict, is going to have to
> maintain it after you.
Corollary: Regardless of the skill level of the pe
On Fri 12 Dec 2003 19:14:25 +(+0200), Anton Zinoviev wrote:
> computer I use? Is the following scenario possible somehow: First, I
> connect to Internet in order to get automaticaly the first messages
> from each thread. Then read the received messages offline. Next by
> some "subscription"
On Fri, 12 Dec 2003 19:28:32 -0600
Lance Simmons <[EMAIL PROTECTED]> wrote:
> I'm not sure, but maybe the modules didn't load correctly or in the
> right order. You said in your earlier post that you had the same
> modules loaded. Are you sure? (Sorry for being obnoxious, it's just
> that I've
- Original Message -
From: "Raquel Rice" <[EMAIL PROTECTED]>
>
> I have ClamAV running, just checking files. The documentation which
> comes with it says that it shouldn't be run to check email. Is this
> real?
>
> So, I went and got Amavis-ng ... but it wouldn't set up properly to
> sc
On Fri, Dec 12, 2003 at 05:54:56PM -0500, Bijan Soleymani wrote:
> On Fri, Dec 05, 2003 at 11:41:27AM -0800, Karsten M. Self wrote:
> > You brilliantly miss the somewhat minor point that the info document
> > *isn't* a single page, readily searchable, and accessible via a single
> > command-line st
Hey all,
I think this was answered on this list a few weeks ago, but as usual,
my attention was elsewhere. Anyway - is there a way to limit the number of
child processes SpamAssassin can spawn?
I am running fetchmail, exim4-heavy-daemon and ClamAV. I had
SpamAssasin running, but my PC
* Haines Brown ([EMAIL PROTECTED]) [031212 14:02]:
> Logged and back in and went to save my test file. The test
> failed. That is, I'm still being prompted for the coding system, and
> utf-16-le is offered as the default.
>
> The command $ locales tells me that locales is installed (status is
> ii
* BruceG ([EMAIL PROTECTED]) [031212 18:01]:
> Hey all,
>
> I think this was answered on this list a few weeks ago, but as usual,
> my attention was elsewhere. Anyway - is there a way to limit the number of
> child processes SpamAssassin can spawn?
I take it you mean spamd? It has an optio
* Initech ([EMAIL PROTECTED]) [031212 13:42]:
> On Fri, Dec 12, 2003 at 01:20:42PM -0600, Rick Weinbender wrote:
> > I've heard that the inetd process is not very secure.
That's not necessarily true. What is "not very secure" is running any
service you don't need. If you don't have anything nece
On Friday 12 December 2003 09:57 am, Alvin Oga wrote:
> but i wanna try to make my own AP too .. for the cost of a PC
> instead of buying a ready made linksys/netgear for $150 - $250 ..
> - silly huh ..
> - new challenges are fun sometimes
Agreed that new challenges are fun, but you h
I've been trying to set up POP3 email access (in text mode instead of from the
desktop), and
am really stumped now. I just did a little experiment and installed fetchmail, then
from the
command prompt gave the fetchmail command as follows:
fetchmail -p AUTO -u gsutton9503 mail.charter.net
I
On Sat, 13 Dec 2003 at 01:11 GMT, Reaz Baksh penned:
>
> I now have a few questions:
> 1) when I issue the fetchmail command as above, is fetchmail passing
> the mail to exim4 to deliver it to the mail box, or is it delivering
> it on its own?
Fetchmail does not deliver mail on its own; it passes
I've uploaded chrony_1.20-2. It may have problems in the rtc stuff,
especially on 440BX/GX boards. Please test it. Running the chronyc
rtcdata command will suffice. To do so you will need 'Enhanced RTC'
support in your kernel and will need to uncomment the rtcfile line in
/etc/chrony/chrony.con
Hi list,
somehow I just can't get sylpheed-claws to send my outgoing mail. I use
IMAP for all my mailboxes and when I click the "send" button it just
says "Could not queue message". On the console it reads
"sylpheed-warning: can't find queue folder".
It's version 0.9.6 (Debian unstable)
Any idea
Reaz Baksh writes:
> 2) I have 3 domains on this Debian box and all the mail is forwarded to
> my ISP email address which fetchmail logs into. I did the forwarding
> through my DNS. How do I set this system up to drop the mail that
> fetchmail retrieves into mailboxes based on Domain and User?
I
On Saturday December 13 at 04:01am
Serge Gebhardt <[EMAIL PROTECTED]> wrote:
> Hi list,
>
> somehow I just can't get sylpheed-claws to send my outgoing mail. I
> use IMAP for all my mailboxes and when I click the "send" button it
> just says "Could not queue message". On the console it reads
> "s
Sort of late to send it out again, but it was suggested in case users in
the area want to do keysigning or help with bugsquashing.
Thanks!
- Forwarded message from Scott Dier <[EMAIL PROTECTED]> -
From: Scott Dier <[EMAIL PROTECTED]>
Subject: Minneapolis, MN USA BSP + Keysigning
Date: We
John Hasler posts:
>> may have problems in the rtc stuff, especially on 440BX/GX boards
Would do that, maybe backport chrony for woody and test on these
chipsets.
Great package John, tnx. Amongst the best alongwith pppconfig!
--
ragOO
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
Incoming from Scarletdown:
> I've been trying to set up POP3 email access (in text mode instead of from the
> desktop), and
> am really stumped now. I just did a little experiment and installed fetchmail, then
> from the
> command prompt gave the fetchmail command as follows:
>
> fetchmail -p
Hi David,
Thanks for your advice.
While working as USER, I usually use following command on Konsole window
to login as ROOT to do administration work, starting applications
ssh -X [EMAIL PROTECTED]
Because my Debian box is newly installed, not properly setup, X-window
forwarding not configured.
On Fri, 12 Dec 2003 22:20:58 -0500
Johann Koenig <[EMAIL PROTECTED]> wrote:
> On Saturday December 13 at 04:01am
> Serge Gebhardt <[EMAIL PROTECTED]> wrote:
>
> > somehow I just can't get sylpheed-claws to send my outgoing mail. I
> > use IMAP for all my mailboxes and when I click the "send" butt
On Thu, Dec 11, 2003 at 08:56:48PM -0800, Ross Boylan wrote:
> On Sat, Dec 06, 2003 at 04:15:45PM -0800, Karsten M. Self wrote:
> ...
> >
> > Earthlink have implemented virus and spam filtering within the past
> > month or so, early November, if time serves.
>
Yea!
> headers. They may have resi
Stephen Liu wrote:
Hi David,
Thanks for your advice.
While working as USER, I usually use following command on Konsole window
to login as ROOT to do administration work, starting applications
ssh -X [EMAIL PROTECTED]
Because my Debian box is newly installed, not properly setup, X-window
forwardi
On 12 Dec 2003 at 21:05, s. keeling wrote:
> Incoming from Scarletdown:
> > I've been trying to set up POP3 email access (in text mode instead of from the
> > desktop), and
> > am really stumped now. I just did a little experiment and installed fetchmail,
> > then from the
> > command prompt
Whenever I open an application it is too big for my desktop (Gnome).
There are a couple of problems with this. If I resize it many of the
controls are obscured. Then there are the non resizable apps.
I think that this has something to do with the fact that the first
time I managed to get X to st
Have no sound. What tool do I use to get it?
-
Please leave this. It is a filter term.
ferulebezel
-
Mark Healey
[EMAIL PROTECTED]
Don't bothor CCing or emailing this address. Since spammers seem to be harvesting thi
On Tue, Dec 09, 2003 at 07:13:35PM -0800, Paul Johnson wrote
> dpkg --purge wvdial && apt-get install ppp pppconfig
>
> Use pppconfig as root to twiddle your PPP settings. Enable demand
> mode and forget about it. Might have to retry your connection after a
> minute if the modem's on the hook w
> -Original Message-
> From: John Hasler [mailto:[EMAIL PROTECTED]
>
> Reaz Baksh writes:
> > 2) I have 3 domains on this Debian box and all the mail is forwarded
to
> > my ISP email address which fetchmail logs into. I did the
forwarding
> > through my DNS. How do I set this system up
On Fri, Dec 12, 2003 at 09:46:03AM -0600, Kent West wrote:
> OFF-TOPIC
>
> Perhaps I have no business posting this here . . . .
>
> I've done business with TigerDirect in the past, but recently
> they've added a pro-MS banner to their home page. I wrote this note
> to them, and would encourage
On Fri, 12 Dec 2003 18:51:04 -0800, Scarletdown wrote:
> I've been trying to set up POP3 email access (in text mode instead of
> from the desktop), and am really stumped now. I just did a little
> experiment and installed fetchmail, then from the command prompt gave
> the fetchmail command as
On Fri, 2003-12-12 at 15:00, Aryan Ameri wrote:
> On Friday 12 December 2003 22:38, Alex Malinovich wrote:
> > On Fri, 2003-12-12 at 14:04, Wesley J Landaker wrote:
> > > On Friday 12 December 2003 11:38 am, Aryan Ameri wrote:
> > > > Hi There:
>
> > > Hmmm... sounds a lot like a homework problem.
Joseph MICHEL wrote:
Hello,
I would like to install debian. But when I read the installation
manual http://www.debian.org/releases/stable/installmanual, I feel
lost because it addresses expert people.
Please, is there an automated installation program like that of
Red Hat ?
Becaus
On Fri, Dec 12, 2003 at 06:44:52PM -0800, Vineet Kumar wrote:
> * Initech ([EMAIL PROTECTED]) [031212 13:42]:
> > On Fri, Dec 12, 2003 at 01:20:42PM -0600, Rick Weinbender wrote:
> > > I've heard that the inetd process is not very secure.
>
> >
> > update-rc.d -f inetd remove
> >
> > (note: thi
On Fri, 12 Dec 2003, Nate Duehr wrote:
> On Friday 12 December 2003 09:57 am, Alvin Oga wrote:
>
> > but i wanna try to make my own AP too .. for the cost of a PC
> > instead of buying a ready made linksys/netgear for $150 - $250 ..
> > - silly huh ..
> > - new challenges are fun sometim
Walter Dnes wrote:
Thanks. It works. Now for another modem question. According to
/proc/pci I have an internal device on another PC...
Bus 0, device 16, function 0:
Serial controller: US Robotics/3Com 56K FaxModem Model 5610 (rev 1).
IRQ 9.
I/O at 0x1430 [0x1437].
Not only did it wo
101 - 173 of 173 matches
Mail list logo