Re: ftp/fetch/cvsup behind a firewall

2004-02-03 Thread Anthony Discolo
Unfortunately, I do not have control over my firewall.

Original Message Follows
From: Kent Stewart <[EMAIL PROTECTED]>
To: "Anthony Discolo" <[EMAIL PROTECTED]>, [EMAIL PROTECTED]
CC: [EMAIL PROTECTED]
Subject: Re: ftp/fetch/cvsup behind a firewall
Date: Mon, 2 Feb 2004 19:16:37 -0800
On Monday 02 February 2004 11:18 am, Anthony Discolo wrote:
> I don't have a /usr/share/examples/etc/defaults/make.conf, but I have
> a /usr/share/examples/etc/make.conf.  But it doesn't have a FETCH_ENV
> line in it.
>
> I'm sure someone has been successful in running cvsup behind a
> firewall? After all, don't all these tools use ftp indrectly?
I use cvsup behind the ipfw firewall. I thought I had to allow port
5999, which is the port cvsup used to talk to the server, and will have
to look at my firewall rules more closely. I use a cvs-mirror to
maintain my outside information. I have fewer problems accessing the
mirror from inside my firewall. A 100mpbs network is also much faster
than my DSL line :).
Do you have control of the firewall?

Kent

>
> Thanks.
>
> Original Message Follows
> From: Khairil Yusof <[EMAIL PROTECTED]>
> To: Anthony Discolo <[EMAIL PROTECTED]>
> CC: [EMAIL PROTECTED]
> Subject: Re: ftp/fetch/cvsup behind a firewall
> Date: Tue, 03 Feb 2004 02:20:33 +0800
>
> On Mon, 2004-02-02 at 09:55 -0800, Anthony Discolo wrote:
>  > Mozilla can access the ftp site with the proxy server configured,
>  > but I haven't been able to get ftp to work with a proxy server.
>
> For fetch via proxy see:
> /usr/share/examples/etc/defaults/make.conf
>
> Copy this file to /etc and edit the FETCH_ENV to point to your proxy
>
> For cvsup, if you only have access via the proxy server, you can ftp
> the entire cvs tree (not efficient). I would ask your admin to either
> setup a local mirror , or add a dynamic rule for outgoing cvsup
> connections.
>
>
> --
> "You keep using that word. I do not think it means what you think it
> means."
>
> FreeBSD 5.2-CURRENT i386
> 2:05am up 46 mins, 4 users, load averages: 1.53, 2.23, 2.15
> << signature.asc >>
--
Kent Stewart
Richland, WA
http://users.owt.com/kstewart/index.html

_
Learn how to choose, serve, and enjoy wine at Wine @ MSN. 
http://wine.msn.com/

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


Re: ftp/fetch/cvsup behind a firewall

2004-02-02 Thread Anthony Discolo
Thanks for the quick response!

I assume that adding these lines to the make.conf is the same as setting 
them as environment variables?  If I do this, I get:

# set HTTP_PROXY="http://:80"  (where foo is my proxy server; the same 
address makes mozilla work)
# fetch http://ftp.freebsd.org/ (where  is a valid file)
fetch: http://ftp.freebsd.org/: Host not found

Original Message Follows
From: Khairil Yusof <[EMAIL PROTECTED]>
To: Anthony Discolo <[EMAIL PROTECTED]>
CC: [EMAIL PROTECTED]
Subject: Re: ftp/fetch/cvsup behind a firewall
Date: Tue, 03 Feb 2004 03:23:32 +0800
On Mon, 2004-02-02 at 11:12 -0800, Anthony Discolo wrote:
> I don't have a /usr/share/examples/etc/defaults/make.conf, but I have a
> /usr/share/examples/etc/make.conf.  But it doesn't have a FETCH_ENV line 
in
> it.

