Re: Using wget to fill in a form

2012-09-22 Thread craig
For background see the Bath Profile: http://www.ukoln.ac.uk/interop-focus/bath/ There are also bindings for C, C++ and PHP. You'll find them at IndexData's web site. As far as importing into MySQL or Postgresql, that is up to how you decide to map the Bath Profile (most likely the one used)

Re: Using wget to fill in a form

2012-09-22 Thread craig
The url you give is for the form. If you enter an ISBN number it will do the search. What you need to do is capture the http header sent when you click submit query then replace the test ISBN number with whatever number you want to search. Wireshark can do this. Simply look for the query

Re: Using wget to fill in a form

2012-09-22 Thread craig
As others suggest, the query should be something like: wget http://www.loc.gov/cgi-bin/zgate --post-data=ACTION=SEARCHTERM_1=1886411484SESSION_ID=1234567 Yeah, I was messing with the --post-data, but I didn't know I had to use an ACTION key. Will play with that. But I get session expired

Re: Using wget to fill in a form

2012-09-22 Thread craig
stories. It will probably take me a while to get back up to speed with perl since I haven't touched it in a couple of years. Craig Sent - Gtek Web Mail -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Re: Using wget to fill in a form

2012-09-25 Thread craig
the weekend at this point, so know that I am not ignoring the help, please. Craig Sent - Gtek Web Mail

Is it possible to monitor VTs via ssh?

2012-09-27 Thread craig
Good morning,When I ssh into a remote system, I am able to see what is happening on VT2by entering the command 'cat /dev/vcs2'. I tried using tail -f to get acontinuous output of the console, but it fails to ever update. Is it possibleto watch another VT in real time over ssh?Thanks, Craig

RE: Is it possible to monitor VTs via ssh?

2012-09-28 Thread craig
, Craig What I am trying to do is monitor logs on a remote system. I have the log entries going to the log files as well as VT2. If I ssh into the machine and tail -f the system log, it quits updating when the log is rotated. So I figured if I could watch the second console in real time I would

Re: Is it possible to monitor VTs via ssh?

2012-09-28 Thread craig
tail -f to get a continuous output of the console, but it fails to ever update. Is it possible to watch another VT in real time over ssh? Thanks, Craig Try the vtgrab package. Bingo! Thank you so much. I didn't even think of a vnc like console solution. I was focused on ssh. Your reply

Re: Is it possible to monitor VTs via ssh?

2012-09-28 Thread craig
Try tail --follow=mylogfile, this will followed the currently named mylogfile even if the old file is renamed and a new one opened, rather than following the old file which -f does. smack to the forehead I used to know that. Sadly, I even looked at the man page yesterday before posting and

Re: Is it possible to monitor VTs via ssh?

2012-09-28 Thread craig
That would work. However I think you could also have logrotate use a socket for logging (at least -ng). What you might really want to look into is splunk or graylog2 (or the other solutions I can never remember). Also, socat is another solution for playing with device io. I don't believe

Re: Using wget to fill in a form

2012-09-29 Thread craig
They've learned a lot about the structure of classification systems since LC was set up. I've been doing some reading, and there is work under way to modernize the classification system. In the meantime this works for my needs. I do appreciate the suggestion. Sent - Gtek Web Mail -- To

Re: Using wget to fill in a form

2012-09-29 Thread craig
In the end I did pretty much as suggested, using wget and re-using session IDs. I created a bash script that gets a session ID, reads the list of ISBN numbers, and then tries to retrieve their info. If the retrieval returns a session expired then it gets a new one. It also does a decent job of

Re: Using wget to fill in a form

2012-10-02 Thread craig
There are several urls on loc.gov that will retrieve book information from an ISBN. The one below has no problem with session cookies. So wouldn't this quick and dirty one-liner do what you want? #!/bin/sh # loc.sh ISBN elinks -dump -dump-charset utf8 -no-references

Checking local mail with Icedove

