Re: 'rm' Can not delete files

2012-02-11 Thread perryh
Jerry McAllister jerr...@msu.edu wrote: On Fri, Feb 10, 2012 at 10:34:20AM -0500, Henry Olyer wrote: I use bash 4. OK. So?? If you had read the thread before posting, you would have known that someone asked which shell Henry was using (and he answered).

Re: 'rm' Can not delete files

2012-02-11 Thread perryh
Matthew Seaman freebsd-questi...@infracaninophile.co.uk wrote: ls -1 | xargs rm but be aware that that wont work for filenames with spaces. True. Can't do that using ls to generate the list of filenames as there is no option to generate a null-separated list amongst ls's multitudinous

Re: 'rm' Can not delete files

2012-02-11 Thread Matthew Seaman
On 11/02/2012 15:33, per...@pluto.rain.com wrote: Matthew Seaman freebsd-questi...@infracaninophile.co.uk wrote: ls -1 | xargs rm but be aware that that wont work for filenames with spaces. True. Can't do that using ls to generate the list of filenames as there is no option to generate a

Re: Wireless Problem

2012-02-11 Thread Jerry
On Fri, 10 Feb 2012 22:58:22 +0100 zaklinaczcipek128 articulated: Hi, I'm struggling with my wireless cards couple days and I can't figure out what's wrong. Following I'm under FreeBSD 9.0 RELEASE and ever since I've used it I can't connect to any wireless network. I've got Atheros NIC and

Re: 'rm' Can not delete files

2012-02-11 Thread RW
On Sat, 11 Feb 2012 12:05:14 +1100 andrew clarke wrote: On Fri 2012-02-10 16:12:06 UTC+, Matthew Seaman (m.sea...@infracaninophile.co.uk) wrote: In addition, I don't believe it solves the OP's initial problem of the argument list being too long! You'd probably need to use the

Re: 'rm' Can not delete files

2012-02-11 Thread Daniel Staal
--As of February 10, 2012 4:24:58 PM +, Matthew Seaman is alleged to have said: On 10/02/2012 16:04, Matthew Story wrote: find . -type f -depth 1 -print0 | xargs -n99 -0 -s8192 -c5 rm -- or some such, depending on your needs, I believe in most situations this particular invocation will

replacing a kernel module located in installation Dvd

2012-02-11 Thread Omer Faruk SEN
Hi, I am looking for a way to replace a kernel module on installation DVD and rebuild it so i can use it. I have made one about 2-3 years ago based on a script that i have found on internet but now i couldn't able to find it. Can someone direct me to the right place or suggest a way to do so

Question about kernel panic

2012-02-11 Thread BBLister
Greetings, A server of mine kernel panicked and in the serial console it prints non stop these messages which are repeated again and again.. KDB: stack backtrace: #0 0x802fec5e at kdb_backtrace+0x5e #1 0x80287e57 at hardclock+0x117 #2 0x804610a2 at

Can't build en-freebsd-doc-20120205

2012-02-11 Thread Mike Clarke
curlew:/home/mike% uname -a FreeBSD curlew.lan 8.1-RELEASE-p5 FreeBSD 8.1-RELEASE-p5 #0: Tue Sep 27 16:18:26 UTC 2011 r...@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 curlew:/home/mike% cd /usr/ports/misc/freebsd-doc-en curlew:/usr/ports/misc/freebsd-doc-en% make

kernel double fault

2012-02-11 Thread Коньков Евгений
Здравствуйте, . Dump header from device /dev/ad4s1b Architecture: i386 Architecture Version: 2 Dump Length: 492789760B (469 MB) Blocksize: 512 Dumptime: Sat Feb 11 14:27:35 2012 Hostname: Magic: FreeBSD Kernel Dump Version String: FreeBSD 9.0-CURRENT #4: Fri Jun 10 01:30:12 UTC

Can clang compile RELENG_9?

2012-02-11 Thread Dennis Glatting
I get errors when trying to compile RELENG_9 with clang. Is clag suppose to work when it comes to compiling the OS or am I missing something: clang -O2 -pipe -DUSE_GZIP=1 -I/usr/src/usr.sbin/sysinstall/../../gnu/lib/libodialog -I. -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall

Re: Can clang compile RELENG_9?

2012-02-11 Thread Dennis Glatting
Sorry for the noise. I missed something in the wiki. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

Re: Can clang compile RELENG_9?

2012-02-11 Thread Michael Powell
Dennis Glatting wrote: I get errors when trying to compile RELENG_9 with clang. Is clag suppose to work when it comes to compiling the OS or am I missing something: [snip] I can't speak to RELENG_9, but I have successfully rebuilt the RELEASE with CLANG (make/install world kernel). My

Re: MFC 7840W under CUPS

2012-02-11 Thread Polytropon
On Sun, 05 Feb 2012 21:21:59 +0100, Ouyang Xueyu wrote: Hello, I have Freebsd 8.2 and CUPS installed and try to print on my Brother MFC 7840W printer. The printer is accessible by a static IP address, is configured in CUPS but everytime I only get blank pages when I'm trying to print.

update, [solved]: journal timestamp

2012-02-11 Thread Darrel
An amd64 running fbsd9-RC1 was shutdown overnight from the 'shutdown -p now' command. It reported an unclean shutdown and I ran 'fsck -y'. Still it will not boot and the message is Journal timestamp does not match fs mount time. This is occurring for both /var and /usr. Sporadic

Re: Can't build en-freebsd-doc-20120205

2012-02-11 Thread Mike Clarke
On Saturday 11 February 2012, Mark wrote: I had this a few days ago. A search returned keep restarting make install and it will build and install. You will notice it will stop at different place each time, just restart the buld. Thanks for the tip. It completed on the second pass. --