Procmail Decoding Mime Messages

2013-04-24 Thread Martin McCormick
mimencode so it occurred to me that some other application might exist which is in the ports that does basically the same thing. Is there anything which will take a raw email message and spit out linear strings which can be processed like normal text? Thank you. Martin McCormick

Revisiting Traceroute Through ipfw FreeBSD9.x

2013-03-07 Thread Martin McCormick
*traceroute: sendto: Permission denied traceroute: wrote 192.168.1.125 52 chars, ret=-1 I also did try: sysctl net.inet.udp.blackhole=0 then 1 and even 2 with no change. What else should I look at? The firewall rules are otherwise working as they should. Thank you. Martin

Setuid binaries and File Ownerships in FreeBSD9.0

2013-01-23 Thread Martin McCormick
The executable in question is a C program whos file permissions are 4755 and the file belongs to root so all files it opens are also owned by root and that works properly, but what I need is for this application to first open a few files owned by the caller and then later, upgrade back to

Re: Setuid binaries and File Ownerships in FreeBSD9.0

2013-01-23 Thread Martin McCormick
jb writes: Get familiar with this document: http://www.cs.berkeley.edu/~daw/papers/setuid-usenix02.pdf Then verify its validity on your target and current OS. Thank you. I had read the man page several times and like most man pages, it is a summary and one can miss some of the finer points

Safe Way to Tell if Process is Running

2012-12-04 Thread Martin McCormick
it? None of the documentation on kill (1) shows a signal 0 nor does kill -l. Something tells me this is a bad idea these days, but I still need an easy way to see if XYZ process is still alive. Thank you. Martin McCormick WB5AGZ Stillwater, OK Systems Engineer OSU Information

Re: Safe Way to Tell if Process is Running

2012-12-04 Thread Martin McCormick
Robert Bonomi writes: 'man 2 kill' tells all. I believe that is the first or second time I have used Section 2. I appreciate the reminder. It looks like ps -p ### /dev/null appears to do what I need without producing output ps -p 54321 /dev/null date ran the date command if there was

Re: Safe Way to Tell if Process is Running

2012-12-04 Thread Martin McCormick
Robert Bonomi writes: 'man 2 kill' tells all. I believe that is the first or second time I have used Section 2. I appreciate the reminder. It looks like ps -p ### /dev/null appears to do what I need without producing output ps -p 54321 /dev/null date ran the date command if there was

mfs8.0 scripts have me baffled when adding Files.

2012-10-10 Thread Martin McCormick
...; \ ${CP} -rf ${PACKAGESDIR} ${WRKDIR}/mfs/packages; \ ${TOUCH} ${WRKDIR}/.packages_done; \ echo done; \ fi #added by Martin McCormick @if [ -d ${FILESDIR} ]; then \ echo -n Copying custom files ...; \ cd ${FILESDIR

Re: bash Shell Scripting Question

2012-09-20 Thread Martin McCormick
Many thanks! The for loop was what was needed. Polytropon writes: Just a sidenote: If you're not using bash-specific functionality and intend to make your script portable, use #!/bin/sh instead. I always start out that way for that very reason. I needed some random number functions and

bash Shell Scripting Question

2012-09-19 Thread Martin McCormick
the redirection would pickup the standard output. Thanks for ideas. Martin McCormick ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

mhonarc 64-bit Package for mhonarc6.18 is stale.

2012-09-10 Thread Martin McCormick
be the only one in the world who is still using nmh, but it is useful when you want scripts to send mail, etc. Martin McCormick ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any

Is there anything like strace for 64-bit Systems?

2012-09-08 Thread Martin McCormick
Is there anything like strace for AMD64 FreeBSD? Thank you. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

Is there anything like strace for 64-bit Systems?

2012-09-08 Thread Martin McCormick
Is there anything like strace for AMD64 FreeBSD? Thank you. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

Re: Is there anything like strace for 64-bit Systems?

2012-09-08 Thread Martin McCormick
Bruce Cran writes I should try truss. I would just quote the text, but I need to first find out what is broken in the reply sequence and truss may point out what is failing. Martin McCormick ___ freebsd-questions@freebsd.org mailing list http

Virtual FreeBSD9.0 ISO Image Won't Mount Root FS

