netscape 7.1 profile error

2004-05-08 Thread Incoming Mail List

Netscape 7.1 from FreeBSD Ports
FBSD V5.2

I get the following error when trying to open Netscape.  I know it sounds
like a locking issue but I can't find the file that stores the profile
or the lock file for it.  Anyone run into this and have a solution?
I can create a new profile, but only use it once.  After I close Netscape
and try to rerun it, the error pops up if I try to use that profile again.

Netscape 7.1 cannot use the profile Fred because it is in use.
Please choose another profile or create a new one

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Document

2004-05-08 Thread freecart


I'm sorry, but because I have been receiving more than 100 junk-mail
messages an hour, I no longer accept e-mail from unregistered senders.
To send me a message, please follow the path that best describes your needs:

Business Contacts
-
  1. Register as a valid sender by visiting http://www.nopdesign.com/register/
  2. Re-send your e-mail


FreeCart Support

  1. Post a message to the support forum at http://www.nopdesign.com/forum/
  2. Send a private message through the support forums


Friends and Family
--
  1. Register as friends  family by visiting http://www.nopdesign.com/family/
  2. Re-send your e-mail


I'm sorry for the inconvenience, however, there was simply no way to keep up
with the volume of junk-mail I receive, even with the freeware or commercial
spam blocking tools.  Once you register, you will not need to register again,
unless you change your e-mail address.

If you didn't send me a message, there is a good chance someone you know
has an email virus or your email has been targetted by spammers.  I received
your email as:

   From: [EMAIL PROTECTED]
   Subject: Document

Thank you,

   Scott Moore
   NOP Design

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


the most light weight X web browser?

2004-05-08 Thread Zhang Weiwu
Hello. My friend is running a tea house, she want to put her ancient 
Pentium 100 notebook (24MB memory) running FreeBSD 4.9, on the bar so 
customers can use it check mails and browse the web. (and I want to help 
her.) She want it to just function as a browser machine, she don't even 
need a window manager, the X starts up just to run a browser. (However a 
memory saving window manager is okay, too.

But such a slow notebook what browser do you suggest to use? The 
harddisk don't have much space after the OS is installed, and memory is 
pretty limited. Epiphany comes to my mind, but it depends on Mozilla and 
gtk. If there is an extremely light weighted browser that just use 
Athena (or can be compiled so) it would be better.

Perhaps Epiphany is the only choice? If so can we make it even lighter?

Thank you.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: the most light weight X web browser?

2004-05-08 Thread Roop Nanuwa
On Sat, 08 May 2004 17:21:36 +0800, Zhang Weiwu [EMAIL PROTECTED] wrote:
 
 Hello. My friend is running a tea house, she want to put her ancient
 Pentium 100 notebook (24MB memory) running FreeBSD 4.9, on the bar so
 customers can use it check mails and browse the web. (and I want to help
 her.) She want it to just function as a browser machine, she don't even
 need a window manager, the X starts up just to run a browser. (However a
 memory saving window manager is okay, too.

Take a look at Opera. It is extremely lightweight in both size, memory
footprint and CPU usage. It also has a built-in kiosk mode which would
probably be perfectly suited for use in the tea house.

It's under www/opera and www/opera-devel.

--roop
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: the most light weight X web browser?

2004-05-08 Thread Parv
in message [EMAIL PROTECTED], wrote Zhang Weiwu
thusly...

 she want to put her ancient Pentium 100 notebook (24MB memory)
 running FreeBSD 4.9, ... She want it to just function as a browser
 machine, she don't even need a window manager

Ion, treewm, or tvtwm should be enough for a window manager if
really want one.  (Oh, my favourite is FVWM, from fvwm-devel port,
currently 2520 kB resident set size, 3336 kB virtual size, 4476 KB
disk.)


 Perhaps Epiphany is the only choice? If so can we make it even
 lighter?

I have not tried Epiphany; its default long dependency list sure is
scary.  Looking inside the Makefile it seems if you delete/comment
out if defined(PACKAGE_BUILDING)... block, the actual list would
be quite reduced.  Hopefully there is enough space to install both
mozilla  epiphany.  If not, all the non essential mozilla files can
be deleted.

Going only on the default dependency list, Mozilla w/ GTK v1, from
mozilla-gtk1 port, would be smaller at least on disk; can't say
about memory requirements as i have never checked while it runs.

Have you checked Netscape, Firefox or Opera?  I suppose a text
browser either w/ image, w3m-img, and/or JavaScript support would
not cut it?


  - Parv

-- 

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: the most light weight X web browser?

2004-05-08 Thread jan . muenther

Hey there,

 But such a slow notebook what browser do you suggest to use? The 
 harddisk don't have much space after the OS is installed, and memory is 
 pretty limited. Epiphany comes to my mind, but it depends on Mozilla and 
 gtk. If there is an extremely light weighted browser that just use 
 Athena (or can be compiled so) it would be better.

ever had a look at links' graphics mode (-g)? It's blazing fast and really
small - links just against xlib.



___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: segmentation fault-- is my array too long?

2004-05-08 Thread Henrik W Lund
Malcolm Kay wrote:
On Friday 07 May 2004 06:42, Henrik W Lund wrote:

malloc() is your friend! :-)

-- double *ncost = malloc(sizeof (double) * persons * scens); --

This ought to do the trick. Just remember to make sure that malloc
returns a valid pointer, otherwise you'll have another seg fault.
I'm pretty sure you can adress the pointer like you do with the array
there (ncost[persons][0], etc...); if not, you can always do
ncost(sizeof(double) * persons + 0), etc...
/* AMENDMENT!!! */
In my haste, I totally forgot my pointer dereferencing. The correct way
to reference a pointer as a two dimensional array is, of course, thus:
*(ncost + (sizeof(double) * persons) + 0)) = 0.00;


You've still got it wrong!
ncost increments in units of size equal to that which it points
so it should be:
  *(ncost + person*scens + scen)
where person is the first index and scen the second.
or in the particular instance
  *(ncost + person*scens + 0) = 0.00;
For easier to read code it would be better to use:
   double (*ncost)[scens] = malloc( persons * sizeof *ncost );
and dereference as:
   ncost[person][scen]
or in particular
   ncost[person][0] = 0.0;
And for the OP it is usual to write constants generated
with #define in upper-case. It generally seems to help
to make the code easier to follow. In this case:
 PERSONS instead of persons
and
 SCENS instead of scens
This also make the distinction between PERSONS and person
more evident while retaining their implied connection.
Malcolm


Thank you for the rectification. While the code did compile and run fine 
the way I wrote it, I suppose that's just lucky. I guess stuff like this 
is the reason why some of my C/C++ programs seg fault on rare occasions. ;-)

I generally handle pointers well, but evidently not perfectlu well. :-D

-Henrik W Lund
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Compile Emacs from CVS as a port?

2004-05-08 Thread Kai Grossjohann
I use Emacs from CVS on a daily basis.  Currently, I have a working
copy which build and install into a subdir of my home directory.

But I think building Emacs as a port might provide advantages in
integrating with add-on packages that are available as ports, such as
AUCTeX.

I searched a bit, but everything I could find assumed that the source
code for the program to build is available as a tarball, whereas I
have a CVS working copy.

Does anyone have pointers?  Perhaps somebody has done what I need
already?

tia,
Kai


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: the most light weight X web browser?

2004-05-08 Thread albi
On Sat, 8 May 2004 11:57:47 +0200
[EMAIL PROTECTED] wrote:

  But such a slow notebook what browser do you suggest to use? The 
  harddisk don't have much space after the OS is installed, and memory
  is pretty limited. Epiphany comes to my mind, but it depends on
  Mozilla and gtk. If there is an extremely light weighted browser
  that just use Athena (or can be compiled so) it would be better.
 
 ever had a look at links' graphics mode (-g)? It's blazing fast and
 really small - links just against xlib.