2012-11-01 Thread craig
into a maildir format, and how is it configured to accept connections locally only? Any advice? Thanks, Craig Sent - Gtek Web Mail -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org

Re: Checking local mail with Icedove

2012-11-02 Thread craig
I don't think you need to bother with POP or IMAP. It appears Icedove has an account type called movemail that you can point to /var/spool/mail/user. Personally, I use good old /usr/bin/mail for this purpose. John Bingo!, and thanks! I always have an xterm open, tailing the log time,

Re: Checking local mail with Icedove

2012-11-02 Thread craig
On Friday, November 2, 2012 07:57, cr...@gtek.biz said: I don't think you need to bother with POP or IMAP. It appears Icedove has an account type called movemail that you can point to /var/spool/mail/user. Personally, I use good old /usr/bin/mail for this purpose. John Well, it is

Apace Redirect Question

2012-11-02 Thread craig
domain2 being used where domain1 is. /var/www contains the simple error404.html, and /var/www/htdocs/domain1.com and /var/www/htdocs/domain2.com each contain a simple index.html, which is just the usual Apache It Works file with It replaced by the appropriate domain name. Thanks, Craig Sent

Re: Apache (was Apace) Redirect Question

2012-11-03 Thread craig
a request for domain1.com should be handled as if it were a request for www.domain1.com, and sends the client to that URL? Thanks, Craig Sent - Gtek Web Mail -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas

Re: Apache (was Apace) Redirect Question

2012-11-03 Thread craig
Wolf, thank you very much for graciously providing the examples. I will study this to gain an understanding, and I will let you know how it goes. Craig Here are the settings for one of my multisite servers. I am using Apache2.2 on Debian Squeeze with the backports repo enabled - thus

Re: Apache (was Apace) Redirect Question

2012-11-04 Thread craig
Here are the settings for one of my multisite servers. Good afternoon Wolf, I am afraid I am not accomplishing what I want to do with your information either. I've tried to get it to work with my layout, but no matter what I do, entering http://domain1.com in the client's browser either gives

Re: Apache (was Apace) Redirect Question

2012-11-04 Thread craig
On Saturday, November 3, 2012 19:38, mouss mo...@ml.netoyen.net said: Le 03/11/2012 13:31, cr...@gtek.biz a écrit : [snip] I know I've entered URL's into my browser's navigation bar and watched them change to something else, such as entering http://example.com and being redirected to

Re: Apache (was Apace) Redirect Question

2012-11-04 Thread craig
did you link the sites in sites-available to sites-enabled? Wolf Halton http://sourcefreedom.com Apache developer: wolfhal...@apache.org $ ls -l /etc/apache2/sites-enabled/ total 0 lrwxrwxrwx 1 root root 26 Oct 14 16:58 000-default - ../sites-available/default lrwxrwxrwx 1 root root 34 Oct

[SOLVED] Re: Apache Redirect Question

2012-11-06 Thread craig
did you link the sites in sites-available to sites-enabled? Wolf Halton http://sourcefreedom.com in domain1.com vhost config: redirect permanent / http://www.domain1.com/ source: http://httpd.apache.org/docs/2.2/en/mod/mod_alias.html#redirect Good morning Mouss and Wolf,

Re: [SOLVED] Re: Apache Redirect Question

2012-11-06 Thread craig
to pick up can only help. Thanks again, and back to work now. Craig Sent - Gtek Web Mail -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/1352238810.54585

RE: Countdown To Black Friday 2012 Deals Week - Early Amazon Black Friday 2012 Deals

2012-11-07 Thread craig
I love people that are dumb enough to spam mailing lists with their real domain. Just added couponinstantly.com to my block list. Thanks! On Wednesday, November 7, 2012 08:24, Amazon Deals amazonde...@couponinstantly.com said: Hi, I have a good news for you ! Amazon has started warming up

Re: Countdown To Black Friday 2012 Deals Week - Early Amazon Black Friday 2012 Deals