2012-09-05 Thread Martin McCormick
The ISO image is the FreeBSD9.0 bootonly CDROM for amd64 systems. I added loader.conf to /boot in order to activate a serial console and this along with socat appears to be working as it should. This is great because remote desktop is not an option. The VM boot starts normally

Building a Headless FreeBSD Virtual System

2012-08-29 Thread Martin McCormick
in the future. Thank you for any good suggestions. Martin McCormick WB5AGZ Stillwater, OK Systems Engineer OSU Information Technology Department Telecommunications Services Group ___ freebsd-questions@freebsd.org mailing list http

Re: Off-Topic: Computing for the Blind

2012-03-27 Thread Martin McCormick
Polytropon writes: That's correct. However, unlike a Braille readout which gives tactile information (through the reader's hands), synthetic voice cannot easily accomodate to the reader's habits and reading speed. Scanning text is not possible as the generated voiced text is played in linear

Remote System Builds

2012-03-26 Thread Martin McCormick
which has worked in the past to let one modify loader.conf but I got a bunch of errors this time about files that couldn't be created so maybe this is not the recommended headless installation technique any longer. Any ideas? Thank you very much Martin McCormick WB5AGZ

Re: Off-Topic: Computing for the Blind

2012-03-26 Thread Martin McCormick
of the Linux screen readers, we're talking about a talking terminal for less than 100 US Dollars. We'll just have to see what happens. Martin McCormick WB5AGZ Stillwater, OK Systems Engineer OSU Information Technology Department Telecommunications Services Group

Freebsd9.0 and the fgets directive in gcc

2012-03-21 Thread Martin McCormick
I've got some code which I wrote about 6 or 8 years ago that apparently doesn't get along right now with FreeBSD9.0. In the problem code, there is a loop that uses fgets to read a line from a file. It runs properly until the 2708TH iteration and then it dumps core with a segmentation fault. char

Re: Freebsd9.0 and the fgets directive in gcc

2012-03-21 Thread Martin McCormick
to variables based on the contents of the lines. It is something that worked okay up to FreeBSD8.X but now causes a segmentation fault. Martin McCormick writes: I've got some code which I wrote about 6 or 8 years ago that apparently doesn't get along right now with FreeBSD9.0. In the problem code

Reading an unknown DAT Tape

2012-03-15 Thread Martin McCormick
created the original archive? Thank you. Martin McCormick ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

Removal Attempt of Directory under ZFS causes Kernel Panic

2012-02-10 Thread Martin McCormick
about trying it again if we can't solve this mystery. We can't seem to duplicate the problem. Any ideas are appreciated. Martin McCormick WB5AGZ Stillwater, OK Systems Engineer OSU Information Technology Department Telecommunications Services Group

Re: Removal Attempt of Directory under ZFS causes Kernel Panic

2012-02-10 Thread Martin McCormick
trace so hopefully somebody can give us an idea as to how this happened. Thank you again. Martin McCormick ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail

freebsd-update; What did I do?

2012-01-31 Thread Martin McCormick
I started to run freebsd-update to upgrade a 8.x system to 9.0-RELEASE # freebsd-update -r 9.0-RELEASE upgrade Looking up update.FreeBSD.org mirrors... 4 mirrors found. Fetching metadata signature for 8.2-RELEASE from update5.FreeBSD.org... done. Fetching metadata index... done.

Re: freebsd-update; What did I do?

2012-01-31 Thread Martin McCormick
Matthew Seaman writes: That's a known problem and fixable by first updating your 8.2-RELEASE machine to the latest patch level before trying the update to 9.0 It appears to be working now. Thank you. ___ freebsd-questions@freebsd.org mailing

Re: Sample getaddrinfo Code Compiles in Linux but not FreeBSD.

2012-01-18 Thread Martin McCormick
Peter Andreev writes: #include netinet/in.h Many thanks. That made the FreeBSD version work just as well. As soon as I saw netinet.h, I realized it wasn't in the original code as the Linux libraries apparently accomplish the same thing without that header. Martin

Re: Rsync and Preservation of Ownership and Permissions