i fully agree, links (version 2) in graphics mode is without doubt the
fastest and most lightweight of all graphic browsers

it has a few disadvantages though :
1) no copy and paste possible
2) you need to learn how to use the menubar (which is not so obvious)

apart from that it's warmly recommended for this purpose :)

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


cdrw PIO4

2004-05-08 Thread w sx
Hi,

I have a CDRW drive which is detected by the BIOS as
UDMA2, but when FreeBSD boots it gets set to PIO4.

Im using FreeBSD 4.7. Its attached using a ATA133
compat cable, and its the only device on that
controller.

Does anyone have any tips on getting the CDRW drive
set to UDMA mode?

Please email me personally, since Im not subscribed to
the list.

Thanks.




__
Do you Yahoo!?
Win a $20,000 Career Makeover at Yahoo! HotJobs  
http://hotjobs.sweepstakes.yahoo.com/careermakeover 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: the most light weight X web browser?

2004-05-08 Thread Harald Schmalzbauer
Am Samstag, 8. Mai 2004 11:21 schrieb Zhang Weiwu:
 Hello. My friend is running a tea house, she want to put her ancient
 Pentium 100 notebook (24MB memory) running FreeBSD 4.9, on the bar so
 customers can use it check mails and browse the web. (and I want to help
 her.) She want it to just function as a browser machine, she don't even
 need a window manager, the X starts up just to run a browser. (However a
 memory saving window manager is okay, too.

 But such a slow notebook what browser do you suggest to use? The
 harddisk don't have much space after the OS is installed, and memory is
 pretty limited. Epiphany comes to my mind, but it depends on Mozilla and
 gtk. If there is an extremely light weighted browser that just use
 Athena (or can be compiled so) it would be better.

 Perhaps Epiphany is the only choice? If so can we make it even lighter?

Dillo! You really want to have a look at dillo. Increadibly fast and small, 
but with limitations (no SSL and such)

-Harry


 Thank you.
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]


pgp0.pgp
Description: signature


Re: Re: Administration

2004-05-08 Thread Autoresponder
Please register at our secure web site:

http://pc-magic.com/register.htm

Thank you!

Scott

(This is an automated response.  If this message doesn't pertain
then please visit http://pc-magic.com/reginfo.htm)
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Newbie: 4.9 / 5.2.1 / 4.10 ??

2004-05-08 Thread Peter Risdon
Daniela wrote:

On Friday 07 May 2004 16:25, Kevin D. Kinsey, DaleCo, S.P. wrote:
 

4)	Can freebsd use a linux swap space?
 

Yes, anything can be used as swap space, but be sure to determine the correct 
device file, or else you'll overwrite precious data.
If, for example, you have the Linux swap on the second slice on the first IDE 
drive, the device file would be: /dev/ad0s2 (at least for 4.9, I think for 
5.X it's /dev/ad0s2c but I'm not sure).
 

This might help:

http://www.tldp.org/HOWTO/Linux+FreeBSD.html

It includes a section on sharing swap space.

PWR.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


freebsd.org email

2004-05-08 Thread Kyle Keith
Good Morning,
I have been running freebsd for 2 ½ years now and currently run
23 freebsd 4.9 servers
I actively encourage everyone to switch to freebsd and have helped many
switch.
 
What does it take or what are the requirements to get a freebsd.org email
address  ex:  [EMAIL PROTECTED] 
 
Sincerely,
Kyle
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: freebsd.org email

2004-05-08 Thread Larry Rosenman

--On Saturday, May 08, 2004 08:07:12 -0700 Kyle Keith [EMAIL PROTECTED] wrote:
Good Morning,
I have been running freebsd for 2 ½ years now and currently
run 23 freebsd 4.9 servers
I actively encourage everyone to switch to freebsd and have helped many
switch.
What does it take or what are the requirements to get a freebsd.org email
address  ex:  [EMAIL PROTECTED]
Only committers on the project have @FreeBSD.org email addresses.

--
Larry Rosenman http://www.lerctr.org/~ler
Phone: +1 972-414-9812 E-Mail: [EMAIL PROTECTED]
US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749


pgpqRQXxtdVoS.pgp
Description: PGP signature


Re: cdrw PIO4

2004-05-08 Thread Chuck Swiger
w sx wrote:
Does anyone have any tips on getting the CDRW drive
set to UDMA mode?
Add the following to your /boot/loader.conf:
hw.ata.atapi_dma=1
...and reboot.  You might also be able to use atacontrol.
--
-Chuck
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


npflash.so and Firefox

2004-05-08 Thread Joacim Thomassen
Hi,

I'm not sure this is the right list for this question so feel free to
correct me.

Sometimes when I enter a website with  application/x-shockwave-flash
content, firefox segfaults with this last lines:

For application/x-shockwave-flash found plugin
/usr/X11R6/lib/browser_plugins/npflash.so
LoadPlugin() /usr/X11R6/lib/browser_plugins/npflash.so returned 86f5580
open dsp: Device busy
nsPluginNativeWindowGtk2: NPPVpluginNeedsXEmbed=0
nsPluginNativeWindowGtk2: call SetWindow with xid=0x14002b5
About to create new ws_info...
About to create new xtbin of 180 X 150 from 0x86f4400...
About to show xtbin(0x8585f00)...
completed gtk_widget_show(0x8585f00)
The program 'firefox-bin' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadShmSeg (invalid shared segment parameter)'.
  (Details: serial 27 error_code 178 request_code 149 minor_code 2)

When I remove the npflash.so file in /usr/X11R6/lib/browser_plugins/ it 
seems to work allright.

I run FreeBSD 5.2-RELEASE #2

firefox is the latest cvsbuild firefox-0.8_5