2012-11-08 Thread craig
Oops, that was rather thoughtless. Apologies to all. On Thursday, November 8, 2012 03:20, Brad Rogers b...@fineby.me.uk said: On Wed, 7 Nov 2012 12:45:43 -0600 (CST) cr...@gtek.biz wrote: Hello cr...@gtek.biz, I love people that are dumb enough to spam mailing lists with their real

xen on wheezy

2012-12-27 Thread craig
exceeds 63 maximum; kernel setup will overwrite boot loader Any pointers would be appreciated. Thanks, Craig Sent - Gtek Web Mail -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org Archive: http

Re: xen on wheezy

2012-12-27 Thread craig
On Thursday, December 27, 2012 17:14, Patrick Bartek bartek...@yahoo.com said: Any pointers would be appreciated. I would restart at the beginning:    http://www.xen.org/support/documentation.html    http://wiki.debian.org/Xen Well I've been through those, and several other pages.

Re: xen on wheezy

2012-12-28 Thread craig
On Thursday, December 27, 2012 19:55, Patrick Bartek bartek...@yahoo.com said: I would restart at the beginning:    http://www.xen.org/support/documentation.html    http://wiki.debian.org/Xen Well I've been through those, and several other pages. The only real difference is I'm using

lightdm login screen minor issue

2012-12-30 Thread craig
the system down. That power button has no functionality to it. When I click on it, a blank panel opens and there is nothing to click on. I am at a loss trying to figure out what drives that missing functionality. Can anyone give me a nudge in the right direction? Thanks, Craig Sent - Gtek Web Mail

Re: lightdm login screen minor issue

2013-01-01 Thread craig
On Tuesday, January 1, 2013 05:39, Claudius Hubig debian_1...@chubig.net said: Hello cr...@gtek.biz, what a wonderful name :) cr...@gtek.biz wrote: At the login screen, there are two buttons in the top right-hand corner, one for switching hi-contrast and large fonts on or off, and the

32-bit Kernel on 64-bit CPU?