2011-11-24 Thread Martin McCormick
Michael Sierchio writes: Does the same user exist on the remote system, with the same uid, etc.? Yes. If you're using rsync with ssh as the transport, and connecting to the remote machine as the backups user, that's who will own the files on its local filesystem... I thought rsync had some

Rsync and Preservation of Ownership and Permissions

2011-11-23 Thread Martin McCormick
Rsync is a great utility, but is there a way to preserve ownership and permissions if rsync remotely logs in to a backup server as a normal user? The recovery process is run by root but copies all the files from the backup server as a normal user and uses its root capabilities to

Re: Two Networks on one System

2011-06-21 Thread Martin McCormick
of, the less head-scratching and frustration there is. Martin McCormick ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

Re: Two Networks on one System

2011-06-21 Thread Martin McCormick
Damien Fleuriot writes: SOLUTION: You need a way to reply using a specific route depending on which IP was requested by the internet user at 50.50.50.50 If they queried 100.100.100.53, you need to route through 100.100.100.1. If they queried 200.200.200.53, you need to route through

Two Networks on one System

2011-06-20 Thread Martin McCormick
Following up on a question I wrote Friday June 17, a person from this list kindly referred me to the FreeBSD Handbook and the sections on configuring Ethernet interfaces. It has an excellent example as to how to set the default gateway from the command line. I tried it and it worked. Can a

Re: Two Networks on one System

2011-06-20 Thread Martin McCormick
Matthew Seaman writes: Yes. It's common in the sense that a lot of people think its something that should work, and get confused when it doesn't prove simple to set up. Thank you. I think I may have stumbled on to what I need to do discussed in the Handbook under the multi-homed host

Re: Two Networks on one System

2011-06-20 Thread Martin McCormick
I would like to say that I got it working, but after looking at the duel-homed host section of the Handbook, I am still stuck. A Google search turned up a thread from a couple of years ago that almost echoed my exact words. We've got a system with network interfaces on two disjointed

Second Network Almost but Not Quite Works.

2011-06-17 Thread Martin McCormick
The system in question has its primary NIC on one particular network and a default route to the gateway on that network and all of that works fine. I needed the system to communicate fully on two different networks so we enabled the second interface card and it works on that second

Second Network Almost but Not Quite Works.

2011-06-17 Thread Martin McCormick
The system in question has its primary NIC on one particular network and a default route to the gateway on that network and all of that works fine. I needed the system to communicate fully on two different networks so we enabled the second interface card and it works on that second

Re: How to be an imap Client?

2011-04-21 Thread Martin McCormick
per...@pluto.rain.com writes: Being a university, okstate.edu has students, most of whom are not in the CIS department or in any way under control of the CIS department's sysadmin. Need I say more? Spot on. About 25,000 students and some of them respond to phishing attempts and make other

How to be an imap Client?

2011-04-20 Thread Martin McCormick
preserve present smtp functionality? Many thanks. What a mess needing to send one message to one person is turning in to. Martin McCormick WB5AGZ Stillwater, OK Systems Engineer OSU Information Technology Department Telecommunications Services Group

Re: How to be an imap Client? Solved, somewhat

