Openoffice and diskless terminals

2004-08-19 Thread Livhu Tshisikule
Hi,

I have just installed Openoffice on my server that has a number of diskless 
terminals booting from it. Openoffice run on the server but not on the 
terminals. I have other applications that runs on the terminals without any 
problem. Any idea?

Regards
Livhu Tshisikule

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


Re: using cvsup

2004-08-19 Thread Josh Hansen
like someone mentioned, it doesnt matter where you put it.
my supfile is in /root, but its just preference.
ive noticed you keep mentioning that you wont be using X, and you
are thinking you need to deinstall your cvsup or something...
you dont have to do that, just use use -g when running cvsup to tell it 
not to use a gui.  for example, cvsup -g -L 2 path/to/supfile

Curtis Vaughan wrote:
I'm a little confused about using cvsup.  I'm referring to 2 resources 
(The Complete FreeBSD - 4th edition, and www,freebsd.org manual for 
cvsup).  BTW, I currently have FreeBSD 4.8 installed.

Ok, so, I know I need to edit a supfile and I have found all the 
examples. But it seems to me that it is advisable to put my own edited 
supfile in a particular directory.  What is the best or more common 
practice?
Maybe in the base directory: i.e.,  /usr/local/etc/cvsup/ ?

Note that I will not be using the gui.  I have not installed X windows 
(XFree86) as this is to be a server and I no intention of using any 
gui interface.

___
[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]


Trouble with ipfstat

2004-08-19 Thread Sathyanarayana Setty Badrinath

   Hi,
   I have installed freebsd 4.10 (i386) with ipfilter firewall. When I do
   a cvsup, compile kernel, install and restart with new kernel, I have
   trouble with ipfstat -t output. The source and destination ip
   address are a bunch of zeroes and not the actuals. ipfstat -t works
   well before running cvsup and kernel compilation. I have included dump
   various commands down in this mail.
   Advance thanks for the help !
   badri


   Sys53# uname -a
   FreeBSD Sys53.softland.co.in 4.10-STABLE FreeBSD 4.10-STABLE #1: Wed
   Aug 18 16:50:36 IST 2004

   Sys53# ipf -V
   ipf: IP Filter: v3.4.31 (336)
   Kernel: IP Filter: v3.4.35
   Running: yes
   Log Flags: 0 = none set
   Default: block all, Logging: available
   Active list: 1
   Sys53#ipfstat -t

   Sys53.softland.co.in - IP Filter: v3.4.31 - state top
   12:32:04
   Src = 0.0.0.0  Dest = 0.0.0.0  Proto = any  Sorted by = # bytes
   Source IP Destination IP ST   PR   #pkts
   #bytes   ttl
   0.0.0.0   0.0.0.0   50/1D   ip   10580
   8836110   -20:-
   0.0.0.0   0.0.0.0   70/44   ip   20024
   6037334   -20:-
   0.0.0.0   0.0.0.0   70/44 nb sp; ip   15334
   4984190   -20:-
   0.0.0.0   0.0.0.0   70/44   ip   14494
   4736824   -20:-
   0.0.0.0   0.0.0.0   70/44   ip   12714
   4153774   -20:-
   0.0.0.0   0.0.0.0   20/19   ip1166
   1135134   -20:-
   0.0.0.0   0.0.0.0nb sp;  70/44   ip
   2284675230   -20:-
   0.0.0.0   0.0.0.0   70/44   ip2278
   674894   -20:-
 _

   Block annoying pop ups! Empower your search! [1]Enrich your internet
   experience!

References

   1. http://g.msn.com/8HMBENIN/2746??PS=47575
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Research questions on FreeBSD 4.10

2004-08-19 Thread Jason Tan
Hi,
I am currently doing a research on FreeBSD 4.10 Release System for a 
presentation to an institution of 400 students.

I would like to enquire on several questions regarding the Operating System 
: -

- Process Management / Model
- Scheduling
 * Is it preemptive ?
 * Discuss the algorithm
- Threading model
 * User, kernel or hybrid?
- File System
 * Discuss more than one if applicable
- Device management
- Memory management
- Programming language supported (and recommendation)
- Networking support
- Security model
 * User security
 * File System security
- Compare the current version of the OS that you're researching with the 
previous and future version

We look forward for your speedy reply.
Thanks and Regards,
Jeff Neufield
_
Fast. Clear. Easy. The new MSN Search. http://search.msn.com.sg/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: most commonly used database

2004-08-19 Thread Andrew L. Gould
On Thursday 19 August 2004 12:50 am, Peter Ryan wrote:
 Has anyone got any idea what is the most
 commonly used database on freeBSD ?

 Is it mySql ?

 I was going to install it but the
 CPU utilitisation problems reported
 recently are a bit worrying.

 Thanks
 Peter

Hi Peter,

Caveat:  I am more familiar with postgresql.  It is currently my 
database of choice.  My opinions may show a certain bias.

Mysql is probably the most popular; but there are significant 
differences between database servers that are used on FreeBSD that 
should be considered.

The common, free, relational database servers include firebird, 
postgresql, mysql and sqlite.

Firebird is compatible with Borland's Interbase.

Mysql has the most documentation available in bookstores.  I don't think 
mysql is ACID compliant for all of its data table formats.  User 
administration is easier in mysql -- you can use wildcards when 
assigning database privileges to a user.

Postgresql is ACID compliant; and has features missing in mysql (boolean 
data type, stored procedures, nested queries, table inheritance, etc.). 
Postgresql is released under the BSD license.

I've heard that sqlite is really good as an embedded database.

If you need a crossplatform database:  firebird, mysql and sqlite have 
native versions available for Windows.  A Windows version of postgresql 
is in development.

There is much more information at each database's website.  Googling 
will take you far.

Please note that the version number for postgresql 7.5 has been changed 
to 8.0.0, which is currently in beta.

Best of luck,

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


Re: Research questions on FreeBSD 4.10

2004-08-19 Thread Siddhartha Jain
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Jason Tan wrote:
| Hi,
|
|
| I am currently doing a research on FreeBSD 4.10 Release System for a
| presentation to an institution of 400 students.
|
| I would like to enquire on several questions regarding the Operating
| System : -
|
| - Process Management / Model
| - Scheduling
|  * Is it preemptive ?
|  * Discuss the algorithm
| - Threading model
|  * User, kernel or hybrid?
| - File System
|  * Discuss more than one if applicable
| - Device management
| - Memory management
| - Programming language supported (and recommendation)
| - Networking support
| - Security model
|  * User security
|  * File System security
| - Compare the current version of the OS that you're researching with the
| previous and future version
|
|
| We look forward for your speedy reply.
|
|
| Thanks and Regards,
|
|
| Jeff Neufield
Jeff/Jason,
Spend $53.99 on
http://www.awprofessional.com/title/0201702452
And Google, google and google!!
HTH,
Siddhartha

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (MingW32)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
iD8DBQFBJF8POGaxOP7knVwRAsGuAJ0UqCXw6dVFkeeQH+9TF+qoKnsPtACdElfG
PYH9RfMFMaDOUQwTAWjSyK8=
=chIF
-END PGP SIGNATURE-
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


UDF / FreeBSD5.1

2004-08-19 Thread DELFNET - Sebastian Turzyski
Can you help me (or forward this message to proper person) about supporting filesystem 
UDF versions 1.02/1.50/2.01 by FreeBSD 5.2.1
I can mount DVD disc with any of above formats, but there is a problem with reading 
files written on this disc that are grater than 2GB?!
while copying using mc/cp/dd - 0 bytes are copied!!! :(

BUZZ / Poland

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


Freebsd 4.10 ncplogin + Netware 4.11 = nwerr 89fc

2004-08-19 Thread Feczak Szabolcs
When Im trying to log into the netware server, I got
nwerr = 89fc, which according to this source code

http://debian.fapeal.br/debian/pool/main/n/ncpfs/ncpfs_2.2.0.18-10.diff

means Unknown server, (even though this source is from a linux distro,
I think the netware error codes are more or less the same, but maybe
Im wrong). Its a bit wierd, since the ipx configuration looks ok,
I can see the server in ncplist and I can ipxping it. I use the
same login information (user,tree,servername,password) to access the
server as on win, which works see http://www.szabokft.hu/netware.jpg

I had success with ipx and ncpfs in the past on fbsd on another system,
so Im confused with this.

Any help appreciated, here are some more info to figure it out


Novel Netware config:

File Server Name: SZABO-SERVER-BAJCSY
IPX Internal Network number: 37DC
  Node Address: 0001
  Frame Type: VIRTUAL_LAN
  LAN protocol: IPX network 37DC

Compaq NetFlex-3  Netelligent Ethernet HSM
  Version 2.45 March 25, 1999
  Hardware setting: Slot 10001, I/O ports 2c20h to 2c2fh, Interrupt Ah
  Node Address: 00508BA0F270
  Frame type: ETHERNET_802.2
  Board Name: CPQNF3_1_E82
  LAN protocol: IPX network 8021
  
Compaq NetFlex-3  Netelligent Ethernet HSM
  Version 2.45 March 25, 1999
  Hardware setting: Slot 10001, I/O ports 2c20h to 2c2fh, Interrupt Ah
  Node Address: 00508BA0F270
  Frame type: ETHERNET_802.3
  Board Name: CPQNF3_1_E82
  LAN protocol: IPX network 8031
  

Freebsd config and commands I have tried:


# ifconfig xl0f2
xl0f2: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST mtu 1500
  ipx 8021H.a5e3efe20
  inet6 fe80::20a:5eff:fe3e:fe20%xl0f2 prefixlen 64 scopeid 0xa
  ether 00:0a:5e:3e:fe:20

# netstat -fipx -r  
Routing tables

IPX:
DestinationGatewayFlagsNetif Expire
default8021.508ba0f27 UG  xl0f2
8021.* 8021.a5e3efe20 U   xl0f2
8031.* 8021.508ba0f27 UG  xl0f2


# ncplist s 
Visible servers (from SZABO-SERVER-BAJCSY):
NameNetworkNode   Port
---   
SZABO-SERVER-BAJCSY 37DC:0001:0451

# ipxping -c 3 SZABO-SERVER-BAJCSY  
Ping SZABO-SERVER-BAJCSY (37dc.1H.9086H): 8 data bytes
8 bytes received: seq=0 time=0.256 ms
8 bytes received: seq=1 time=0.233 ms
8 bytes received: seq=2 time=0.212 ms

--- SZABO-SERVER-BAJCSY ping statistics ---
3 packets sent, 3 received, 0% packets loss
round-trip min/avg/max = 0.212/0.234/0.256

# ncplogin -S SZABO-SERVER-BAJCSY -U user28 -T SZABO-SERVER-BAJCSY-TREE
Netware password:
ncplogin: Could not login to server SZABO-SERVER-BAJCSY: nwerr = 89fc

# uname -a  
FreeBSD backup.sdi.hu 4.10-RELEASE-p2 FreeBSD 4.10-RELEASE-p2 #2: Wed Aug 18 20:08:14 
CEST 2004 [EMAIL PROTECTED]:/mnt/data/obj/mnt/data/cvs/src/sys/BACKUP  i386

# pkg_info| grep ncp
ncplib-1.3.4Client for Novell NetWare servers

dmesg attached in txt

-- 
  _(_)_
 (_. o_)F3CZ0
   (_,) http://feczo.nmi.rulez.org
  ()__
  // //

ACPI debug layer 0x0  debug level 0x0
Copyright (c) 1992-2004 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD 4.10-RELEASE-p2 #2: Wed Aug 18 20:08:14 CEST 2004
[EMAIL PROTECTED]:/mnt/data/obj/mnt/data/cvs/src/sys/BACKUP
Timecounter i8254  frequency 1193182 Hz
Timecounter TSC  frequency 1830014130 Hz
CPU: AMD Athlon(tm) XP 2500+ (1830.01-MHz 686-class CPU)
  Origin = AuthenticAMD  Id = 0x6a0  Stepping = 0
  
Features=0x383fbffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR,SSE
  AMD Features=0xc040AMIE,DSP,3DNow!
real memory  = 268369920 (262080K bytes)
avail memory = 256397312 (250388K bytes)
Preloaded elf kernel kernel at 0xc046c000.
Pentium Pro MTRR support enabled
md0: Malloc disk
Using $PIR table, 11 entries at 0xc00fce20
acpi0: Nvidia AWRDACPI on motherboard
acpi0: power button is handled as a fixed feature programming model.
Timecounter ACPI-fast  frequency 3579545 Hz
acpi_cpu0: CPU on acpi0
acpi_button0: Power Button on acpi0
acpi_timer0: 24-bit timer at 3.579545MHz port 0x1008-0x100b on acpi0
npx0: math processor on motherboard
npx0: INT 16 interface
pcib0: Host to PCI bridge on motherboard
pci0: PCI bus on pcib0
pci0: unknown card (vendor=0x10de, dev=0x01eb) at 0.1
pci0: unknown card (vendor=0x10de, dev=0x01ee) at 0.2
pci0: unknown card (vendor=0x10de, dev=0x01ed) at 0.3
pci0: unknown card (vendor=0x10de, dev=0x01ec) at 0.4
pci0: unknown card (vendor=0x10de, dev=0x01ef) at 0.5
isab0: PCI to ISA bridge (vendor=10de device=0060) at device 1.0 on pci0

Large Disks lose loads of diskspace

2004-08-19 Thread duncan
I installed 2 new 200gb harddrives lately. Both show up in bios as 200gb, on 
boot they are shown as 190gb (probably the 1000-1024 conversion), but when I 
create a filesystem they are only 180gb.
Now, I can live with a 20gb loss, but when I check the disks free space, they 
have only 166gb free with 0 gb used. Could be me, but I find 34gb a bit 
excessive. I hope anyone has a clue as to what I'm doing wrong.

Hope someone knows what is going on.
Regards, duncan.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: HP Netserver RAID Controller + FreeBSD 4.10 problem

2004-08-19 Thread Artyom Viklenko
Odhiambo Washington wrote:
Dear Ladies and Gentlemen,
I have installed FreeBSD (well, that is the only one I could anyway),
but I am hitting a snag: When I boot up the box, it refuses to automount
the root fs, then takes me to Manual Root File System specification option.
When I specify
ufs:/dev/amrd0s1a then the box boots. What I don't understand is why it
is refusing to obey the same thing in fstab..


mountroot ufs:/dev/amrd0s1a
Mounting root from ufs:/dev/amrd0s1a
How do I get around this one
Try to compile rootfs specification in to the kernel:
options ROOTDEVNAME=\ufs:amrd0s1a\
--
   Sincerely yours,
 Artyom V. Viklenko.
==
System Administrator[EMAIL PROTECTED]
--
IIAT NTU KhPI 21, Frunze Str., Kharkov Ukraine 61002
Phone: +38 (057) 7157048Fax: +38 (057) 7062749
==
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Xorg or XFree86?

2004-08-19 Thread David Kelly
On Aug 18, 2004, at 9:28 PM, Eric Crist wrote:
I've seen a lot of posts over the past couple months regarding
installation of X.org.  I was wondering, is it that much better than
XFree86 that it's worth the hassle?  If so, what are those advantages?
On a new machine with 5.2.1 I decided to use X.org rather than XFree86. 
Built everything from source as I was also interested in abusing this 
machine a bit for confidence that it would be reliable.

Creation of an XF86Config has always been one of my biggest nightmares. 
Its way more than I care to do by hand. The automatic tools rarely get 
me closer than 90%. Its always something such as, Why is it in 8 bit 
mode?

Used xorgconfig, which is obviously based on XF86Config, and was easily 
able to configure for a single resolution with 8, 16, and 24 bit 
depths, and selected 16 as the default. I don't remember why this was 
always so hard with XF86Config.

I still had to hand insert DPMS and wheel mouse parameters, but for the 
most part I understand those.  :-)

Installed KDE after X.org. For the most part the fonts look better than 
the supposedly same KDE under XF86 on another machine. Only the font 
used for articles http://ezine.daemonnews.org/ look worse.

Was a bit concerned whether the 8MB ATA Rage XL PCI video would be 
satisfactory. The stock video on Dell 400SC. Haven't tried to play a 
DVD on it, but otherwise its just fine.

--
David Kelly N4HHE, [EMAIL PROTECTED]

Top posters will not be shown the honor of a reply.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Large Disks lose loads of diskspace

2004-08-19 Thread Stevan Tiefert
On Thursday 19 August 2004 13:17, duncan wrote:
 I installed 2 new 200gb harddrives lately. Both show up in bios as 200gb,
 on boot they are shown as 190gb (probably the 1000-1024 conversion), but
 when I create a filesystem they are only 180gb.
 Now, I can live with a 20gb loss, but when I check the disks free space,
 they have only 166gb free with 0 gb used. Could be me, but I find 34gb a
 bit excessive. I hope anyone has a clue as to what I'm doing wrong.

 Hope someone knows what is going on.

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

the first step would be if you give us the physical geometry of the harddisk 
(cylinders, heads and sectors and so on).

regards
Stevan Tiefert

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


Re: Xorg or XFree86?

2004-08-19 Thread Marc Fonvieille
On Wed, Aug 18, 2004 at 09:28:44PM -0500, Eric Crist wrote:
 Hello list,
 
 I've seen a lot of posts over the past couple months regarding
 installation of X.org.  I was wondering, is it that much better than
 XFree86 that it's worth the hassle?  If so, what are those advantages?


In day-to-day there is no noticeable difference.  I'd deplore one
really annoying bug: http://freedesktop.org/bugzilla/show_bug.cgi?id=474
which prevents me to use MPlayer with XVideo extension when a lot of apps
are running; falling back to -vo x11 is not good on slow hardware.
So for the moment, if XFree86 4.X works for you, you may want to wait
for next Xorg release.

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


Re: Large Disks lose loads of diskspace

2004-08-19 Thread David Kelly
On Aug 19, 2004, at 6:17 AM, duncan wrote:
I installed 2 new 200gb harddrives lately. Both show up in bios as 
200gb, on boot they are shown as 190gb (probably the 1000-1024 
conversion), but when I create a filesystem they are only 180gb.
Now, I can live with a 20gb loss, but when I check the disks free 
space, they have only 166gb free with 0 gb used. Could be me, but I 
find 34gb a bit excessive. I hope anyone has a clue as to what I'm 
doing wrong.

Hope someone knows what is going on.
newfs(1) says:
 -m free-space
 The percentage of space reserved from normal users; the 
minimum
 free space threshold.  The default value used is defined 
by
 MINFREE from ufs/ffs/fs.h, currently 8%.  See tunefs(8) 
for
 more details on how to set this option.
180 - 8% = 165.6
--
David Kelly N4HHE, [EMAIL PROTECTED]

Top posters will not be shown the honor of a reply.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Xorg Install

2004-08-19 Thread Tyler Parrott
Thanks guys,

That was the problem.I didn't see that step listen in the
/usr/ports/UPDATING?

TP

On Wed, 18 Aug 2004 21:18:36 -0500 (CDT), Jorge Mario G.
[EMAIL PROTECTED] wrote:
 hi
 just add
 X_WINDOW_SYSTEM=xorg
 
 to your /etc/make.conf file
 
 =
 
 
 _
 Do You Yahoo!?
 Información de Estados Unidos y América Latina, en Yahoo! Noticias.
 Visítanos en http://noticias.espanol.yahoo.com
 
 
 ___
 [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]


make fails on device iir on freebsd 4.10

2004-08-19 Thread Dino Vliet
I want to compile a new kernel on my laptop running
freebsd 4.10. 

Although I commented out device iir in my kernel
configuration file, I still get an error message when
trying to make my kernel. Look at my kernel
configuration file which I attached to this message.

Can somebody help me to get this fixed?

Brgds

I'm getting this error message:

=== iir
@ - /usr/src/sys
machine - /usr/src/sys/i386/include
touch opt_scsi.h
touch opt_cam.h
perl @/kern/makeops.pl -h @/kern/device_if.m
perl @/kern/makeops.pl -h @/kern/bus_if.m
perl @/kern/makeops.pl -h @/pci/pci_if.m
rm -f .depend
mkdep -f .depend -a   -nostdinc -D_KERNEL -DKLD_MODULE
-I- -I. -I@ -I@/../include
-I/usr/obj/usr/src/i386/usr/include 
/usr/src/sys/modules/iir/../../dev/iir/iir.c
/usr/src/sys/modules/iir/../../dev/iir/iir_ctrl.c
/usr/src/sys/modules/iir/../../dev/iir/iir_pci.c
*** Error code 1

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

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

Stop in /usr/obj/usr/src/sys/MIJNKERNEL.
*** Error code 1

Stop in /usr/src.
*** Error code 1





__
Do you Yahoo!?
Yahoo! Mail Address AutoComplete - You start. We finish.
http://promotions.yahoo.com/new_mail 

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


how do I verify how sshd is starting?

2004-08-19 Thread Jules Gilbert
Someone else put my FreeBSD box together.

How to I determine whether sshd is starting via rc.d or by inetd?

I've had to tighten down the box and the changes I've made don't seem to have any 
effect, though I did a shutdown and restart.

Please email me your answers -- I am in a critical situation here; and seem to have 
been 'discovered' in the way no one appreciates.

Also, I'd appreciate a reference to a text (on-line or the paper kind) discussing 
topics such as:  hosts.allow, inetd.conf, sshd.conf, you know, the stuff I should have 
been learning about all along...

My email is [EMAIL PROTECTED]

--jg

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


AC97 sound support

2004-08-19 Thread OmerMrki
Is AC97 audio FULL DUPLEX ? 
I plan on doing some recording.

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


Multi OS Installation

2004-08-19 Thread Jake Zhen
hi.
i installed Freebsd in my laptop with Wind XP. every time i boot to 
freedbsd, it reboots in 15sec again and again. there is a message said 
before reboot,  acpi: state perforemce changed.
please, help me to solve this problem.
thanks
j.

_
Is your PC infected? Get a FREE online computer virus scan from McAfee® 
Security. http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963

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


Is my MB supported?

2004-08-19 Thread netgoadmin

   Hi,


   im in trouble again. i had problems with my past motherboard for it
   didnt detect my ide drives. i could change the motherboard where i
   bought it but now the problem is to use the xf86 under gnome. my
   motherboard is an acorp 4pmmnl with an integrated S3 Graphics
   ProSavage 8 video card. when i chose the driver savage and the type
   prosavage ddr (because it shares the ddr ram) and running the xf86
   it said the driver was not correct.


   can you tell me is my mb supported? especially the video card? or
   theres another suitable driver?


   thanks


   lg

   Heart disease is Britains biggest killer. Join the British Heart
   Foundations Big Red Fightback: [1]bhf.org.uk/fightback

References

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


Re: how do I verify how sshd is starting?

2004-08-19 Thread Bill Moran
Jules Gilbert [EMAIL PROTECTED] wrote:

 Someone else put my FreeBSD box together.

What version of FreeBSD?

 How to I determine whether sshd is starting via rc.d or by inetd?

I haven't seen anyone start sshd from rc.d in quite a while.  If there's
a startup script in /usr/local/etc/rc.d and it has execute perms, then
it's trying to start sshd.

Watch the startup procedure on boot and see which part of the procedure
it's starting at.

 I've had to tighten down the box and the changes I've made don't seem
 to have any effect, though I did a shutdown and restart.

What changes did you make?

And please wrap your lines at 72 characters so I don't have to fix your
email formatting.

 Please email me your answers -- I am in a critical situation here;
 and seem to have been 'discovered' in the way no one appreciates.

What way is that?

 Also, I'd appreciate a reference to a text (on-line or the paper kind)
 discussing topics such as:  hosts.allow, inetd.conf, sshd.conf, you
 know, the stuff I should have been learning about all along...

Best reference I know of are the man pages.  type man inetd.conf or
whatever you want to learn about.  Start with man man if you've never
used man pages before.

The FreeBSD handbook also has a lot of good information.  See the links
on the left side of the home page.

As far as print books are concerned, it used to be you bought The
Complete FreeBSD by Greg Lehey ... but there are a number of good
FreeBSD books nowadays, and I can't say I know of one that doesn't
come recommended.

-- 
Bill Moran
Potential Technologies
http://www.potentialtech.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Xorg or XFree86?

2004-08-19 Thread R. W.
On Thursday 19 August 2004 03:28, Eric Crist wrote:
 Hello list,

 I've seen a lot of posts over the past couple months regarding
 installation of X.org.  I was wondering, is it that much better than
 XFree86 that it's worth the hassle?  If so, what are those
 advantages?

Until 5.x goes stable, and I do a fresh install, my motto is:

If it ain't broke, don't fix it.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Patch patch-ac failed to apply cleanly.

2004-08-19 Thread Tyler Parrott
Hey guys,

I'm currently trying to build evolution (for the sole purpose of using
ximian-connector) and the install is choking on m4-1.4.1.

The following is what I get when I try to install m4 separately:

Chernak# make install
===  Vulnerability check disabled
 m4-1.4.1.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
 Attempting to fetch from http://ftp.gnu.org/gnu/m4/.
m4-1.4.1.tar.gz   100% of  335 kB  477 kBps
===  Extracting for m4-1.4.1
 Checksum OK for m4-1.4.1.tar.gz.
===  Patching for m4-1.4.1
===  Applying FreeBSD patches for m4-1.4.1
Ignoring previously applied (or reversed) patch.
2 out of 2 hunks ignored--saving rejects to src/m4.c.rej
 Patch patch-ac failed to apply cleanly.
 Patch(es) patch-aa patch-ab applied cleanly.
*** Error code 1

Stop in /usr/ports/devel/m4.

After getting this error, I did the following:

Downloaded the latest ports.tar.gz from freebsd.org (don't have cvsup
configured yet), un tarred it into /usr/ports.  I then ran pkgdb -F
followed by portupgrade -aRr.

Any ideas as to what else I can try?

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


Re: ntop problems with FreeBSD?

2004-08-19 Thread Moti Levy
adp wrote:
Anyone get ntop totally working with FreeBSD 4.9? We can run it, but it's
flaky. On one FreeBSD box it runs fine for a while and then just dies. No
syslog messages. It's just gone. On another it won't display anything in the
Web interface (it opens new windows when clicking on some items), and it
also randomly crashes. We are using ipf on one system and ipfw on another.
All are dual-homed FreeBSD firewalls.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
 

i have been running ntop on freebsd with great success .
usually when ntop just dies it means it cant handle the amount of hosts
try tuning down the amount of hosts you monitor .
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: make fails on device iir on freebsd 4.10

2004-08-19 Thread adam
I just took a quick glance at your file, but will this compile if you 
uncomment iir???  You certainly have a lot of things included in your 
config file.  Re-enabling some options will help you narrow down whether 
or not the problem is in fact the iir being commented out or whether 
something that depends on iir isn't commented out.  Sorry for the 
jumbled wording, I haven't had my coffee yet.

Adam
Dino Vliet wrote:
I want to compile a new kernel on my laptop running
freebsd 4.10. 

Although I commented out device iir in my kernel
configuration file, I still get an error message when
trying to make my kernel. Look at my kernel
configuration file which I attached to this message.
Can somebody help me to get this fixed?
Brgds
I'm getting this error message:
=== iir
@ - /usr/src/sys
machine - /usr/src/sys/i386/include
touch opt_scsi.h
touch opt_cam.h
perl @/kern/makeops.pl -h @/kern/device_if.m
perl @/kern/makeops.pl -h @/kern/bus_if.m
perl @/kern/makeops.pl -h @/pci/pci_if.m
rm -f .depend
mkdep -f .depend -a   -nostdinc -D_KERNEL -DKLD_MODULE
-I- -I. -I@ -I@/../include
-I/usr/obj/usr/src/i386/usr/include 
/usr/src/sys/modules/iir/../../dev/iir/iir.c
/usr/src/sys/modules/iir/../../dev/iir/iir_ctrl.c
/usr/src/sys/modules/iir/../../dev/iir/iir_pci.c
*** Error code 1

Stop in /usr/src/sys/modules/iir.
*** Error code 1
Stop in /usr/src/sys/modules.
*** Error code 1
Stop in /usr/obj/usr/src/sys/MIJNKERNEL.
*** Error code 1
Stop in /usr/src.
*** Error code 1

		
__
Do you Yahoo!?
Yahoo! Mail Address AutoComplete - You start. We finish.
http://promotions.yahoo.com/new_mail 


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


--
www.erictheninja.org
A bunch of crap, but it'll be there soon
Buy my ebay stuff...you know you want to
http://cgi6.ebay.com/ws/eBayISAPI.dll?ViewSellersOtherItemsuserid=biddingman12include=0since=-1sort=3rows=50
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Xorg Install

2004-08-19 Thread adam
Tyler,
Try this
http://lists.freebsd.org/pipermail/freebsd-current/2004-July/032267.html
It's the headsup on the freebsd current list on how to upgrade to x.org
Take caer,
Adam
Tyler Parrott wrote:
Thanks guys,
That was the problem.I didn't see that step listen in the
/usr/ports/UPDATING?
TP
On Wed, 18 Aug 2004 21:18:36 -0500 (CDT), Jorge Mario G.
[EMAIL PROTECTED] wrote:
 

hi
just add
X_WINDOW_SYSTEM=xorg
to your /etc/make.conf file
=
   

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


Re: FreeBSD scanners

2004-08-19 Thread Marc Fonvieille
On Thu, Aug 19, 2004 at 10:01:07AM +0930, Greg 'groggy' Lehey wrote:
 
 Interesting.  I've just had a very bad experience with Canon's
 scanners.  See
 http://.lemis.com/grog/product-reviews/Canon-breakage.html for the
 whole sad story.


Unfortunately, I'm not surprised.  Since USB is the scanners standard
interface, I noted more and more bad scanners: bad/weak GUI
(for example the GUI coming with some EPSON Perfection scanners is the
worst I ever used), bad performance, cheap/buggy hardware.

The Canon LIDE 30 is not the best scanner available around, but it's
just a decent scanner for 69 Euros... and is supported by SANE.

I also own an old Agfa SnapScan 600 SCSI, and it's another world.

BTW, as always, your pages are really interesting.

Marc


pgpkr17nNyo3R.pgp
Description: PGP signature


Re: make fails on device iir on freebsd 4.10

2004-08-19 Thread Dino Vliet
If Generic compiles, then my file would compile too
because I only copied Generic and comment out iir.
Then I got that message.

Now I tried to work with an even smaller version of
the file and removed and uncommented a lot, but still
I get the same error (and look at my new configuration
file below error message):

=== iir
 @ - /usr/src/sys
 machine - /usr/src/sys/i386/include
 touch opt_scsi.h
 touch opt_cam.h
 perl @/kern/makeops.pl -h @/kern/device_if.m
 perl @/kern/makeops.pl -h @/kern/bus_if.m
 perl @/kern/makeops.pl -h @/pci/pci_if.m
 rm -f .depend
 mkdep -f .depend -a   -nostdinc -D_KERNEL
 -DKLD_MODULE
 -I- -I. -I@ -I@/../include
 -I/usr/obj/usr/src/i386/usr/include 
 /usr/src/sys/modules/iir/../../dev/iir/iir.c
 /usr/src/sys/modules/iir/../../dev/iir/iir_ctrl.c
 /usr/src/sys/modules/iir/../../dev/iir/iir_pci.c
 *** Error code 1
 
 Stop in /usr/src/sys/modules/iir.
 *** Error code 1
 
 Stop in /usr/src/sys/modules.
 *** Error code 1
 
 Stop in /usr/obj/usr/src/sys/MIJNKERNEL.
 *** Error code 1
 
 Stop in /usr/src.
 *** Error code 1

My configuration file is now:

#
# GENERIC -- Generic kernel configuration file for
FreeBSD/i386
#
# For more information on this file, please read the
handbook section on
# Kernel Configuration Files:
#
#   
http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
#
# The handbook is also available locally in
/usr/share/doc/handbook
# if you've installed the doc distribution, otherwise
always see the
# FreeBSD World Wide Web server
(http://www.FreeBSD.org/) for the
# latest information.
#
# An exhaustive list of options and more detailed
explanations of the
# device lines is also present in the ./LINT
configuration file. If you are
# in doubt as to the purpose or necessity of a line,
check first in LINT.
#
# $FreeBSD: src/sys/i386/conf/GENERIC,v 1.246.2.59
2004/04/07 20:29:01 vkashyap Exp $

machine i386
cpu I686_CPU
ident   MYKERNEL
maxusers0

#makeoptionsDEBUG=-g#Build kernel with gdb(1) debug
symbols

options MATH_EMULATE#Support for x87 emulation
options INET#InterNETworking
options INET6   #IPv6 communications protocols
options FFS #Berkeley Fast Filesystem
options FFS_ROOT#FFS usable as root device [keep
this!]
options SOFTUPDATES #Enable FFS soft updates support
options UFS_DIRHASH #Improve performance on big
directories
options MFS #Memory Filesystem
options MD_ROOT #MD is a potential root device
#optionsNFS #Network Filesystem
#optionsNFS_ROOT#NFS usable as root device, NFS
required
#optionsMSDOSFS #MSDOS Filesystem
options CD9660  #ISO 9660 Filesystem
options CD9660_ROOT #CD-ROM usable as root, CD9660
required
options PROCFS  #Process filesystem
options COMPAT_43   #Compatible with BSD 4.3 [KEEP
THIS!]
options SCSI_DELAY=15000#Delay (in ms) before
probing SCSI
options UCONSOLE#Allow users to grab the console
options USERCONFIG  #boot -c editor
options VISUAL_USERCONFIG   #visual boot -c editor
options KTRACE  #ktrace(1) support
options SYSVSHM #SYSV-style shared memory
options SYSVMSG #SYSV-style message queues
options SYSVSEM #SYSV-style semaphores
options P1003_1B#Posix P1003_1B real-time
extensions
options _KPOSIX_PRIORITY_SCHEDULING
options ICMP_BANDLIM#Rate limit bad replies
options KBD_INSTALL_CDEV# install a CDEV entry in
/dev
options AHC_REG_PRETTY_PRINT# Print register
bitfields in debug
# output.  Adds ~128k to driver.
options AHD_REG_PRETTY_PRINT# Print register
bitfields in debug 
# output.  Adds ~215k to driver.

# To make an SMP kernel, the next two are needed
#optionsSMP # Symmetric MultiProcessor Kernel
#optionsAPIC_IO # Symmetric (APIC) I/O

device  isa
device  eisa
device  pci

# Floppy drives
device  fdc0at isa? port IO_FD1 irq 6 drq 2
device  fd0 at fdc0 drive 0
device  fd1 at fdc0 drive 1
#
# If you have a Toshiba Libretto with its Y-E Data
PCMCIA floppy,
# don't use the above line for fdc0 but the following
one:
#device fdc0

# ATA and ATAPI devices
device  ata0at isa? port IO_WD1 irq 14
device  ata1at isa? port IO_WD2 irq 15
device  ata
device  atadisk # ATA disk drives

Re: Problem

2004-08-19 Thread Lowell Gilbert
Jake Zhen [EMAIL PROTECTED] writes:

 hi.
   after i installed freebsd, i never able to boot in the
 console/terminal. when my pc start to reboot, i see something like the
 following on my screen. the machine reboots until i press the shut
 down button.  Please help me out with this. thank you very much.
 Fatal trap 12: page fault while in kernel mode
 cpuid = 0; apic =00
 fault virtual address = 0rd22e00a
 fault code= supervisor read, page not present
 instruction pointer  = 0x8:0xc057e0e0
 stack pointer = 0x10:0xcd0cd794c
 frame pointer = 0x10:0xcdcd7b70
 code segment  = base 0x0, limit 0xf, type 0xlb
   DPL 0, pres1 , def32 1, gran1
 processor eflags  = Interrupt enabled, resume, IopL0
 current process   = 42 (cbb2)
 trap number   = 12
 panic: page fault
 cpuid = 0
 sysncing disks, buffers remaining
 done
 uptime: 1s
 shutting down ACPI
 AcP1_cpu0: perforamce states changed
 AcP1_cpu0: perforamce states changed
 Automatic reboot 15 second

Sounds like you're running some kind of 5.x.

It also sounds as though disabling ACPI may help in your case; 
please see the installation notes for whatever version you are trying
to install.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


KDEInit could not launch 'kmail'

2004-08-19 Thread Owen Gardiner
I've installed KDE 3.23 on a machine running 5.21-release-p9 which has 
x116.7 from X.ORG installed.

I try to start kmail and get a message window of:
KDEInit could not launch 'kmail'
If I copy the command properties of the kmail icon and run it from the 
command line:

kmail -caption %c %i %m
I get the reply:
/libexec/ld-elf.so1: Shared object libkhtml.so.5 not found
Ditto when trying to run kedit
from the command like I get:
/libexec/ld-elf.so1: Shared object libkdeprint.so.5 not found
Everything on the machine has been installed from ports.
I've tried to do portupgrades and pkgdb -uf and portsdb-Uu but apart 
from seeing that some packages are ignores, some are skipped and one 
fails I'm none the wiser.

I've reinstalled kde to see if I've managed to do some harm whilst using 
  pkgdb -F.  I may have wrongly answered some questions about stale 
dependencies when using it.

Help?
Thanks in anticipation.
Owen
P.S. I've searched the freebsd mail archives to no avail.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: KDEInit could not launch 'kmail'

2004-08-19 Thread Ciprian Badescu
Hi,


Search for libkdeprint.so.x or libkdeprint.so and make a symblic link from
libkdeprint.so.5 to that file. It's an ugly trick, but should work.

--
Ciprian Badescu