2013-01-17 Thread craig
that might help me understand how to get a 64-bit kernel? Do I just need to select the correct ARCH (which I'm getting ready to try in the meantime)? Regards, Craig Sent - Gtek Web Mail -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble

Re: 32-bit Kernel on 64-bit CPU?

2013-01-17 Thread craig
On Thursday, January 17, 2013 13:13, berenger.mo...@neutralite.org said: can anyone point me to anything that might help me understand how to get a 64-bit kernel? Regards, Craig SImply download the correct arch, which is named amd64 (it is ok for intel proc too) Didn't know that (ok

Re: 32-bit Kernel on 64-bit CPU?

2013-01-17 Thread craig
, Craig SImply download the correct arch, which is named amd64 (it is ok for intel proc too) Didn't know that (ok for intel)! So you're saying to just install the linux-image-3.2.0-4-amd64 package? That's certainly easier than compiling a Kernel. Thanks! Sent - Gtek Web Mail Hum

Re: 32-bit Kernel on 64-bit CPU?

2013-01-17 Thread craig
On Thursday, January 17, 2013 15:30, Hugo Vanwoerkom hvw59...@care2.com said: I have a fairly modern Desktop PC with two Intel Xeon X5690 Processors. It appears the default install of Wheezy installed a 32-bit kernel, because qemu will not allow me to allocate more than 2047MB of RAM. How can

Re: 32-bit Kernel on 64-bit CPU?

2013-01-18 Thread craig
On Thursday, January 17, 2013 16:08, Hugo Vanwoerkom hvw59...@care2.com said: What's the output of dpkg --print-architecture dpkg --print-foreign-architectures [my-desktop:~]$ dpkg --print-architecture i386 [my-desktop:~]$ dpkg --print-foreign-architectures [my-desktop:~]$ I assume,

Re: 32-bit Kernel on 64-bit CPU?

2013-01-18 Thread craig
On Thursday, January 17, 2013 16:44, Lisi Reisz lisi.re...@gmail.com said: On Thursday 17 January 2013 20:44:07 cr...@gtek.biz wrote: Hum... this might be an option, but the easier is to install from the amd64 iso, since with only the kernel using amd64, you will not have benefits from

Re: 32-bit Kernel on 64-bit CPU?

2013-01-18 Thread craig
On Thursday, January 17, 2013 17:08, Andrei POPESCU andreimpope...@gmail.com said: On Jo, 17 ian 13, 13:09:46, cr...@gtek.biz wrote: Hello all, I have a fairly modern Desktop PC with two Intel Xeon X5690 Processors. It appears the default install of Wheezy installed a 32-bit kernel, because

Re: 32-bit Kernel on 64-bit CPU?

2013-01-18 Thread craig
On Friday, January 18, 2013 11:13, Andrei POPESCU andreimpope...@gmail.com said: On Vi, 18 ian 13, 10:26:10, cr...@gtek.biz wrote: I used the i386 net install image, and selected the (if I remember correctly) i686-3.2.0-4-pae kernel. Are you saying that should have installed the 64-bit

Re: 32-bit Kernel on 64-bit CPU? [SOLVED]

2013-01-18 Thread craig
On Thursday, January 17, 2013 16:08, Hugo Vanwoerkom hvw59...@care2.com said: understand how to get a 64-bit kernel? Do I just need to select the correct AFAIK you have to reinstall with http://cdimage.debian.org/cdimage/wheezy_di_beta4/amd64/iso-cd/debian-wheezy-DI-b4-amd64-netinst.iso

Re: 32-bit Kernel on 64-bit CPU?

2013-01-18 Thread craig
On Friday, January 18, 2013 11:13, Andrei POPESCU andreimpope...@gmail.com said: On Vi, 18 ian 13, 10:26:10, cr...@gtek.biz wrote: I used the i386 net install image, and selected the (if I remember correctly) i686-3.2.0-4-pae kernel. Are you saying that should have installed the 64-bit

Re: [1/2OT] how to delete ??? file

2013-01-19 Thread craig
] do touch test/test$looptest loop=`expr $looptest + 1` done $ ls -l test total 0 -rw-r--r-- 1 craig craig 0 Jan 19 13:50 test0 -rw-r--r-- 1 craig craig 0 Jan 19 13:50 test1 -rw-r--r-- 1 craig craig 0 Jan 19 13:50 test10 -rw-r--r-- 1 craig craig 0 Jan 19 13:50 test2 -rw-r--r-- 1 craig

Re: 32-bit Kernel on 64-bit CPU?

2013-01-19 Thread craig
On Saturday, January 19, 2013 07:44, Pascal Hambourg pas...@plouf.fr.eu.org said: Hello, Andrei POPESCU a écrit : The 686-pae kernel is 32-bit, nothing strange here. However, in your OP you mentioned not being able to allocate more than 2 GB with qemu. Unless this is some limitation of

Re: [1/2OT] how to delete ??? file

2013-01-19 Thread craig
On Saturday, January 19, 2013 14:33, cr...@gtek.biz said: On Saturday, January 19, 2013 10:33, lina lina.lastn...@gmail.com said: Yes, in my home directory. The path is /home/lina/try -? ? ? ? ?? XX.tar But it looks more to me as if this files are somehow corrupted.

iptables and kvm