2011-04-20 Thread Martin McCormick
Ruben de Groot writes: There is the Mail::IMAPClient perl module (or Net::IMAP::Simple, perl's about choice ;-) ) Many thanks as this may come up again. In actuality, I was able to end up using simple SMPT mail to use our Exchange gateway. I just set that gateway as a smarthost which I thought

Modifying Sendmail's Configuration the Correct way.

2011-04-20 Thread Martin McCormick
The /etc/mail/sendmail.cf file very clearly tells one not to edit it directly so I edited the /etc/mail/my.name.domain.mc file as stated in documentation to cause this system to send all out-bound mail through a smart host. The .mc file part that adds the smart host looks like:

Re: Modifying Sendmail's Configuration the Correct way.

2011-04-20 Thread Martin McCormick
Thanks to all. Somehow, I missed the make install. I will give it another try and it will probably work as it should. This is a great list and everybody is very nice even to those of us who have been running FreeBSD for many years but are trying new things. Greg Larkin writes: Try these

Re: Stopping Less from creating Log Files

2011-04-12 Thread Martin McCormick
Lowell Gilbert writes: The secure mode disables log files, but it also changes several other behaviours, so you may not find it to be an improvement. The code supports changing those secure features separately, but only by editing the source; if you go that way, it will probably be much

Stopping Less from creating Log Files

2011-04-11 Thread Martin McCormick
This is a minor problem but I use more to read Email messages from nmh. If one forgets what screen one is in, it is possible to start typing and create a log file of the message in which ever mailbox directory one is reading out of. The man page for more is actually linked to less even

Re: Using Multiple -prune directives in a find command

2011-02-08 Thread Martin McCormick
of find examples but very little use of -prune in those examples. Martin McCormick ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to freebsd-questions-unsubscr

Using Multiple -prune directives in a find command

2011-02-07 Thread Martin McCormick
Can one use the -prune directive multiple times in a find command to specify a list of directories not to descend? It would be like find . -name * -prune dir1 -prune dir2 -print or whatever you wanted find to do, but that does not work or I wouldn't be asking. Find appears to

Can one Download Old Packages?

2011-01-10 Thread Martin McCormick
Is there a safe site to find the rsync package for FreeBSD6.3? We still have a few 6.3 systems around because the commercial backup client we have for an enterprise-wide solution will not install on FreeBSD8.1? This is one of those times when we are fighting the war with what we

Re: Can one Download Old Packages?

2011-01-10 Thread Martin McCormick
Devin Teske writes: ftp://ftp-archive.freebsd.org/pub/FreeBSD-Archive/old-releases/i386/6.3-RELE ASE/packages/All Have fun. Thanks. I was on the right server but took a wrong turn. ___ freebsd-questions@freebsd.org mailing list

FreeBSD8.1 Can't get Syslog file to Log dhcpd Solved.

2010-10-29 Thread Martin McCormick
that one stray space before the first asterisk. I removed it and everything started working. Martin McCormick ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail

FreeBSD8.1 Can't get Syslog file to Log dhcpd

2010-10-27 Thread Martin McCormick
suggestions. Martin McCormick WB5AGZ Stillwater, OK Systems Engineer OSU Information Technology Department Telecommunications Services Group ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions

How FreeBSD Handles a DNS that is Down

2010-10-21 Thread Martin McCormick
this condition often and when we do, it's hopefully for very short periods, but the disruption is total. Martin McCormick WB5AGZ Stillwater, OK Systems Engineer OSU Information Technology Department Telecommunications Services Group ___ freebsd-questions

64-bit PGP isn't Decrypting.

2010-10-04 Thread Martin McCormick
to be read anywhere.:-) Has anybody else had the same problem on a 64-bit version of pgp? I am glad I discovered this before anything crytical happened. Martin McCormick ___ freebsd-questions@freebsd.org mailing list http

Re: 64-bit PGP isn't Decrypting.

2010-10-04 Thread Martin McCormick
Dan Nelson writes: Does gnupg (ports/security/gnupg) work? I think you'll have a hard time trying to get people to fix bugs in pgp; the source tree that the pgp port uses is 14 years old. Wow! I thought that was just the first copywrite date. gnugp installs gpg-2 which is almost the right

Not Sure Which Package has mssql_connect.

2010-09-29 Thread Martin McCormick
it is possible that I have the wrong php and another php has the mysql_connect routine so at this time, I am all ears. Thanks for any suggestions. Martin McCormick ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo

Re: Not Sure Which Package has mssql_connect.

2010-09-29 Thread Martin McCormick
Glen Barber writes: Are you sure mssql_connect() isn't a typo? The rest of your email states mysql_connect(). Wow! I've been doing too much of this this week. It's actually the other way around. The problem is with mssql_connect and my references to mysql were based on a bit of

Re: Not Sure Which Package has mssql_connect.

2010-09-29 Thread Martin McCormick
Greg Larkin writes: You referred to C code at the top of your message, That was actually incidental. I was thinking about what had happened when I transplanted some home-grown C code in to 8.1 and had to clean up some of my lazy habits to make it work again. So far, nothing I haven't been able

pkg_config Version Numbers

2010-09-29 Thread Martin McCormick
' requires 'pkg-config-0.23_1', but 'pkg-config-0.25' is installed This looks like it could be harmless enough as pkg-config-0.25 is newer but I thought I would ask before creating any more possible monsters. Is this something to fix or can I forget it? Thank you. Martin McCormick

