[vox-tech] Deleting a PGP keyring

2003-07-30 Thread Nicole the Wonder Nerd
To answer my own question, there's no special procedure.  If you're sure 
you want to blow the whole keyring away, go to ~$HOME/.pgp and rm 
everything.

--nicole twn

***
"Say you decide to call it quits after the first exam.   Down here  are all your friends, laughing and mocking you as you fall.  
That's the important part.  All mocking you as you fall."--former math 
professor, lecturing on air resistance
Visit www.nicolopolis.com ... digital drivel for a weary world.
___
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech


[vox-tech] deleting a PGP keyring

2003-07-30 Thread Nicole the Wonder Nerd
Hi gang

Anyone know how to completely delete a PGP keyring?

Thanks

--nicole twn

***
"Sometimes life gives us lessons wrapped up in ridiculous 
packaging..."--Dar Williams
Visit www.nicolopolis.com ... digital drivel for a weary world.
___
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech


Re: [vox-tech] Linux graphing software?

2003-05-30 Thread Nicole the Wonder Nerd
Up spake Jonathan Stickel on Thu, May 29, 2003 at 04:02:29PM -0700:
> Anyway, my contribution to this thread is to recommend xfig for 
> "post-processing" of plots as well as drawing original diagrams.  I have 

I would also like to plug 'dia'.  It's a great tool for drawing those 
simple circles-boxes-and-arrows diagrams that we computer scientists 
thrive on.

--nicole twn

***
"Never chase a man off a cliff."--from "Due South"
Visit www.nicolopolis.com ... digital drivel for a weary world.
___
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech


Re: [vox-tech] glibc and socket()

2003-02-12 Thread Nicole the Wonder Nerd
Up spake Jeff Newmiller on Wed, Feb 12, 2003 at 01:38:45AM -0800:
> Have you used 
>   display/i $pc
>   stepi
>   stepi
>   (etc...)
> in gdb to see where in the course of the many instructions involved in
> performing the function call that the problem occurs?

You're absolutely right as usual, Jeff; stepping through assembly is proving 
massively helpful.

(Why didn't I think of that?)

You're a peach!

--nicole twn

***
"Always expect to be disappointed, and you won't."--from the Compendium of
Rarely Used Cliches
Visit www.nicolopolis.com ... digital nonsense for a weary world.
___
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech



Re: [vox-tech] glibc and socket()

2003-02-11 Thread Nicole the Wonder Nerd
Up spake Jeff Newmiller on Mon, Feb 10, 2003 at 09:11:24PM -0800:
> > A call to sockaddr_check() goes through OK, but a subsequent call to socket() 
> > triggers a kernel panic.  Control never even gets to the first line of socket().
> You know this without recompiling glibc for debugging?  Or are you saying
> it doesn't get to sys_socket()?  The latter sounds an awful lot like
> header problems.

My experience is this: the kernel panics (complete with "aiee, killed interrupt 
handler" 
message) before gdb has a chance to print out the first line of the glibc function 
socket().  
I interpret this to mean that the kernel panics before control is transferred.  Is 
this view correct?


Based on your advice and the Linus post you linked to, I guess I have a new question 
for you, Jeff: What, exactly, are the consequences of compiling glibc against the 
wrong kernel headers?  Could it be causing a kernel panic?  
And how can I tell which kernel headers glibc was compiled against?

Thanks a bunch!

--nicole twn

***
Visit www.nicolopolis.com ... digital nonsense for a weary world.
___
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech



[vox-tech] glibc and socket()

2003-02-10 Thread Nicole the Wonder Nerd
Hi guys

I'm trying to track down a kernel bug.  I've compiled my programs and the kernel 
with -g, and I'm stepping through the executable with gdb.
A call to sockaddr_check() goes through OK, but a subsequent call to socket() 
triggers a kernel panic.  Control never even gets to the first line of socket().

Breakpoint 1, initialize_listen_socket (saP=0xbfffea78) at libhttpd.c:384
384 if ( ! sockaddr_check( saP ) )
(gdb) n
390 listen_fd = socket( saP->sa.sa_family, SOCK_STREAM, 0 );
(gdb) s
At this point, the system goes supine.  

According to http://www.skyfree.org/linux/kernel_network/socket.html , 
socket() is actually a glibc function; it sets things [1] up and then calls the 
system call sys_socketcall().  But I don't know where the kernel panic is 
triggered, and I also don't know how to recompile glibc or even if that would 
be a useful course of action.

Anyone have any ideas?  I've even tried compiling the target binary with -static; 
still no information on time/place of death.

Thanks

--nicole twn


[1] I am not 100% sure WHAT things, though.

***
"Can anything stop The Blob?!?"--old programming textbook
Visit www.nicolopolis.com ... digital nonsense for a weary world.
___
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech



Re: kmail problem (was [vox-tech] linux or bust)

2003-02-06 Thread Nicole the Wonder Nerd
Up spake Jim on Thu, Feb 06, 2003 at 11:07:07AM -0800:
> P.s.:  I tried to a linux editor (kword?) but I was unable to open it under
> windows.  Is there some other program that I could have used or could I have
> simply have saved it as a .txt file?

Kword saves in a Speshul KWord File Furhmat(tm), interpretable by Kword only.
To save files so that they can be opened by MS Word, try:
1) Saving in MS Word format (Save as... select 'MS Word' from the menu)
2) Saving in RTF (rich text format), a MS format almost indistiguishable from 
Word native format (.doc)
3) Saving as a PDF (if possible), 
4) Saving as an HTML file (anywhere from some to most of your special 
formatting will be lost)
4) or saving, as you guessed, as a plain text file (your special formatting will 
be lost).