2013-01-24 Thread craig
to be permanent. Would anyone mind enlightening me as where I can find the source of those rules? grep -RIil iptables /etc/* returns nothing. Thanks, Craig Sent - Gtek Web Mail -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact

Re: iptables and kvm

2013-01-25 Thread craig
And good time of day to you, Sthu. On Thursday, January 24, 2013 23:55, Sthu Deus sthu.d...@gmail.com said: Good time of the day, Craig. If You want to set Your own rules, You can write it to a file where You want to hold it, then You can put a script w/ execution bit set in /etc/network

Re: lightdm login screen minor issue [SOLVED]

2013-01-27 Thread craig
on the login screen. Thanks, and all the best to you as well! Craig Sent - Gtek Web Mail -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/1359339889.786624

Re: iptables and kvm

2013-01-28 Thread craig
in a while, but I'll try to make sure that is where my rules came from. There are also changelog entries that appear to back this up as well. I'll do a bit more digging, but I think I have my answer. Thanks! Craig Sent - Gtek Web Mail -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org

IPchains output

2001-10-17 Thread Craig
udp?) Oct 18 09:01:43 networkconfusion kernel: Packet log: input DENY ppp0 PROTO=17 24.242.71.87:137 144.137.126.120:137 L=78 S=0x00 I=26791 F=0x T=101 (#8) I would appreciate any assistance. Regards, Craig

Re: lite applications

2002-03-12 Thread Craig
On Mon, Mar 11, 2002 at 11:42:44PM -0800, Karsten M. Self wrote: on Sun, Mar 10, 2002, Joe ([EMAIL PROTECTED]) wrote: On Sat, Mar 09, 2002 at 11:52:43PM -0800, Karsten M. Self wrote: on Fri, Mar 08, 2002, Nicholas Imfeld ([EMAIL PROTECTED]) wrote: I have set up an old 486 laptop with

Re: DVD players under Linux (was: Re: 2.4 kernels with potato and Movie players)

2002-03-12 Thread Craig
On Tue, Mar 12, 2002 at 12:40:15PM -0500, christophe barb? wrote: On Tue, Mar 12, 2002 at 09:32:58AM -0800, Jim Gettys wrote: It is a bit strong to kill esd. I would suggest 'man esdctl' Christophe Which gets me: No manual entry for esdctl Which is in the

Re: xfce

2002-03-12 Thread Craig
On Tue, Mar 12, 2002 at 09:25:52PM -0600, Kevin C. Smith wrote: Anyone running XFce and Unstable. Recent upgrade of XFce has removed the Debian menu (xfmenu). Anyone know how to get this back? maybe update-menus try man update-menus I have a file /etc/menu-methods/xfce and here are a

xhost Xauthority Xdialog

2002-03-14 Thread Craig
I am wondering why Xdialog can't connect to the X server when run from the at command. I am trying to write little scripts that pop up a message window using Xdialog, and they work, but if I try to use them in an 'at' command, instead of executing they fail mail me this message: Xdialog: Error

Re: kfm?

2002-03-14 Thread Craig
On Thu, Mar 14, 2002 at 11:10:51AM -0700, Robert L. Harris wrote: This is driving me nuts. I use konqueror as my web browser. When I open a text file it tries to load kfm. I can't find that stupid kfm binary. I've greped through /var/lib/dpkg/available, I've poked around

unsubscribe

2002-06-10 Thread Craig

find and coy

2013-08-31 Thread craig
will be a copy command similar to: find /var/lib/postgresql/9.1/backup -mmin -60 -a -iname '*.sql' -execdir cp '{}' /var/data.backup/`hostname`.'{}' ';' but I need to understand how to strip the leading ./ from the filename returned by find. Anyone have a suggestion? Thanks, Craig Sent - Gtek Web

Calculating optimal disk partitions

2013-05-06 Thread craig
as much of the available space as I can in an optimal manner. Any light is appreciated. Craig Sent - Gtek Web Mail -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org

RE: Calculating optimal disk partitions

2013-05-07 Thread craig
to understand how to avoid the error while using as much of the available space as I can in an optimal manner. Any light is appreciated. Craig Sent - Gtek Web Mail -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas

Re: Calculating optimal disk partitions

2013-05-08 Thread craig
explain the process for calculating optimal start and end points for creating partitions. I will check out the rest of his articles and keep looking as well. Maybe my search skills need some honing, eh? Craig Bob Sent - Gtek Web Mail -- To UNSUBSCRIBE, email to debian-user-requ

Re: Calculating optimal disk partitions

2013-05-08 Thread craig
On Wednesday, May 8, 2013 11:26, Bob Proulx b...@proulx.com said: cr...@gtek.biz wrote: I just find it frustrating that the partitioner would issue a warning that has so little supporting documentation. It might be fruitful to open a question about parted on their upstream mailing list.

Re: Calculating optimal disk partitions

2013-05-10 Thread craig
, and it was helpful. Rather than repeat the conversation, I'll provide the link: http://lists.gnu.org/archive/html/bug-parted/2013-05/msg0.html Thanks for your help, Craig Sent - Gtek Web Mail -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe

nvi question

2013-05-15 Thread craig
is not an option. Thanks, Craig Sent - Gtek Web Mail -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/1368651019.939711...@webmail.gtek.biz

Re: Making a debian CD

1997-12-15 Thread Craig Sanders
, not on debian-admintool. craig -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .

Re: Making a debian CD

1997-12-16 Thread Craig Sanders
can't stand mc or any of those supposedly easy-to-use menu shells, but a simple pick-list of available files would be useful). : eval ($lesspipe) Minor nitpick: that should read eval $(lesspipe), shouldn't it? correct. i mis-typed it. craig -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e

pppd dialing in to cisco 5200?

1997-12-17 Thread Craig Sanders
?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad) ||/ NameVersionDescription +++-===-==- ii ppp 2.2.0f-23 Point-to-Point Protocol (PPP) daemon. craig ps: here's the log

Re: disturbing problem rears its ugly head again

1997-12-18 Thread Craig Sanders
installed fvwm95 which works fine but I don't like it. Help! there are several other window managers available - fmwm, fvwm2, afterstep and some others i haven't even tried yetmaybe one of them will appeal to you. craig -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe

scsi problems, ncr53x8xx and 2+ devices resets bus

1997-12-19 Thread Craig Sanders
I've just added a SONY SDT-5000 DDS-2 tape drive to my system, and am getting a lot of scsi bus resets whenever two or more scsi devices are accessed simultaneously. At first i thought it was just the tape drive, but i tested various combinations of hardware and can reproduce the error by using

Re: scsi problems, ncr53x8xx and 2+ devices resets bus

1997-12-19 Thread Craig Sanders
...load it up with my old archive viper 150MB QIC tape and ancient panasonic scsi cd-rom. craig -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .

Re: IP Aliasing

1997-12-20 Thread Craig Sawyer
Nice page, I don't ever put the dev in my route add -host 111.222.333.444 eth0:1 line. you might want to go into, eth0 being the first ethernet card, and some ppl may want it on eth1, and how to create multiple aliases with eth0:2, eth0:3, etc. other than that sounds great to me!! HTH, -Craig

Re: unremoveable file

1997-12-20 Thread Craig Sanders
relevant fixes to the e2fs code. craig -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .

Re: scsi problems, ncr53x8xx and 2+ devices resets bus

1998-01-05 Thread Craig Sanders
. Non-prefetchable 32 bit memory at 0xe080. thanks for your help. it would never have occurred to me that an old PCI card might be incompatible with a new PCI motherboard. craig -- craig sanders -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to [EMAIL PROTECTED

Re: libc5 to libc6 auto-upgrade script

1998-01-09 Thread Craig Sanders
. either renumber all the exit codes or just use 100. this check should probably be done even before the script removes the -dev and -dbg packages. craig -- craig sanders -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .

Re: Debian 2.0?

1998-01-09 Thread Craig Sanders
target (on any given day, the snapshot of unstable in the ftp archive may or may not install cleanly) not because it is necessarily more likely to crash your machine. BTW, if you do decide to upgrade to unstable, remember to take notes and post your experiences to [EMAIL PROTECTED] Craig -- craig

Re:libc5 to libc6 auto-upgrade script

1998-01-11 Thread Craig Sanders
` # uncomment for debugging #set -x #DPKG=echo dpkg #LDCONFIG=echo LDCONFIG # upgrade a libc5 (bo) machine to libc6 (hamm). # based on Scott Ellis' excellent Debian libc5 to libc6 Mini-HOWTO # document at http://www.gate.net/~storm/FAQ/libc5-libc6-Mini-HOWTO.html # Author: Craig Sanders [EMAIL

Re:libc5 to libc6 auto-upgrade script

1998-01-11 Thread Craig Sanders
to libc6 Mini-HOWTO # document at http://www.gate.net/~storm/FAQ/libc5-libc6-Mini-HOWTO.html # Author: Craig Sanders [EMAIL PROTECTED] # # Copyright Status: This script is hereby placed in the public domain # # Revision History: # v0.0: 1998-01-08 (morning) # - a rough transcript of scott's doc and my

version 0.8 of libc5 to libc6 auto-upgrade script

1998-01-11 Thread Craig Sanders
-HOWTO.html # Author: Craig Sanders [EMAIL PROTECTED] # # Copyright Status: This script is hereby placed in the public domain # # Revision History: # v0.0: 1998-01-08 (morning) # - a rough transcript of scott's doc and my own experiences # v0.1: 1998-01-08 (night) # - a few bugfixes # - i got unlazy

Re: where is killall? (hamm)

1998-01-11 Thread Craig Sanders
by the upstream source. psutils is stuck in incoming. psmisc, actually. still stuck in incoming. $ dpkg -s psmisc Package: psmisc Status: install ok installed Installed-Size: 61 Maintainer: Craig Small [EMAIL PROTECTED] Version: 16-1 Depends: libc6, ncurses3.4 Description: Utilities that use the proc

version 0.10 of autoupgrade script

1998-01-13 Thread Craig Sanders
Ellis' excellent Debian libc5 to libc6 Mini-HOWTO # document at http://www.gate.net/~storm/FAQ/libc5-libc6-Mini-HOWTO.html # Author: Craig Sanders [EMAIL PROTECTED] # # Copyright Status: This script is hereby placed in the public domain # # Revision History: # v0.00: 1998-01-08 (morning) # - a rough

sgrep dependancy checker

1998-01-13 Thread Craig Sanders
not containing ($SG_SEARCH)) | \ grep Package: \|Depends: \|^$ ---cut here--- -- craig sanders -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .

Re: libc5 - libc6 Upgrade Roadmap?

1998-01-14 Thread Craig Sanders
to get safely to a libc6 system 2. run dpkg -i on netbase and netstd 3. run dselect and upgrade everything. craig -- craig sanders -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .

Re: SEUL distribution?

1998-01-14 Thread Craig Sanders
dist. in effect, the debian ftp site would become a 'contrib' section for your dist. debian has always been intended to be a good base from which other distributions can be built... craig -- craig sanders -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to [EMAIL PROTECTED

Re: Upgrade script, bo to hamm

1998-01-14 Thread Craig Sanders
... BTW, which version of the upgrade script did you run? craig -- craig sanders -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .

Re: Upgrade script, bo to hamm

1998-01-15 Thread Craig Sanders
On Wed, 14 Jan 1998, IBMackey wrote: try reinstalling the dpkg-ftp package is the only thing i can think of. are you behind a firewall of any kind? check your configuration of dpkg-ftp too... BTW, which version of the upgrade script did you run? Craig, I tried reinstalling

Re: BIND question

1998-01-15 Thread Craig Sanders
zone database are forwarded. Is there any way around this? Any help is appreciated. simplest way is to make it primary for 168.192.in-addr.arpa, and in that zone file delegate 0.168.192.in-addr.arpa to itself. craig -- craig sanders -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word

version 0.11 of auto upgrade script

1998-01-17 Thread Craig Sanders
this fixes all of the bugs reported by users in the last few days. if i've missed forgotten or forgotten anything, remind me. changes in this version: # v0.11: 1998-01-11 (Craig Sanders) # - a user reported that localebin conflicted with libc6. added to remove # list. # - fixed

Re: Digests/Newsfeed?

1998-01-17 Thread Craig Stevenson
Hi: I happen to be a digests reader. It appears to me that a mail is sent based upon accumulated mass of bytes from the incoming messages. Currently, I am getting about 6 mails a day from debian-digest-users. -- Craig S. Stevenson - email: [EMAIL PROTECTED] - Searching

Re: *-* auto-upgrade from rex to hamm

1998-01-17 Thread Craig Sanders
On Sat, 17 Jan 1998, Hamish Moffatt wrote: On Sat, Jan 17, 1998 at 02:30:37PM +1100, Craig Sanders wrote: i released v0.11 of the script a few hours ago, so you'll probably want to update your rex version to that. buzz, too, anyone? is anyone still running buzz? (it would be good to have

Re: *-* auto-upgrade from rex to hamm

1998-01-18 Thread Craig Sanders
) craig -- craig sanders -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .

Re: *-* auto-upgrade from rex to hamm

1998-01-18 Thread Craig Sanders
constraints. ok, when (if) you do that, take over the script and update it for a buzz upgrade. Wait and see what Robert H does with the rex version, or co-ordinate it with him. craig -- craig sanders -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to [EMAIL PROTECTED

Re: How do I find out what version of ebian is on a machine?

1998-01-18 Thread Craig Sanders
a listing of only the installed packages. BTW, i've been running hamm for months and this is what /etc/debian_version contains on my systems: $ cat /etc/debian_version 1.3 this isn't surprising, though, because debian 2.0 aka hamm hasn't been released yet. craig -- craig

Re: Problems with 80386 and 4 MB of RAM

1998-01-18 Thread Craig Sanders
this be caused by a geometry mismatch? (I don't know what it means...) the linear option should fix that. see /usr/doc/lilo for more information. craig -- craig sanders -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL

Re: How do I find out what version of ebian is on a machine?

1998-01-19 Thread Craig Sanders
. the upgrade will have been thoroughly tested(*) by then and will be a lot easier to get through. (*) from bo, at least. maybe not as an upgrade from rex. but you could always upgrade from rex to bo (which has been tested) and then immediately upgrade to hamm. craig -- craig sanders -- TO UNSUBSCRIBE

Re: version 0.8 of libc5 to libc6 auto-upgrade script

1998-01-20 Thread Craig Sanders
On Mon, 19 Jan 1998, Alexander Kushnirenko wrote: Hi, Craig! I updated libc5 to libc6 on 2 computers (Debian 1.3 was installed in Nov-97 and Feb-97) using your script. Worked fine for me. glad to hear it. Updating the rest of the packages with dselect is still quite painful. worse than

Re: Newbie --Adding Programs To My Debian Base

1998-01-20 Thread Craig Sanders
/debian and /usr/doc/debian-policy in particular) for info on developer packaging standards. Look at the sources for other debian packages for examples of how to do it. The hello package's sole purpose is to be an example for package developers. craig -- craig sanders -- TO UNSUBSCRIBE FROM

Re: Password encryption with md5, ... in libc6

1998-01-20 Thread Craig Sanders
crypted passwords, how do i convert them all to md5crypt (without having to know what the plaintext password is)? craig -- craig sanders -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .

perl module to read config files?

1998-01-20 Thread Craig Sanders
; file named.rev-local; }; craig -- craig sanders -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .

Re: super: does syslog work?

1998-01-21 Thread Craig Sanders
not do what you want - i.e it may not try a network connecttion to syslog unless you give it an rlog_host definition. experiment. craig -- craig sanders -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .

Re: telnet to localhost

1998-01-21 Thread Craig Sanders
Translation (NAT) or IP Masquerading to get out to the net then this is the case. craig -- craig sanders -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .

Netscape 5.0 to be released under GPL-like license!!!

1998-01-22 Thread Craig Sanders
, Netscape Messenger and Netscape Communicator are trademarks of Netscape Communications Corporation. -- craig sanders -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .

Re: Netscape releasing source code for 5.0

1998-01-23 Thread Craig Sanders
. 3. Would a UN*X developer add a feature that is unix specific. Or would he / she add a cross platform feature? yes and yes. craig -- craig sanders -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .

  1   2   3   4   5   6   7   8   9   10   >