How to Best Prevent Unwanted named installation

2010-09-10 Thread Martin McCormick
as simply as possible. Thanks. Martin McCormick ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

Boot Drive Nomenclature and How to Figure it out

2010-09-03 Thread Martin McCormick
scripts not to use /dev/acdx as they are CDROM devices, but system drives can actually take many different names depending on whether they are RAIDs SCSI IDE, etc. Any good suggestions are appreciated. Martin McCormick ___ freebsd-questions

Re: Boot Drive Nomenclature and How to Figure it out

2010-09-03 Thread Martin McCormick
with corruption or maybe a new drive, gpart list executes silently and prints nothing on the output. As I said, you answered my question so many thanks. The new question might best be put: Okay, if nothing is there, where did gpart look to see nothing? Martin McCormick

Need to run a Command Once on Boot. FreeBSD8.1

2010-09-03 Thread Martin McCormick
the script destroy itself after launching since it never needs to run after that one time. Thanks. Martin McCormick WB5AGZ Stillwater, OK Systems Engineer OSU Information Technology Department Telecommunications Services Group ___ freebsd

Re: Need to run a Command Once on Boot. FreeBSD8.1

2010-09-03 Thread Martin McCormick
be scratching your head all day trying to figure out why the job isn't getting done. I use and like both FreeBSD and Linux but some things are easier in one than the other. Again, many thanks. Martin McCormick WB5AGZ Stillwater, OK Systems Engineer OSU Information Technology Department

Re: Bind9.7.1 Package

2010-08-11 Thread Martin McCormick
Matthew Seaman writes: # pkg_create -b pkg-config-0.23_1 pkg-config is an indirect dependency for bind -- it's required by security/openssl and textproc/libxml2 either of which bind are optional dependencies for dns/bind97. Thank you. This put me on the right track. When I used

Re: Bind9.7.1 Package

2010-08-10 Thread Martin McCormick
and can not seem to find anything to save from the port that contains that string or any part there of. There is obviously some other little file I need to save from somewhere, but I am not sure what to look for. Thanks. Martin McCormick ___ freebsd

Bind9.7.1 Package

2010-08-06 Thread Martin McCormick
I missing the name of the package? If there is no package of bind97, this is not a huge setback but it will make each installation take longer before named starts to work. Martin McCormick ___ freebsd-questions@freebsd.org mailing list http

Re: Running an Old Kernel

2010-06-26 Thread Martin McCormick
should not be happening. Martin McCormick ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

Running an Old Kernel Solved.

2010-06-26 Thread Martin McCormick
since I completely forgot about making sure it didn't get in to the new system. Martin McCormick ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to freebsd-questions

Running an Old Kernel

2010-06-25 Thread Martin McCormick
after installing the patched kernel. Martin McCormick ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

Re: Running an Old Kernel

2010-06-25 Thread Martin McCormick
b. f. writes: Why on earth are you tinkering with your kernels in order to change sudo output? You should instead be editing configuration files associated with sudo and related base system utilities, or patching sudo. Absolutely. I couldn't remember if this happened with the original kernel

sudo last login message and how to turn it off FreeBSD8.0

2010-06-24 Thread Martin McCormick
to look at? Thank you. Martin McCormick ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

Running Older Binaries under 8.0

2010-06-21 Thread Martin McCormick
I have a large number of home-grown applications that run under FreeBSD 6.3 and earlier. As we transition to FreeBSD8.0, is there a good single package to add which will provide the right libraries to allow these older binaries to run without surprises? Thank you. Martin McCormick WB5AGZ

Re: Running Older Binaries under 8.0

2010-06-21 Thread Martin McCormick
Chuck Swiger writes: Yes, you want: /usr/ports/misc/compat6x It installs the libraries from FreeBSD-6.x under a compatibility location so that your older binaries should run without needing to be recompiled Perfect. Thanks. ___

Re: Ownership of /var/named Changes on Reboot.

2010-06-17 Thread Martin McCormick
with configurations that work. It is just time to modernize and at least configure bind in the recommended way so as to take full advantage of the clever design. It does still give the message that the working directory is not writable. Martin McCormick

Ownership of /var/named Changes on Reboot.