# If you're behind a firewall and need FTP or HTTP proxy services for
# ports collection fetching to work, the following examples give the
# necessary syntax.  See the fetch(3) man page for details.
#
#FETCH_ENV= FTP_PROXY=ftp://10.0.0.1:21
#FETCH_ENV= HTTP_PROXY=http://10.0.0.1:80
> I'm sure someone has been successful in running cvsup behind a firewall?
> After all, don't all these tools use ftp indrectly?
No they don't. :) cvs and cvsup, access a cvs server for latest updates
and other info, not an ftp server.
--
"You keep using that word. I do not think it means what you think it
means."
FreeBSD 5.2-CURRENT i386
3:15am up 1:56, 3 users, load averages: 2.15, 2.10, 1.91
<< signature.asc >>
_
There are now three new levels of MSN Hotmail Extra Storage!  Learn more. 
http://join.msn.com/?pgmarket=en-us&page=hotmail/es2&ST=1

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


Re: ftp/fetch/cvsup behind a firewall

2004-02-02 Thread Anthony Discolo
I don't have a /usr/share/examples/etc/defaults/make.conf, but I have a 
/usr/share/examples/etc/make.conf.  But it doesn't have a FETCH_ENV line in 
it.

I'm sure someone has been successful in running cvsup behind a firewall?  
After all, don't all these tools use ftp indrectly?

Thanks.

Original Message Follows
From: Khairil Yusof <[EMAIL PROTECTED]>
To: Anthony Discolo <[EMAIL PROTECTED]>
CC: [EMAIL PROTECTED]
Subject: Re: ftp/fetch/cvsup behind a firewall
Date: Tue, 03 Feb 2004 02:20:33 +0800
On Mon, 2004-02-02 at 09:55 -0800, Anthony Discolo wrote:

> Mozilla can access the ftp site with the proxy server configured, but I
> haven't been able to get ftp to work with a proxy server.
For fetch via proxy see:
/usr/share/examples/etc/defaults/make.conf
Copy this file to /etc and edit the FETCH_ENV to point to your proxy

For cvsup, if you only have access via the proxy server, you can ftp the
entire cvs tree (not efficient). I would ask your admin to either setup
a local mirror , or add a dynamic rule for outgoing cvsup connections.
--
"You keep using that word. I do not think it means what you think it
means."
FreeBSD 5.2-CURRENT i386
2:05am up 46 mins, 4 users, load averages: 1.53, 2.23, 2.15
<< signature.asc >>
_
Learn how to choose, serve, and enjoy wine at Wine @ MSN. 
http://wine.msn.com/

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


Re: ftp/fetch/cvsup behind a firewall

2004-02-02 Thread Anthony Discolo
I don't have a /usr/share/examples/etc/defaults/make.conf, but I have a 
/usr/share/examples/etc/make.conf.  But it doesn't have a FETCH_ENV line in 
it.

I'm sure someone has been successful in running cvsup behind a firewall?  
After all, don't all these tools use ftp indrectly?

Thanks.

Original Message Follows
From: Khairil Yusof <[EMAIL PROTECTED]>
To: Anthony Discolo <[EMAIL PROTECTED]>
CC: [EMAIL PROTECTED]
Subject: Re: ftp/fetch/cvsup behind a firewall
Date: Tue, 03 Feb 2004 02:20:33 +0800
On Mon, 2004-02-02 at 09:55 -0800, Anthony Discolo wrote:

> Mozilla can access the ftp site with the proxy server configured, but I
> haven't been able to get ftp to work with a proxy server.
For fetch via proxy see:
/usr/share/examples/etc/defaults/make.conf
Copy this file to /etc and edit the FETCH_ENV to point to your proxy

For cvsup, if you only have access via the proxy server, you can ftp the
entire cvs tree (not efficient). I would ask your admin to either setup
a local mirror , or add a dynamic rule for outgoing cvsup connections.
--
"You keep using that word. I do not think it means what you think it
means."
FreeBSD 5.2-CURRENT i386
2:05am up 46 mins, 4 users, load averages: 1.53, 2.23, 2.15
<< signature.asc >>
_
Check out the new MSN 9 Dial-up — fast & reliable Internet access with prime 
features! http://join.msn.com/?pgmarket=en-us&page=dialup/home&ST=1

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


