Re: Problems reading CDRW after writing

2006-01-04 Thread Fabian Keil
Marc Evans [EMAIL PROTECTED] wrote: Thank you for your suggestion. I have managed to get camcontrol to function, which implies to me that the atapicam module is functioning. However, I am not succeeding at getting the readcd command to work: # camcontrol devlist ATAPI CD-RW 52X24 K.NC

FreeBSD 5.4 Apache Shows Blank Page at times

2006-01-04 Thread FlashWebHost.com
Hi, One my server, at tiems getting Blank page. - server20# uname -a FreeBSD server20.hosthat.com 5.4-RELEASE FreeBSD 5.4-RELEASE #1: Tue Oct 18 06:28:41 GMT 2005 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/SERVER20 i386 server20# php -v PHP 4.4.0 (cgi) (built: Jan 3 2006 09:51:00) Copyright

RE: How to bind ntpd to a single address?

2006-01-04 Thread Darren Pilgrim
From: Matthew Seaman [mailto:[EMAIL PROTECTED] Darren Pilgrim wrote: I don't like (let alone want) ntpd binding to every IP address on the host. The man pages don't say anything about specifying a binding address for ntpd. A search of the sources and Google also failed to reveal

Trivial question on an irritating feature

2006-01-04 Thread Leslie Jensen
Hi I'm using KDE and my problem is that when I want to finish and shutdown my PC, I use the little red button log out and there is only the choice of ending the current session and it only takes me back to the log in dialog. I would like to have the reboot and shutdown options as well. Any

Re: Kernel Compilation...

2006-01-04 Thread Nikolas Britton
On 1/3/06, Crispy Beef [EMAIL PROTECTED] wrote: Jonathan Chen wrote: On Mon, Jan 02, 2006 at 04:15:48PM +, Crispy Beef wrote: Hi All, Just joined this list. The last time I used FreeBSD was with 4.6-RELEASE, so a while ago now. I have just installed 6.0-RELEASE on my old laptop and

Re: ftp nologin problem

2006-01-04 Thread Leonidas Tsampros
On Tue, Jan 03, 2006 at 08:26:57PM +0500, Imran Imtiaz wrote: it gives the following error - Fatal: unknown configuration directive 'equireValidShell' on line 13 of -^ You missed an R. :) '/usr/local/etc/proftpd.conf'. - Original Message -

Re: Kernel Compilation...

2006-01-04 Thread Crispy Beef
Nikolas Britton wrote: On 1/3/06, Crispy Beef [EMAIL PROTECTED] wrote: Jonathan Chen wrote: On Mon, Jan 02, 2006 at 04:15:48PM +, Crispy Beef wrote: Hi All, Just joined this list. The last time I used FreeBSD was with 4.6-RELEASE, so a while ago now. I have just installed

Re: How long to compile...

2006-01-04 Thread Crispy Beef
I guess the 4.5 kernel was a lot less complex as that compiles quite quickly on my old P120 firewall box. Cheers for the info. Paul Rowdy wrote: Crispy Beef wrote: Hi, This is kind of related to my other post (Kernel Compilation), but thought I'd post it seperately as it would be

Re: Trivial question on an irritating feature

2006-01-04 Thread Nikolas Britton
On 1/4/06, Leslie Jensen [EMAIL PROTECTED] wrote: Hi I'm using KDE and my problem is that when I want to finish and shutdown my PC, I use the little red button log out and there is only the choice of ending the current session and it only takes me back to the log in dialog. I would like to

Re: C++ compile error

2006-01-04 Thread Jonathan Arnold
David Miao wrote: On 12/16/05, Nathan Vidican [EMAIL PROTECTED] wrote: David Miao wrote: Dear list, I try to compile a hello world C++ program in FreeBSD 6.0, but get an error as below: [EMAIL PROTECTED] ~/cpp]% CC -o hello hello.C hello.C: In function `int main()': hello.C:5: error: `cout'

mod_auth_pgsql2 and libpq.so.2

2006-01-04 Thread Jeff MacDonald
Hi, So, I just downgraded /usr/ports/www/apache22 to apache2 so that mod_auth_pgsql2 would install. [It really doesn't like 22] I installed it, then uncommented it's line from /usr/local/etc/apache2/httpd.conf When I run apachectl configtest I get the following %apachectl configtest Syntax

Asterisk CPU usage

2006-01-04 Thread Richard Klingler
Hello.. Is anyone using Asterisk from /usr/ports under FBSD 5.4 or 6.0? After a while the CPU load goes to 99% without any information in message logs... I know that FBSD is a bad platform for asterisk (o; thanx in advance rick ___

Can't build mplayer-skins: checksum missing error

2006-01-04 Thread Jesse Sheidlower
I'm trying to build mplayer-skins as part of an upgrade of GNOME. I am unable to get around a weird error with a supposedly missing checksum in mplayer. After I choose my options (the default skin only), I get: === Options unchanged === Vulnerability check disabled, database not found ===

RE: Asterisk CPU usage

2006-01-04 Thread Chad Albert
http://www.voip-info.org/wiki-Asterisk+FreeBSD May give you some help. Check the Installation section where it reccomends setting noload = pbx_wilcalu.so in the modules.conf. I just found it while I was setting one up myself. I am not sure if it applies for you or not. Let me know if it

command to add file contents to end of existing file

2006-01-04 Thread fbsd_user
I know I have done this in the past, but having brain fart today. What is command or command sequence to copy the contents of file B to the end of the contents of file A? ___ freebsd-questions@freebsd.org mailing list

Re: command to add file contents to end of existing file

2006-01-04 Thread Nicolas Blais
On January 4, 2006 11:40 am, fbsd_user wrote: I know I have done this in the past, but having brain fart today. What is command or command sequence to copy the contents of file B to the end of the contents of file A? you mean something like: cat filea fileb ? -- FreeBSD 7.0-CURRENT #9:

Re: command to add file contents to end of existing file

2006-01-04 Thread Doug Poland
On Wed, January 4, 2006 10:40, fbsd_user wrote: I know I have done this in the past, but having brain fart today. What is command or command sequence to copy the contents of file B to the end of the contents of file A? how about: % cat B A -- Regards, Doug

Re: command to add file contents to end of existing file

2006-01-04 Thread albi
On Wed, 4 Jan 2006 11:40:38 -0500 fbsd_user [EMAIL PROTECTED] wrote: What is command or command sequence to copy the contents of file B to the end of the contents of file A? i would try something like : cat A B C ; cp A A-backup ; rm A ; mv C A -- grtjs, albi gpg-key: lynx -dump

RE: command to add file contents to end of existing file

2006-01-04 Thread fbsd_user
On Wed, January 4, 2006 10:40, fbsd_user wrote: I know I have done this in the past, but having brain fart today. What is command or command sequence to copy the contents of file B to the end of the contents of file A? how about: % cat B A Thanks to all who responded this is what I

FreeBSD Mail Archive Question

2006-01-04 Thread John Hoover
Is it possible to have older mail messages resent?? I know I can get the zipped archives and that would be fine, but I was hoping I could get the list software to resend them. Thanks, John. -- - John F Hoover [EMAIL PROTECTED]

Re: Kernel Compilation...

2006-01-04 Thread Crispy Beef
Nikolas Britton wrote: To rule out hardware problems rebuild the generic kernel using the virgin GENERIC kernel config file: 0. If you've messed with /etc/make.conf change it back to the defaults! 1. su 2. cd /usr/src/sys/i386/conf 3. rm -r ../compile/GENERIC 4. config GENERIC 5. cd

portupgrade freezing

2006-01-04 Thread Dave
Hello, Last portupgrade i did showed portupgrade itself was in need of updating. I ran portupgrade -arR and i got portupgrade v2.01,1, now when i run a portupgrade command the system just sits there. I don't get any output at all. I have uninstalled portupgrade and reinstalled it, no

Setting up a FreeBSD gateway

2006-01-04 Thread Brian Bobowski
OK, I've tried searching through man pages and such, but I've got kind of lost here. I have one machine that's acting as a gateway for my home PC, in addition to running a few local servers. I know I shouldn't do that, but the traffic is low and I just don't have room for more computers in my

RTL8201BL PHY Gigabit ethernet

2006-01-04 Thread Mervin McDougall
Hi, I recently got my hands on an EPoX AMD 64 motherboard which has an integrated ethernet card. The chipset of the card is RTL8201BL PHY. I have read through the release notes for freebsd 6.0 and found nothing on this chipset. I was wondering whether it would be possible to still make use of

Soekris Net4801 + sis DP83816A

2006-01-04 Thread Jacques Beigbeder
Hello, Hardware: Sokeris Net4801 I boot using PXE and it hangs at the end. Here some lines of the boot: FreeBSD 5.4-RELEASE #0: Wed Jan 4 15:31:04 UTC 2006 [ ... ] sis0: NatSemi DP8381[56] 10/100BaseTX port 0xe100-0xe1ff mem 0xa000-0xafff irq 10 at device 6.0 on pci0 sis0:

RE: Setting up a FreeBSD gateway

2006-01-04 Thread Ruben Bloemgarten
1. I assume you are running some kind of NAT ? 2. allow udp/tcp traffic out on port 53 to the dns servers you want to use. This will pass the dns requests through the gateway. If you want to use the gateway as a dns forwarder, you need to install something to do this. A third alternative is to

Re: Can't build mplayer-skins: checksum missing error

2006-01-04 Thread Glenn Dawson
At 06:47 AM 1/4/2006, Jesse Sheidlower wrote: I'm trying to build mplayer-skins as part of an upgrade of GNOME. I am unable to get around a weird error with a supposedly missing checksum in mplayer. After I choose my options (the default skin only), I get: === Options unchanged ===

Re: Setting up a FreeBSD gateway

2006-01-04 Thread Teo De Las Heras
By design dns servers will perform recursive queries through the root servers for all domains; unless you're hosting the zone then it considers itself authoritive. So you can set up a dns server for your network, or use a public one. Teo On 1/4/06, Brian Bobowski [EMAIL PROTECTED] wrote: OK,

oracle on freeBSD

2006-01-04 Thread eoghan
Hello Im wondering if there is any info on getting oracle running on freeBSD (im using 6.0). I have found this: http://www.scc.nl/~marcel/howto-oracle.html But it seems a little dated. I read oracle doesnt officially support freeBSD and was pointed to a link here of people working with it:

Printing from FreeBSD 6.0 client to Fedora Core 4 server via CUPS/LPD

2006-01-04 Thread Tim Greening-Jackson
Hello there. I hope someone can help me with what I am sure is an elementary problem. I am currently investigating FreeBSD with a view to using it on my server in place of Fedora Core 4. Before I move the server from Fedora to FreeBSD, I want to play with FreeBSD to make sure it can do everything

Re: Setting up a FreeBSD gateway

2006-01-04 Thread Dan O'Connor
I have one machine that's acting as a gateway for my home PC, in addition to running a few local servers. I know I shouldn't do that, but the traffic is low and I just don't have room for more computers in my room, anyway. At any rate... I think I've got the packet-forwarding aspect set up

Re: Kernel Compilation...

2006-01-04 Thread Nikolas Britton
On 1/4/06, Crispy Beef [EMAIL PROTECTED] wrote: Nikolas Britton wrote: To rule out hardware problems rebuild the generic kernel using the virgin GENERIC kernel config file: 0. If you've messed with /etc/make.conf change it back to the defaults! 1. su 2. cd /usr/src/sys/i386/conf 3.

Data Execution Protection

2006-01-04 Thread klowd9 -
Does FreeBSD have any support for Data Execution Protection (DEP) and Non-Executable Stack? What are the future plans for this subject? I quickly coded a executable file of ELF format, using nasm. It had no .text section. Only a .data section, which is where my code was placed. Any much to my

Apache error logs memory leak

2006-01-04 Thread Jose Borquez
I keep getting errors in my apache error logs with the following: Is this a problem with PHP? /usr/ports/textproc/php5-xml/work/php-5.1.1/ext/xml/xml.c(695) : Freeing 0x0882 B624 (32 bytes), script=/usr/local/www/groupoffice-com-2.14-FINAL-4/modules/phps ysinfo/index.php

Re: oracle on freeBSD

2006-01-04 Thread Daniel Gerzo
Hello eoghan, Wednesday, January 4, 2006, 7:59:44 PM, you wrote: Hello Im wondering if there is any info on getting oracle running on freeBSD (im using 6.0). I have found this: we have a section in handbook about setting up oracle, but it's outdated now, though there are some people

Re: Kernel Compilation...

2006-01-04 Thread Robert Huff
Nikolas Britton writes: Still sounds like a hardware problem. Maybe not. A couple of years back - in the early days of 4.x - I had a problem which I /think/ manifested in the manner originally described. It turned out to be the script I'd set up to automate this

Re: portupgrade freezing

2006-01-04 Thread Tom Grove
Dave wrote: Hello, Last portupgrade i did showed portupgrade itself was in need of updating. I ran portupgrade -arR and i got portupgrade v2.01,1, now when i run a portupgrade command the system just sits there. I don't get any output at all. I have uninstalled portupgrade and reinstalled

Re: [dadadev] atom and the privacy, multiple fields and foreign languages.

2006-01-04 Thread Gerard
Alfred Vink [EMAIL PROTECTED] Michael: 4. If I use the archiving of my discussion list the e-mail addresses are displayed doing a Google search with the keywords of the name of the person. Add a robots.txt file to the root of your site and in this textfile type: User-agent: *

Re: Setting up a FreeBSD gateway

2006-01-04 Thread Reko Turja
- Original Message - From: Brian Bobowski [EMAIL PROTECTED] To: FreeBSD User Questions List freebsd-questions@freebsd.org Sent: Wednesday, January 04, 2006 7:44 PM Subject: Setting up a FreeBSD gateway However, I don't know how to set up DNS. Specifically, I want to either pass all

Re: Setting up a FreeBSD gateway

2006-01-04 Thread Reko Turja
- Original Message - From: Brian Bobowski [EMAIL PROTECTED] To: FreeBSD User Questions List freebsd-questions@freebsd.org Sent: Wednesday, January 04, 2006 7:44 PM Subject: Setting up a FreeBSD gateway However, I don't know how to set up DNS. Specifically, I want to either pass all

Re: oracle on freeBSD

2006-01-04 Thread eoghan
On 4 Jan 2006, at 20:09, Daniel Gerzo wrote: Hello eoghan, Wednesday, January 4, 2006, 7:59:44 PM, you wrote: Hello Im wondering if there is any info on getting oracle running on freeBSD (im using 6.0). I have found this: we have a section in handbook about setting up oracle, but it's

Xprt doesn't find printers on FreeBSD 6

2006-01-04 Thread Doug Poland
Hello, I'm having a problem with Xprt (xorg-printserver-6.8.2_2) on FreeBSD 6-STABLE. It would seem that Xprt is supposed to automatically detect my printers, but it doesn't. I have two printers in my /etc/printcap and successfully print to both. When I start Xprt, I receive this warning... #

Re[2]: oracle on freeBSD

2006-01-04 Thread Daniel Gerzo
Hello eoghan, Wednesday, January 4, 2006, 10:16:40 PM, you wrote: On 4 Jan 2006, at 20:09, Daniel Gerzo wrote: Hello eoghan, Wednesday, January 4, 2006, 7:59:44 PM, you wrote: Hello Im wondering if there is any info on getting oracle running on freeBSD (im using 6.0). I have found this:

error with kernel building

2006-01-04 Thread Nguyen Danh Hieu
Could someone tell me what's wrong with my configuration plz here are erros with command make linking kernel.debug if_ural.o(.text+0x3bb): In function `ural_attach': ../../../dev/usb/if_ural.c:458: undefined reference to `ieee80211_ieee2mhz' if_ural.o(.text+0x3ef):../../../dev/usb/if_ural.c:463:

Re: error with kernel building

2006-01-04 Thread Glenn Dawson
At 02:11 PM 1/4/2006, Nguyen Danh Hieu wrote: Could someone tell me what's wrong with my configuration plz here are erros with command make You have the wlan device commented out but the ural devices requires it. You also have the da device commented out, but there are other devices that

Re: Can't build mplayer-skins: checksum missing error

2006-01-04 Thread Chris Hill
On Wed, 4 Jan 2006, Jesse Sheidlower wrote: I'm trying to build mplayer-skins as part of an upgrade of GNOME. I am unable to get around a weird error with a supposedly missing checksum in mplayer. After I choose my options (the default skin only), I get: === Options unchanged === Vulnerability

Re: Kernel Compilation...

2006-01-04 Thread Nikolas Britton
On 1/4/06, Nikolas Britton [EMAIL PROTECTED] wrote: On 1/4/06, Crispy Beef [EMAIL PROTECTED] wrote: Nikolas Britton wrote: To rule out hardware problems rebuild the generic kernel using the virgin GENERIC kernel config file: 0. If you've messed with /etc/make.conf change it back to

Re: pkgdb format

2006-01-04 Thread Parv
in message [EMAIL PROTECTED], wrote Fernan Aguero thusly... The pkgdb.db file got rebuild the first time, and then everything worked right until portupgrade reinstalled databases/ruby-bdb1. From this point on, the rebuilding of pkgdb.db started, alternating between bdm_hash and dbd1_btree I

Re: How to convert BIND to TinyDNS?

2006-01-04 Thread Benson Wong
This is the cheat sheet I have at the top of my tinydns data (definition) file: ### # TinyDNS Data File for domains hosted on our primary name server # Notes: # # Make sure all domains use [a.ns.domain.com] and

Problem with local rc.d scripts in 6.0

2006-01-04 Thread Mark Ovens
Since src u/g 5.4-6 the *_enable variables in rc.conf for local rc.d scripts are being ignored. For example, neither lisad (for KDE LAN Browsing) or giftd (for giFT) are starting. In rc.conf I have: lisa_enable=YES # Lisa daemon for LAN Browsing in Konqueror giftd_enable=YES

how can I determine the lowest not-in-use md device (for use with mdconfig) ?

2006-01-04 Thread user
The command: mdconfig -l will tell me what md devices are in use currently on the system. I have a situation where I want to automatically mount a vnode filesystem with an md device ... and I won't know ahead of time which devices are in use ... So ... can anyone think of an elegant way to

RE: how can I determine the lowest not-in-use md device (for use with mdconfig) ?

2006-01-04 Thread user
never mind - I see that mdconfig will take the first available device if you simply decline to specify one. thanks. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any

Serial Port Logging

2006-01-04 Thread jhall
Ladies and Gentlemen, The organization I work for has a need to log information from the phone system. The phone system has a serial port output. Since I already have a FreeBSD server in place at this location, I was wondering if it is possible to send the information from the phone system, to

Re: portupgrade freezing

2006-01-04 Thread Dave
Hi, I don't have to kill the system, just portupgrade. When i run portversion -l it just hangs as well. A pkg_info shows portupgrade version 2.0.1,1. Dave. - Original Message - From: Tom Grove [EMAIL PROTECTED] To: Dave [EMAIL PROTECTED] Cc: freebsd-questions@freebsd.org Sent:

Re: portupgrade freezing

2006-01-04 Thread Tom Munro Glass
As reported on the [EMAIL PROTECTED] mailing list, running portupgrade with the --ignore-moved option seems to solve the problem. It works for me anyway. Tom On Thursday 05 January 2006 15:13, Dave wrote: Hi, I don't have to kill the system, just portupgrade. When i run portversion -l

how can I find out which md device I just used ? (mdconfig)

2006-01-04 Thread user
mdconfig will use the next available md device, as long as you do not specify a particular device on the command line with the -u switch. Which is great. However, in a script, the very next thing I want to do is mount that mdconfig'd vnode filesystem. But I do not know which md device mdconfig

Re: Printing from FreeBSD 6.0 client to Fedora Core 4 server via CUPS/LPD

2006-01-04 Thread Malcolm Kay
On Thu, 5 Jan 2006 06:05 am, Tim Greening-Jackson wrote: Hello there. I hope someone can help me with what I am sure is an elementary problem. I am currently investigating FreeBSD with a view to using it on my server in place of Fedora Core 4. Before I move the server from Fedora to FreeBSD, I

Re: Can't build mplayer-skins: checksum missing error

2006-01-04 Thread Jesse Sheidlower
On Wed, Jan 04, 2006 at 06:15:46PM -0500, Chris Hill wrote: On Wed, 4 Jan 2006, Jesse Sheidlower wrote: I'm trying to build mplayer-skins as part of an upgrade of GNOME. I am unable to get around a weird error with a supposedly missing checksum in mplayer. After I choose my options (the

Re: how can I find out which md device I just used ? (mdconfig)

2006-01-04 Thread Malcolm Kay
On Thu, 5 Jan 2006 01:50 pm, user wrote: mdconfig will use the next available md device, as long as you do not specify a particular device on the command line with the -u switch. Which is great. However, in a script, the very next thing I want to do is mount that mdconfig'd vnode

Installing PostgreSQL as a package

2006-01-04 Thread Mike Jeays
I am having trouble installing postgresql80-server on a 6.0 machine. It complains that it is incompatible with postgresql-client-7.4.8. This can't be deleted because it is a dependency of koffice and kde, so I am reluctant to force the deletion. I forced the install of postgresql80-server, but

Re: ipnat -CF -f /etc/ipnat.rules

2006-01-04 Thread perikillo
On 1/3/06, fbsd_user [EMAIL PROTECTED] wrote: On 1/2/06, fbsd_user [EMAIL PROTECTED] wrote: I see tun in your ipnat rule. That means you are using ppp for phone dialup connection. Every time you lose your phone connection you get different IP from your ISP. Use NAT function of PPP and

Re: Can't build mplayer-skins: checksum missing error

2006-01-04 Thread Kent Stewart
On Wednesday 04 January 2006 07:45 pm, Jesse Sheidlower wrote: On Wed, Jan 04, 2006 at 06:15:46PM -0500, Chris Hill wrote: On Wed, 4 Jan 2006, Jesse Sheidlower wrote: I'm trying to build mplayer-skins as part of an upgrade of GNOME. I am unable to get around a weird error with a supposedly

About samba 3 options to compile?

2006-01-04 Thread perikillo
Hi people. I was trying to install /usr/ports/net/samba3 on my freebsd 5.4-p8 box, but he ask me some questions: LDAPWith LDAP support on \ ADS With Active Directory support off \ CUPSWith CUPS printing

making something like a router

2006-01-04 Thread Imran Imtiaz
I have a freebsd system that has three lan cards one lan card is for lan and the other two are for wan what I want now is the I want certain ip to be passed on one wan interface and certain other ip's to be passed from other wan interface how is it possible, I willl appreciate if someone will

Re: making something like a router

2006-01-04 Thread Foo Ji-Haw
You only need to update the routing table for your fbsd machine. That's all. - Original Message - From: Imran Imtiaz [EMAIL PROTECTED] To: freebsd-questions@freebsd.org Sent: Thursday, January 05, 2006 1:55 PM Subject: making something like a router I have a freebsd system that has

Re: Serial Port Logging

2006-01-04 Thread Foo Ji-Haw
Why don't you write a little Perl daemon to read from the port (easy since fbsd reads a port like a file), then dump it to the file? That way you have more control. - Original Message - From: [EMAIL PROTECTED] To: freebsd-questions@freebsd.org Sent: Thursday, January 05, 2006 10:16 AM

Re: how can I find out which md device I just used ? (mdconfig)

2006-01-04 Thread user
On Thu, 5 Jan 2006, Malcolm Kay wrote: On my system (5.4) mdconfig reports the created device to stdout: So: memdevice=`mdconfig -a -t malloc -s10M` sets the device name in $memdevice. Thank you very much - I have just verified that this works the same way on FreeBSD 6.0. I

RE: 6.0-R DMA with Intel ICH6 UDMA100/SATA150 controller

2006-01-04 Thread Ted Mittelstaedt
File a bug report for mplayer. Ted -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 03, 2006 11:01 PM To: Ted Mittelstaedt Cc: freebsd-questions@freebsd.org Subject: Re: 6.0-R DMA with Intel ICH6 UDMA100/SATA150 controller El día Tuesday,

Re: Installing PostgreSQL as a package

2006-01-04 Thread Jonathan Chen
On Wed, Jan 04, 2006 at 10:57:05PM -0500, Mike Jeays wrote: I am having trouble installing postgresql80-server on a 6.0 machine. It complains that it is incompatible with postgresql-client-7.4.8. This can't be deleted because it is a dependency of koffice and kde, so I am reluctant to force

memory requirement

2006-01-04 Thread azri abdul majid
Hi there I am a linux user and I am very interested on trying FreeBSD. I just curious about one matter. Currently I have an old linux machine with 15GB Hdd, 64MB RAM, 266MHz Intel Celeron Processor. I just want to use FreeBSD for my academic research. Can FreeBSD running smoothly using my