On Thu, 19 Aug 2004, Owen Gardiner wrote:

 Date: Thu, 19 Aug 2004 16:35:26 +0200
 From: Owen Gardiner [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: KDEInit could not launch 'kmail'

 I've installed KDE 3.23 on a machine running 5.21-release-p9 which has
 x116.7 from X.ORG installed.

 I try to start kmail and get a message window of:
 KDEInit could not launch 'kmail'

 If I copy the command properties of the kmail icon and run it from the
 command line:

 kmail -caption %c %i %m

 I get the reply:

 /libexec/ld-elf.so1: Shared object libkhtml.so.5 not found

 Ditto when trying to run kedit
 from the command like I get:
 /libexec/ld-elf.so1: Shared object libkdeprint.so.5 not found

 Everything on the machine has been installed from ports.

 I've tried to do portupgrades and pkgdb -uf and portsdb-Uu but apart
 from seeing that some packages are ignores, some are skipped and one
 fails I'm none the wiser.

 I've reinstalled kde to see if I've managed to do some harm whilst using
pkgdb -F.  I may have wrongly answered some questions about stale
 dependencies when using it.

 Help?

 Thanks in anticipation.

 Owen

 P.S. I've searched the freebsd mail archives to no avail.
 ___
 [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: Research questions on FreeBSD 4.10

2004-08-19 Thread Jerry McAllister
 
 Hi,
 
 
 I am currently doing a research on FreeBSD 4.10 Release System for a 
 presentation to an institution of 400 students.
 
 I would like to enquire on several questions regarding the Operating System 
 : -
 
 - Process Management / Model
 - Scheduling
   * Is it preemptive ?
   * Discuss the algorithm
 - Threading model
   * User, kernel or hybrid?
 - File System
   * Discuss more than one if applicable
 - Device management
 - Memory management
 - Programming language supported (and recommendation)
 - Networking support
 - Security model
   * User security
   * File System security
 - Compare the current version of the OS that you're researching with the 
 previous and future version

This looks awfully like you are asking the list to do your class
assignment for you.

There are a number of books to read for these topics.
One set is the pair by Kirk McKusick called The Design and Implementation
of the 4.4 DBS Operating System which is a follow on to his earlier
The Design and Implementation of the 4.3 BSD UNIX Operating System

In Addition there are books such as FreeBSD Unleashed and the Complete FreeBSD
which give more specific useage information and such books as
as DNS and BIND from O'Reilly, Building Internet Firewalls from O'Reilly
that give more information on specific areas.

You can also study the FreeBSD Handbook that is available online
from the www.freebsd.org website for specifics and release notes 
for each version that explain changes in each new version.

If that is not enough, then Google, Onlamp and a number of other online
publications have loads if articles on everything you mentioned.  You
have but to do some searches.

jerry

 
 
 We look forward for your speedy reply.
 
 
 Thanks and Regards,
 
 
 Jeff Neufield
 
 _
 Fast. Clear. Easy. The new MSN Search. http://search.msn.com.sg/
 
 ___
 [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: FreeBSD scanners

2004-08-19 Thread Marc Wiz
On Thu, Aug 19, 2004 at 03:52:54PM +0200, Marc Fonvieille wrote:
 On Thu, Aug 19, 2004 at 10:01:07AM +0930, Greg 'groggy' Lehey wrote:
  
  Interesting.  I've just had a very bad experience with Canon's
  scanners.  See
  http://.lemis.com/grog/product-reviews/Canon-breakage.html for the
  whole sad story.
 
 
 Unfortunately, I'm not surprised.  Since USB is the scanners standard
 interface, I noted more and more bad scanners: bad/weak GUI
 (for example the GUI coming with some EPSON Perfection scanners is the
 worst I ever used), bad performance, cheap/buggy hardware.
 
 The Canon LIDE 30 is not the best scanner available around, but it's
 just a decent scanner for 69 Euros... and is supported by SANE.
 
 I also own an old Agfa SnapScan 600 SCSI, and it's another world.

So let me ask this question; what are good scanners now days?

I know there are some high end scanners that do Firewire (about
~$400) and some scanners even have SCSI.   Any recommendations
and/or horror stories for a particular scanner for use on FreeBSD?

Anyone have experience with that HP scanner that is clear.

Thanks,
Marc
-- 
Marc Wiz
[EMAIL PROTECTED]
Yes, that really is my last name.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Patch patch-ac failed to apply cleanly.

2004-08-19 Thread Ilker Ozupak
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thursday 19 August 2004 16:34, Tyler Parrott wrote:
 Hey guys,

 I'm currently trying to build evolution (for the sole purpose of using
 ximian-connector) and the install is choking on m4-1.4.1.

 The following is what I get when I try to install m4 separately:

 Chernak# make install
 ===  Vulnerability check disabled

  m4-1.4.1.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
  Attempting to fetch from http://ftp.gnu.org/gnu/m4/.

 m4-1.4.1.tar.gz   100% of  335 kB  477 kBps
 ===  Extracting for m4-1.4.1

  Checksum OK for m4-1.4.1.tar.gz.

 ===  Patching for m4-1.4.1
 ===  Applying FreeBSD patches for m4-1.4.1
 Ignoring previously applied (or reversed) patch.
 2 out of 2 hunks ignored--saving rejects to src/m4.c.rej

  Patch patch-ac failed to apply cleanly.
  Patch(es) patch-aa patch-ab applied cleanly.

 *** Error code 1

 Stop in /usr/ports/devel/m4.

 After getting this error, I did the following:

 Downloaded the latest ports.tar.gz from freebsd.org (don't have cvsup
 configured yet), un tarred it into /usr/ports.  I then ran pkgdb -F
 followed by portupgrade -aRr.

 Any ideas as to what else I can try?
i checked my local ports collection and also looked at the cvs throught
cvsweb cgi ( http://www.freebsd.org/cgi/cvsweb.cgi/ports/devel/m4/files )
it seemed to me that patch-ac has been removed.
give it a try after deleting patch-ac
or
download it from the web 
http://www.freebsd.org/cgi/cvsweb.cgi/ports/devel/m4/m4.tar.gz?tarball=1
use this to built your port:
cp m4.tar.gz /usr/ports/devel  untar it there (delete m4 folder first might 
be good)



 Thanks
 TP
- -- 
IO
- --
gpg public key @ http://cmpe.emu.edu.tr/ilker/ilker.asc
pub  1024D/A4F41BD0 2003-07-16 Ilker Ozupak [EMAIL PROTECTED]
Primary key fingerprint: E509 17B6 C8E2 ADB7 32A7  4746 BF14 814A A4F4 1BD0
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (FreeBSD)

iD8DBQFBJL/rvxSBSqT0G9ARArNSAJwIrE4a9tsliZTdicD77k+V24sJ3wCfWnYK
bCDeGMkY4IUVIabNXmSn5zA=
=EhCS
-END PGP SIGNATURE-
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Makeworld issues

2004-08-19 Thread Ronnie Clark
Hello, 

I am trying to complete a makeworld on my 4.10 STABLE
system, to apply the latest source and patches. But, I
am getting the following stop error:

yacc -b aicasm_macro_gram -p mm -d -o
aicasm_macro_gram.c
/usr/src/sys/dev/aic7xxx/aicasm/aicasm_macro_gram.y
cc -O -pipe  -nostdinc -I/usr/include -I.
-I/usr/src/sys/dev/aic7xxx/aicasm   
-D__FBSDID=__RCSID -c aicasm_macro_gram.c
cc: Internal compiler error: program cc1 got fatal
signal 11
*** Error code 1

Stop in /usr/obj/usr/src/sys/KERNEL1.
*** Error code 1

Stop in /usr/src.
*** Error code 1

Stop in /usr/src.

Anyone have any ideas why this is happening? 

Thanks,
Ron Clark

# uname -a
FreeBSD my.freebsd.server 4.9-STABLE FreeBSD
4.9-STABLE #0: Sat Feb 21 14:53:51 CST 2004



__
Do you Yahoo!?
Yahoo! Mail - 50x more storage than other providers!
http://promotions.yahoo.com/new_mail
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Research questions on FreeBSD 4.10

2004-08-19 Thread Bill Moran
Jerry McAllister [EMAIL PROTECTED] wrote:
  Hi,
  
  
  I am currently doing a research on FreeBSD 4.10 Release System for a 
  presentation to an institution of 400 students.
  
  I would like to enquire on several questions regarding the Operating System 
  : -
  
  - Process Management / Model
  - Scheduling
* Is it preemptive ?
* Discuss the algorithm
  - Threading model
* User, kernel or hybrid?
  - File System
* Discuss more than one if applicable
  - Device management
  - Memory management
  - Programming language supported (and recommendation)
  - Networking support
  - Security model
* User security
* File System security
  - Compare the current version of the OS that you're researching with the 
  previous and future version
 
 This looks awfully like you are asking the list to do your class
 assignment for you.
 
 There are a number of books to read for these topics.
 One set is the pair by Kirk McKusick called The Design and Implementation
 of the 4.4 DBS Operating System which is a follow on to his earlier
 The Design and Implementation of the 4.3 BSD UNIX Operating System

Even better.  Just available is The Design and Implementation of the
FreeBSD Operating System!

 
 In Addition there are books such as FreeBSD Unleashed and the Complete FreeBSD
 which give more specific useage information and such books as
 as DNS and BIND from O'Reilly, Building Internet Firewalls from O'Reilly
 that give more information on specific areas.
 
 You can also study the FreeBSD Handbook that is available online
 from the www.freebsd.org website for specifics and release notes 
 for each version that explain changes in each new version.
 
 If that is not enough, then Google, Onlamp and a number of other online
 publications have loads if articles on everything you mentioned.  You
 have but to do some searches.
 
 jerry
 
  
  
  We look forward for your speedy reply.

Who is we?

-- 
Bill Moran
Potential Technologies
http://www.potentialtech.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Research questions on FreeBSD 4.10

2004-08-19 Thread Jerry McAllister
 
 Jerry McAllister [EMAIL PROTECTED] wrote:
   Hi,
   
  
  There are a number of books to read for these topics.
  One set is the pair by Kirk McKusick called The Design and Implementation
  of the 4.4 DBS Operating System which is a follow on to his earlier
  The Design and Implementation of the 4.3 BSD UNIX Operating System
 
 Even better.  Just available is The Design and Implementation of the
 FreeBSD Operating System!

Oh, cool! 

  If that is not enough, then Google, Onlamp and a number of other online
  publications have loads if articles on everything you mentioned.  You
  have but to do some searches.
  
  jerry
  
   
   We look forward for your speedy reply.
 
 Who is we?

Looks like a royal we to me or is that an imperial we I forget.

jerry

 -- 
 Bill Moran
 Potential Technologies
 http://www.potentialtech.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Patch patch-ac failed to apply cleanly.

2004-08-19 Thread Tyler Parrott
Thanks, that took care of my problem with m4.

I now have a similar problem with openldap.  After installing m4, I
ran pkgdb -F again, and I downloaded the latest makefile from
freebsd.org.   The following is the error I get:

A332195# make install clean
===  Patching for openldap-client-2.2.15
===  Applying FreeBSD patches for openldap-client-2.2.15
Ignoring previously applied (or reversed) patch.
3 out of 3 hunks ignored--saving rejects to build/ltmain.sh.rej
 Patch patch-build::ltmain.sh failed to apply cleanly.
*** Error code 1

Any ideas on this one?

On Thu, 19 Aug 2004 17:57:33 +0300, Ilker Ozupak [EMAIL PROTECTED] wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 
 
 On Thursday 19 August 2004 16:34, Tyler Parrott wrote:
  Hey guys,
 
  I'm currently trying to build evolution (for the sole purpose of using
  ximian-connector) and the install is choking on m4-1.4.1.
 
  The following is what I get when I try to install m4 separately:
 
  Chernak# make install
  ===  Vulnerability check disabled
 
   m4-1.4.1.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
   Attempting to fetch from http://ftp.gnu.org/gnu/m4/.
 
  m4-1.4.1.tar.gz   100% of  335 kB  477 kBps
  ===  Extracting for m4-1.4.1
 
   Checksum OK for m4-1.4.1.tar.gz.
 
  ===  Patching for m4-1.4.1
  ===  Applying FreeBSD patches for m4-1.4.1
  Ignoring previously applied (or reversed) patch.
  2 out of 2 hunks ignored--saving rejects to src/m4.c.rej
 
   Patch patch-ac failed to apply cleanly.
   Patch(es) patch-aa patch-ab applied cleanly.
 
  *** Error code 1
 
  Stop in /usr/ports/devel/m4.
 
  After getting this error, I did the following:
 
  Downloaded the latest ports.tar.gz from freebsd.org (don't have cvsup
  configured yet), un tarred it into /usr/ports.  I then ran pkgdb -F
  followed by portupgrade -aRr.
 
  Any ideas as to what else I can try?
 i checked my local ports collection and also looked at the cvs throught
 cvsweb cgi ( http://www.freebsd.org/cgi/cvsweb.cgi/ports/devel/m4/files )
 it seemed to me that patch-ac has been removed.
 give it a try after deleting patch-ac
 or
 download it from the web
 http://www.freebsd.org/cgi/cvsweb.cgi/ports/devel/m4/m4.tar.gz?tarball=1
 use this to built your port:
 cp m4.tar.gz /usr/ports/devel  untar it there (delete m4 folder first might
 be good)
 
 
  Thanks
  TP
 - --
 IO
 - --
 gpg public key @ http://cmpe.emu.edu.tr/ilker/ilker.asc
 pub  1024D/A4F41BD0 2003-07-16 Ilker Ozupak [EMAIL PROTECTED]
 Primary key fingerprint: E509 17B6 C8E2 ADB7 32A7  4746 BF14 814A A4F4 1BD0
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.2.4 (FreeBSD)
 
 iD8DBQFBJL/rvxSBSqT0G9ARArNSAJwIrE4a9tsliZTdicD77k+V24sJ3wCfWnYK
 bCDeGMkY4IUVIabNXmSn5zA=
 =EhCS
 -END PGP SIGNATURE-
 ___
 [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: KDEInit could not launch 'kmail'

2004-08-19 Thread Owen Gardiner
Cheers,
There's LOTS of files not found. I don't understand it as I've tried a 
portupgrade  I have made 20 or so links so far.  I'll try portupgrade 
with a few more switches thrown in for good measure as I can now see 
which port needs upgrading (kdelibs-323_1)!

Thanks
Owen

Ciprian Badescu wrote:
Hi,
Search for libkdeprint.so.x or libkdeprint.so and make a symblic link from
libkdeprint.so.5 to that file. It's an ugly trick, but should work.
--
Ciprian Badescu
On Thu, 19 Aug 2004, Owen Gardiner wrote:

Date: Thu, 19 Aug 2004 16:35:26 +0200
From: Owen Gardiner [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: KDEInit could not launch 'kmail'
I've installed KDE 3.23 on a machine running 5.21-release-p9 which has
x116.7 from X.ORG installed.
I try to start kmail and get a message window of:
KDEInit could not launch 'kmail'
If I copy the command properties of the kmail icon and run it from the
command line:
kmail -caption %c %i %m
I get the reply:
/libexec/ld-elf.so1: Shared object libkhtml.so.5 not found
Ditto when trying to run kedit
from the command like I get:
/libexec/ld-elf.so1: Shared object libkdeprint.so.5 not found
Everything on the machine has been installed from ports.
I've tried to do portupgrades and pkgdb -uf and portsdb-Uu but apart
from seeing that some packages are ignores, some are skipped and one
fails I'm none the wiser.
I've reinstalled kde to see if I've managed to do some harm whilst using
  pkgdb -F.  I may have wrongly answered some questions about stale
dependencies when using it.
Help?
Thanks in anticipation.
Owen
P.S. I've searched the freebsd mail archives to no avail.
___
[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: FreeBSD scanners

2004-08-19 Thread Marc Fonvieille
On Thu, Aug 19, 2004 at 09:57:40AM -0500, Marc Wiz wrote:
 
 So let me ask this question; what are good scanners now days?


I'd say a scanner giving good results with slides.

 I know there are some high end scanners that do Firewire (about
 ~$400) and some scanners even have SCSI.   Any recommendations
 and/or horror stories for a particular scanner for use on FreeBSD?
 

The SANE backend is the most important part, it's independant from
FreeBSD.  The main problem is writting the backend, since hardware
specs are often not public...
The fact some color corrections, etc. are done by the driver does not
help; vendors tend to remove the optic parts (or use less and less
parts...), the electronic and the software do the job of these parts
nowadays.  You can see some similar state of things with (cheap) digital
cameras.

The expensive scanners you mentioned may be good ones, but nothing is
better than a real test.  I use scanners for black/white scans at 300dpi,
so a lot of scanners fit my need.

 Anyone have experience with that HP scanner that is clear.
 

No, but is it supported by SANE?

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


Re: Makeworld issues

2004-08-19 Thread Ciprian Badescu
Hi,


I had the same problem. If it's happening in the same place, you need to
perform an update of your sources, else it is a hardware problem (memory,
swap disk, processor is getting to hot, etc). Search in archives and
google for more informations about signal 11 while making world.

For me, a sources update solved the problem.

--
Ciprian Badescu

On Thu, 19 Aug 2004, Ronnie Clark wrote:

 Date: Thu, 19 Aug 2004 07:59:49 -0700 (PDT)
 From: Ronnie Clark [EMAIL PROTECTED]
 To: FreeBSD Questions [EMAIL PROTECTED]
 Subject: Makeworld issues

 Hello,

 I am trying to complete a makeworld on my 4.10 STABLE
 system, to apply the latest source and patches. But, I
 am getting the following stop error:

 yacc -b aicasm_macro_gram -p mm -d -o
 aicasm_macro_gram.c
 /usr/src/sys/dev/aic7xxx/aicasm/aicasm_macro_gram.y
 cc -O -pipe  -nostdinc -I/usr/include -I.
 -I/usr/src/sys/dev/aic7xxx/aicasm
 -D__FBSDID=__RCSID -c aicasm_macro_gram.c
 cc: Internal compiler error: program cc1 got fatal
 signal 11
 *** Error code 1

 Stop in /usr/obj/usr/src/sys/KERNEL1.
 *** Error code 1

 Stop in /usr/src.
 *** Error code 1

 Stop in /usr/src.

 Anyone have any ideas why this is happening?

 Thanks,
 Ron Clark

 # uname -a
 FreeBSD my.freebsd.server 4.9-STABLE FreeBSD
 4.9-STABLE #0: Sat Feb 21 14:53:51 CST 2004



 __
 Do you Yahoo!?
 Yahoo! Mail - 50x more storage than other providers!
 http://promotions.yahoo.com/new_mail
 ___
 [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: KDEInit could not launch 'kmail'

2004-08-19 Thread Ciprian Badescu
HI,

You should upgrade all you ports collection and perform a portupdate.

The trick with linking desn't work forever 

--
Ciprian Badescu

On Thu, 19 Aug 2004, Owen Gardiner wrote:

 Date: Thu, 19 Aug 2004 17:31:29 +0200
 From: Owen Gardiner [EMAIL PROTECTED]
 To: Ciprian Badescu [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Subject: Re: KDEInit could not launch 'kmail'

 Cheers,

 There's LOTS of files not found. I don't understand it as I've tried a
 portupgrade  I have made 20 or so links so far.  I'll try portupgrade
 with a few more switches thrown in for good measure as I can now see
 which port needs upgrading (kdelibs-323_1)!

 Thanks

 Owen
 

 Ciprian Badescu wrote:

  Hi,
 
 
  Search for libkdeprint.so.x or libkdeprint.so and make a symblic link from
  libkdeprint.so.5 to that file. It's an ugly trick, but should work.
 
  --
  Ciprian Badescu
 
  On Thu, 19 Aug 2004, Owen Gardiner wrote:
 
 
 Date: Thu, 19 Aug 2004 16:35:26 +0200
 From: Owen Gardiner [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: KDEInit could not launch 'kmail'
 
 I've installed KDE 3.23 on a machine running 5.21-release-p9 which has
 x116.7 from X.ORG installed.
 
 I try to start kmail and get a message window of:
 KDEInit could not launch 'kmail'
 
 If I copy the command properties of the kmail icon and run it from the
 command line:
 
 kmail -caption %c %i %m
 
 I get the reply:
 
 /libexec/ld-elf.so1: Shared object libkhtml.so.5 not found
 
 Ditto when trying to run kedit
 from the command like I get:
 /libexec/ld-elf.so1: Shared object libkdeprint.so.5 not found
 
 Everything on the machine has been installed from ports.
 
 I've tried to do portupgrades and pkgdb -uf and portsdb-Uu but apart
 from seeing that some packages are ignores, some are skipped and one
 fails I'm none the wiser.
 
 I've reinstalled kde to see if I've managed to do some harm whilst using
pkgdb -F.  I may have wrongly answered some questions about stale
 dependencies when using it.
 
 Help?
 
 Thanks in anticipation.
 
 Owen
 
 P.S. I've searched the freebsd mail archives to no avail.
 ___
 [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: Makeworld issues

2004-08-19 Thread Ronnie Clark
Ciprian, 

Thanks for the info. I did a cvsup before trying again
and the same thing happened. I'll dig some more for
the error code as you suggest. 

Thanks,
Ron Clark


--- Ciprian Badescu [EMAIL PROTECTED]
wrote:

 Hi,
 
 
 I had the same problem. If it's happening in the
 same place, you need to
 perform an update of your sources, else it is a
 hardware problem (memory,
 swap disk, processor is getting to hot, etc). Search
 in archives and
 google for more informations about signal 11 while
 making world.
 
 For me, a sources update solved the problem.
 
 --
 Ciprian Badescu
 
 On Thu, 19 Aug 2004, Ronnie Clark wrote:
 
  Date: Thu, 19 Aug 2004 07:59:49 -0700 (PDT)
  From: Ronnie Clark [EMAIL PROTECTED]
  To: FreeBSD Questions
 [EMAIL PROTECTED]
  Subject: Makeworld issues
 
  Hello,
 
  I am trying to complete a makeworld on my 4.10
 STABLE
  system, to apply the latest source and patches.
 But, I
  am getting the following stop error:
 
  yacc -b aicasm_macro_gram -p mm -d -o
  aicasm_macro_gram.c
 
 /usr/src/sys/dev/aic7xxx/aicasm/aicasm_macro_gram.y
  cc -O -pipe  -nostdinc -I/usr/include -I.
  -I/usr/src/sys/dev/aic7xxx/aicasm
  -D__FBSDID=__RCSID -c aicasm_macro_gram.c
  cc: Internal compiler error: program cc1 got fatal
  signal 11
  *** Error code 1
 
  Stop in /usr/obj/usr/src/sys/KERNEL1.
  *** Error code 1
 
  Stop in /usr/src.
  *** Error code 1
 
  Stop in /usr/src.
 
  Anyone have any ideas why this is happening?
 
  Thanks,
  Ron Clark
 
  # uname -a
  FreeBSD my.freebsd.server 4.9-STABLE FreeBSD
  4.9-STABLE #0: Sat Feb 21 14:53:51 CST 2004
 
 
 
  __
  Do you Yahoo!?
  Yahoo! Mail - 50x more storage than other
 providers!
  http://promotions.yahoo.com/new_mail
  ___
  [EMAIL PROTECTED] mailing list
 

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




__
Do you Yahoo!?
New and Improved Yahoo! Mail - Send 10MB messages!
http://promotions.yahoo.com/new_mail 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


PostgreSQL || MySQL

2004-08-19 Thread Parahat Melayev
Hi ppl,
we are planning to programm Instant Messaging server
which will be serving for thousands or many thousands
of users.
if you have experience in this area which DB server you
suggest to use at the backend and can you share your
experiences please.
thank you,
Parahat Melayev
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: cd and dvd burning program K3b and permissions for non-root users.

2004-08-19 Thread edwinculp
First I would like to thank:

Oliver Fuchs [EMAIL PROTECTED]
E. Eusey [EMAIL PROTECTED] 
Oliver Fuchs [EMAIL PROTECTED]

For their excellent and similar suggestions for getting this to work and apologize for 
not answering quicker but I've been trying and trying to find the right combination.  
After applying and testing all individually, I still haven't been successful. 

The problem is that cd0 isn't recognized by k3b unless the user is root.  The only 
error I can find from k3b is:

k3b: (K3bDeviceManager) /dev/cd0 resolved to /dev/cd0
k3b: (K3bCdDevice) /dev/cd0: init()
k3b: (K3bCdDevice::ScsiCommand) open device  failed.
k3b: ERROR: (K3bCdDevice) Unable to do inquiry.

Perms are:

/dev # ls -l cd0 xpt0
crw-rw-rw-  1 root  operator4,  22 Aug 16 10:46 cd0
crw-rw-rw-  1 root  operator  229,   0 Aug 16 10:46 xpt0

I created a mount point directory for the plaza and added the entry in fstab and 
they can mount /dev/cd0 on their mount point.

/dev/cd0 on /home/plaza/cdrom (cd9660, local, nodev, nosuid,
read-only, mounted by plaza)

I set up sudo for camcontrol which works perfectly

ALL ALL = NOPASSWD: /sbin/camcontrol devlist

/home/plaza # camcontrol devlist
SONY CD-RW  CRX230ED 4YS1at scbus0 target 1 lun 0
(cd0,pass0)

I have set uid root on:

/usr/local/bin # ls -l cdrdao cdrecord
-rwsr-sr-x  1 root  wheel  510232 Aug 12 20:22 cdrdao
-rwsr-sr-x  1 root  wheel  254636 Aug 12 20:19 cdrecord

The plaza user can play audio with xmms but still can't use k3b.

If you have any ideas what I´m missing, they would be appreciated.

ed

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


RE: Config freebsd as getway

2004-08-19 Thread Philip Payne
Hi,

Is this something obvious like the default gateway not being set on either
of the PC's in question.

Without seeing the IP setup its not obvious.

Cheers,
Phil.

 -Original Message-
 From: Andras Kende [mailto:[EMAIL PROTECTED]
 Sent: 18 August 2004 17:34
 To: 'lily'; [EMAIL PROTECTED]
 Subject: RE: Config freebsd as getway
 
 
 
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of lily
 Sent: Tuesday, August 17, 2004 9:34 PM
 To: [EMAIL PROTECTED]
 Subject: Config freebsd as getway
 
 Dear all:
 
 I have install freebsd 4.x,and have two netcards.
 I want it as getway.
 I have config gateway_enable=YES   in rc.conf,and then reboot.
 [a pc][freebsd]---[b pc]
 After reboot , I try to use a pc to ping b pc ,it`s not work 
 ,but a pc and b
 pc can ping freebsd successful,why?
 Please give me a hand.
 Thanks!!
 
 LILY
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to 
 [EMAIL PROTECTED]
 
 
 
 LILY,
 
 There is a very easy guide:
 http://bsdguides.org/guides/freebsd/networking/ipfilter.php
 
 
 
 Andras Kende
 http://www.kende.com
 
 
 
 ___
 [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: php postgres issues

2004-08-19 Thread Rail mail
is it a lost cause to: 

/usr/ports/lang/php4-extensions
make config (choose pgsql support)
apache restart
but still no support for postgres in php

perhaps there is some extra configuration I am missing

I changed my php.ini to incudle pgsql.so
http.config is set up to add the php module

users pages run php, but not the postgres API

my method for installing everything, in short, was:
make install apache13 port
make install mod_php4 port
(posgres already there)
apache rc script restart
(recently)
make config php4-extensions
make install php4-extensions
apache rc script restart
still no pg api ;(

thanks for any help
R.

On Wed, 18 Aug 2004 13:18:27 -0700, Randy Grafton
[EMAIL PROTECTED] wrote:
 I'm sorry to see you're having so much trouble. I've been using the
 apache-php-postgresql for some time now and wanted to compliment you on your
 choice as well as offer some help.
 
 First, I would definitely recommend that you do everything, (or as much as
 you can) through the ports.
 Second, I strongly suggest that you start with a minimal installation. The
 packages are a great place to start for beginners but the ports are much
 more robust, flexible and CURRENT. The minimal install is available as a
 choice when performing an install.
 
 Assuming that you have done a minimal install and therefore clearing any
 possible conflicts with other possibly outdated packages install the
 following items in the listed order:
 
 1. Apache. Your choice of version though I've heard that PHP may not be
 fully ready for the threading in Apache2. I've not experienced any problems
 with Apache2 and PHP5 or PHP4, so this is just a FYI.
 cd /usr/ports/www/apache13 or cd /usr/ports/www/apache2 and do 'make install
 clean'.
 
 2. PostgreSQL. Straight forward install here.
 cd /usr/ports/database/postgresql73 and do 'make install clean'
 I'm assuming that you aware of the requirement to do initdb as pgsql to
 initialize the databases after installation from the ports.
 
 3. PHP. If your curious about PHP5 then the steps get a little different and
 I list those next. As for PHP4 just cd /usr/ports/www/mod_php4 and do '
 make install clean'. The last time I ran this, and every time before, I was
 presented with a menu to select the options for PHP such as PostgreSQL, GD,
 PDFLib..., so you don't have to worry about command line defines.
 
 PHP5, here you'll goto /usr/ports/lang/php5-extensions and do a 'make
 install clean'. Again the menu will pop up with php extension choices as
 stated above. Once this is done goto /usr/ports/www/mod_php5 and do 'make
 install clean'.
 
 Obviouosly the above steps have been completed goto
 /usr/local/etc/apache/httpd.conf and make sure that you have the LoadModule
 and AddType lines in there for php.  Then goto /usr/local/etc/rc.d and run
 the apache and postgresql startup scripts with the 'start' command line
 option.
 
 Let me know if you need more detail.
 
  -Randy
 
 
 
 Rail mail writes:
 
  I am having issues with getting postgress extensions for php4
 
  do you have to configure it via ports/compiling or can you get away
  with with just pkg_dd -r
 
  Iv'e tried
 
  pkg_add -r apache
  pkg_add -r mod_php4
 
  and the ports way
 
  cd /usr/ports/www/mod_php4
  make
  cd work/php-4.3.8
  ./configure --with-pgsql
  cd ../../
  make install
 
  and variations of that
  I also thought that I might have wanted something from
  lang/php4-extensions
  make config
  //choose pgsql
  make install
 
  I havn't seemed to have any luck
 
  the ol sys admin already set up httpd.conf
 
  I was mucking around with php.ini trying to get it to use pgsql.so
 
  what is the best direction to take
  I'd like to stick to packages or ports
  I found tutorials on how to do it with rpms or tar.gz and do it by
  hand, but freebsd has set up a nice system with ports and packages and
  I would like to stick to that if I can
 
  thanks for any help
  ___
  [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: PostgreSQL || MySQL

2004-08-19 Thread Siddhartha Jain
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Parahat Melayev wrote:
| Hi ppl,
|
| we are planning to programm Instant Messaging server
| which will be serving for thousands or many thousands
| of users.
|
| if you have experience in this area which DB server you
| suggest to use at the backend and can you share your
| experiences please.
|
| thank you,
| Parahat Melayev
http://www.wlug.org.nz/PostgresVsMysql
Should help depending on your application needs. If you are not going to
write to the database often then LDAP might be a better idea.
HTH,
Siddhartha
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (MingW32)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
iD8DBQFBJM7FOGaxOP7knVwRAuRSAJ4vaMCDEY6Xa9gyGW1iJesAmmhotwCfaPQl
idWuT2sGU2jFi8U5ho9kq8Q=
=gg8y
-END PGP SIGNATURE-
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


php4

2004-08-19 Thread Mark
after a portupgrade I have lost mysql support with php4.
I have pkg_deinstalled did a make--with-mysql=/usr/local/bin/mysql
and pkg_reinstall but no support. Then portupgrade -m 
--with-mysql=/usr/local/bin/mysql php4. Then pkg_delete did make 
--with-mysql=/usr/local/bin/mysql then make install still no support. Mysql is there 
and working, logins work from command line and data is there. But from apache php is 
working but with no mysql support, phpinfo shows no mysql module loaded. 

A whereis gave me the /usr/local/bin/mysql, What would be the proper way to add support
with php4 already installed?? 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: php4

2004-08-19 Thread Jonathan T. Sage

Mark wrote:
after a portupgrade I have lost mysql support with php4.
I have pkg_deinstalled did a make--with-mysql=/usr/local/bin/mysql
and pkg_reinstall but no support. Then portupgrade -m --with-mysql=/usr/local/bin/mysql php4. Then pkg_delete did make --with-mysql=/usr/local/bin/mysql then make install still no support. Mysql is there and working, logins work from command line and data is there. But from apache php is working but with no mysql support, phpinfo shows no mysql module loaded. 

A whereis gave me the /usr/local/bin/mysql, What would be the proper way to add support
with php4 already installed?? 
Mark :
per ports/UPDATING:
20040719:
  AFFECTS: users of PHP
  AUTHOR: [EMAIL PROTECTED]
The old lang/php4 and lang/php5 ports have been splitted into 'base' 
PHP, PEAR, and shared extensions to allow more flexibility and add new 
features. Upgrading your current PHP installation will result in a 
'base' PHP installation (no PEAR and no extensions). PEAR can be found 
in the new devel/php4-pear and devel/php5-pear ports, while the set of 
PHP extensions to install can be choosen via the meta-ports 
lang/php4-extensions and lang/php5-extensions, or installing singular 
extensions individually. If you have a previous php.ini configuration 
file, be sure to comment out the extension_dir parameter, since the 
correct path is statically compiled into the PHP binary. For an overview 
of the modules used with the old PHP binary, use the command php -m.

installing lang/php4-extensions should be helpful.
hope this helps,
~j
--
Jonathan T. Sage
Theatrical Lighting / Set Designer
Professional Web Design
He said he likes me, but he's not in-like with me.- Connie, King of 
the Hill

[HTTP://www.JTSage.com]
[HTTP://design.JTSage.com]
[EMAIL PROTECTED]
[See Headers for Contact Info]


signature.asc
Description: OpenPGP digital signature


Mouse problems with KVM switch

2004-08-19 Thread thrawn
Hi,
I have just brought this KVM switch:
http://www.level1.com/products3.php?sklop=20id=590430
But Im having major problems with getting the mouse to work under 
FreeBSD. Even the keyboard does not work sometimes. This KVM switch has 
support for hotkey and also supports emulation on both mouse and keyboard.

When I boot up my system and see the BIOS on the computer the keyboard 
works just fine. Then when it continues to boot and comes to the loader, 
it still works. And the it starts to load the kernel. But then when i 
get to the login prompt the keyboard does not work.

And sometimes even thought I stay with the computer the hole boot 
process I can't even use the keyboard. So I have to use ssh to login to 
the computer and make it reboot to regain the keyboard. I have also 
tried to change the cables but I get the same results. And It works with 
no problems under Windows XP Pro.

The system that im using is FreeBSD 5.2.1-p9, at least on this system.
I  have also two other computers that Im running FreeBSD-stable on. On 
one of my FreeBSD-stable machines I have hade a working mouse under X 
Windows System (Xorg latest from ports).

But then I rebooted the system and when I started xdm, it found the 
mouse but when I move it around It didn't move like it should. It took 
some seconds before it moved and it did not move like it should, jumps 
several ramdom cm/inches on the screen (Perhaps in the direction that I 
move the mouse im not sure). Its on usable in other words.

I have also tryied to use moused under FreeBSD but I get the same 
fault/problem. I also have a problem if I do not have this machine 
selected when I boot. Then when I switch to it when the boot of the 
FreeBSD system has complete, The screen on the monitor just blinks.

Still the keyboard works because I can press two times Left Ctrl and 
then 1 to 4 to change the computer Im controlling. This I can not do 
with the FreeBSD 5.2.1-p9 system I can only see the screen but have to 
change the computer im controlling by pressing the button on the switch box.

I have tried to remove the cables and put them back again. But that does 
not help, the only solution I can see is to reboot the system and let it 
boot with it selected. I have also booted up with the mouse directly 
connected to the computer. Then when the system boot was completed I 
moved the mouse around to see that it did work. After that I plugged 
back the cable from the switch in to the computers mouse port. And the 
plugged the mouse back in the switch box, that did not work either.

I have also added flags to both psm0 and atkbd in my kernel config:
# atkbdc0 controls both the keyboard and the PS/2 mouse
device  atkbdc0 at isa? port IO_KBD
device  atkbd0  at atkbdc? irq 1 flags 0x0
device  psm0at atkbdc? irq 12 flags 0x0
I have also tried with the flags set to 0x100 on both atkbd0 and psm0, 
but that doesn't seem to make any diffrance. I have done this on my 
FreeBSD 5.2.1-p9 box as well. I have also changed it in:

/boot/device.hints
But I don't get it working correctly either by that.
Does anybody have a clue or have hade any similar problems and/or who 
could shine some light on this problem?

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


apsfilter and Epson Stylus C63 on Current

2004-08-19 Thread edwinculp
I've been trying on and off to get an epson stylus c63 to print on current.  I've 
always used apsprint which has always worked perfectly.  In this case I am afraid that 
Epson has changed something and this model isn't supported by ghostscript.  I've 
always been able to usr practically any of the basic Epson stylus entries with new 
epson printers and they've worked.  In this case I get a lot of form feeds and 
garbage.  I've tried the gimp drivers and I get a lot of | and other garbage.  Ascii 
prints fine.  I've tried the script in the handbook to see if I could get anything 
understandable from different gs drivers with no luck.  

If anyone has any suggestions, I would appreciat them of if someone has a Epson Stylus 
C63 or C6? printing successfully, would you be kind enough to share the secret with 
me? :)

Thanks,

ed

I saw that there are some linux drivers for Epson printers in general and the C6?.
Has anyone used them?  Can they be used directly as input filters in printcap?

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


install info

2004-08-19 Thread Joey Fenley
Installing FreeBSD on hosting server for first time, has dual scsi with
raid, loaded FreeBSD but after rebooting error state please insert
bootable media.
 
 
very confused,
 
Joey
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: apsfilter and Epson Stylus C63 on Current

2004-08-19 Thread Andrew L. Gould
On Thursday 19 August 2004 11:27 am, edwinculp wrote:
 I've been trying on and off to get an epson stylus c63 to print on
 current.  I've always used apsprint which has always worked
 perfectly.  In this case I am afraid that Epson has changed something
 and this model isn't supported by ghostscript.  I've always been able
 to usr practically any of the basic Epson stylus entries with new
 epson printers and they've worked.  In this case I get a lot of form
 feeds and garbage.  I've tried the gimp drivers and I get a lot of |
 and other garbage.  Ascii prints fine.  I've tried the script in the
 handbook to see if I could get anything understandable from different
 gs drivers with no luck.

 If anyone has any suggestions, I would appreciat them of if someone
 has a Epson Stylus C63 or C6? printing successfully, would you be
 kind enough to share the secret with me? :)

 Thanks,

 ed

 I saw that there are some linux drivers for Epson printers in general
 and the C6?. Has anyone used them?  Can they be used directly as
 input filters in printcap?

Hi Ed,

I use apsfilter with gimp-print drivers for my Epson Stylus C82.  The 
C63 is supported (mostly) by gimp-print.  See the following link for 
more information:

http://www.linuxprinting.org/show_printer.cgi?recnum=Epson-Stylus_C63

Best of luck,

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


Re: install info

2004-08-19 Thread Siddhartha Jain
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Joey Fenley wrote:
| Installing FreeBSD on hosting server for first time, has dual scsi with
| raid, loaded FreeBSD but after rebooting error state please insert
| bootable media.
|
|
| very confused,
|
| Joey
Do you remember what did you do with the option of installing MBR?
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (MingW32)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
iD8DBQFBJNbdOGaxOP7knVwRAibzAJ99jBU4VlP2M/GJTIF5MSm/wGqHmwCggmRJ
Tfo7rrQkI3a8yDzsCS3GdUg=
=sXjv
-END PGP SIGNATURE-
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: php4

2004-08-19 Thread Mark
On Thu, Aug 19, 2004 at 12:06:52PM -0400, Jonathan T. Sage wrote:
 
 
 Mark wrote:
 
 after a portupgrade I have lost mysql support with php4.
 I have pkg_deinstalled did a make--with-mysql=/usr/local/bin/mysql
 and pkg_reinstall but no support. Then portupgrade -m 
 --with-mysql=/usr/local/bin/mysql php4. Then pkg_delete did make 
 --with-mysql=/usr/local/bin/mysql then make install still no support. 
 Mysql is there and working, logins work from command line and data is 
 there. But from apache php is working but with no mysql support, phpinfo 
 shows no mysql module loaded. 
 A whereis gave me the /usr/local/bin/mysql, What would be the proper way 
 to add support
 with php4 already installed?? 
 
 Mark :
 
 per ports/UPDATING:
 
 20040719:
   AFFECTS: users of PHP
   AUTHOR: [EMAIL PROTECTED]
 
 The old lang/php4 and lang/php5 ports have been splitted into 'base' 
 PHP, PEAR, and shared extensions to allow more flexibility and add new 
 features. Upgrading your current PHP installation will result in a 
 'base' PHP installation (no PEAR and no extensions). PEAR can be found 
 in the new devel/php4-pear and devel/php5-pear ports, while the set of 
 PHP extensions to install can be choosen via the meta-ports 
 lang/php4-extensions and lang/php5-extensions, or installing singular 
 extensions individually. If you have a previous php.ini configuration 
 file, be sure to comment out the extension_dir parameter, since the 
 correct path is statically compiled into the PHP binary. For an overview 
 of the modules used with the old PHP binary, use the command php -m.
 
 installing lang/php4-extensions should be helpful.
 
 hope this helps,

Thanks 


noobie lession 08/19/2004 read UPDATING.  =)

 
 ~j
 
 -- 
 Jonathan T. Sage
 Theatrical Lighting / Set Designer
 Professional Web Design
 
 He said he likes me, but he's not in-like with me.- Connie, King of 
 the Hill
 
 [HTTP://www.JTSage.com]
 [HTTP://design.JTSage.com]
 [EMAIL PROTECTED]
 [See Headers for Contact Info]



-- 

==

The information contained in this communication is confidential, private,
proprietary, or otherwise privileged and is intended only for the use of the
addressee.  Unauthorized use, disclosure, distribution or copying is strictly
prohibited and may be unlawful.  If you have received this communication in
error, please notify the sender immediately.

==

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


Scheduled system backups program

2004-08-19 Thread Joshua Lewis
I have a customer who has learned the hard way (the very hard way) that
backups of your corporate data are imperative.

Well now that I have spent the last three days trying to recover their
data I need to implement a backup plan for them.

They only have a few drives for backup (two 40G and a 160G) up so I would
like to make a full backup this week and then schedule incremental backups
from now on.

The two 40G are probably going to get striped together and the 160 is
going to be a dedicated backup.

They do not have any tape drives only hard drives and to top it all off
they only have Macs. They are using a dedicated Mac running OS 9.2 acting
as a server.

I was hoping I could upgrade that system to OS X and I was wondering if
there are any FreeBSD utilities that would work for backing up. Otherwise
I will be setting up a freebsd backup server and I would like to save the
customer the money and not have to go that route.

I am sorry for the many OS X questions I have been posting here over the
last few days but the Darwin mailing list did not respond. Does anyone
know of a good OS X mailing list I can join?



Thank you,
Joshua Lewis

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


Re: Patch patch-ac failed to apply cleanly.

2004-08-19 Thread Lowell Gilbert
Tyler Parrott [EMAIL PROTECTED] writes:

 I now have a similar problem with openldap.  After installing m4, I
 ran pkgdb -F again, and I downloaded the latest makefile from
 freebsd.org.

Sounds like you updated the makefile without updating the patches in
the port.  You need to update the *entire* port directory tree for
openldap if you're going to update any part of it.  [It is quite
common to use cvsup and do the entire ports tree in one shot...]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


How do I make devices usable from a jail?

2004-08-19 Thread Luke
I'm running CURRENT.  I've set up a jail.  As part of setting it up, I ran 
mount_devfs devfs /path/to/jail/dev.  This appeared to mount all of my 
devices in the jail at the proper location.
When I start the jail, the jail's /dev looks correct.  It looks 
identitical to the host system's /dev as far as I can tell.  The devices 
are all owned by root, and the permissions on most of them are crw---.
However, the jail cannot seem to use some of these devices.
For example, when I run sysinstall inside the jail and attempt to install 
packages from the CD, it reports that it does not have permission.  More 
importantly, sshd can't access /dev/random.
crw-r- 1 root operator  4,  12 Aug 19 09:08 /dev/acd0
crw-rw-rw- 1 root wheel   250,   0 Aug 19 02:08 /dev/random
lrwxr-xr-x 1 root wheel6   Aug 19 16:40 /dev/urandom - random
I can't understand why sshd and sysinstall can't use these devices.

The documentation suggests that devfs may have something to do with this, 
but running devfs rule showsets from outside the jail yields nothing. 
Running it from inside the jail gives an operation not permitted error. 
I suppose I have no rules.  Is this the problem?  Is the default behavior 
for allowing access to devices from jails more restrictive than when not 
in jails?
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: FreeBSD 5.2.1 not resolving after kernel compiling

2004-08-19 Thread Hauan, David


 -Original Message-
 From: Jorge Mario G. [mailto:[EMAIL PROTECTED] 
 Sent: Wednesday, August 18, 2004 7:14 PM
 To: [EMAIL PROTECTED]
 Subject: FreeBSD 5.2.1 not resolving after kernel compiling
 
 
 Hi there
 
 My freebsd box was working fine (resolving)
 then I recompiled the kerneld 
 I just added scbus and da to get my digicam, working
 then after reboot I can not resolv I think
 
 when I try to cvsup it sits on PARSING FILE
 I can not ssh to boxes in the LAN 
 but I can ping then
 I can not ping boxes outside the LAN from that box
 
 I dont what can be the problem
 
 I guess it`s the /etc/hosts file
 
 the files looks like this:
 
 ::1   localhost localhost.sancocho.org
 127.0.0.1 localhost localhost.sancocho.org
 192.168.0.6  gato gato.sancocho.org
 
 anyhelp would be apreciated it
 
what does /etc/resolv.conf read?

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


Re: Scheduled system backups program

2004-08-19 Thread adam
Responses in your quoted message
Joshua Lewis wrote:
I have a customer who has learned the hard way (the very hard way) that
backups of your corporate data are imperative.
Well now that I have spent the last three days trying to recover their
data I need to implement a backup plan for them.
They only have a few drives for backup (two 40G and a 160G) up so I would
like to make a full backup this week and then schedule incremental backups
from now on.
The two 40G are probably going to get striped together and the 160 is
going to be a dedicated backup.
They do not have any tape drives only hard drives and to top it all off
they only have Macs. They are using a dedicated Mac running OS 9.2 acting
as a server.
I was hoping I could upgrade that system to OS X and I was wondering if
there are any FreeBSD utilities that would work for backing up. Otherwise
I will be setting up a freebsd backup server and I would like to save the
customer the money and not have to go that route.
 

This didn't quite make full sense to me (forgive me if I misread it).  
If they have all mac machines, what kind of machines are they (specs?)?  
I've noticed with a lot of older macs, upgrading to os x is going to 
require you to get more ram otherwise your users will complain.  I'd 
suggest not considering os x if they're running anything released before 
the blue and white g3s (new g4 sales were when os x started shipping 
standard w/os 9.x and also when os 9 was no longer installed on the 
later generation g4s)..  I have a bw w/256 megs of ram on it.  It's not 
so bad, but I'd suggest having 384-512 (specs say they only take 512, 
but they'll actually max otu and handle 1 gig quite well).

Since they obviously would want to stay with the mac platform, my 
suggestion would be to bite the bullet and install os x on all the macs 
and make the backup machine freebsd.  Assume almost any command line 
utility that exists for freebsd exists or can be compiled for mac os x 
(see fink.sourceforge.net for the easiest installation 
management...that's a broad statement so don't REALLY assume that's true 
w/o doing your own research).  If you leave os 9.2 on those macs, you'll 
end up having to purchase software like mac pc-lan or other networking 
clients.  In the end, it'll be a waste of money when they upgrade to os 
x anyway.  the toss up is buying the os 9.2 software vs. upgrading to os 
x and them buying os x versions of their software (if they don't run 
classic in parallel with os x).

I don't know much about backups, but i'd say look into rsync (someone 
else answer w/something better please).

To save a few bucks, I'd just install freebsd on their server machine.
On a side note, from what i've read (but never experienced) raid support 
for mac classic can be summed up in 1 wordpthththththe:P  Although 
thye do exist, there are few hardware solutions for mac classic raid  
and i don't know many people fond of software driven raid (esp if your 
system crashes completely). 

I am sorry for the many OS X questions I have been posting here over the
last few days but the Darwin mailing list did not respond. Does anyone
know of a good OS X mailing list I can join?
 

I don't know of any mailing lists, but I do suggest taking a look at 
www.macosx.com (forums...pretty good) and www.macdevcenter.com 
(o'reilly's site).  The best source for info about personal experiences 
would be to check http://www.xlr8yourmac.com/.  That's where I always go 
for mac hardware info on older machines.

Thank you,
Joshua Lewis
 

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


Re: KDEInit could not launch 'kmail'

2004-08-19 Thread Owen.G
Ciprian Badescu wrote:
Hi,
Search for libkdeprint.so.x or libkdeprint.so and make a symblic link from
libkdeprint.so.5 to that file. It's an ugly trick, but should work.
--
Ciprian Badescu
On Thu, 19 Aug 2004, Owen Gardiner wrote:

Date: Thu, 19 Aug 2004 16:35:26 +0200
From: Owen Gardiner [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: KDEInit could not launch 'kmail'
I've installed KDE 3.23 on a machine running 5.21-release-p9 which has
x116.7 from X.ORG installed.
I try to start kmail and get a message window of:
KDEInit could not launch 'kmail'
If I copy the command properties of the kmail icon and run it from the
command line:
kmail -caption %c %i %m
I get the reply:
/libexec/ld-elf.so1: Shared object libkhtml.so.5 not found
Ditto when trying to run kedit
from the command like I get:
/libexec/ld-elf.so1: Shared object libkdeprint.so.5 not found
Everything on the machine has been installed from ports.
I've tried to do portupgrades and pkgdb -uf and portsdb-Uu but apart
from seeing that some packages are ignores, some are skipped and one
fails I'm none the wiser.
I've reinstalled kde to see if I've managed to do some harm whilst using
  pkgdb -F.  I may have wrongly answered some questions about stale
dependencies when using it.
Help?
Thanks in anticipation.
Owen
P.S. I've searched the freebsd mail archives to no avail.
___

Cheers,
There's LOTS of files not found. I don't understand it as I've tried a
portupgrade  I have made 20 or so links so far.  I'll try portupgrade
with a few more switches thrown in for good measure as I can now see
which port needs upgrading (kdelibs-323_1)!
Trying portupgrade -k and it seems to be doing the trick.  I wonder why 
it failed or skipped the kde* ports without the -k switch.

Thanks
Owen

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


Advice on webmail server

2004-08-19 Thread Metrion
Hi all,

I'm hoping someone can give me some tips on setup for a server I'm
making. It's going to be a webmail server for a client, with probably
no more then 700-800 total accounts, with maybe up to 250 concurrent
users. Will be some HTML mail (bleh!) and flash/animated gif/etc also.
I thought of Squirrelmail as the likely candidate. Mostly internal
connections, with external via SSL available. Bandwidth isn't an
issue.

The server is a HP ProLiant DL380, twin 2.8GHz Xeon, 2G ram. 2x36.4G
10k Ultra320 and 4x72.8G 10k Ultra320.

I have the 36.4G drives mirrored, for OS and config stuff, and was
going to make the 4x72.8G a raid5 and that be the mail spool
partition. Is that sound like a good idea?

I've not used FreeBSD for anything like this before and frankly am not
sure what changes from default I should use, if any. Should I stick
with 4.10, or is 5.2.1 OK? Any sysctl changes? Default kernel OK?


Thanks for any tips! 

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


securing postgresql on fbsd

2004-08-19 Thread David Bear

This is not strictly a freebsd question, but this group is the
smartest around... so

I've installed postgresql on freebsd  4.10-rel.  I want to secure ALL
connections to postgres through ssh. So I first configured postgresql
to connect ONLY to 127.0.0.1 port 5432.  Then, when attempting to ssh
to tunnel to it from another machine I got an error:
---
Aug 19 10:31:12 dbsrv1 sshd[157]: Accepted publickey for iddwb from
+129.219.69.200 port 33068 ssh2
Aug 19 10:31:40 dbsrv1 sshd[159]: error: connect_to 129.219.69.206
port 5432:
+Connection refused
Aug 19 10:31:40 dbsrv1 sshd[159]: error: connect_to dbsrv1.pp.asu.edu
port 5432:
+failed.

So it looks like I wasn't building the tunnel correctly. From the
remote host connecting to the freebsd postgresql server I was using:

ssh -L 5001:dbsrv1:5432 [EMAIL PROTECTED]

But it looks like that is forbidden to connect to 'localhost' on the
remote machine, ie on dbsrv1.

I was able to get postgresql to bind to all adapters, and connect to
it using the above tunnel.  But then I have an open port on dbsrv1
that anyone can connect to... ie I can straight telnet dbsrv1 5432 and
reach it unencrypted. It binds to a public interface, and I don't want
that.

I know postgresql has an ssl option, but I was hoping to just use ssh
tunneling.

hoping this make sense, I'm wondering what other freebsd users have
done to secure postgresql? or how to make ssh tunnel 'all the way
through to the remote localhost'..

-- 
David Bear
phone:  480-965-8257
fax:480-965-9189
College of Public Programs/ASU
Wilson Hall 232
Tempe, AZ 85287-0803
 Beware the IP portfolio, everyone will be suspect of trespassing


- End forwarded message -

-- 
David Bear
phone:  480-965-8257
fax:480-965-9189
College of Public Programs/ASU
Wilson Hall 232
Tempe, AZ 85287-0803
 Beware the IP portfolio, everyone will be suspect of trespassing
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Advice on webmail server

2004-08-19 Thread Jerry McAllister
 
 Hi all,
 
 I'm hoping someone can give me some tips on setup for a server I'm
 making. It's going to be a webmail server for a client, with probably
 no more then 700-800 total accounts, with maybe up to 250 concurrent
 users. Will be some HTML mail (bleh!) and flash/animated gif/etc also.
 I thought of Squirrelmail as the likely candidate. Mostly internal
 connections, with external via SSL available. Bandwidth isn't an
 issue.
 
 The server is a HP ProLiant DL380, twin 2.8GHz Xeon, 2G ram. 2x36.4G
 10k Ultra320 and 4x72.8G 10k Ultra320.
 
 I have the 36.4G drives mirrored, for OS and config stuff, and was
 going to make the 4x72.8G a raid5 and that be the mail spool
 partition. Is that sound like a good idea?
 
 I've not used FreeBSD for anything like this before and frankly am not
 sure what changes from default I should use, if any. Should I stick
 with 4.10, or is 5.2.1 OK? Any sysctl changes? Default kernel OK?

Sounds like you have most everything covered.   For a production server,
stick with 4.10 for now.   Later, do a massive upgrade to 5.3 when it
has been proven for a bit.   Basically, stick with the defaults unless
they prove lacking.There is generally a reason they became the
default and often it is even a good reason.   

Squirrel works pretty well for a webmail server.  Of course you will 
need to install Apache or something equivalent.  You might want to add 
an Email list utility such as Majordomo or Mailman.

jerry

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


Mouse problems with KVM switch

2004-08-19 Thread Mattias Björk
Hi,
I have just brought this KVM switch:
http://www.level1.com/products3.php?sklop=20id=590430
But Im having major problems with getting the mouse to work under 
FreeBSD. Even the keyboard does not work sometimes. This KVM switch has 
support for hotkey and also supports emulation on both mouse and keyboard.

When I boot up my system and see the BIOS on the computer the keyboard 
works just fine. Then when it continues to boot and comes to the loader, 
it still works. And the it starts to load the kernel. But then when i 
get to the login prompt the keyboard does not work.

And sometimes even thought I stay with the computer the hole boot 
process I can't even use the keyboard. So I have to use ssh to login to 
the computer and make it reboot to regain the keyboard. I have also 
tried to change the cables but I get the same results. And It works with 
no problems under Windows XP Pro.

The system that im using is FreeBSD 5.2.1-p9, at least on this system.
I  have also two other computers that Im running FreeBSD-stable on. On 
one of my FreeBSD-stable machines I have hade a working mouse under X 
Windows System (Xorg latest from ports).

But then I rebooted the system and when I started xdm, it found the 
mouse but when I move it around It didn't move like it should. It took 
some seconds before it moved and it did not move like it should, jumps 
several ramdom cm/inches on the screen (Perhaps in the direction that I 
move the mouse im not sure). Its on usable in other words.

I have also tryied to use moused under FreeBSD but I get the same 
fault/problem. I also have a problem if I do not have this machine 
selected when I boot. Then when I switch to it when the boot of the 
FreeBSD system has complete, The screen on the monitor just blinks.

Still the keyboard works because I can press two times Left Ctrl and 
then 1 to 4 to change the computer Im controlling. This I can not do 
with the FreeBSD 5.2.1-p9 system I can only see the screen but have to 
change the computer im controlling by pressing the button on the switch box.

I have tried to remove the cables and put them back again. But that does 
not help, the only solution I can see is to reboot the system and let it 
boot with it selected. I have also booted up with the mouse directly 
connected to the computer. Then when the system boot was completed I 
moved the mouse around to see that it did work. After that I plugged 
back the cable from the switch in to the computers mouse port. And the 
plugged the mouse back in the switch box, that did not work either.

I have also added flags to both psm0 and atkbd in my kernel config:
# atkbdc0 controls both the keyboard and the PS/2 mouse
device  atkbdc0 at isa? port IO_KBD
device  atkbd0  at atkbdc? irq 1 flags 0x0
device  psm0at atkbdc? irq 12 flags 0x0
I have also tried with the flags set to 0x100 on both atkbd0 and psm0, 
but that doesn't seem to make any diffrance. I have done this on my 
FreeBSD 5.2.1-p9 box as well. I have also changed it in:

/boot/device.hints
But I don't get it working correctly either by that.
Does anybody have a clue or have hade any similar problems and/or who 
could shine some light on this problem?

Mvh Mattias Björk
ps: sorry if this is posted one time already... I have hade some 
problems with my MUA.

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


Re: Mouse problems with KVM switch

2004-08-19 Thread hoe-waa

From: thrawn [EMAIL PROTECTED]
Date: Thursday, August 19, 2004 6:18 am

 Hi,
 
 I have just brought this KVM switch:
 http://www.level1.com/products3.php?sklop=20id=590430
 
 But Im having major problems with getting the mouse to work under 
 FreeBSD. Even the keyboard does not work sometimes. This KVM switch 
 has 
 support for hotkey and also supports emulation on both mouse and 
 keyboard.
 When I boot up my system and see the BIOS on the computer the 
 keyboard 
 works just fine. Then when it continues to boot and comes to the 
 loader, 
 it still works. And the it starts to load the kernel. But then when 
 i 
 get to the login prompt the keyboard does not work.
 
 And sometimes even thought I stay with the computer the hole boot 
 process I can't even use the keyboard. So I have to use ssh to 
 login to 
 the computer and make it reboot to regain the keyboard. I have also 
 tried to change the cables but I get the same results. And It works 
 with 
 no problems under Windows XP Pro.
 
 The system that im using is FreeBSD 5.2.1-p9, at least on this system.
 
 I  have also two other computers that Im running FreeBSD-stable on. 
 On 
 one of my FreeBSD-stable machines I have hade a working mouse under 
 X 
 Windows System (Xorg latest from ports).
 
 But then I rebooted the system and when I started xdm, it found the 
 mouse but when I move it around It didn't move like it should. It 
 took 
 some seconds before it moved and it did not move like it should, 
 jumps 
 several ramdom cm/inches on the screen (Perhaps in the direction 
 that I 
 move the mouse im not sure). Its on usable in other words.
 
 I have also tryied to use moused under FreeBSD but I get the same 
 fault/problem. I also have a problem if I do not have this machine 
 selected when I boot. Then when I switch to it when the boot of the 
 FreeBSD system has complete, The screen on the monitor just blinks.
 
 Still the keyboard works because I can press two times Left Ctrl 
 and 
 then 1 to 4 to change the computer Im controlling. This I can not 
 do 
 with the FreeBSD 5.2.1-p9 system I can only see the screen but have 
 to 
 change the computer im controlling by pressing the button on the 
 switch box.
 
 I have tried to remove the cables and put them back again. But that 
 does 
 not help, the only solution I can see is to reboot the system and 
 let it 
 boot with it selected. I have also booted up with the mouse 
 directly 
 connected to the computer. Then when the system boot was completed 
 I 
 moved the mouse around to see that it did work. After that I 
 plugged 
 back the cable from the switch in to the computers mouse port. And 
 the 
 plugged the mouse back in the switch box, that did not work either.
 
 I have also added flags to both psm0 and atkbd in my kernel config:
 
 # atkbdc0 controls both the keyboard and the PS/2 mouse
 device  atkbdc0 at isa? port IO_KBD
 device  atkbd0  at atkbdc? irq 1 flags 0x0
 device  psm0at atkbdc? irq 12 flags 0x0
 
 I have also tried with the flags set to 0x100 on both atkbd0 and 
 psm0, 
 but that doesn't seem to make any diffrance. I have done this on my 
 FreeBSD 5.2.1-p9 box as well. I have also changed it in:
 
 /boot/device.hints
 
 But I don't get it working correctly either by that.
 
 Does anybody have a clue or have hade any similar problems and/or 
 who 
 could shine some light on this problem?
 
 Mvh Mattias Björk


Aloha Mattias

This all sounds familiar. I too had a lot of trouble
with a KVM switch. Actually, I tried two with the same
problem you are alluding to.

I came to the conclusion that the mouse will not work
through the KVM switch using FBSD, or at least I never
got it to.

I have two computers that are both running 5.2.1

I have connected a mouse directly to each computer.
I still had to shutdown both computers and connect 
the cables for the monitor and keyboard from each to
the KVM. I also connected and old mouse to the output
of the KVM.

With all this connected, I then powered up both computers. All seems to work fine with 
the inconvenience
of having to use 2 meese. I seldom have to go into one
fo the computers, so I can live with it.

This is probably not the answer you were looking for
but you were also looking for others who had problems.

Best of Luck
Robert


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


Re: Mouse problems with KVM switch

2004-08-19 Thread Mattias Björk
Hello,
[EMAIL PROTECTED] wrote:
From: thrawn [EMAIL PROTECTED]
Date: Thursday, August 19, 2004 6:18 am

Hi,
I have just brought this KVM switch:
http://www.level1.com/products3.php?sklop=20id=590430
But Im having major problems with getting the mouse to work under 
FreeBSD. Even the keyboard does not work sometimes. This KVM switch 
has 
support for hotkey and also supports emulation on both mouse and 
keyboard.
When I boot up my system and see the BIOS on the computer the 
keyboard 
works just fine. Then when it continues to boot and comes to the 
loader, 
it still works. And the it starts to load the kernel. But then when 
i 
get to the login prompt the keyboard does not work.

And sometimes even thought I stay with the computer the hole boot 
process I can't even use the keyboard. So I have to use ssh to 
login to 
the computer and make it reboot to regain the keyboard. I have also 
tried to change the cables but I get the same results. And It works 
with 
no problems under Windows XP Pro.

The system that im using is FreeBSD 5.2.1-p9, at least on this system.
I  have also two other computers that Im running FreeBSD-stable on. 
On 
one of my FreeBSD-stable machines I have hade a working mouse under 
X 
Windows System (Xorg latest from ports).

But then I rebooted the system and when I started xdm, it found the 
mouse but when I move it around It didn't move like it should. It 
took 
some seconds before it moved and it did not move like it should, 
jumps 
several ramdom cm/inches on the screen (Perhaps in the direction 
that I 
move the mouse im not sure). Its on usable in other words.

I have also tryied to use moused under FreeBSD but I get the same 
fault/problem. I also have a problem if I do not have this machine 
selected when I boot. Then when I switch to it when the boot of the 
FreeBSD system has complete, The screen on the monitor just blinks.

Still the keyboard works because I can press two times Left Ctrl 
and 
then 1 to 4 to change the computer Im controlling. This I can not 
do 
with the FreeBSD 5.2.1-p9 system I can only see the screen but have 
to 
change the computer im controlling by pressing the button on the 
switch box.

I have tried to remove the cables and put them back again. But that 
does 
not help, the only solution I can see is to reboot the system and 
let it 
boot with it selected. I have also booted up with the mouse 
directly 
connected to the computer. Then when the system boot was completed 
I 
moved the mouse around to see that it did work. After that I 
plugged 
back the cable from the switch in to the computers mouse port. And 
the 
plugged the mouse back in the switch box, that did not work either.

I have also added flags to both psm0 and atkbd in my kernel config:
# atkbdc0 controls both the keyboard and the PS/2 mouse
device  atkbdc0 at isa? port IO_KBD
device  atkbd0  at atkbdc? irq 1 flags 0x0
device  psm0at atkbdc? irq 12 flags 0x0
I have also tried with the flags set to 0x100 on both atkbd0 and 
psm0, 
but that doesn't seem to make any diffrance. I have done this on my 
FreeBSD 5.2.1-p9 box as well. I have also changed it in:

/boot/device.hints
But I don't get it working correctly either by that.
Does anybody have a clue or have hade any similar problems and/or 
who 
could shine some light on this problem?

Mvh Mattias Björk

Aloha Mattias
This all sounds familiar. I too had a lot of trouble
with a KVM switch. Actually, I tried two with the same
problem you are alluding to.
Does your KVM support hotkey? I have another KVM switch erlier that did 
work better but It didn't have support for hotkey. But It did not work 
perfectly but atleast the mouse worked mutch better if you compare to this.

I came to the conclusion that the mouse will not work
through the KVM switch using FBSD, or at least I never
got it to.
Im afraid that I can only agree. I have googled some also and there are 
quite a few posts that have the same topic. Some some years old. Not to 
blame FreeBSD but it seems that its a common problem. Or perhaps the KVM 
that I have been using are Crap or something in that direction.

I have two computers that are both running 5.2.1
I have two with FreeBSD-Stable and one with 5.2.1-p9.
I have connected a mouse directly to each computer.
I still had to shutdown both computers and connect 
the cables for the monitor and keyboard from each to
the KVM. I also connected and old mouse to the output
of the KVM.
I know that is a solution, don't need the mouse for the most of the time 
on the servers. But my Workstation Its requierd. Then again its kind of 
dumb to have a KVM if you still have to use the mouse directly connected 
to the computer.

With all this connected, I then powered up both computers. All seems to work fine with 
the inconvenience
of having to use 2 meese. I seldom have to go into one
fo the computers, so I can live with it.
As I still can return the KVM im thinking that I should do it. But not 
until I have 

Re: Mouse problems with KVM switch

2004-08-19 Thread Leonard Zettel
On Thursday 19 August 2004 04:55 pm, [EMAIL PROTECTED] wrote:
 From: thrawn [EMAIL PROTECTED]
 Date: Thursday, August 19, 2004 6:18 am

  Hi,
 
  I have just brought this KVM switch:
  http://www.level1.com/products3.php?sklop=20id=590430
 
  But Im having major problems with getting the mouse to work under
  FreeBSD. Even the keyboard does not work sometimes. This KVM switch
  has
  support for hotkey and also supports emulation on both mouse and
  keyboard.
  When I boot up my system and see the BIOS on the computer the
  keyboard
  works just fine. Then when it continues to boot and comes to the
  loader,
  it still works. And the it starts to load the kernel. But then when
  i
  get to the login prompt the keyboard does not work.
 
  And sometimes even thought I stay with the computer the hole boot
  process I can't even use the keyboard. So I have to use ssh to
  login to
  the computer and make it reboot to regain the keyboard. I have also
  tried to change the cables but I get the same results. And It works
  with
  no problems under Windows XP Pro.
 
  The system that im using is FreeBSD 5.2.1-p9, at least on this system.
 
  I  have also two other computers that Im running FreeBSD-stable on.
  On
  one of my FreeBSD-stable machines I have hade a working mouse under
  X
  Windows System (Xorg latest from ports).
 
  But then I rebooted the system and when I started xdm, it found the
  mouse but when I move it around It didn't move like it should. It
  took
  some seconds before it moved and it did not move like it should,
  jumps
  several ramdom cm/inches on the screen (Perhaps in the direction
  that I
  move the mouse im not sure). Its on usable in other words.
 
  I have also tryied to use moused under FreeBSD but I get the same
  fault/problem. I also have a problem if I do not have this machine
  selected when I boot. Then when I switch to it when the boot of the
  FreeBSD system has complete, The screen on the monitor just blinks.
 
  Still the keyboard works because I can press two times Left Ctrl
  and
  then 1 to 4 to change the computer Im controlling. This I can not
  do
  with the FreeBSD 5.2.1-p9 system I can only see the screen but have
  to
  change the computer im controlling by pressing the button on the
  switch box.
 
  I have tried to remove the cables and put them back again. But that
  does
  not help, the only solution I can see is to reboot the system and
  let it
  boot with it selected. I have also booted up with the mouse
  directly
  connected to the computer. Then when the system boot was completed
  I
  moved the mouse around to see that it did work. After that I
  plugged
  back the cable from the switch in to the computers mouse port. And
  the
  plugged the mouse back in the switch box, that did not work either.
 
  I have also added flags to both psm0 and atkbd in my kernel config:
 
  # atkbdc0 controls both the keyboard and the PS/2 mouse
  device  atkbdc0 at isa? port IO_KBD
  device  atkbd0  at atkbdc? irq 1 flags 0x0
  device  psm0at atkbdc? irq 12 flags 0x0
 
  I have also tried with the flags set to 0x100 on both atkbd0 and
  psm0,
  but that doesn't seem to make any diffrance. I have done this on my
  FreeBSD 5.2.1-p9 box as well. I have also changed it in:
 
  /boot/device.hints
 
  But I don't get it working correctly either by that.
 
  Does anybody have a clue or have hade any similar problems and/or
  who
  could shine some light on this problem?
 
  Mvh Mattias Björk

 Aloha Mattias

 This all sounds familiar. I too had a lot of trouble
 with a KVM switch. Actually, I tried two with the same
 problem you are alluding to.

 I came to the conclusion that the mouse will not work
 through the KVM switch using FBSD, or at least I never
 got it to.

Duh.  All this newbie can add is that of all the dropped balls
and blind alleys I have experienced wrestling with FreeBSD,
problems with my four port KVM switch have not been among
them. Make of said switch is lost in the mists of time - it is
whatever CompUSA sells.  I have a Logitech track ball;
It and the keyboard have functioned well through various
permutations of 5.1, 5.2, and 4.10, native and under KDE.
  -LenZ-

 I have two computers that are both running 5.2.1

 I have connected a mouse directly to each computer.
 I still had to shutdown both computers and connect
 the cables for the monitor and keyboard from each to
 the KVM. I also connected and old mouse to the output
 of the KVM.

 With all this connected, I then powered up both computers. All seems to
 work fine with the inconvenience of having to use 2 meese. I seldom have to
 go into one
 fo the computers, so I can live with it.

 This is probably not the answer you were looking for
 but you were also looking for others who had problems.

 Best of Luck
 Robert


 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To 

MP3 voice recorders and FreeBSD

2004-08-19 Thread Joe Altman
Greetings...

Sometime in September, I plan to purchase a voice recorder capable of
MP3 recording.

The device here:

http://www.newegg.com/app/viewproductdesc.asp?description=55-603-406DEPA=0

Is similar in nature to what I wish to purchase; it may not be this
device, but similar.

Does anyone have any experience with any such devices with FreeBSD? I
don't see any such devices listed in the usual place.

Thanks for any assistance...

-- 
We look at danger and laugh our heads off.
TeeHee Giggle Giggle Giggle Hahahaha Thud.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Mouse problems with KVM switch

2004-08-19 Thread Jay O'Brien
I had the same problems with a 4-port KVM. 

I am using a 2-port KVM successfully between an XP box 
and a FreeBSD 4.10 box.  I've found that the scroll wheel 
doesn't work after switching back to Windows unless I 
also reset the KVM (Scroll Lock twice + End), but 
that's not a big deal. 

Here's the 2-port KVM switch:
http://airlinkplus.com/kvm/akvm2.htm

It's available at Fry's:
http://shop1.outpost.com/product/3891817

Jay O'Brien
Rio Linda, CA USA





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


Re: Xorg or XFree86?

2004-08-19 Thread Justin L. Boss
Does anyone know is the nvidia drivers work with Xorg?

On Wednesday 18 August 2004 09:28 pm, Eric Crist wrote:
 Hello list,

 I've seen a lot of posts over the past couple months regarding
 installation of X.org.  I was wondering, is it that much better than
 XFree86 that it's worth the hassle?  If so, what are those advantages?

 Thanks,

 Eric F Crist
 Best Access Systems
 11300 Rupp Dr. Burnsville, MN 55337
 Phone: 952.894.3830
 Cell: 612.998.3588
 Fax: 952-894-1990



 ___
 [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: Xorg or XFree86?

2004-08-19 Thread stheg olloydson
it was said:

Does anyone know is the nvidia drivers work with Xorg?

Hello,

Yes it does. Check this lists archives for all you need to know as this
topic has come up frequently over the last 6-8 weeks.

HTH,

Stheg



__
Do you Yahoo!?
Yahoo! Mail Address AutoComplete - You start. We finish.
http://promotions.yahoo.com/new_mail 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


How to Build a Custom Port Tree

2004-08-19 Thread Abid Saigol
I am a newbie to FreeBSD

I'm using an old machine right now with limited disk space, so I don't want to install 
the entire ports collection.  I want to build a custom port tree, and I'm finding the 
docs to be a bit silent on this account as I guess nowadays disk space is usually 
abundant so installing the entire port tree is the preferred route.

Can someone give some basic guidance on:

1)  Do I install a compiler or does the basic FreeBSD install have it installed 
already?
2)  How do I setup a single application port?
3)  Will I need to trace dependence or will make pull in the required libraries?
4)  Can I use CVsup to keep a limited number of ports up to date?

Any and all guidance in this regard will be highly appreciated.

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


Re: securing postgresql on fbsd

2004-08-19 Thread David Bear
On Thu, Aug 19, 2004 at 01:10:41PM -0600, Sheets, Jason (Manpower Contract) wrote:
 It looks like you configured the tunnel to point to the public host
 (dbsrv1) and configured PostgreSQL to only listen on the loopback
 127.0.0.1.
 
 Try tunneling to 127.0.0.1:5432 instead of dbsrv1
 
 Something like
 
 ssh -L 5001:127.0.0.1:5432 [EMAIL PROTECTED]

many thanks... this worked that way I wanted.

 
 Jason
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of David Bear
 Sent: Thursday, August 19, 2004 12:38 PM
 To: [EMAIL PROTECTED]
 Subject: securing postgresql on fbsd
 
 
 This is not strictly a freebsd question, but this group is the
 smartest around... so
 
 I've installed postgresql on freebsd  4.10-rel.  I want to secure ALL
 connections to postgres through ssh. So I first configured postgresql
 to connect ONLY to 127.0.0.1 port 5432.  Then, when attempting to ssh
 to tunnel to it from another machine I got an error:
 ---
 Aug 19 10:31:12 dbsrv1 sshd[157]: Accepted publickey for iddwb from
 +129.219.69.200 port 33068 ssh2
 Aug 19 10:31:40 dbsrv1 sshd[159]: error: connect_to 129.219.69.206
 port 5432:
 +Connection refused
 Aug 19 10:31:40 dbsrv1 sshd[159]: error: connect_to dbsrv1.pp.asu.edu
 port 5432:
 +failed.
 
 So it looks like I wasn't building the tunnel correctly. From the
 remote host connecting to the freebsd postgresql server I was using:
 
 ssh -L 5001:dbsrv1:5432 [EMAIL PROTECTED]
 
 But it looks like that is forbidden to connect to 'localhost' on the
 remote machine, ie on dbsrv1.
 
 I was able to get postgresql to bind to all adapters, and connect to
 it using the above tunnel.  But then I have an open port on dbsrv1
 that anyone can connect to... ie I can straight telnet dbsrv1 5432 and
 reach it unencrypted. It binds to a public interface, and I don't want
 that.
 
 I know postgresql has an ssl option, but I was hoping to just use ssh
 tunneling.
 
 hoping this make sense, I'm wondering what other freebsd users have
 done to secure postgresql? or how to make ssh tunnel 'all the way
 through to the remote localhost'..
 
 -- 
 David Bear
 phone:480-965-8257
 fax:  480-965-9189
 College of Public Programs/ASU
 Wilson Hall 232
 Tempe, AZ 85287-0803
  Beware the IP portfolio, everyone will be suspect of trespassing
 
 
 - End forwarded message -
 
 -- 
 David Bear
 phone:480-965-8257
 fax:  480-965-9189
 College of Public Programs/ASU
 Wilson Hall 232
 Tempe, AZ 85287-0803
  Beware the IP portfolio, everyone will be suspect of trespassing
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]

-- 
David Bear
phone:  480-965-8257
fax:480-965-9189
College of Public Programs/ASU
Wilson Hall 232
Tempe, AZ 85287-0803
 Beware the IP portfolio, everyone will be suspect of trespassing
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Wireless Card stop worling after 15min.

2004-08-19 Thread Laszlo Antal
Hi,
I have FreeBSD 4.10 installed on my Toshiba Satellite laptop with
built in Wireless card.
Everything is working fine Thank you for all the advice about the
overheating problem.
So what happens is after I start my laptop I have internet connection
through my wireless card only for 15 minutes or soo.
Is there such a thing like wireless card time out??
If yes than where should I look for it??
If I shutdown my laptop and restart it I can connect to the net again.
Thank for all the help in advance.
Laszlo
--lantal
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


16-character username limit in quotas?

2004-08-19 Thread Chris Dillon
I've just run into a 16-character username limit in our quota support, 
or at least in the edquota command itself (5-CURRENT):

edquota -u -e /afilesystem:614400:716800:4000:5000 areallylongusername
edquota: areallylongusern: no such user
Does anybody know what would it take to raise this limit to at least 
32 characters?

--
 Chris Dillon - cdillon(at)wolves.k12.mo.us
 FreeBSD: The fastest, most open, and most stable OS on the planet
 - Available for IA32, IA64, AMD64, PC98, Alpha, and UltraSPARC architectures
 - PowerPC, ARM, MIPS, and S/390 under development
 - http://www.freebsd.org
Q: Because it reverses the logical flow of conversation.
A: Why is putting a reply at the top of the message frowned upon?
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Mouse problems with KVM switch

2004-08-19 Thread Mattias Björk
Hi,
Leonard Zettel wrote:
On Thursday 19 August 2004 04:55 pm, [EMAIL PROTECTED] wrote:
From: thrawn [EMAIL PROTECTED]
Date: Thursday, August 19, 2004 6:18 am

Hi,
I have just brought this KVM switch:
http://www.level1.com/products3.php?sklop=20id=590430
But Im having major problems with getting the mouse to work under
FreeBSD. Even the keyboard does not work sometimes. This KVM switch
has
support for hotkey and also supports emulation on both mouse and
keyboard.
When I boot up my system and see the BIOS on the computer the
keyboard
works just fine. Then when it continues to boot and comes to the
loader,
it still works. And the it starts to load the kernel. But then when
i
get to the login prompt the keyboard does not work.
And sometimes even thought I stay with the computer the hole boot
process I can't even use the keyboard. So I have to use ssh to
login to
the computer and make it reboot to regain the keyboard. I have also
tried to change the cables but I get the same results. And It works
with
no problems under Windows XP Pro.
The system that im using is FreeBSD 5.2.1-p9, at least on this system.
I  have also two other computers that Im running FreeBSD-stable on.
On
one of my FreeBSD-stable machines I have hade a working mouse under
X
Windows System (Xorg latest from ports).
But then I rebooted the system and when I started xdm, it found the
mouse but when I move it around It didn't move like it should. It
took
some seconds before it moved and it did not move like it should,
jumps
several ramdom cm/inches on the screen (Perhaps in the direction
that I
move the mouse im not sure). Its on usable in other words.
I have also tryied to use moused under FreeBSD but I get the same
fault/problem. I also have a problem if I do not have this machine
selected when I boot. Then when I switch to it when the boot of the
FreeBSD system has complete, The screen on the monitor just blinks.
Still the keyboard works because I can press two times Left Ctrl
and
then 1 to 4 to change the computer Im controlling. This I can not
do
with the FreeBSD 5.2.1-p9 system I can only see the screen but have
to
change the computer im controlling by pressing the button on the
switch box.
I have tried to remove the cables and put them back again. But that
does
not help, the only solution I can see is to reboot the system and
let it
boot with it selected. I have also booted up with the mouse
directly
connected to the computer. Then when the system boot was completed
I
moved the mouse around to see that it did work. After that I
plugged
back the cable from the switch in to the computers mouse port. And
the
plugged the mouse back in the switch box, that did not work either.
I have also added flags to both psm0 and atkbd in my kernel config:
# atkbdc0 controls both the keyboard and the PS/2 mouse
device  atkbdc0 at isa? port IO_KBD
device  atkbd0  at atkbdc? irq 1 flags 0x0
device  psm0at atkbdc? irq 12 flags 0x0
I have also tried with the flags set to 0x100 on both atkbd0 and
psm0,
but that doesn't seem to make any diffrance. I have done this on my
FreeBSD 5.2.1-p9 box as well. I have also changed it in:
/boot/device.hints
But I don't get it working correctly either by that.
Does anybody have a clue or have hade any similar problems and/or
who
could shine some light on this problem?
Mvh Mattias Björk
Aloha Mattias
This all sounds familiar. I too had a lot of trouble
with a KVM switch. Actually, I tried two with the same
problem you are alluding to.
I came to the conclusion that the mouse will not work
through the KVM switch using FBSD, or at least I never
got it to.
Duh.  All this newbie can add is that of all the dropped balls
and blind alleys I have experienced wrestling with FreeBSD,
problems with my four port KVM switch have not been among
them. Make of said switch is lost in the mists of time - it is
whatever CompUSA sells.  I have a Logitech track ball;
It and the keyboard have functioned well through various
permutations of 5.1, 5.2, and 4.10, native and under KDE.
  -LenZ-
What you are saying In short is that you did not experince any problems?

I have two computers that are both running 5.2.1
I have connected a mouse directly to each computer.
I still had to shutdown both computers and connect
the cables for the monitor and keyboard from each to
the KVM. I also connected and old mouse to the output
of the KVM.
With all this connected, I then powered up both computers. All seems to
work fine with the inconvenience of having to use 2 meese. I seldom have to
go into one
fo the computers, so I can live with it.
This is probably not the answer you were looking for
but you were also looking for others who had problems.
Best of Luck
Robert
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
[EMAIL PROTECTED]

Thanks for the answer.
Mvh Mattias Björk

Re: How to Build a Custom Port Tree

2004-08-19 Thread Kevin D. Kinsey, DaleCo, S.P.
Abid Saigol wrote:
I am a newbie to FreeBSD
 

Welcome!
I'm using an old machine right now with limited disk space, so I 
don't want to install
the entire ports collection. I want to build a custom port tree, and 
I'm finding
the docs to be a bit silent on this account as I guess nowadays disk 
space is
usually abundant so installing the entire port tree is the preferred 
route.

Probably because it's not really that big, and more importantly
for reasons that will soon become more clear ...
Can someone give some basic guidance on:
1) Do I install a compiler or does the basic FreeBSD install have it 
installed already?

FreeBSD's compiler is GNU's gcc; it is included in the base install,
as it's necessary to have a compiler for make world(s) and
kernels... and anyone who desires to program in c/c++
2) How do I setup a single application port?

You would need the skeleton installed in some directory,
(generally /usr/ports/somecategory/someapp), and then
go to that location and type make install clean, most
usually.
3) Will I need to trace dependence or will make pull in the required 
libraries?

If you have all the necessary ports skeletons in place, make will take
care of it.  However, if you want to be selective about the tree,
I don't know of a tool that will help a great deal.
4) Can I use CVsup to keep a limited number of ports up to date?
CVsup is used to keep the ports tree (or any collection of code)
up to date by connecting to a CVS (Concurrent versioning system)
server. 

Many people rely on portupgrade (/usr/ports/sysutils/portupgrade) to
handle the actual updating of the ports themselves, as it compares
versions, handles dependencies (recursively!) etc., etc.   It's written
in the Ruby language, and has ruby, rubydb, and openssl as dependancies.
Any and all guidance in this regard will be highly appreciated.
Abid

If you're limited on space and don't want the ports tree, I'd suggest
you not install it at all, and use packages instead.  You could always
see what's out there by browsing over at freshports.org, or, for a small
set of apps, the individual home pages of each project, and simply use
pkg_add(1) and friends...
HTH,
Kevin Kinsey
DaleCo, S.P.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: How to Build a Custom Port Tree

2004-08-19 Thread Abid Saigol
Kevin:

Thanks for the initial feedback and welcome message:


  2) How do I setup a single application port?


 You would need the skeleton installed in some directory,
 (generally /usr/ports/somecategory/someapp), and then
 go to that location and type make install clean, most
 usually.

I get the fact that I have to create the directory structure in /usr/ports.
What I can't figure out is where to get the skeleton for a single port.
When I search a single port and it points me to mirrors for the specific
port, is that the skeleton you are referring to.  If I download that file
and extract, will it extract to the correct directory, like WinZip does if
path info is stored in the archive?



 If you're limited on space and don't want the ports tree, I'd suggest
 you not install it at all, and use packages instead.  You could always
 see what's out there by browsing over at freshports.org, or, for a small
 set of apps, the individual home pages of each project, and simply use
 pkg_add(1) and friends...


I am trying to use the packages, but find it difficult to add some of the
features (modules) to these packages as the documentation normally calls for
a recompile.  This is why I am trying to nail down the ability to compile
individual ports without installing the entire Ports tree.  I am actually
trying to setup a lean and limited function (HTTP/SMTP/SQL) server on an old
box with limited disk space.

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


Re: Mouse problems with KVM switch

2004-08-19 Thread Mattias Björk
Hi,
Jay O'Brien wrote:
I had the same problems with a 4-port KVM. 

I am using a 2-port KVM successfully between an XP box 
and a FreeBSD 4.10 box.  I've found that the scroll wheel 
doesn't work after switching back to Windows unless I 
also reset the KVM (Scroll Lock twice + End), but 
that's not a big deal. 
I have tryed to reset/rescan but it does not seem to help or even work. 
But I will try it out. It says for Auto Scan:

To start Auto Scan automatically scans all ports one by one at a fixed 
interval:

left Ctrl + left Ctrl + F1
But that does not help or even work, but perhaps im doing something 
wrong. Manual scan is the same but F2 instead of F1.

Perhaps the problem is the mouse, Im using a Logitech Click! optical 
mouse. I have also tried my trackball Marbel Mouse and both are USB 
with a PS/2 converter. Perhaps that is the problem, but then again I 
have tryed a none mouse as well. But still that did not solve the problem.

Here's the 2-port KVM switch:
http://airlinkplus.com/kvm/akvm2.htm
It's available at Fry's:
http://shop1.outpost.com/product/3891817
Jay O'Brien
Rio Linda, CA USA
I live in sweden so I have to find a shop here in sweden. But I will 
solve this problem some how. Thanks for the reply anyway.


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
Thanks for the help/answer
Mvh Mattias Björk
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Mouse problems with KVM switch

2004-08-19 Thread hoe-waa

From: Mattias Björk [EMAIL PROTECTED]

 Hello,
 
 [EMAIL PROTECTED] wrote:
  From: thrawn [EMAIL PROTECTED]
  Date: Thursday, August 19, 2004 6:18 am

snip
 
 Does anybody have a clue or have hade any similar problems and/or 
 who 
 could shine some light on this problem?
 
 Mvh Mattias Björk
  
snip
  
  

 
 Does your KVM support hotkey? I have another KVM switch erlier that 
 did 
 work better but It didn't have support for hotkey. But It did not 
 work 
 perfectly but atleast the mouse worked mutch better if you compare 
 to this.

Yes, the hotkeys work as designed.

 
  I came to the conclusion that the mouse will not work
  through the KVM switch using FBSD, or at  Aloha Mattias
  
 Actually, I tried two with the same
  problem you are alluding to. least I never
  got it to.

I had bought one on the mainland last month. When I
couldn't get the mouse to work, I bought another here
on the Big Island. I acted the same so I returned it
and am using the original.

 Or perhaps the KVM  that I have been using are Crap or something in that direction.

Me Too!!
 

 
  I have connected a mouse directly to each computer.
Forgot to mention that both rodents are usb.

Then again its kind of dumb to have a KVM if you 
still have to use the mouse directly connected 
 to the computer.

At least I don't have to have 2 monitors and 2 keyboards
on the desk.


 What is the brand and model of your KVM?

Made in China

Robert


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


Re: Mouse problems with KVM switch

2004-08-19 Thread Mattias Björk
Foster, ThomasX wrote:
You apparently did try the device hints.. but is your kernel compiled to use that 
hints file?  Also.. if you cat the output of the mouse device.. what do you get?
Thom
You mean on the FreeBSD 5.2.1-p9 box? If so, check below:
[snip]
machine i386
cpu I486_CPU
cpu I586_CPU
cpu I686_CPU
ident   THRAWN
#To statically compile in device wiring instead of /boot/device.hints
#hints  GENERIC.hints   #Default places to look for devices.
makeoptions DEBUG=-g#Build kernel with gdb(1) debug symbols
options SCHED_4BSD  #4BSD scheduler
options INET#InterNETworking
options FFS #Berkeley Fast Filesystem
options SOFTUPDATES #Enable FFS soft updates support
options UFS_DIRHASH #Improve performance on big directories
options MD_ROOT #MD is a potential root device
options NFSCLIENT   #Network Filesystem Client
options MSDOSFS #MSDOS Filesystem
options CD9660  #ISO 9660 Filesystem
options PROCFS  #Process filesystem (requires PSEUDOFS)
options PSEUDOFS#Pseudo-filesystem framework
options COMPAT_43   #Compatible with BSD 4.3 [KEEP THIS!]
options COMPAT_FREEBSD4 #Compatible with FreeBSD4
options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
options KTRACE  #ktrace(1) support
options SYSVSHM #SYSV-style shared memory
options SYSVMSG #SYSV-style message queues
options SYSVSEM #SYSV-style semaphores
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
options KBD_INSTALL_CDEV# install a CDEV entry in /dev
options AHC_REG_PRETTY_PRINT# Print register bitfields in debug
# output.  Adds ~128k to driver.
options AHD_REG_PRETTY_PRINT# Print register bitfields in debug
# output.  Adds ~215k to driver.
options PFIL_HOOKS  # pfil(9) framework
device  isa
device  pci
# ATA and ATAPI devices
device  ata
device  atadisk # ATA disk drives
device  atapicd # ATAPI CDROM drives
options ATA_STATIC_ID   #Static device numbering
device  atapicam
device  scbus   # Needed for CAM device
device  pass# Needed to connect scsi to cam
device  cd  # SCSI cd connected through CAM
# atkbdc0 controls both the keyboard and the PS/2 mouse
device  atkbdc  # AT keyboard controller
device  atkbd   # AT keyboard
device  psm
[snip]
I don't know exactly if I have done it right but I should check 
/boot/devices.hints for input right?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mattias Björk
Sent: Thursday, August 19, 2004 2:30 PM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Re: Mouse problems with KVM switch
Hello,
[EMAIL PROTECTED] wrote:
From: thrawn [EMAIL PROTECTED]
Date: Thursday, August 19, 2004 6:18 am

Hi,
I have just brought this KVM switch:
http://www.level1.com/products3.php?sklop=20id=590430
But Im having major problems with getting the mouse to work under 
FreeBSD. Even the keyboard does not work sometimes. This KVM switch 
has 
support for hotkey and also supports emulation on both mouse and 
keyboard.
When I boot up my system and see the BIOS on the computer the 
keyboard 
works just fine. Then when it continues to boot and comes to the 
loader, 
it still works. And the it starts to load the kernel. But then when 
i 
get to the login prompt the keyboard does not work.

And sometimes even thought I stay with the computer the hole boot 
process I can't even use the keyboard. So I have to use ssh to 
login to 
the computer and make it reboot to regain the keyboard. I have also 
tried to change the cables but I get the same results. And It works 
with 
no problems under Windows XP Pro.

The system that im using is FreeBSD 5.2.1-p9, at least on this system.
I  have also two other computers that Im running FreeBSD-stable on. 
On 
one of my FreeBSD-stable machines I have hade a working mouse under 
X 
Windows System (Xorg latest from ports).

But then I rebooted the system and when I started xdm, it found the 
mouse but when I move it around It didn't move like it should. It 
took 
some seconds before it moved and it did not move like it should, 
jumps 
several ramdom cm/inches on the screen (Perhaps in the direction 
that I 
move the mouse im not sure). Its on usable in other words.

I have also tryied to use moused 

Re: Mouse problems with KVM switch

2004-08-19 Thread Mattias Björk
Hi,
[EMAIL PROTECTED] wrote:
From: Mattias Björk [EMAIL PROTECTED]
Hello,
[EMAIL PROTECTED] wrote:
From: thrawn [EMAIL PROTECTED]
Date: Thursday, August 19, 2004 6:18 am

snip
Does anybody have a clue or have hade any similar problems and/or 
who 
could shine some light on this problem?

Mvh Mattias Björk

snip


Does your KVM support hotkey? I have another KVM switch erlier that 
did 
work better but It didn't have support for hotkey. But It did not 
work 
perfectly but atleast the mouse worked mutch better if you compare 
to this.

Yes, the hotkeys work as designed.
Aha okey, sometimes they don't work for me. Strange.

I came to the conclusion that the mouse will not work
through the KVM switch using FBSD, or at  Aloha Mattias
Actually, I tried two with the same
problem you are alluding to. least I never
got it to.

I had bought one on the mainland last month. When I
couldn't get the mouse to work, I bought another here
on the Big Island. I acted the same so I returned it
and am using the original.
Okey, no help in chaning the mice for you either.
Or perhaps the KVM  that I have been using are Crap or something in that direction.

Me Too!!

I have connected a mouse directly to each computer.
Forgot to mention that both rodents are usb.
What do you mean with rodents, you mean the mice right? Have to luck up 
the word to understand. :)

Then again its kind of dumb to have a KVM if you 
still have to use the mouse directly connected 
to the computer.

At least I don't have to have 2 monitors and 2 keyboards
on the desk.
Well it would be near impossible for me to have 4x keyboards,mice and 
21 monitors. But then again I might get a switch just for keyboard and 
monitor, save space anyway.

What is the brand and model of your KVM?

Made in China
I guess you don't know, mine is LevelOne. Perhaps I should buy something 
more expensive. I think that I would be worth it, the price with cables 
for me was about 106 $. Perhaps It could be some interfarence that 
causes this problem.

Robert

Once again thanks for the answer.
Mvh Mattias Björk
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


portindex and INDEX.db

2004-08-19 Thread Charles Ulrich

Is there any downside to generating INDEX.db with the sysutils/portindex
program rather than portsdb -Uu?

-- 
Charles Ulrich
System Administrator
Ideal Solution - http://www.idealso.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: 16-character username limit in quotas?

2004-08-19 Thread Dan Nelson
In the last episode (Aug 19), Chris Dillon said:
 I've just run into a 16-character username limit in our quota
 support, or at least in the edquota command itself (5-CURRENT):
 
 edquota -u -e /afilesystem:614400:716800:4000:5000 areallylongusername
 edquota: areallylongusern: no such user
 
 Does anybody know what would it take to raise this limit to at least
 32 characters?

Try bumping MAXLOGNAME in /usr/include/sys/param.h and UT_NAMESIZE in
/usr/include/utmp.h and rebuilding world.

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


Re: Mouse problems with KVM switch

2004-08-19 Thread Leonard Zettel
On Thursday 19 August 2004 07:46 pm, Mattias Björk wrote:
 Hi,

 Leonard Zettel wrote:
(snip)
  Duh.  All this newbie can add is that of all the dropped balls
  and blind alleys I have experienced wrestling with FreeBSD,
  problems with my four port KVM switch have not been among
  them. Make of said switch is lost in the mists of time - it is
  whatever CompUSA sells.  I have a Logitech track ball;
  It and the keyboard have functioned well through various
  permutations of 5.1, 5.2, and 4.10, native and under KDE.
-LenZ-

 What you are saying In short is that you did not experince any problems?

Correct.  Very occasionally keyboard input would not show up on either
the FreeBSD box or the Windows XP box, although the mouse still worked.
Jiggling the cables cured that in all cases.  Zero mouse problems.
   -LenZ-
(snip)
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


problem

2004-08-19 Thread Arthur Purnhagen
Hi, why is my computer doing this,
 
ForbiddenYou don't have permission to access / on this server. 

-
Apache/1.3.27 Server at www.imagine2020.com Port 80 Thank You Art Purnhagen



Thank You,
Art Purnhagen
 
Oh by the way if you were interested in a Great home business ,
 Hit the link below .
 
http://www.imagine2020.com/844512602


-
Do you Yahoo!?
Win 1 of 4,000 free domain names from Yahoo! Enter now.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: problem

2004-08-19 Thread Eric Crist
What re you trying to do? The site seems to work fine


Eric F Crist
Best Access Systems
11300 Rupp Dr. Burnsville, MN 55337
Phone: 952.894.3830
Cell: 612.998.3588
Fax: 952-894-1990

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of
 Arthur Purnhagen
 Sent: Thursday, August 19, 2004 9:53 PM
 To: [EMAIL PROTECTED]
 Subject: problem


 Hi, why is my computer doing this,

 ForbiddenYou don't have permission to access / on this server.

 -
 Apache/1.3.27 Server at www.imagine2020.com Port 80 Thank You
 Art Purnhagen



 Thank You,
 Art Purnhagen

 Oh by the way if you were interested in a Great home business
 ,  Hit the link below .

http://www.imagine2020.com/844512602


-
Do you Yahoo!?
Win 1 of 4,000 free domain names from Yahoo! Enter now.
___
[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: 802.1x

2004-08-19 Thread Martin Brecher
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Cubicool wrote:
[...]
| I've scoured google all
| over and discovered Open1x--which has openly dropped all BSD support
[...]
This statement does not seem to be entirely correct.
The website http://www.open1x.org states that version 0.7 from 12 June
2003 features better BSD support, whatever that may be.
Also the Supported Platforms chapter of the Xsupplicant documentation
states that:
*BSD support was initially removed largely due to a lack of
active *BSD development. Some *BSD code does remain, however,
and we encourage any *BSD developers out there to test
xsupplicant and submit patches or file bug reports to improve
*BSD support.
[...]
The Open1x team would like to reprovide support for *BSD
platforms, but doing so will require some additional hacking on
the codebase. This project is maintained in our spare time, and
we already feel stretched, so we hope you understand our current
dilemma in providing *BSD support. If you are interested in
helping us with *BSD support, please let us know.
http://sourceforge.net/docman/display_doc.php?docid=23371group_id=60236#ch2
Maybe you are able to help them out.
Greetings,
Martin
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.5 (FreeBSD)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
iD8DBQFBJXE7kWEEBp53XEURAkXkAKDDKdkWlqzyRd7PuyrK5H72QT/UnwCfT79c
UlA9gzlGYFNE3qm/UObYGIc=
=pf7Z
-END PGP SIGNATURE-
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Major Installation Problems

2004-08-19 Thread Patrick Wheeler
I have FreeBSD 4.1 on CD that I am trying to install but can't. I have a
133MHZ Pentium processor with 64MB of RAM and a 2GB hard drive.

When I boot to the CD, after the initial startup the Kernel
Configuration Menu is displayed. I select the first option (Skip
Configuration), and then text that appears to be my various hardware
scrolls bye until it freezes. These are the last three lines of that
output.

pnaphy0: Am79c978 HomePNA PHY on miibus0
pnaphy0: Home PNA
pci0: ATI Mach64-GT graphics accelerator at 19.0

The lines above the quoted output go through what appears to be
recognizing my other hardware including my Voodoo2 graphics card.  The
first to lines of this output is my network card, and the last line is
the on-board graphics chip.  The cursor then is displayed but nothing
happens. The system just locks up. I have no clue what to do.

Any assistance or advice you can offer would be greatly appreciated.
Thank You in Advance,
Patrick
-- 
  Patrick Wheeler
  [EMAIL PROTECTED]

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


RE: problem

2004-08-19 Thread Eric Crist
-Original Message-
From: Arthur Purnhagen [mailto:[EMAIL PROTECTED]
Sent: Thursday, August 19, 2004 10:23 PM
To: Eric Crist
Subject: RE: problem


Hi Eric,I'm trying to access the site which I'm member,  I wrote
Imagine2020 ,they also said it was running fine.
But I keep getting forbidden ,do you think  its my computor.
Where is my problem.

Thanks
Art Purnhagen

Eric Crist [EMAIL PROTECTED] wrote:
What re you trying to do? The site seems to work fine


Eric F Crist
Best Access Systems
11300 Rupp Dr. Burnsville, MN 55337
Phone: 952.894.3830
Cell: 612.998.3588
Fax: 952-894-1990

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of
 Arthur Purnhagen
 Sent: Thursday, August 19, 2004 9:53 PM
 To: [EMAIL PROTECTED]
 Subject: problem


 Hi, why is my computer doing this,

 ForbiddenYou don't have permission to access / on this server.

 -
 Apache/1.3.27 Server at www.imagine2020.com Port 80 Thank You
 Art Purnhagen



 Thank You,
 Art Purnhagen

 Oh by the way if you were interested in a Great home business
 , Hit the link below .

http://www.imagine2020.com/844512602

Thank You,
Art Purnhagen

Oh by the way if you were interested in a Great home business ,
 Hit the link below .

http://www.imagine2020.com/844512602

Art,

A couple things. First off, please do NOT advertise nor solicit to
members of this list.  Although your product/service may be great, most
of us are not going to be interested and we're not going to want to
answer future questions.

Secondly, please copy all replies to the list.  You sent this solely to
me, and it should be copied to the list so that it can be archived
and/or used for other users who may experience the same problem.

Now, to the answer of your question, please tell me, specifically what
page you're trying to view.  If you're going to
http://www.imagine2020.com and you're getting that error, and you're the
only one, I would say there's a problem with your particular PC.  If
you're going to some other page, it may be a problem with that page, or
the server itself.  Please indicate exactly what you're trying to
access.

Thanks,

Eric F Crist
Best Access Systems
11300 Rupp Dr. Burnsville, MN 55337
Phone: 952.894.3830
Cell: 612.998.3588
Fax: 952-894-1990



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


RE: Major Installation Problems

2004-08-19 Thread Eric Crist
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of
 Patrick Wheeler
 Sent: Thursday, August 19, 2004 10:35 PM
 To: [EMAIL PROTECTED]
 Subject: Major Installation Problems


 I have FreeBSD 4.1 on CD that I am trying to install but
 can't. I have a 133MHZ Pentium processor with 64MB of RAM and
 a 2GB hard drive.

 When I boot to the CD, after the initial startup the Kernel
 Configuration Menu is displayed. I select the first option
 (Skip Configuration), and then text that appears to be my
 various hardware scrolls bye until it freezes. These are the
 last three lines of that output.

 pnaphy0: Am79c978 HomePNA PHY on miibus0
 pnaphy0: Home PNA
 pci0: ATI Mach64-GT graphics accelerator at 19.0

 The lines above the quoted output go through what appears to
 be recognizing my other hardware including my Voodoo2
 graphics card.  The first to lines of this output is my
 network card, and the last line is the on-board graphics
 chip.  The cursor then is displayed but nothing happens. The
 system just locks up. I have no clue what to do.

 Any assistance or advice you can offer would be greatly
 appreciated. Thank You in Advance, Patrick
 --
   Patrick Wheeler
   [EMAIL PROTECTED]

I would suggest checking out the freebsd HAL, or Hardware Compatibility
List on the site to see if anything conflicts with what you have.  If
you don't see anything, try one of two things:

1) Try a more recent version of FreeBSD (like 4.10 or 5.x)
2) Try removing unnecessary hardware until things work.  If you have a
PCI/AGP video card, try that and disable your on-board card, for
example.

Post your results here and we can help you from there.

Thanks,

Eric F Crist



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


RE: HOWTO Ping LAN???

2004-08-19 Thread Rich Shinnick
Hakim,
 
What you are trying to do is possible in two ways:
 
1. SSH to the box, and tunnel to other internal machines according to the
tunnels you have set up. (See the last email I sent).
2. Port forward connections from the Internet thru the BSD to internal
machines.
 
Check these links:
http://www.rootprompt.net/freebsd_firewall.html
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/firewalls.html 


  _  

From: Hakim Singhji [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 29, 2004 10:27 AM
To: Hakim Z. Singhji; MatthewSeaman
Cc: Bill Moran; [EMAIL PROTECTED]
Subject: Re: HOWTO Ping LAN???


Hi Matt,

You say that the only way I will be able to connect to my network is by
tunneling. 
This is not what I want to do, I thought I may be able to SSH, Telnet, www,
etc. 
from the outside to my default gateway and have the gateway pass SSH,
Telnet, 
www., or any other request to the machine on the private network by
including the 
localhost.defaultgateway.domain.org or something to that affect.

Does NAT Overloading only go one way???

Hakim Z. Singhji
Coordinating Mgr. / Infection Control
718-245-3923
[EMAIL PROTECTED]

 Matthew Seaman [EMAIL PROTECTED] 7/29/2004 5:32:32 AM

On Thu, Jul 29, 2004 at 01:40:02AM -0400, Hakim Z. Singhji wrote:

 Figure 1
 
 ***
 * Internet *
 *24.199.1xx.xx*
 ***
 ~ |
 ~ |
 *** **
 * Defaut GW * __ __ *Kids Machine*
 *192.68.0.1 * *192.68.0.3 *
 FreeBSD 4.10 * * Mandrake 10*
 *** **
 ~ |
 ~ |
 *
 *Wrk Station1*
 *192.68.0.2 *
 *Redhat 9 *
 *
 
 This is a rough diagram of the network... I would like to ssh, ping,
 etc. the machines behind the default gateway directly (without
 tunneling) from the outside the network (at work for example). Is this
 possible and if so how do I config. Keep in mind that my default
 gateway is FreeBSD. I know this may be a complicated project but if you
 could help that would help me greatly. Many thanks to everyone in advance.

I'm afraid that's not going to be possible with your current network
layout. If you want all of your machines to be accessible from the
Internet, then you'll need routable addresses on all of your machines.

I know you've said you don't want to use tunnelling, but
unfortunately, that's the only way you can access a private address
space as you have from outside it. A relatively simple way of doing
that is to ssh into your gateway box, and use the '-L' or '-R'
portforwarding options to create a tunnel to one of the internal
machines, and then ssh or otherwise connect through that tunnel: see
eg.

http://www.linux.ie/articles/tutorials/ssh.php 

One other point: you're going to have problems if you're using
192.168.0.0 as the IP number on your FreeBSD machine. That's the
*network* address, and shouldn't be applied directly to any specific
machine. If you're running your internal network using 192.168.0.0/24
as the address space, then you have 254 addresses (from 192.168.0.1 to
192.168.0.254) to use for client machines, since 192.168.0.0 (network
address) and 192.168.0.255 (broadcast address) are reserved as part of
the networking setup.

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




smime.p7s
Description: S/MIME cryptographic signature


RE: HOWTO Ping LAN???

2004-08-19 Thread Eric Crist
SEE BOTTOM
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of
 Rich Shinnick
 Sent: Thursday, August 19, 2004 11:46 PM
 To: 'Hakim Singhji'; 'Hakim Z. Singhji'; 'MatthewSeaman'
 Cc: 'Bill Moran'; [EMAIL PROTECTED]
 Subject: RE: HOWTO Ping LAN???


 Hakim,

 What you are trying to do is possible in two ways:

 1. SSH to the box, and tunnel to other internal machines
 according to the tunnels you have set up. (See the last email
 I sent). 2. Port forward connections from the Internet thru
 the BSD to internal machines.

 Check these links: http://www.rootprompt.net/freebsd_firewall.html
 http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/fire
 walls.html


   _

 From: Hakim Singhji [mailto:[EMAIL PROTECTED]
 Sent: Thursday, July 29, 2004 10:27 AM
 To: Hakim Z. Singhji; MatthewSeaman
 Cc: Bill Moran; [EMAIL PROTECTED]
 Subject: Re: HOWTO Ping LAN???


 Hi Matt,

 You say that the only way I will be able to connect to my
 network is by tunneling.
 This is not what I want to do, I thought I may be able to
 SSH, Telnet, www, etc.
 from the outside to my default gateway and have the gateway
 pass SSH, Telnet,
 www., or any other request to the machine on the private
 network by including the
 localhost.defaultgateway.domain.org or something to that affect.

 Does NAT Overloading only go one way???

 Hakim Z. Singhji
 Coordinating Mgr. / Infection Control
 718-245-3923
 [EMAIL PROTECTED]

  Matthew Seaman [EMAIL PROTECTED]
 7/29/2004 5:32:32
  AM
 
 On Thu, Jul 29, 2004 at 01:40:02AM -0400, Hakim Z. Singhji wrote:

  Figure 1
 
  ***
  * Internet *
  *24.199.1xx.xx*
  ***
  ~ |
  ~ |
  *** **
  * Defaut GW * __ __ *Kids Machine*
  *192.68.0.1 * *192.68.0.3 *
  FreeBSD 4.10 * * Mandrake 10*
  *** **
  ~ |
  ~ |
  *
  *Wrk Station1*
  *192.68.0.2 *
  *Redhat 9 *
  *
 
  This is a rough diagram of the network... I would like to
 ssh, ping,
  etc. the machines behind the default gateway directly (without
  tunneling) from the outside the network (at work for
 example). Is this
  possible and if so how do I config. Keep in mind that my default
  gateway is FreeBSD. I know this may be a complicated project but if
  you could help that would help me greatly. Many thanks to
 everyone in
  advance.

 I'm afraid that's not going to be possible with your current
 network layout. If you want all of your machines to be
 accessible from the Internet, then you'll need routable
 addresses on all of your machines.

 I know you've said you don't want to use tunnelling, but
 unfortunately, that's the only way you can access a private
 address space as you have from outside it. A relatively
 simple way of doing that is to ssh into your gateway box, and
 use the '-L' or '-R' portforwarding options to create a
 tunnel to one of the internal machines, and then ssh or
 otherwise connect through that tunnel: see eg.

http://www.linux.ie/articles/tutorials/ssh.php

One other point: you're going to have problems if you're using
192.168.0.0 as the IP number on your FreeBSD machine. That's the
*network* address, and shouldn't be applied directly to any specific
machine. If you're running your internal network using 192.168.0.0/24 as
the address space, then you have 254 addresses (from 192.168.0.1 to
192.168.0.254) to use for client machines, since 192.168.0.0 (network
address) and 192.168.0.255 (broadcast address) are reserved as part of
the networking setup.

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


Hello,

There is one real solution to this here.

You could setup a DMZ to your Default Gateway.  If this is a Linksys
Broadband Gateway, it's as simple as checking a box and typing in the
private IP address.  This routes all incoming (non-statefull)
connections to this host.  Since your IP changes, use a dynamic DNS
service such as no-ip.org(sp?) or tzo.com.  I've used TZO.com,
personally, then I just got DSL with a /29 static IP address allocation.
This should work without issue, unless your DMZ firewall rules prevent
it.  I would need more information to let you know.

HTH

Eric F Crist
Best Access Systems
11300 Rupp Dr. Burnsville, MN 55337
Phone: 952.894.3830
Cell: 612.998.3588
Fax: 952-894-1990



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


Re: apsfilter and Epson Stylus C63 on Current

2004-08-19 Thread Malcolm Kay
On Friday 20 August 2004 01:57, edwinculp wrote:
 I've been trying on and off to get an epson stylus c63 to print on current.
  I've always used apsprint which has always worked perfectly.  In this case
 I am afraid that Epson has changed something and this model isn't supported
 by ghostscript.  I've always been able to usr practically any of the basic
 Epson stylus entries with new epson printers and they've worked.  In this
 case I get a lot of form feeds and garbage.  I've tried the gimp drivers
 and I get a lot of | and other garbage.  Ascii prints fine.  I've tried the
 script in the handbook to see if I could get anything understandable from
 different gs drivers with no luck.

 If anyone has any suggestions, I would appreciat them of if someone has a
 Epson Stylus C63 or C6? printing successfully, would you be kind enough to
 share the secret with me? :)


Most printers can be found at
  http://www.linuxprinting.org/
and is generally usefull for most flavours of unix as well as linux.

Together with other information for the C63 it states:
  Needs Gimp-Print 4.3.21 or 4.2.6pre2 (or newer versions), this printer 
  does not work with the drivers for the C82 or C83.


Malcolm Kay


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


Re: dealing with deffective RAM

2004-08-19 Thread Laurentiu Pancescu
I've tested the entire week, with some weird results. 
No errors are found inside any of the two modules,
when I test them separately (in slot one).  When I
have both modules, I get a few hundreds errors.  I've
cleaned the slots and the contacts, but no change. 
The funny thing is that all the errors seem located in
the 0-128M range, even if I swap the position of the
two modules.  I've tested multiple times, for up to 16
hours at a time, and the results are consistent: no
errors with a single module, a lot of them with both
inserted, no matter which is the order of the modules
(original, or swapped).  I assume it's the fault of
the motherboard, not of the memory modules.

Thanks eveybody for the answers - I think I should get
a new motherboard and processor.

Laurentiu

 --- Gary Kline [EMAIL PROTECTED] schrieb: 

   If you're as cheap/thrify as many of us, 
   it may seem worth the effort to test.  
   But it's pretty likely that if one of 
   your 128 sticks is one, the other one 
   will soon follow.  Nutshell, Kris is right.
 
   If your time is utterly free, go ahead.
   I've learned that it pays to bite the bullet
   and buy new and top-rated memory.  I'd go
   for a 256MB stick if/when you want to upgrade.
 
   (sign me been-there) || gary







___
Gesendet von Yahoo! Mail - Jetzt mit 100MB Speicher kostenlos - Hier anmelden: 
http://mail.yahoo.de
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]