ftp/fetch/cvsup behind a firewall

2004-02-02 Thread Anthony Discolo
I'm trying to get this to work with a non-Linux firewall.

Mozilla can access the ftp site with the proxy server configured, but I 
haven't been able to get ftp to work with a proxy server.

Any help would be greatly appreciated.

Thanks,
Anthony
_
Check out the new MSN 9 Dial-up — fast & reliable Internet access with prime 
features! http://join.msn.com/?pgmarket=en-us&page=dialup/home&ST=1

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


Re: FreeBSD 5.2: How do I automatically restart twm with the Default session?

2004-01-31 Thread Anthony Discolo
This is the twm that comes with 5.2.  These problems occured when I was not 
using a ~/.twmrc or ~/.xsession.

I found that there is some problem with xsm restarting twm within a session. 
 I tried everything I could think of but twm always dumps core when its 
restarted by xsm.  Twm only works correctly when a Fail Safe session is 
started by xsm.  I figured out how to eliminate the session dialog after I 
logged in by adding "xsm -session Default" in my .xsession, but when twm 
dumps core, it leaves the session locked, and that prevents me from 
subsequently automatically logging into the Default session.

I ended up just running twm from my .xsession and not using xsm at all.  It 
seems to work fine.

If anyone has a workaround for these problems, let me know.

Thanks.

Original Message Follows
From: Lowell Gilbert <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: "Anthony Discolo" <[EMAIL PROTECTED]>
CC: [EMAIL PROTECTED]
Subject: Re: FreeBSD 5.2: How do I automatically restart twm with the 
Default session?
Date: 31 Jan 2004 12:28:47 -0500

"Anthony Discolo" <[EMAIL PROTECTED]> writes:

> Everytime I log in twm asks me to load the Default session.  Is there
> any way I can have it automatically load it (maybe something in the
> ~/.twmrc)?
>
> I've also run into problems with reloading the Default session.
> Sometimes twm dumps core.  If I load the Fail Safe session, it seems
> to work fine.
Is this actually twm as installed from the base X packages?
Are you starting it from xdm(1) or startx(1)?
What does your .xsession or .xinitrc look like?
Does removing your personal .twmrc have any effect?
_
Learn how to choose, serve, and enjoy wine at Wine @ MSN. 
http://wine.msn.com/

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


Re: FreeBSD 5.2: How do I automatically restart twm with the Default session?

2004-01-31 Thread Anthony Discolo
Yes, this is the default twm that comes with 5.2.  I was not using a 
~/.twmrc or a ~/.xsession.

I figured out that twm dumps core when it is restarted by xsm.  I also 
learned that it's xsm that puts up the session dialog, and that "xsm 
-session Default" automatically starts the Default session eliminating the 
dialog.  After twm dumped core, sometimes the Default session would remain 
locked, preventing me from logging in (since xsm couldn't open the Default 
session).  Using the Fail Safe session always worked fine, but I hated 
having to select it everytime I logged in.

Anyway, I couldn't get xsm to automatically reload my Default session 
without having twm dump core, so I stopped using xsm all together.  I simply 
have twm started by my ~/.xsession now (along with my favorite x commands) 
and things work fine.

If you have any advice on how to get xsm and twm to peacefully coexist, I'd 
appreciate it.

Original Message Follows
From: Lowell Gilbert <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: "Anthony Discolo" <[EMAIL PROTECTED]>
CC: [EMAIL PROTECTED]
Subject: Re: FreeBSD 5.2: How do I automatically restart twm with the 
Default session?
Date: 31 Jan 2004 12:28:47 -0500

"Anthony Discolo" <[EMAIL PROTECTED]> writes:

> Everytime I log in twm asks me to load the Default session.  Is there
> any way I can have it automatically load it (maybe something in the
> ~/.twmrc)?
>
> I've also run into problems with reloading the Default session.
> Sometimes twm dumps core.  If I load the Fail Safe session, it seems
> to work fine.
Is this actually twm as installed from the base X packages?
Are you starting it from xdm(1) or startx(1)?
What does your .xsession or .xinitrc look like?
Does removing your personal .twmrc have any effect?
_
Learn how to choose, serve, and enjoy wine at Wine @ MSN. 
http://wine.msn.com/

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


FreeBSD 5.2: How do I automatically restart twm with the Default session?

2004-01-29 Thread Anthony Discolo
Everytime I log in twm asks me to load the Default session.  Is there any 
way I can have it automatically load it (maybe something in the ~/.twmrc)?

I've also run into problems with reloading the Default session.  Sometimes 
twm dumps core.  If I load the Fail Safe session, it seems to work fine.

Thanks for any help.

Anthony

_
Scope out the new MSN Plus Internet Software — optimizes dial-up to the max! 
  http://join.msn.com/?pgmarket=en-us&page=byoa/plus&ST=1

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


FreeBSD 5.2: /usr/X11R6/lib/X11/rgb and /usr/X11R6/lib/X11/fonts not created?

2004-01-29 Thread Anthony Discolo
I'm having problems configuring X because these directories apparently 
haven't been created by the installation process.

I'm rerunning sysinstall right now.  Is there anything else I can try?

Thanks,
Anthony
_
High-speed users—be more efficient online with the new MSN Premium Internet 
Software. http://join.msn.com/?pgmarket=en-us&page=byoa/prem&ST=1

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


FreeBSD 5.2 installation: Add of package qt-3.2.1 aborted, error code 1

2004-01-29 Thread Anthony Discolo
How do I check the debug screen for more info?

Thanks,
Anthony
_
Check out the new MSN 9 Dial-up — fast & reliable Internet access with prime 
features! http://join.msn.com/?pgmarket=en-us&page=dialup/home&ST=1

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


Re: FreeBSD 5.1 support for Dell Integrated audio?

2004-01-28 Thread Anthony Discolo
uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 2 ports with 2 removable, self powered
uhci1:  port 0xff60-0xff7f irq 10 
at device 29.1 on pci0
usb1:  on uhci1
usb1: USB revision 1.0
uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub1: 2 ports with 2 removable, self powered
uhci2:  port 0xff40-0xff5f irq 9 
at device 29.2 on pci0
usb2:  on uhci2
usb2: USB revision 1.0
uhub2: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub2: 2 ports with 2 removable, self powered
uhci3:  port 0xff20-0xff3f irq 11 
at device 29.3 on pci0
usb3:  on uhci3
usb3: USB revision 1.0
uhub3: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub3: 2 ports with 2 removable, self powered
pci0:  at device 29.7 (no driver attached)
pcib2:  at device 30.0 on pci0
pci2:  on pcib2
em0:  port 
0xdf40-0xdf7f mem 0xfcfe-0xfcff irq 9 at device 12.0 on pci2
em0:  Speed:100 Mbps  Duplex:Half
isab0:  at device 31.0 on pci0
isa0:  on isab0
atapci0:  port 
0xffa0-0xffaf,0x374-0x377,0x170-0x177,0x3f4-0x3f7,0x1f0-0x1f7 mem 
0xfebffc00-0xfebf irq 9 at device 31.1 on pci0
ata0: at 0x1f0 irq 14 on atapci0
ata1: at 0x170 irq 15 on atapci0
atapci1:  port 
0xfea0-0xfeaf,0xfe30-0xfe33,0xfe20-0xfe27,0xfe10-0xfe13,0xfe00-0xfe07 irq 9 
at device 31.2 on pci0
ata2: at 0xfe00 on atapci1
ata3: at 0xfe20 on atapci1
pci0:  at device 31.3 (no driver attached)
pci0:  at device 31.5 (no driver attached)
fdc0:  port 
0x3f7,0x3f0-0x3f5 irq 6 drq 2 on acpi0
fdc0: FIFO enabled, 8 bytes threshold
fd0: <1440-KB 3.5" drive> on fdc0 drive 0
atkbdc0:  port 0x64,0x60 irq 1 on acpi0
atkbd0:  flags 0x1 irq 1 on atkbdc0
kbd0 at atkbd0
psm0:  irq 12 on atkbdc0
psm0: model Generic PS/2 mouse, device ID 0
sio0 port 0x3f8-0x3ff irq 4 on acpi0
sio0: type 16550A
ppc0 port 0x778-0x77f,0x378-0x37f irq 7 on acpi0
ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode
ppc0: FIFO with 16/16/8 bytes threshold
ppbus0:  on ppc0
plip0:  on ppbus0
lpt0:  on ppbus0
lpt0: Interrupt-driven port
ppi0:  on ppbus0
orm0:  at iomem 
0xdd800-0xd,0xd1000-0xdd7ff,0xcf800-0xd0fff,0xc-0xcf7ff on isa0
pmtimer0 on isa0
sc0:  at flags 0x100 on isa0
sc0: VGA <16 virtual consoles, flags=0x300>
sio1: configured irq 3 not in bitmap of probed irqs 0
sio1: port may not be enabled
vga0:  at port 0x3c0-0x3df iomem 0xa0000-0xb on isa0
Timecounters tick every 10.000 msec
ad0: 76293MB  [155009/16/63] at ata0-master UDMA100
acd0: DVD-ROM  at ata1-master PIO4
Mounting root from ufs:/dev/ad0s1a

Original Message Follows
From: Adam Bozanich <[EMAIL PROTECTED]>
To: Anthony Discolo <[EMAIL PROTECTED]>
CC: [EMAIL PROTECTED]
Subject: Re: FreeBSD 5.1 support for Dell Integrated audio?
Date: Tue, 27 Jan 2004 19:54:57 -0800 (PST)
On Tue, 27 Jan 2004, Anthony Discolo wrote:

> I have a new Dell Optiplex GX270 and I can't seem to get integrated audio
> ("Integrated Sound Blaster Compatible AC97") to work.  I've tried
> configuring the pcm and sbc drivers with no luck.
>
> Any help would be greatly appreciated.
>
> Thanks,
> Anthony
Try adding

snd_ich_load="YES"

to /boot/loader.conf

-Adam

_
High-speed users—be more efficient online with the new MSN Premium Internet 
Software. http://join.msn.com/?pgmarket=en-us&page=byoa/prem&ST=1

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


Re: FreeBSD 5.1 support for Dell Integrated audio?

2004-01-28 Thread Anthony Discolo
uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 2 ports with 2 removable, self powered
uhci1:  port 0xff60-0xff7f irq 10 
at device 29.1 on pci0
usb1:  on uhci1
usb1: USB revision 1.0
uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub1: 2 ports with 2 removable, self powered
uhci2:  port 0xff40-0xff5f irq 9 
at device 29.2 on pci0
usb2:  on uhci2
usb2: USB revision 1.0
uhub2: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub2: 2 ports with 2 removable, self powered
uhci3:  port 0xff20-0xff3f irq 11 
at device 29.3 on pci0
usb3:  on uhci3
usb3: USB revision 1.0
uhub3: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub3: 2 ports with 2 removable, self powered
pci0:  at device 29.7 (no driver attached)
pcib2:  at device 30.0 on pci0
pci2:  on pcib2
em0:  port 
0xdf40-0xdf7f mem 0xfcfe-0xfcff irq 9 at device 12.0 on pci2
em0:  Speed:100 Mbps  Duplex:Half
isab0:  at device 31.0 on pci0
isa0:  on isab0
atapci0:  port 
0xffa0-0xffaf,0x374-0x377,0x170-0x177,0x3f4-0x3f7,0x1f0-0x1f7 mem 
0xfebffc00-0xfebf irq 9 at device 31.1 on pci0
ata0: at 0x1f0 irq 14 on atapci0
ata1: at 0x170 irq 15 on atapci0
atapci1:  port 
0xfea0-0xfeaf,0xfe30-0xfe33,0xfe20-0xfe27,0xfe10-0xfe13,0xfe00-0xfe07 irq 9 
at device 31.2 on pci0
ata2: at 0xfe00 on atapci1
ata3: at 0xfe20 on atapci1
pci0:  at device 31.3 (no driver attached)
pci0:  at device 31.5 (no driver attached)
fdc0:  port 
0x3f7,0x3f0-0x3f5 irq 6 drq 2 on acpi0
fdc0: FIFO enabled, 8 bytes threshold
fd0: <1440-KB 3.5" drive> on fdc0 drive 0
atkbdc0:  port 0x64,0x60 irq 1 on acpi0
atkbd0:  flags 0x1 irq 1 on atkbdc0
kbd0 at atkbd0
psm0:  irq 12 on atkbdc0
psm0: model Generic PS/2 mouse, device ID 0
sio0 port 0x3f8-0x3ff irq 4 on acpi0
sio0: type 16550A
ppc0 port 0x778-0x77f,0x378-0x37f irq 7 on acpi0
ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode
ppc0: FIFO with 16/16/8 bytes threshold
ppbus0:  on ppc0
plip0:  on ppbus0
lpt0:  on ppbus0
lpt0: Interrupt-driven port
ppi0:  on ppbus0
orm0:  at iomem 
0xdd800-0xd,0xd1000-0xdd7ff,0xcf800-0xd0fff,0xc-0xcf7ff on isa0
pmtimer0 on isa0
sc0:  at flags 0x100 on isa0
sc0: VGA <16 virtual consoles, flags=0x300>
sio1: configured irq 3 not in bitmap of probed irqs 0
sio1: port may not be enabled
vga0:  at port 0x3c0-0x3df iomem 0xa0000-0xb on isa0
Timecounters tick every 10.000 msec
ad0: 76293MB  [155009/16/63] at ata0-master UDMA100
acd0: DVD-ROM  at ata1-master PIO4
Mounting root from ufs:/dev/ad0s1a