Flash Movie player Version 0.4.10 compatible (from firefox -
about:plugins (don't remember witch port I last installed, but it's the
npflash.so file)

I user:
windowmaker-0.80.2_3 and 

XFree86 Version 4.3.0
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: FreeBSD 5.2 i386 [ELF] 

Anyone who might have a clue? (I'm also very interested in guideance to
writing this kind of questions, so please do so)

(I'm aware of the bad english - sorry) :-)

-Joacim
-- 
Joacim Thomassen[EMAIL PROTECTED]
[EMAIL PROTECTED]   http://www.stud.ntnu.no/~joacimt/

GPG PUBLIC KEY: http://www.idi.ntnu.no/~joacimt/pubkey.asc



pgp5GiKTKE4NB.pgp
Description: PGP signature


Re: freebsd.org email

2004-05-08 Thread Ph. Schulz
 
What does it take or what are the requirements to get a freebsd.org email
address  ex:  [EMAIL PROTECTED] 
 
Take a look at this reply to the very same question.
http://docs.freebsd.org/cgi/mid.cgi?20040408111540.GD71019
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Not needing the console for a system reload

2004-05-08 Thread Paul Hoffman
Greetings again. Sometimes I want to do a shutdown now; use 
/bin/sh; exit to reload the upper layers of the system without 
doing a full reboot. If I'm not at the console, I can't do this, so I 
have to do the reboot, which takes much longer because of all the 
kernel loading and hardware probing.

Is there a way to give a shutdown now; use /bin/sh; exit command 
from the command line if I'm logged in remotely? Or do I really need 
to use reboot and go through the whole hardware reinitialization?

--Paul Hoffman
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Japanese Input

2004-05-08 Thread braidsenfro
Can anyone provide a step-by-step procedure to writing Japanese text/documents on 
FreeBSD?

I'm currently using FreeBSD 4.9, and i'm very new, so please, try not to gloss over 
things (e.g. rather than say go to the ports directory say go to /usr/ports/).  It 
would really make a difference I believe.

Thank you
Akbar

__
Introducing the New Netscape Internet Service. 
Only $9.95 a month -- Sign up today at http://isp.netscape.com/register

Netscape. Just the Net You Need. 

New! Netscape Toolbar for Internet Explorer
Search from anywhere on the Web and block those annoying pop-ups.
Download now at http://channels.netscape.com/ns/search/install.jsp
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Japanese Input (More Specific)

2004-05-08 Thread braidsenfro
Please disregard last question because it is a little too vague. My apologies.

The Question
[
I would appreciate it very much if someone could provide a step-by-step guide for 
enabling Japanese input into a terminal window, using a jvim or other japanese enabled 
vi-like editors.  I'm not particular about the server (canna, wnn6, etc.) it just has 
to work.  Also, although i'd prefer to stick with a vi-like editor, i would be ok with 
an emacs solution as well.
]

Some Information
[
I'm currently using 
 - FreeBSD 4.9
 - Enlightenment 0.16
 - i386 Architecture
]
 
My Handicap
[
I'm very new, so please, try not to gloss over things (e.g. rather than say go to the 
ports directory say go to /usr/ports/).  I've read documentation that said type 
abc but never said where. And some that have said the configuration file but gave a 
path.
]

Thank you very much

Akbar

__
Introducing the New Netscape Internet Service. 
Only $9.95 a month -- Sign up today at http://isp.netscape.com/register

Netscape. Just the Net You Need. 

New! Netscape Toolbar for Internet Explorer
Search from anywhere on the Web and block those annoying pop-ups.
Download now at http://channels.netscape.com/ns/search/install.jsp
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Built-in lpr vs CUPS

2004-05-08 Thread Kai Grossjohann
The default setup is to include /usr/bin before /usr/local/bin in
$PATH.  This means that entering lpr -Pfoo doesn't work for printing
on my machine, I have to say /usr/local/bin/lpr -Pfoo.

It is obvious that I could change $PATH to mention /usr/local/bin
before /usr/bin, but is that the right solution?  Surely there is a
reason for /etc/login.conf to mention /usr/bin first.

Any thoughts are very much appreciated.

Kai

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Not needing the console for a system reload

2004-05-08 Thread Ph. Schulz
Is there a way to give a shutdown now; use /bin/sh; exit command 
from the command line if I'm logged in remotely? Or do I really need to 
use reboot and go through the whole hardware reinitialization?

 I don't think this is possible. The reason is (if I understand things 
correctly) that if you're in single user mode, the network isn't 
started, so there's no way of accessing the machine through ssh, rlogin 
or something similar.
 I think you're best off if you hook up a serial console to your 
machine and remotely access that console. There are commercial solutions 
for this but any low-end PC will do.

Phil.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: cdrw PIO4

2004-05-08 Thread w sx
Thanks you - Worked great!

--- Andreas Davour [EMAIL PROTECTED] wrote:
 On Sat, 8 May 2004, w sx wrote:
 
  Hi,
 
  I have a CDRW drive which is detected by the BIOS
 as
  UDMA2, but when FreeBSD boots it gets set to PIO4.
 
  Im using FreeBSD 4.7. Its attached using a ATA133
  compat cable, and its the only device on that
  controller.
 
  Does anyone have any tips on getting the CDRW
 drive
  set to UDMA mode?
 
  Please email me personally, since Im not
 subscribed to
  the list.
 
 As root try:
 # atacontrol mode 0 UDMA33
 
 for setting the disk 0 to UDMA33 mode. Try 'list'
 instead of 'mode' to see
 what disks you have.
 
 Hope that helps.
 
 /andreas
 
 === Emacs =
   mail: [EMAIL PROTECTED]
 Americans have different ways of saying things.
 They say 'elevator', we say 'lift' ... they say
 'President', we say 'stupid psychopathic git.'
 ===




__
Do you Yahoo!?
Win a $20,000 Career Makeover at Yahoo! HotJobs  
http://hotjobs.sweepstakes.yahoo.com/careermakeover 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: cdrw PIO4

2004-05-08 Thread w sx
Thank you! I used atacontrol to set it until I
rebooted... and after a reboot.. its detected
correctly.

--- Chuck Swiger [EMAIL PROTECTED] wrote:
 w sx wrote:
  Does anyone have any tips on getting the CDRW
 drive
  set to UDMA mode?
 
 Add the following to your /boot/loader.conf:
 
 hw.ata.atapi_dma=1
 
 ...and reboot.  You might also be able to use
 atacontrol.
 
 -- 
 -Chuck
 




__
Do you Yahoo!?
Win a $20,000 Career Makeover at Yahoo! HotJobs  
http://hotjobs.sweepstakes.yahoo.com/careermakeover 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: the most light weight X web browser?

2004-05-08 Thread Mark Weinem
On Sat, 08 May 2004, Harald Schmalzbauer wrote:

 Dillo! You really want to have a look at dillo. Increadibly fast and
 small, but with limitations (no SSL and such)

all true, but unfortunately it's crashing with bookmarking (the ports
version).


Ciao, Mark Weinem
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


vinum striped volume has corrupt plex, help needed

2004-05-08 Thread Lee Dilkie
Hi there,

I've been running a 5 disk vinum array (sripted, no redundancy) for a few
months now. It's composed of 5 scsi drives of 4G each. I bought a new 120G
ide drive, with the intention of copying over all the files from the vinum
array and retiring the array (the scsi drives are really loud).

All was fine until the file copy part. Shortly after starting, i started to
get scsi errors and the scsi system reset the drives and re-spun them up in
an attempt to provide data (this i could hear). Eventually vinum reported a
read error. My machine kinda locked up because there were swap partitions on
the scsi drives and things just went south when the OS couldn't swap
properly.

I rebooted and fsck'd my other partitions just fine but vinum reported that
the plex was corrupt and one of the subdisks was stale (see vinum list
output below). I also include the output from the command to read and parse
the vium table on each drive ( as describe at
http://www.vinumvm.org/vinum/how-to-debug.html ). it sure looks to me like
all the disks have the same vinum info.

When i tried to vinum start striped.p0.s1, most of the time i would get an
error Input/output error (5) but a couple of times the command hung (as it
is right now).

Also, I reconfured my scsi (2940uw) to the lowest transfer speed, disabled
wide negotation (these are wide fast drives), disabled disconnect and
disabled synchronous transfers. Basicly, i slowed them down as slow as they
can go. I am able to successfully read each drive (tested the first 1G of
each using dd if=/dev/da*s1e of=/dev/null bs=1m count=1000).

There were no write operations to the vinum volume when things crashed. I'm
hoping i can get vinum up and running again so i can copy off this data.

Question to the group. Would a vinum create using the original configuration
(i have the file) recover this situation so i could mount and read the disk?
Is there something else to do that will help?

TIA,

-lee

info follows:

# uname -a
FreeBSD spock.dilkie.com 4.10-PRERELEASE FreeBSD 4.10-PRERELEASE #1: Sun May
2 15:11:04 EDT 2004 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/SPOCK
i386

# vinum list

5 drives:
D a State: up   Device /dev/da0s1e  Avail: 1/4000 MB (0%)
D b State: up   Device /dev/da1s1e  Avail: 1/4000 MB (0%)
D c State: up   Device /dev/da2s1e  Avail: 1/4000 MB (0%)
D d State: up   Device /dev/da3s1e  Avail: 1/4000 MB (0%)
D e State: up   Device /dev/da4s1e  Avail: 1/4000 MB (0%)

1 volumes:
V striped   State: up   Plexes:   1 Size: 19 GB

1 plexes:
P striped.p0  S State: corrupt  Subdisks: 5 Size: 19 GB

5 subdisks:
S striped.p0.s0 State: up   PO:0  B Size:   3998 MB
S striped.p0.s1 State: R 0% PO:  373 kB Size:   3998 MB
*** Revive process for striped.p0.s1 has died ***
(NOTE, this originally reported stale)
S striped.p0.s2 State: up   PO:  746 kB Size:   3998 MB
S striped.p0.s3 State: up   PO: 1119 kB Size:   3998 MB
S striped.p0.s4 State: up   PO: 1492 kB Size:   3998 MB

# results of reading the first bit of each drive...
# for i in /dev/da0s1e /dev/da1s1e /dev/da2s1e /dev/da3s1e /dev/da4s1e; do
(dd if=$i skip=8 count=6|tr -d '\000-\011\200-\377'; echo)  log
done

IN VINOspock.dilkie.comcLg@@0WEVBJ  volume striped state up
plex name striped.p0 state corrupt org striped 746s vol striped
sd name striped.p0.s0 drive a len 8189588s driveoffset 265s state up plex
striped.p0 plexoffset 0s
sd name striped.p0.s1 drive b len 8189588s driveoffset 265s state stale plex
striped.p0 plexoffset 746s
sd name striped.p0.s2 drive c len 8189588s driveoffset 265s state up plex
striped.p0 plexoffset 1492s
sd name striped.p0.s3 drive d len 8189588s driveoffset 265s state up plex
striped.p0 plexoffset 2238s
sd name striped.p0.s4 drive e len 8189588s driveoffset 265s state up plex
striped.p0 plexoffset 2984s

IN [EMAIL PROTECTED]
@}
WEVBJ  volume striped state up
plex name striped.p0 state corrupt org striped 746s vol striped
sd name striped.p0.s0 drive a len 8189588s driveoffset 265s state up plex
striped.p0 plexoffset 0s
sd name striped.p0.s1 drive b len 8189588s driveoffset 265s state stale plex
striped.p0 plexoffset 746s
sd name striped.p0.s2 drive c len 8189588s driveoffset 265s state up plex
striped.p0 plexoffset 1492s
sd name striped.p0.s3 drive d len 8189588s driveoffset 265s state up plex
striped.p0 plexoffset 2238s
sd name striped.p0.s4 drive e len 8189588s driveoffset 265s state up plex
striped.p0 plexoffset 2984s