2010-06-16 Thread Martin McCormick
ten years and the force back to root ownership has always been a factor when the system is rebooted. Thank you. Martin McCormick WB5AGZ Stillwater, OK Systems Engineer OSU Information Technology Department Telecommunications Services Group

tar and --include

2010-05-19 Thread Martin McCormick
seems to exist in the FreeBSD form of tar. I tried a Linux system's tar man page and it is not there but both support the -X path/filename for a list of exclusion patterns. Martin McCormick WB5AGZ Stillwater, OK Systems Engineer OSU Information Technology Department Telecommunications Services Group

tar with --include Gets Much More.

2010-05-18 Thread Martin McCormick
. I think the --exclude directive has worked before but --include is either not doing anything or works completely differently that what I was expecting. Any ideas are appreciated. Martin McCormick WB5AGZ Stillwater, OK Systems Engineer OSU Information Technology Department

FreeBSD8.0 Firewall Script behaves much differently than 6.x

2010-03-31 Thread Martin McCormick
the flush. Doing the same command from a local or even a serial console works fine and the new rules are installed. Thanks and maybe I have been using the wrong technique for reloading firewall rules all along. Martin McCormick WB5AGZ Stillwater, OK Systems Engineer OSU Information

Re: FreeBSD8.0 Firewall Script behaves much differently than 6.x

2010-03-31 Thread Martin McCormick
I have just answered part of my own question. If you background the process as in sh /etc/rules.fw it works. You still get knocked off the remote connection but the backgrounded process continues to run without a controlling terminal and completes. The only remaining part of

Re: FreeBSD8.0 Firewall Script behaves much differently than 6.x

2010-03-31 Thread Martin McCormick
Mark writes: You could use nohup That's is a very good idea. Thanks. Martin McCormick ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to freebsd

popd to send Mail to a Mac; I Really Appreciate this list.

2010-03-26 Thread Martin McCormick
via imap to retrieve the messages. Martin McCormick ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

popd to send Mail to a Mac

2010-03-25 Thread Martin McCormick
. I should forward this message to the Mac and there, I can use safari to handle that message. Those are the only messages that will need to go through popd so I need a simple way to feed them in so the Mac can get them out. Thanks. Martin McCormick WB5AGZ Stillwater, OK Systems Engineer

Re: Automatic Way to Tell if a FreeBSD system is 64 or 32-bit?

2010-03-17 Thread Martin McCormick
struggling to get out. In my script, this is not a problem because the mfsboot CDROM for 32-bit boxes chokes on a 64-bit platform and will not boot. When on a 64-bit system, it boots like gang busters and since it installs its own OS, there is no question at all. Thank you all. Martin

Automatic Way to Tell if a FreeBSD system is 64 or 32-bit?

2010-03-16 Thread Martin McCormick
Is there a FreeBSD command similar to the Linux arch command? I have built a fairly decent Bourne shell script to run just after installing mfsbsd on a target system. It figures out the likely boot drive, formats it and then begins to build a FreeBSD system on it. The script could

Re: Patching a Newly-Built System

2010-03-15 Thread Martin McCormick
release should make absolutely no difference. That is what I suspected but I wanted to start on the right foot so I thought I would check. Thank you. Martin McCormick ___ freebsd-questions@freebsd.org mailing list http

Patching a Newly-Built System

2010-03-12 Thread Martin McCormick
and we reboot to take advantage of the new patches. Thank you. Martin McCormick WB5AGZ Stillwater, OK Systems Engineer OSU Information Technology Department Telecommunications Services Group ___ freebsd-questions@freebsd.org mailing list http

Re: Booting MFS from Secondary Partition

2010-03-06 Thread Martin McCormick
mfsbsd that tells you to just use scp to get the image over to the target system and then, as root, use dd to apply it to the boot device. That is not possible unless one first boots from some other medium. Martin McCormick ___ freebsd-questions@freebsd.org

Re: Booting MFS from Secondary Partition

2010-03-05 Thread Martin McCormick
is to completely rebuild the system anyway, this would be the last gasp of the present system as it gets ready to reboot, hopefully with mfsbsd and all hard drives dismounted. Martin McCormick ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org

Re: RS232 / TCP converter and BSD.