Original Message Follows
From: Adam Bozanich <[EMAIL PROTECTED]>
To: Anthony Discolo <[EMAIL PROTECTED]>
CC: [EMAIL PROTECTED]
Subject: Re: FreeBSD 5.1 support for Dell Integrated audio?
Date: Tue, 27 Jan 2004 19:54:57 -0800 (PST)
On Tue, 27 Jan 2004, Anthony Discolo wrote:

> I have a new Dell Optiplex GX270 and I can't seem to get integrated audio
> ("Integrated Sound Blaster Compatible AC97") to work.  I've tried
> configuring the pcm and sbc drivers with no luck.
>
> Any help would be greatly appreciated.
>
> Thanks,
> Anthony
Try adding

snd_ich_load="YES"

to /boot/loader.conf

-Adam

_
High-speed users—be more efficient online with the new MSN Premium Internet 
Software. http://join.msn.com/?pgmarket=en-us&page=byoa/prem&ST=1

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


FreeBSD 5.1 support for Dell Integrated audio?

2004-01-27 Thread Anthony Discolo
I have a new Dell Optiplex GX270 and I can't seem to get integrated audio 
("Integrated Sound Blaster Compatible AC97") to work.  I've tried 
configuring the pcm and sbc drivers with no luck.

Any help would be greatly appreciated.

Thanks,
Anthony
_
Check out the new MSN 9 Dial-up — fast & reliable Internet access with prime 
features! http://join.msn.com/?pgmarket=en-us&page=dialup/home&ST=1

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