IN [EMAIL PROTECTED]@
WEVBJ  volume striped state up
plex name striped.p0 state corrupt org striped 746s vol striped
sd name striped.p0.s0 drive a len 8189588s driveoffset 265s state up plex
striped.p0 plexoffset 0s
sd name striped.p0.s1 drive b len 8189588s 

Re: cdrw PIO4

2004-05-08 Thread Andreas Davour
On Sat, 8 May 2004, w sx wrote:

 Thanks you - Worked great!

Glad I could be of help.

Happy hacking!

/Andreas

=== Emacs =
mail: [EMAIL PROTECTED]
Americans have different ways of saying things.
They say 'elevator', we say 'lift' ... they say
'President', we say 'stupid psychopathic git.'
===
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Not needing the console for a system reload

2004-05-08 Thread Paul Hoffman
At 7:07 PM +0200 5/8/04, Ph. Schulz wrote:
Is there a way to give a shutdown now; use /bin/sh; exit 
command from the command line if I'm logged in remotely? Or do I 
really need to use reboot and go through the whole hardware 
reinitialization?

 I don't think this is possible. The reason is (if I understand 
things correctly) that if you're in single user mode, the network 
isn't started, so there's no way of accessing the machine through 
ssh, rlogin or something similar.
Exactly right. That's why I want a script that starts the process 
while I'm logged in over the network, but finishes the process even 
after I'm kicked off.

 I think you're best off if you hook up a serial console to your 
machine and remotely access that console. There are commercial 
solutions for this but any low-end PC will do.
That is massive overkill for something that should be much simpler 
and hopefully not involve new hard ware.

--Paul Hoffman
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Looking for Developers...

2004-05-08 Thread dgstudios
Are you a Developer?

http://207.36.55.56/DG/dgdesk.htm


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Built-in lpr vs CUPS

2004-05-08 Thread Matthew Seaman
On Sat, May 08, 2004 at 06:55:54PM +0200, Kai Grossjohann wrote:
 The default setup is to include /usr/bin before /usr/local/bin in
 $PATH.  This means that entering lpr -Pfoo doesn't work for printing
 on my machine, I have to say /usr/local/bin/lpr -Pfoo.
 
 It is obvious that I could change $PATH to mention /usr/local/bin
 before /usr/bin, but is that the right solution?  Surely there is a
 reason for /etc/login.conf to mention /usr/bin first.

Most of the system assumes it's using the utilities that come with it:
ie. the contents of /usr/bin.  Equivalently named programs could well
be installed into /usr/local/bin, and those need not behave exactly
the same, so for consistencies' sake, having /usr/bin first is
generally better.

However, that's not always what's required, and putting /usr/local/bin
before /usr/bin in your path might be the right solution for certain
user accounts. (Real users, not system ones)
 
 Any thoughts are very much appreciated.

An alternative is to set up some shell aliases for those commands:

% alias lpr /usr/local/bin/lpr

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   26 The Paddocks
  Savill Way
PGP: http://www.infracaninophile.co.uk/pgpkey Marlow
Tel: +44 1628 476614  Bucks., SL7 1TH UK


pgp7KBrMTroeG.pgp
Description: PGP signature


Re: the most light weight X web browser?

2004-05-08 Thread Christopher Nehren
On Sat, 8 May 2004 02:28:32 -0700, Roop Nanuwa scribbled these
curious markings:

Take a look at Opera. It is extremely lightweight in both size, memory
footprint and CPU usage. It also has a built-in kiosk mode which would
probably be perfectly suited for use in the tea house.

... right. Opera is a kitchen sink suite just like Mozilla.
That, and it's the ugliest thing on the planet -- even worse than
anything Apple's ever released, IMO.

If you want lightweight and fast, use links -g or Dillo. Maybe w3m.

-- 
I abhor a system designed for the user, if that word is a coded
pejorative meaning stupid and unsophisticated.  -- Ken Thompson
-
Unix is user friendly. However, it isn't idiot friendly.
-
Please CC me in all replies, even if I'm on the relevant list(s).


pgpxMA3c7znqn.pgp
Description: PGP signature


Re: FreeBSD 5.2.1: Booting Issue