2010-03-04 Thread Martin McCormick
and produces a new ttyUSBx device, the brand is not that critical. Martin McCormick WB5AGZ Stillwater, OK Systems Engineer OSU Information Technology Department Telecommunications Services Group ___ freebsd-questions@freebsd.org mailing list http

Re: RS232 / TCP converter and BSD.

2010-03-04 Thread Martin McCormick
Chuck Swiger writes: Data centers use that for serial connections to stuff like Cisco routers and other terminal applications all the time. However, if the device is truly RS-232 rather than 422/423, it's nominally out of spec past 50 meters and possibly won't go past 9600 baud. I

Booting MFS from Secondary Partition

2010-03-04 Thread Martin McCormick
I have hit one of these impenetrable walls in which nothing seems to work but I know it should. I have tried several versions of /boot.config to no avail. The idea is exactly the same principle as described in depenguinator which is software that lets one use grub in Linux to install FreeBSD on a

Re: Remote Building of FreeBSD

2010-03-03 Thread Martin McCormick
Partition 4 has a type of 165 or standard FreeBSD. I think I am calling the bootloader wrong since the very same mfsboot image works properly when applied to /dev/ad0. The only difference is that one now has the same partition configuration on /dev/ad0 instead of ad0s1b Martin McCormick

Re: Remote Building of FreeBSD

2010-03-02 Thread Martin McCormick
The boot.config file I thought would boot mfsbsd on what was the swap partition is not working. On this particular drive, ad0s1a is the normal FreeBSD partition and ad0s1b is swap. The idea is to use dd to write the mfsboot.img file to /dev/ad0s1b and then boot from there. My boot.config

Remote Building of FreeBSD

2010-03-01 Thread Martin McCormick
: dd if=mfsboot.img of=/dev/ad0 After that, the reboot will launch mfsbsd and the rest appears to be manageable. Martin McCormick WB5AGZ Stillwater, OK Systems Engineer OSU Information Technology Department Telecommunications Services Group

Re: Remote Building of FreeBSD

2010-03-01 Thread Martin McCormick
way to tell the existing system to boot from /dev/ad0s1b next time? That would solve the problem completely. Martin McCormick ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any

Preparing to Install MFSBSD Loader on Disk

2010-02-15 Thread Martin McCormick
. Since you start with no actual drives mounted, you can reformat the hard drive to however you need it, but you can't reboot again until there is a working system back on the hard drive or you just get a warm, humming paperweight. That's when you need the rescue CD. Martin McCormick WB5AGZ

Re: sysinstall and mfs Great News and another Question

2010-02-10 Thread Martin McCormick
/zoneinfo/America/Chicago copied, not linked, to /etc/localtime. The goal is to run the script I will build under mfsbsd and then boot the system in working order as if it had been installed via sysinstall by someone sitting at a console. Martin McCormick WB5AGZ Stillwater, OK Systems

Re: sysinstall and mfs Great News and another Question

2010-02-08 Thread Martin McCormick
haven't figured out why but it appears that ftp gets ahead of the ability to store the files. Whatever it happening, it is now more right than wrong. Again, thanks for all your help. Martin McCormick WB5AGZ Stillwater, OK Systems Engineer OSU Information Technology Department

sysinstall and mfs I'm out of Ideas.

2010-02-05 Thread Martin McCormick
in single-user mode from the CDROM. I greatly appreciate all the help and welcome any new ideas, but it appears to be back to the drawing board for remotely-done upgrades. Martin McCormick ___ freebsd-questions@freebsd.org mailing list http

Re: More sysinstall questions 1 of 2

2010-02-04 Thread Martin McCormick
]qj Whatever it is that differs between using mfs to run sysinstall and the CDROM to also run sysinstall is not obvious, at least to me. Sorry for the length of this message and I hope all the little boxes and box parts didn't wreck anybody's terminal. Martin McCormick

sysinstall and mfs

2010-02-04 Thread Martin McCormick
, but sysinstall can't seem to do the installation. This does not make sense, but that is the score right now. Martin McCormick ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail

Re: sysinstall and mfs

2010-02-04 Thread Martin McCormick
drive and where it is. I have never been so confused about something that seemed so straight-forward. Thanks for your help. Martin McCormick ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions

  1   2   3   4   >