HTH

--nicole twn

***
"Always expect to be disappointed, and you won't."--from the Compendium of
Rarely Used Cliches
Visit www.nicolopolis.com ... digital nonsense for a weary world.
___
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech



Re: [vox-tech] networking

2003-01-20 Thread Nicole the Wonder Nerd
Up spake Jim on Mon, Jan 20, 2003 at 11:19:40AM -0800:
> Thanx Mr. Salzman for helping me with my posting woes.  

*having difficulty thinking of Peter as "Mr. Salzman"*

> I am very new to computers let alone the linux operating 
>system.  I am very interested in buying some new hardware, 
>suse linux professional 8.1 software, and some other 
>things to make a local area network in my house for my 
>family and me.

I feel like saying, as a preface to all of this, that you 
have some learning ahead of you.  Don't panic--there's 
tons of online help out there, and we're certainly here to 
help--the absolute LAST thing I want to do is put you off 
this project, but I want to be clear about the scope of 
your undertaking.  You're making a transition from "new to 
computers" to, frankly, expert-level competence.  You'll 
do it, we want you to do it, but it will not be a weekend 
or even a two-weekend project.

For hardware, you'll need, in addition to everyone's desktop 
systems,  1) a computer to be your firewall, and 2) a separate 
computer to be your router.  These can be old machines.  In 
fact, it's a great use for old machines.

> I am going to get cable broadband very soon and want to 
>have linux as my server.  My family uses another OS besides 
>linux.  Can I still run these non linux systems off of my 
>future linux server via LAN?

Yes.  The language that computers speak to each other (TCP/IP) 
is the same for all systems.

>  Does linux have easily 
>configurable firewalls?  Can I easily adjust settings so 
>my teenage daughter can't log on the internet at 2:30 in 
>the morning?  

(Let me commend you on your easy acceptance of good security 
procedures.  Your implicit assumption that a firewall is 
essential is absolutely correct.)

Depends on what you mean by "easily configurable".  Linux 
makes very *powerful* firewalls, by which I mean that you 
can do pretty much anything you want.  Alas, as is 
common in life, the tradeoff is frequently ease of use.

Many people use a special Linux distro called "LEAF", 
which is designed to be a firewall.  Other people will 
roll their own, often using an application called iptables.

The daughter thing sounds fairly straightforward to me (not 
that I've tested this, you understand); selectively block 
access to device eth0 (Linux's internal name for the ethernet 
port) based on user name and time of day.

>Do I have to worry about what modem I can or can not use?

Yes, unfortunately.  You want to avoid the whole class of what 
are called "Winmodems".  These are very inexpensive l'il 
modems that farm out all their computations to the main CPU.  
The manufacturers don't tell us how they work, so it's tough 
to get them to work.

As a rule of thumb, external modems are usually OK while 
internal modems are usually not OK.  

But you won't need modems for what you're describing; modems 
are used to dial other modems (e.g. for dial-up Internet 
access).  After you get high-speed access, you'll have a 
permanent connection.

--nicole twn

***
"Say you decide to call it quits after the first exam.   Down here  are all your friends, laughing and mocking you as you fall.  
That's the important part.  All mocking you as you fall."--former math 
professor, lecturing on air resistance
Visit www.nicolopolis.com ... digital nonsense for a weary world.
___
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech



Re: [vox-tech] rdate servers and apt-get for redhat

2002-12-15 Thread Nicole the Wonder Nerd
Up spake Henry House on Sun, Dec 15, 2002 at 10:09:43AM -0800:
> clock not skipping large blocks of time. Syntax is 'ntpdate '. I
> recomment the server 'time.five-ten-sg.com', which I determined to be the
> closest (using netselect) from a list of likely cantidates on the public NTP
> server list in the NTP FAQ.

UC Davis also has several.  I don't know what the rules are re: affiliation
and whatnot, but if you feel like trying:
ntp.ucdavis.edu
time.cs.ucdavis.edu
ntp.ece.ucdavis.edu

--nicole twn


***
"There's three new roses growing in the lane.  It's been a long, hard winter, 
but now there's rain..."--Dan Bern
Visit www.nicolopolis.com ... digital nonsense for a weary world.
___
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech