Re: Any way to force AHCI mode on ICH8?

2010-09-09 Thread Ivan Voras
On 09/09/10 02:10, Morgan Wesström wrote: I run FreeBSD 8.1 on an old Asus P5B-VM motherboard with ICH8. Its AMI BIOS lacks an option to enable AHCI mode. Intel's datasheet for the ICH8 family specifies that this feature exists on the ICH8, and the option is available in the BIOS for the

Re: how to tell ls output date in digital

2010-09-09 Thread andrew clarke
On Wed 2010-09-08 16:03:20 UTC-0700, Guojun Jin (g...@ubicom.com) wrote: I remember that ls can output date in digital like following format before -rw-r--r-- 1 user Domain Users54323 2010-09-08 14:12 crash.log Instead of Sep 08 2010 or Sep 08 11:07 But I cannot find

Re: Regex Help For Procmail

2010-09-09 Thread Glen Barber
On 9/8/10 12:22 PM, Drew Tomlinson wrote: [snip] # Deliver other email to folder :0 * ^From:.*famous-smoke\.com ${HOME}/Maildir/.Shopping/Famous Smoke/Email/ Do you see anything I'm missing? Drew, I'll give this one final shot. Try this: * ^From:(@.*famous-smoke\.com)

Re: how to tell ls output date in digital

2010-09-09 Thread andrew clarke
On Thu 2010-09-09 13:11:39 UTC+, Pala, Santosh (santosh_p...@keane.com) wrote: The ls command with -E switch will give the required output. Hmm, not in FreeBSD 7.3: 23:19 ozzmo...@blizzard [~]/bin/ls -E ls: illegal option -- E usage: ls [-ABCFGHILPRSTUWZabcdfghiklmnopqrstuwx1] [file ...]

mount NTFS can't write to it

2010-09-09 Thread Matthias Apitz
Hello, I'm mounting an NTFS slice on an external USB drive as: # mount -t ntfs /dev/da1s1 /mnt I can see the data there with ls(1) but can't create any dir like /mnt/dir nor touch a file like /mnt/file (ofc as root). It alwaya says /mnt/dir: No such file or directory. The man page of

RE: how to tell ls output date in digital

2010-09-09 Thread Pala, Santosh
Hi Andrew, The ls command with -E switch will give the required output. Regards, Pala. From: owner-freebsd-questi...@freebsd.org [owner-freebsd-questi...@freebsd.org] on behalf of andrew clarke [m...@ozzmosis.com] Sent: Thursday, September 09, 2010 9:24

Re: mount NTFS can't write to it

2010-09-09 Thread Ryan Coleman
the default NTFS driver - a topic of much discussion here in the past two months - does *not* support writing. Check ports for fuse-ntfs. On Sep 9, 2010, at 8:30 AM, Matthias Apitz wrote: Hello, I'm mounting an NTFS slice on an external USB drive as: # mount -t ntfs /dev/da1s1 /mnt

Re: Any way to force AHCI mode on ICH8?

2010-09-09 Thread Morgan Wesström
On 2010-09-09 13:04, Ivan Voras wrote: On 09/09/10 02:10, Morgan Wesström wrote: I run FreeBSD 8.1 on an old Asus P5B-VM motherboard with ICH8. Its AMI BIOS lacks an option to enable AHCI mode. Intel's datasheet for the ICH8 family specifies that this feature exists on the ICH8, and the option

Re: mount NTFS can't write to it

2010-09-09 Thread Matthias Apitz
El día Thursday, September 09, 2010 a las 08:46:12AM -0500, Ryan Coleman escribió: the default NTFS driver - a topic of much discussion here in the past two months - does *not* support writing. Check ports for fuse-ntfs. thanks for the pointer, but this (using it) gave me a PANIC only :-(

Re: how to tell ls output date in digital

2010-09-09 Thread Jerry McAllister
On Thu, Sep 09, 2010 at 01:11:39PM +, Pala, Santosh wrote: Hi Andrew, The ls command with -E switch will give the required output. Doesn't for me. Says -E is an illegal option. Running FreeBSd 8.1 stock ls. On the other hand, ls -lD %F %T %Z does nicely. jerry Regards,

Re: how to tell ls output date in digital

2010-09-09 Thread Chad Perrin
On Thu, Sep 09, 2010 at 10:29:08AM -0400, Jerry McAllister wrote: On Thu, Sep 09, 2010 at 01:11:39PM +, Pala, Santosh wrote: Hi Andrew, The ls command with -E switch will give the required output. Doesn't for me. Says -E is an illegal option. It works with ATT's version of ls,

how to recursively symlink every file in a dir

2010-09-09 Thread Aryeh Friedman
I want to make it so every file is a seperate symlink in dir2 if and only if it is a regular file (not a dir) in dir1... the reason is if the file is unchanged then use symlink but I can rm the symlink and replace it with a non-symlink: To show the problem I am attempting to solve: foo: (owned

Re: how to recursively symlink every file in a dir

2010-09-09 Thread Arthur Chance
On 09/09/10 18:24, Aryeh Friedman wrote: I want to make it so every file is a seperate symlink in dir2 if and only if it is a regular file (not a dir) in dir1... the reason is if the file is unchanged then use symlink but I can rm the symlink and replace it with a non-symlink: cpio -pdl

Re: how to recursively symlink every file in a dir

2010-09-09 Thread Aryeh Friedman
Should of mentioned that I was using C as an example we are in fact using Java and the archives in question are jar's On Thu, Sep 9, 2010 at 1:50 PM, Arthur Chance free...@qeng-ho.org wrote: On 09/09/10 18:24, Aryeh Friedman wrote: I want to make it so every file is a seperate symlink in dir2

Re: how to recursively symlink every file in a dir

2010-09-09 Thread Arthur Chance
On 09/09/10 18:50, Arthur Chance wrote: On 09/09/10 18:24, Aryeh Friedman wrote: I want to make it so every file is a seperate symlink in dir2 if and only if it is a regular file (not a dir) in dir1... the reason is if the file is unchanged then use symlink but I can rm the symlink and replace

Re: how to recursively symlink every file in a dir

2010-09-09 Thread Joshua Isom
On 9/9/2010 12:24 PM, Aryeh Friedman wrote: I want to make it so every file is a seperate symlink in dir2 if and only if it is a regular file (not a dir) in dir1... the reason is if the file is unchanged then use symlink but I can rm the symlink and replace it with a non-symlink: To show the

Re: how to recursively symlink every file in a dir

2010-09-09 Thread Aryeh Friedman
After playing around here is what I came up with (cpio -l never did the links right): #!/bin/tcsh foreach i ( `find ~aegis/fnre/baseline/src/ -type d | grep -v src/build | cut -f6- -d'/'` ) mkdir $i end foreach i ( `find ~aegis/fnre/baseline/src/ -type f -name '*.java' | grep -v

Re: installing FreeBSD in VMWare-player

2010-09-09 Thread Matthias Apitz
I could solve the boot problem of the USB key in the older laptop of my wife by inserting into /boot/loader.conf the line kern.cam.scsi_delay=1 (note: set kern.cam.boot_delay did not help) matthias -- Matthias Apitz «...una sola vez, que es cuanto basta si se trata de verdades

freebsd-update question

2010-09-09 Thread Murray S. Kucherawy
Hi, I'm reading http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/updating-upgrading-freebsdupdate.html in preparation for an update of a 6.2-RELEASE machine in a colocation faciilty. However, that page says 6.3 or later is needed to do it via the freebsd-update(8) mechanism. Are

Re: freebsd-update question

2010-09-09 Thread Matthew Seaman
On 09/09/2010 19:40:19, Murray S. Kucherawy wrote: I'm reading http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/updating-upgrading-freebsdupdate.html in preparation for an update of a 6.2-RELEASE machine in a colocation faciilty. However, that page says 6.3 or later is needed to do

Re: freebsd-update question

2010-09-09 Thread Mark
--- On Thu, 9/9/10, Murray S. Kucherawy m...@blackops.org wrote: From: Murray S. Kucherawy m...@blackops.org Subject: freebsd-update question To: questi...@freebsd.org Date: Thursday, September 9, 2010, 1:40 PM Hi, I'm reading

Re: how to recursively symlink every file in a dir

2010-09-09 Thread Giorgos Keramidas
On Thu, 9 Sep 2010 13:24:50 -0400, Aryeh Friedman aryeh.fried...@gmail.com wrote: I want to make it so every file is a seperate symlink in dir2 if and only if it is a regular file (not a dir) in dir1... the reason is if the file is unchanged then use symlink but I can rm the symlink and

Re: how to recursively symlink every file in a dir

2010-09-09 Thread Garance A Drosehn
At 1:24 PM -0400 9/9/10, Aryeh Friedman wrote: I want to make it so every file is a seperate symlink in dir2 if and only if it is a regular file (not a dir) in dir1... the reason is if the file is unchanged then use symlink but I can rm the symlink and replace it with a non-symlink: To show the

Re: how to recursively symlink every file in a dir

2010-09-09 Thread Randal L. Schwartz
Aryeh == Aryeh Friedman aryeh.fried...@gmail.com writes: Aryeh I want to make it so every file is a seperate symlink in dir2 if and Aryeh only if it is a regular file (not a dir) in dir1... the reason is if Aryeh the file is unchanged then use symlink but I can rm the symlink and Aryeh replace

Re: how to recursively symlink every file in a dir

2010-09-09 Thread Randal L. Schwartz
Randal == Randal L Schwartz mer...@stonehenge.com writes: Randal I think null-mounts would do what you're trying to do... as in, as long Randal as you're reading, you're reading from the old stuff, but if you ever Randal write something new, all the right bits get created in the new dir. Randal

Re: how to recursively symlink every file in a dir

2010-09-09 Thread Chad Perrin
On Thu, Sep 09, 2010 at 04:28:59PM -0400, Garance A Drosehn wrote: I believe early X11-distributions had a script called lndir would pretty much do exactly what you want here. And then there was a companion command called breakln which would remove the symlink and make a copy of the

this is probably a little touchy to ask...

2010-09-09 Thread Jules Gilbert
About Java. Using java with freebsd/mozilla or another browser. Some questions: Is GNU java sufficient? I need to be able to run a browser with Java. No alternative -- and no I don't want to run windoz. I'm trying to do an 8.1 install. Does this problem exist with Sun's x86 OS? Does anyone

Re: this is probably a little touchy to ask...

2010-09-09 Thread Adam Vande More
On Thu, Sep 9, 2010 at 4:02 PM, Jules Gilbert jules.sto...@gmail.comwrote: About Java. Using java with freebsd/mozilla or another browser. Some questions: Is GNU java sufficient? I need to be able to run a browser with Java. No alternative -- and no I don't want to run windoz. I'm

Re: this is probably a little touchy to ask...

2010-09-09 Thread Randal L. Schwartz
Jules == Jules Gilbert jules.sto...@gmail.com writes: Jules Now an opinion. If Oracle isn't going to help us, we should look Jules around for an alternative, even inventing something else, something Jules that isn't Sun/Oracle/Java. You mean something that looks like Java but isn't Java?

Re: how to recursively symlink every file in a dir

2010-09-09 Thread Garance A Drosehn
At 2:54 PM -0600 9/9/10, Chad Perrin wrote: On Thu, Sep 09, 2010 at 04:28:59PM -0400, Garance A Drosehn wrote: I believe early X11-distributions had a script called lndir would pretty much do exactly what you want here. And then there was a companion command called breakln which would

Re: this is probably a little touchy to ask...

2010-09-09 Thread Jason C. Wells
On 09/09/10 14:02, Jules Gilbert wrote: About Java. Using java with freebsd/mozilla or another browser. Some questions: Is GNU java sufficient? I need to be able to run a browser with Java. No alternative -- and no I don't want to run windoz. I'm trying to do an 8.1 install. Does this

Re: how to recursively symlink every file in a dir

2010-09-09 Thread Chad Perrin
On Thu, Sep 09, 2010 at 08:23:09PM -0400, Garance A Drosehn wrote: It looks like my 'lndir' script started out as a copy of a script named 'lndir.sh' that the XConsortium had in Oct 1988. [snip] Given that the port is written in C and much more recent, I suspect it is the right way to

Questions about setting bridge

2010-09-09 Thread dave jones
Hello, I want to setup a bridge in a ring topology since a break at any point along the ring would still leave all stations connected. My machine has two nics. In /etc/rc.conf, I have: ifconfig_em0=inet 192.168.1.0 netmask 255.255.255.0 cloned_interfaces=bridge0 ifconfig_em0=up ifconfig_em1=up

wine doesnot work after upgrading to 8.1?

2010-09-09 Thread zaxis
The wine works great when using freebsd 8.0. Yesterday i upgrading FB 8.0 to 8.1, the wine cannot display window without any message even if reinstalling wine under FB 8.1 . uname -a FreeBSD mybsd.zsoft.com 8.1-RELEASE FreeBSD 8.1-RELEASE #1: Wed Sep 8 09:07:54 CST 2010