2004-05-08 Thread Kent Stewart
On Saturday 08 May 2004 01:17 pm, Silencium68 wrote:
 Hello,

 I am trying to setup FreeBSD 5.2.1 on a PC, which is equipped with

   * AMD K6/233
   * 256 MB RAM
   * Adaptec AHA-1542 (SCSI-Id #7, I/O 0x0330, IRQ 15, DMA 0)
   * RealTek RTL8139
   * Seagate ST34520N (SCSI-Id #0)
   * Quantum Fireball 540S (SCSI-Id #1)
   * Matshita CR-8005A (SCSI-Id #6)
   * SoundBlaster SB2 (I/O 0x0220, IRQ 2, DMA 1)
   * 1,44 MB/3,5 Floppy

 Booting from CDROM doesn't work, so I created two floppies, one made
 from kern.flp, the other made from mfsroot.flp, but unfortunately
 booting from the floppies doesn't work either! After replacing the
 boot floppy with the one containing the root file system, the kernel
 says something like

   AHA invalid DMA setting

 and stops after some time asking with file system to continue with.
 When going for ufs:md0 I am ending with the sysinstall, but I can't
 install anything because not a single disk can be found!

 How can I solve this one?

Look at http://www.freebsd.org/releases/5.2.1R/hardware-i386.html#AEN65

You may have to set the device hints like they describe in the man page 
for ahc. I think they are located in /boot/device.hints but I don't 
have my 5-current system running right now.

Also, you want to read the sbc man page and setup your SoundBlaster 
using those defaults. If you use the defaults, it is much easier. These 
are all available off of the freebsd 5.2.1 web site.

If these hints don't work and a more knowledgeable answer(s) popup, you 
should ask on freebsd-current. This isn't a -hackers problem.

Kent

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: tr A-Z a-z

2004-05-08 Thread Jose Lima
I use:

echo $Z | tr '[a-z' '[A-Z]'

Jose Lima


On Fri, 2004-05-07 at 03:53, Christoph Kukulies wrote:
 Strange: I was used to do upper case lower case conversion always like this
 and it suddenly doesn't work anymore:
 
 $ echo Z | tr [A-Z] [a-z]
 
 
 
 --
 Chris Christoph P. U. Kukulies kuku_at_kukulies.org
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: tr A-Z a-z

2004-05-08 Thread Julien Gabel
 Strange: I was used to do upper case lower case conversion always like
 this and it suddenly doesn't work anymore:

 $ echo Z | tr [A-Z] [a-z]

You can use special classes in this case too:
 $ echo Zz | tr [:upper:] [:lower:]

-- 
-jpeg.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: vinum striped volume has corrupt plex, help needed

2004-05-08 Thread Greg 'groggy' Lehey
On Saturday,  8 May 2004 at 13:37:42 -0400, Lee Dilkie wrote:
 Hi there,

 I've been running a 5 disk vinum array (sripted, no redundancy) for a few
 months now. It's composed of 5 scsi drives of 4G each. I bought a new 120G
 ide drive, with the intention of copying over all the files from the vinum
 array and retiring the array (the scsi drives are really loud).

 All was fine until the file copy part. Shortly after starting, i started to
 get scsi errors and the scsi system reset the drives and re-spun them up in
 an attempt to provide data (this i could hear). Eventually vinum reported a
 read error. My machine kinda locked up because there were swap partitions on
 the scsi drives and things just went south when the OS couldn't swap
 properly.

 I rebooted and fsck'd my other partitions just fine but vinum reported that
 the plex was corrupt and one of the subdisks was stale (see vinum list
 output below). I also include the output from the command to read and parse
 the vium table on each drive ( as describe at
 http://www.vinumvm.org/vinum/how-to-debug.html ). it sure looks to me like
 all the disks have the same vinum info.

 When i tried to vinum start striped.p0.s1, most of the time i would get an
 error Input/output error (5) but a couple of times the command hung (as it
 is right now).

It would be interesting to see the ps -l output for that process and
any other Vinum-related processes.

 Also, I reconfured my scsi (2940uw) to the lowest transfer speed,
 disabled wide negotation (these are wide fast drives), disabled
 disconnect and disabled synchronous transfers. Basicly, i slowed
 them down as slow as they can go. I am able to successfully read
 each drive (tested the first 1G of each using dd if=/dev/da*s1e
 of=/dev/null bs=1m count=1000).

That might work for a while.

 There were no write operations to the vinum volume when things
 crashed. I'm hoping i can get vinum up and running again so i can
 copy off this data.

Vinum protects you by making it difficult to access data of dubious
integrity.

 Question to the group. Would a vinum create using the original
 configuration (i have the file) recover this situation so i could
 mount and read the disk?

Yes.

 Is there something else to do that will help?

Yes.  Do:

 vinum - setstate up striped.p0.s1 striped.p0

When you're happy with the data, do:

 vinum - setdaemon 4
 vinum - saveconfig

Greg
--
When replying to this message, please copy the original recipients.
If you don't, I may ignore the reply or reply to the original recipients.
For more information, see http://www.lemis.com/questions.html
Note: I discard all HTML mail unseen.
Finger [EMAIL PROTECTED] for PGP public key.
See complete headers for address and phone numbers.


pgpI7BzE2YxRl.pgp
Description: PGP signature


Re: Built-in lpr vs CUPS

2004-05-08 Thread Andreas Kohn
On Sat, 2004-05-08 at 18:55, Kai Grossjohann wrote:
 The default setup is to include /usr/bin before /usr/local/bin in
 $PATH.  This means that entering lpr -Pfoo doesn't work for printing
 on my machine, I have to say /usr/local/bin/lpr -Pfoo.
 
 It is obvious that I could change $PATH to mention /usr/local/bin
 before /usr/bin, but is that the right solution?  Surely there is a
 reason for /etc/login.conf to mention /usr/bin first.
 
 Any thoughts are very much appreciated.
Hi,

from /usr/ports/print/cups-lpr/Makefile:

.ifndef CUPS_OVERWRITE_BASE
@${ECHO_MSG} ***
@${ECHO_MSG} You can define CUPS_OVERWRITE_BASE=yes in your
@${ECHO_MSG} make.conf to remove base system lpr tools from
@${ECHO_MSG} PATH search. In this case it is recommended to
@${ECHO_MSG} also define NO_LPR=yes, to not write base lpr
@${ECHO_MSG} binaries during next make world
@${ECHO_MSG} ***

That could be a solution to your problem (If I understood it correctly,
that is)

HTH,
Andreas


signature.asc
Description: This is a digitally signed message part


Re: the most light weight X web browser?

2004-05-08 Thread Viktor Lazlo
On Sat, 8 May 2004, Zhang Weiwu wrote:

 Hello. My friend is running a tea house, she want to put her ancient
 Pentium 100 notebook (24MB memory) running FreeBSD 4.9, on the bar so
 customers can use it check mails and browse the web. (and I want to help
 her.) She want it to just function as a browser machine, she don't even
 need a window manager, the X starts up just to run a browser. (However a
 memory saving window manager is okay, too.

 But such a slow notebook what browser do you suggest to use? The
 harddisk don't have much space after the OS is installed, and memory is
 pretty limited. Epiphany comes to my mind, but it depends on Mozilla and
 gtk. If there is an extremely light weighted browser that just use
 Athena (or can be compiled so) it would be better.

 Perhaps Epiphany is the only choice? If so can we make it even lighter?

For a browser, try:
(14:17:45 ~) $ cat /usr/ports/www/dillo/pkg-descr
Dillo is a web browser project completely written in C (currently the code
is based on gzilla-0.2.2's widget, and a new improved network engine
written from scratch).

Dillo is small; source is less than 360 kB and binary is less than 270 Kb.

Dillo aims to be a multiplatform browser alternative that's small,
stable, developer-friendly, usable, fast, and extensible.

Dillo is mainly based on GTK+ (GNOME is NOT required!)

Dillo is very fast!

WWW: http://www.dillo.org/

Cheers,

Viktor
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: cdrw PIO4

2004-05-08 Thread anubis
On Sun, 9 May 2004 3:17 am, w sx wrote:
 Thank you! I used atacontrol to set it until I
 rebooted... and after a reboot.. its detected
 correctly.

 --- Chuck Swiger [EMAIL PROTECTED] wrote:
  w sx wrote:
   Does anyone have any tips on getting the CDRW
 
  drive
 
   set to UDMA mode?
 
  Add the following to your /boot/loader.conf:
 
  hw.ata.atapi_dma=1
 
  ...and reboot.  You might also be able to use
  atacontrol.
 
  --
  -Chuck

 __
 Do you Yahoo!?
 Win a $20,000 Career Makeover at Yahoo! HotJobs
 http://hotjobs.sweepstakes.yahoo.com/careermakeover
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]


Have a look at man ata.  Here is the important part

 ATAPI devices are set to PIO mode by default because severe DMA 
problems are common even if the device capabilities indicate support.  
You can always try to set DMA mode on an ATAPI device using 
atacontrol(8), but be aware that your hardware might not support it 
and can potentially hang the entire system causing data loss.


Just incase you start having problems.


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: help configuring OpenGL

2004-05-08 Thread Alastair G. Hogge
On Sunday, 09 May 2004 09:21, Earl Larsen wrote:

 A: OK. With a little research I found the following:
 A: To build and install DRM, cd /usr/src/sys/modules/drm  make all install
 A:
 A: DRM == Direct Rendering modules. This will hopefully give you radeon.ko
 A:
 A: Check out http://people.freebsd.org/~anholt/dri/ for more info

 Sorry that I have not tried that sooner. I have bean busy. When I do the
 make all install I get the fallowing:

Hello. Please, once again CC the [EMAIL PROTECTED] when replying

 main# make all install
 === mga
 Warning: Object directory not changed from
 original /usr/src/sys/modules/drm/mga
 cc -O2 -pipe -ffast-math -march=pentiumpro  -D_KERNEL -DKLD_MODULE
 -nostdinc -I-   -I. -I@ -I@/../include -finline-limit=8000 -fno-common
 -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Wall
 -Wredundant-decls -Wnested-externs -Wstrict-prototypes 
 -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual 
 -fformat-extensions -std=c99 -c
 /usr/src/sys/modules/drm/mga/../../../dev/drm/mga_drv.c
 cc1: Invalid option `no-align-long-strings'
 cc1: unknown C standard `c99'
 cc1: Invalid option `-finline-limit=8000'
 *** Error code 1

 Stop in /usr/src/sys/modules/drm/mga.
 *** Error code 1

 Stop in /usr/src/sys/modules/drm.
 main#
Sorry, I can't help you. I've never encountered such a problem before. You may 
need to run a buildworld first, or a make clean in modules/drm or even cvsup 
FreeBSD 4.9-RELEASE. 

Try editing the Makefile in /usr/src/sys/modules/drm to reflect:
SUBDIR = radeon
and see what happenes. It looks like make is failing at the Matrox module(mga)


-Al
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: the most light weight X web browser?

2004-05-08 Thread Robert Storey

Is there any way to get links -g to run without starting X? If I run
it in an Xterm, it's fine, but at the console it just exits with an error:

  [EMAIL PROTECTED]:~ links -g
  Could not initialize any graphics driver. Tried the following drivers:
  x:
  Can't open display (null)

Would be nice on my laptop if I could make it run in graphics mode without
actually
starting X.

regards,
Robert

  ever had a look at links' graphics mode (-g)? It's blazing fast and
  really small - links just against xlib.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Built-in lpr vs CUPS

2004-05-08 Thread Robert Storey
Dear Kai,

This problem can be solved by making file /usr/bin/lp* non-executable, like
this:
 
  chmod -x /usr/bin/lp*

regards,
Robert

On Sat, 08 May 2004 18:55:54 +0200
Kai Grossjohann [EMAIL PROTECTED] wrote:

 The default setup is to include /usr/bin before /usr/local/bin in
 $PATH.  This means that entering lpr -Pfoo doesn't work for printing
 on my machine, I have to say /usr/local/bin/lpr -Pfoo.
 
 It is obvious that I could change $PATH to mention /usr/local/bin
 before /usr/bin, but is that the right solution?  Surely there is a
 reason for /etc/login.conf to mention /usr/bin first.
 
 Any thoughts are very much appreciated.
 
 Kai
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: best cd ripping option.

2004-05-08 Thread Conrad Sabatier

On 05-May-2004 Lex Hider wrote:
 OK, there are 2 things I'd like help with:
 
 1)
 What's the recommended or best way for ripping audio
 CDs in FreeBSD-5.X? That is putting music CD to HD for
 encoding ogg/flac/mp3 etc.
 
 cdparanoia/cdda2wav/dagrab or dding /dev/acd0tX?

I've been using the dd method ever since it first became available.  Have
never had a need for anything else since.

Just be aware that, for encoding from the resulting raw pcm data to mp3 or
whatever other format, you'll need to let the encoder know to reverse the
endianness, else all you'll wind up with is static.

-- 
Conrad Sabatier [EMAIL PROTECTED] - In Unix veritas

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: the most light weight X web browser?

2004-05-08 Thread Roop Nanuwa
On Sat, 8 May 2004 16:35:55 -0400, Christopher Nehren
[EMAIL PROTECTED] wrote:
 
 ... right. Opera is a kitchen sink suite just like Mozilla.
 That, and it's the ugliest thing on the planet -- even worse than
 anything Apple's ever released, IMO.
 

It is feature-packed, that's true. However, feature-packed and
slow/bloated are not necessarily synonymous. It is blazing fast and
low on requirements - what difference does it make if it has
extraneous features? Those features aren't hampering anything one
wants to accomplish if they don't make use of them.

As for looks, Opera is skinable. If you don't like the look, there's
nothing stopping you from choosing from hundreds of different skins.

--roop
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


OT - Test

2004-05-08 Thread Chris
Pardon the intrusion. I have not gotten anything in a few days, and the list 
site does not show bounces. 

So - this is just a test.

Again, sorry everyone.

-- 
Best regards,
Chris
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: the most light weight X web browser?

2004-05-08 Thread Kirk Strauser
At 2004-05-08T09:21:36Z, Zhang Weiwu [EMAIL PROTECTED] writes:

 But such a slow notebook what browser do you suggest to use? The
 harddisk don't have much space after the OS is installed, and memory
 is pretty limited.

Does the browser *have* to run on the laptop itself, or could you configure
it as a thin client to a more powerful computer somewhere else?  I had great
luck getting a Pentium 75 with 12MB of RAM to run VNC in VGA mode (no X at
all).
-- 
Kirk Strauser

94 outdated ports on the box,
 94 outdated ports.
 Portupgrade one, an hour 'til done,
 82 outdated ports on the box.


pgpO0RqBSdsXS.pgp
Description: PGP signature


Problem transporting signed emails

2004-05-08 Thread Edwin Groothuis
Greetings,

I've been playing with signed emails (S/MIME, OpenSSL etc) but am
running into an annoying problem: openssl smime -sign signs the
text, but it adds ^M's at the end of the lines of the original text.
When piping it through to the MTA, somewhere the ^M's are lost and
the signature of the file including becomes invalid.

[~/openssl] [EMAIL PROTECTED]cat test.txt
This is a test.
This is a text.

[~/openssl] [EMAIL PROTECTED]openssl smime -sign -text -signer mycert.pem -in 
test.txt  test.msg
Enter pass phrase for mycert.pem:

And then in vi:

 8 
MIME-Version: 1.0
Content-Type: multipart/signed; protocol=application/x-pkcs7-signature; micalg
=sha1; boundary=259958A68922550377544CEFAD9013E9

This is an S/MIME signed message

--259958A68922550377544CEFAD9013E9
Content-Type: text/plain^M
^M
This is a test.^M
This is a text.^M

--259958A68922550377544CEFAD9013E9
 8 

Piping this through sendmail (postfix) for delivery on the same
machine gives me the same text with the ^M's. Piping this through
sendmail for delivery on a different machine gives me the text
without the ^M's, which invalidates the signature on the email.

My questions are... has somebody else ever fought with signed emails
like this and did they see the same behaviour? And how did you
overcome this problem.

Edwin

-- 
Edwin Groothuis  |Personal website: http://www.mavetju.org
[EMAIL PROTECTED]|  Weblog: http://weblog.barnet.com.au/edwin/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Built-in lpr vs CUPS

2004-05-08 Thread Kirk Strauser
At 2004-05-08T16:55:54Z, Kai Grossjohann [EMAIL PROTECTED] writes:

 The default setup is to include /usr/bin before /usr/local/bin in $PATH.
 This means that entering lpr -Pfoo doesn't work for printing on my
 machine, I have to say /usr/local/bin/lpr -Pfoo.

Is there any reason you can't delete /usr/bin/lp* and related stuff?  I
don't have lpr installed at all on my server.
-- 
Kirk Strauser

94 outdated ports on the box,
 94 outdated ports.
 Portupgrade one, an hour 'til done,
 82 outdated ports on the box.


pgpUq3ASxZk4e.pgp
Description: PGP signature


Re: Japanese Input (More Specific)

2004-05-08 Thread Luke Kearney
On Sat, 08 May 2004 12:49:24 -0400
[EMAIL PROTECTED] granted us these pearls of wisdom:

 Please disregard last question because it is a little too vague. My apologies.
 
 The Question
 [
 I would appreciate it very much if someone could provide a step-by-step guide for 
 enabling Japanese input into a terminal window, using a jvim or other japanese 
 enabled vi-like editors.  I'm not particular about the server (canna, wnn6, etc.) it 
 just has to work.  Also, although i'd prefer to stick with a vi-like editor, i would 
 be ok with an emacs solution as well.
 ]
 
 Some Information
 [
 I'm currently using 
  - FreeBSD 4.9
  - Enlightenment 0.16
  - i386 Architecture
 ]
  

http://home.nyc.rr.com/computertaijutsu/jpninpt.html
http://redundancy.redundancy.org/fbsd_japanese.html
http://tronweb.super-nova.co.jp/jpnimintro.html

are the main URL's I used to get it working however there are _so_ many
variables. You need to work through this for yourself. A tip if you will
is to use Mozilla which seems to live with the JP input better than
anything else.


 My Handicap
 [
 I'm very new, so please, try not to gloss over things (e.g. rather than say go to 
 the ports directory say go to /usr/ports/).  I've read documentation that said 
 type abc but never said where. And some that have said the configuration file 
 but gave a path.
 ]
 
 Thank you very much
 
 Akbar

Nope, your handicap is your inability to google for information. This is
not an OS that does everything for you. You have to be prepared to read,
try, accept that what you tried didn't work first time, try again, read
more. JP input in FreeBSD is once you get it,is not particularly tough
but if you won't even google for information then you really are in a
tight spot and everything you try to do with Unix will be a chore. 

There are plenty of good places on the web that will teach you how to do
this but in order to be able to get it working correctly you need to
understand how a Unix machine deals with Kanji and to understand the
relationship between the environment settings and the OS. 

Be prepared to read more, you will get it eventually.

-- 
Luke Kearney [EMAIL PROTECTED]


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Problems resolving sites in browsers under KDE

2004-05-08 Thread Dragoncrest
Still looking for answers.  If anyone has any ideas, I would be 
very grateful to hear them.  Thanks.

At 10:09 AM 5/7/04 -0400, Dragoncrest wrote:
Just recently I've started having a DNS issue of sorts on two of 
my workstations running KDE 3.2 on Freebsd 4.9 and using both Mozilla and 
Firebird for browsers.  What happens is I'll be surfing around and 
suddenly I'll hit something and I can't go forward, I can't go back, I 
can't go anywhere.  It just sits there saying resolving host 
whatever.com and does this for like 30 seconds, then finally it resolves 
it and continues on.  Then it'll gag again on something else in the page 
as it's loading and do that all over again.  Then I might be fine for 
another 5-15 minutes before it does it again.  When this happens I can 
jump into a console either via KDE or control-alt-f1 and I can surf all I 
want to using lynx, I can resolve sites, I can telnet, or do whatever I 
want.  But my browsers just sit there and look stupid.  Is there 
something I'm missing?  What could be causing this.  It's been occuring 
periodically before this, but it's really gotten bad now.  So far all I 
can tell that's affected is Mozilla and Firebird.  Any ideas guys?

Oh, yes.  I did test this in Konqueror and it's doing the same 
thing in there too.  So the issue is not unique to just Mozilla and 
Firebird.  But from what I can see, not much else is affected on the 
network level.  Is there ways I can test things in KDE that might give me 
some more information as to what's causing this?  Or is there some 
network setting somewhere that I should look at?  Maybe something that 
might affect my ability to surf smoothly?  I know it's not my internet 
connection because I can surf just fine in my windows box that sits right 
next ot it on the same net connection.  Any input would be welcome.

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: cdrw PIO4

2004-05-08 Thread Chuck Swiger
anubis wrote:
On Sun, 9 May 2004 3:17 am, w sx wrote:
[ ... ]
Have a look at man ata.  Here is the important part
ATAPI devices are set to PIO mode by default because severe DMA 
problems are common even if the device capabilities indicate support.  
You can always try to set DMA mode on an ATAPI device using 
atacontrol(8), but be aware that your hardware might not support it 
and can potentially hang the entire system causing data loss.
While this advice was reasonable some years ago-- and to the extent that 
broken ATA hardware still exists may still be relevant now-- but please note 
that the Original Poster is trying to use a CD/RW burner.  :-)

It doesn't matter too much if you happen to read a CD slowly, but one ought to 
use DMA rather than PIO when burning CDs or DVDs.

--
-Chuck
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Built-in lpr vs CUPS

2004-05-08 Thread Rob
Kirk Strauser wrote:
At 2004-05-08T16:55:54Z, Kai Grossjohann [EMAIL PROTECTED] writes:

The default setup is to include /usr/bin before /usr/local/bin in $PATH.
This means that entering lpr -Pfoo doesn't work for printing on my
machine, I have to say /usr/local/bin/lpr -Pfoo.

Is there any reason you can't delete /usr/bin/lp* and related stuff?  I
don't have lpr installed at all on my server.
How about this in /etc/make.conf:
 CUPS_OVERWRITE_BASE=yes
 NO_LPR=yes
that will give directions to the cups port and the make world process.
Rob.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Scripted fdisk/slice/fs generation?

2004-05-08 Thread Tim Pushor
Hi all,
I do CPIO style image backups of my FreeBSD systems. In the event that I 
need to restore one of these backups, I usually use the FreeBSD 
installation media to fdisk and create filesystems, then mount the new 
filesystems and restore the CPIO archive.

This system works great for me, but I would like to automate the 
restoration process. I have worked a little with fdisk and disklabel 
back in FreeBSD 2.x days (and trying early versions of OpenBSD) but 
wouldn't really know where to start automating that process. ( I do 
write code, but the thought of trying to use disklabel to read the 
geometry of the disks, calculate sizes, cylinder boundaries, etc give me 
a headache )

I would really like to specify minimum sizes of partitions and 
filesystems, with one having all the excess (rather than having to count 
cylinders).

I've done some searching on Google and havn't really come up with 
anything conclusive.

Can anyone point me in the right direction?
Thanks!,
Tim
(Please CC me on the reply as I don't subscribe to this list)
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: help configuring OpenGL

2004-05-08 Thread Kris Kennaway
On Sun, May 09, 2004 at 10:19:07AM +1000, Alastair G. Hogge wrote:

 Hello. Please, once again CC the [EMAIL PROTECTED] when replying
 
  main# make all install
  === mga
  Warning: Object directory not changed from
  original /usr/src/sys/modules/drm/mga
  cc -O2 -pipe -ffast-math -march=pentiumpro  -D_KERNEL -DKLD_MODULE
  -nostdinc -I-   -I. -I@ -I@/../include -finline-limit=8000 -fno-common
  -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Wall
  -Wredundant-decls -Wnested-externs -Wstrict-prototypes 
  -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual 
  -fformat-extensions -std=c99 -c
  /usr/src/sys/modules/drm/mga/../../../dev/drm/mga_drv.c
  cc1: Invalid option `no-align-long-strings'
  cc1: unknown C standard `c99'
  cc1: Invalid option `-finline-limit=8000'
  *** Error code 1
 
  Stop in /usr/src/sys/modules/drm/mga.
  *** Error code 1
 
  Stop in /usr/src/sys/modules/drm.
  main#
 Sorry, I can't help you. I've never encountered such a problem before. You may 
 need to run a buildworld first, or a make clean in modules/drm or even cvsup 
 FreeBSD 4.9-RELEASE. 

Looks like you're trying to compile a 5.x module on 4.x.

Kris


pgpu9sAl9mbiq.pgp
Description: PGP signature


trouble compiling gnome 2.6 from ports on fresh 5.2.1 release install

2004-05-08 Thread Jeronimo Romero


1-Installed 5.2.1 release
2-installed Developer release (without X)
3-cvsuped ports tree
4-tried compiling gnome 2.6 meta port from ports
it kept on failing at pango 

anybody have any ideas as to why???

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Problems resolving sites in browsers under KDE

2004-05-08 Thread mailist
I had a similar, but different problem with 4.7 which impacted all network 
traffic but was most noticible using Konqueror.  I was getting similar pauses 
regardless of the application I ran.  Unless you are running BIND and 
attempting to get at zones that you adminster, I don't think this is a DNS 
issue.

In my case, the problem was a high rate of collision and dropped packets 
between the NIC and the switch it was connected to.  I changed the media 
information for my network card from 100TX to 10baseT using ifconfig() and 
that seems to have fixed the problem.  You might try this just for the heck 
of it to see if it helps your situation.


 At 10:09 AM 5/7/04 -0400, Dragoncrest wrote:
  Just recently I've started having a DNS issue of sorts on two of
  my workstations running KDE 3.2 on Freebsd 4.9 and using both Mozilla and
  Firebird for browsers.  What happens is I'll be surfing around and
  suddenly I'll hit something and I can't go forward, I can't go back, I
  can't go anywhere.  It just sits there saying resolving host
  whatever.com and does this for like 30 seconds, then finally it resolves
  it and continues on.  Then it'll gag again on something else in the page
  as it's loading and do that all over again.  Then I might be fine for
  another 5-15 minutes before it does it again.  When this happens I can
  jump into a console either via KDE or control-alt-f1 and I can surf all I
  want to using lynx, I can resolve sites, I can telnet, or do whatever I
  want.  But my browsers just sit there and look stupid.  Is there
  something I'm missing?  What could be causing this.  It's been occuring
  periodically before this, but it's really gotten bad now.  So far all I
  can tell that's affected is Mozilla and Firebird.  Any ideas guys?
 
  Oh, yes.  I did test this in Konqueror and it's doing the same
  thing in there too.  So the issue is not unique to just Mozilla and
  Firebird.  But from what I can see, not much else is affected on the
  network level.  Is there ways I can test things in KDE that might give me
  some more information as to what's causing this?  Or is there some
  network setting somewhere that I should look at?  Maybe something that
  might affect my ability to surf smoothly?  I know it's not my internet
  connection because I can surf just fine in my windows box that sits right
  next ot it on the same net connection.  Any input would be welcome.
 
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
  [EMAIL PROTECTED]

 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Problem transporting signed emails

2004-05-08 Thread Giorgos Keramidas
On 2004-05-09 11:57, Edwin Groothuis [EMAIL PROTECTED] wrote:
 Greetings,

 I've been playing with signed emails (S/MIME, OpenSSL etc) but am
 running into an annoying problem: openssl smime -sign signs the
 text, but it adds ^M's at the end of the lines of the original text.
 When piping it through to the MTA, somewhere the ^M's are lost and
 the signature of the file including becomes invalid.

[snip]

 --259958A68922550377544CEFAD9013E9
 Content-Type: text/plain^M
 ^M
 This is a test.^M
 This is a text.^M

 --259958A68922550377544CEFAD9013E9
  8 

 Piping this through sendmail (postfix) for delivery on the same
 machine gives me the same text with the ^M's. Piping this through
 sendmail for delivery on a different machine gives me the text
 without the ^M's, which invalidates the signature on the email.

Try base64-encoding the signed message, instead of piping it through as
text/plain.  The ^M characters [ascii:13] at the end of lines terminated
with ^J [ascii:10] can be intepreted by network servers and/or clients
as part of EOL, the end of the line.  A good explanation of why this
might happen is found in [Richard Stevens, TCP/IP Illustrated, Vol. I,
pp. 401]:

: NVT ASCII
:
: The term NVT ASCII refers to the 7-bit U.S. variant of the ASCII
: character set used throughout the Internet protocol suite.  Each 7-bit
: character is sent as an 8-bit byte, with the high-order bit set to 0.
: An end-of-line is transmitted as the 2-character sequence CR
: (carriage return) followed by an LF (line feed).  We show this as \r\n.
: A carriage return is transmitted as the 2-character sequence CR followed
: by a NUL (byte of 0).  We show this as \r\0.

Giorgos
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Problems resolving sites in browsers under KDE

2004-05-08 Thread Viktor Lazlo
On Sun, 9 May 2004 [EMAIL PROTECTED] wrote:

 I had a similar, but different problem with 4.7 which impacted all network
 traffic but was most noticible using Konqueror.  I was getting similar pauses
 regardless of the application I ran.  Unless you are running BIND and
 attempting to get at zones that you adminster, I don't think this is a DNS
 issue.

 In my case, the problem was a high rate of collision and dropped packets
 between the NIC and the switch it was connected to.  I changed the media
 information for my network card from 100TX to 10baseT using ifconfig() and
 that seems to have fixed the problem.  You might try this just for the heck
 of it to see if it helps your situation.


  At 10:09 AM 5/7/04 -0400, Dragoncrest wrote:
   Just recently I've started having a DNS issue of sorts on two of
   my workstations running KDE 3.2 on Freebsd 4.9 and using both Mozilla and
   Firebird for browsers.  What happens is I'll be surfing around and
   suddenly I'll hit something and I can't go forward, I can't go back, I
   can't go anywhere.  It just sits there saying resolving host
   whatever.com and does this for like 30 seconds, then finally it resolves
   it and continues on.  Then it'll gag again on something else in the page
   as it's loading and do that all over again.  Then I might be fine for
   another 5-15 minutes before it does it again.  When this happens I can
   jump into a console either via KDE or control-alt-f1 and I can surf all I
   want to using lynx, I can resolve sites, I can telnet, or do whatever I
   want.  But my browsers just sit there and look stupid.  Is there
   something I'm missing?  What could be causing this.  It's been occuring
   periodically before this, but it's really gotten bad now.  So far all I
   can tell that's affected is Mozilla and Firebird.  Any ideas guys?
  
   Oh, yes.  I did test this in Konqueror and it's doing the same
   thing in there too.  So the issue is not unique to just Mozilla and
   Firebird.  But from what I can see, not much else is affected on the
   network level.  Is there ways I can test things in KDE that might give me
   some more information as to what's causing this?  Or is there some
   network setting somewhere that I should look at?  Maybe something that
   might affect my ability to surf smoothly?  I know it's not my internet
   connection because I can surf just fine in my windows box that sits right
   next ot it on the same net connection.  Any input would be welcome.

If everything outside of KDE responds normally to tcp/ip requests it's
obviously not DNS-related.  I vaguely remember having problems opening
browsers during the brief period I used KDE until I cleared /tmp and ~/ of
their mcop and dcop files, which seemed to fix it.  Give that a try.

Cheers,

Viktor
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


FreeBSD 5.2.1: Booting Issue

2004-05-08 Thread Silencium68
Hello,
I am trying to setup FreeBSD 5.2.1 on a PC, which is equipped with
* AMD K6/233
* 256 MB RAM
* Adaptec AHA-1542 (SCSI-Id #7, I/O 0x0330, IRQ 15, DMA 0)
* RealTek RTL8139
* Seagate ST34520N (SCSI-Id #0)
* Quantum Fireball 540S (SCSI-Id #1)
* Matshita CR-8005A (SCSI-Id #6)
* SoundBlaster SB2 (I/O 0x0220, IRQ 2, DMA 1)
* 1,44 MB/3,5 Floppy
Booting from CDROM doesn't work, so I created two floppies, one made 
from kern.flp, the other made from mfsroot.flp, but unfortunately 
booting from the floppies doesn't work either! After replacing the boot 
floppy with the one containing the root file system, the kernel says 
something like

AHA invalid DMA setting
and stops after some time asking with file system to continue with. 
When going for ufs:md0 I am ending with the sysinstall, but I can't 
install anything because not a single disk can be found!

How can I solve this one?
- Martin


PGP.sig
Description: PGP signature