Re: accents in file names

2009-02-16 Thread Mihai Donțu
-32 encoding (although historical encodings like Big5, Shift- JIS, and now GB18030 for China are still rather popular, and those are multibyte encodings), and things like gcc's implementation of widechars or Python are standardizing on UTF-32. -- Mihai Donțu

Re: FreeBSD's UFS vs Ext4

2010-02-08 Thread Mihai Donțu
that deletes files (kmail's email-expiration thing comes to mind). I also work on a project that creates large log files an deletes them (periodically). When all these programs meet, I go for a coffee. :) -- Mihai Donțu ___ freebsd-questions@freebsd.org

Re: Processor question

2012-02-14 Thread Mihai Donțu
-2600 processor or should I use the i386? Definitely amd64. I hope to give FreeBSD a try later this month. -- Mihai Donțu ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe

Re: AES NI

2012-07-21 Thread Mihai Donțu
://www.phoronix.com/scan.php?page=articleitem=ubuntu_aesni_intel -- Mihai Donțu ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to freebsd-questions-unsubscr

Re: google browser?

2011-02-16 Thread Mihai Donțu
developer. I use Google Chrome (or Chromium - depends on how bleeding edge I want to be) on Linux. I'm amazed by the speed with which the project progresses and the incredible feel of the browser itself. -- Mihai Donțu ___ freebsd-questions@freebsd.org

Re: google browser?

2011-02-16 Thread Mihai Donțu
(e-mails from the past always find me unprepared) On Wednesday 23 July 2008 11:52:58 Devin Teske wrote: On Feb 16, 2011, at 12:39 AM, Mihai Donțu wrote: On Wednesday 16 February 2011 09:09:44 Gary Kline wrote: Anybody know how to use this Chrome? I don't see any places to plug in players

amd64_set_gsbase()

2007-10-08 Thread Mihai Donțu
%gs:0x10,%r11 (gdb) p $gs $1 = 0 I've been reading on the net something about the kernel not preserving the GS across syscalls (or stmh). Is this true? and if so, is there a known workaround? I'm on a FreeBSD 6.2-STABLE-200706 (AMD64) machine. Thanks, -- Mihai Donțu

Re: amd64_set_gsbase()

2007-10-08 Thread Mihai Donțu
? :) However, it only changes the base address via MSR, i.e., %gs itself has no meaning. Maybe, but the selector loaded in %gs *does* have meaning. Anyway, the thing is I _have_ to make this work. I'll keep you posted ;) -- Mihai Donțu ___ freebsd

Re: amd64_set_gsbase()

2007-10-08 Thread Mihai Donțu
). I have *one* more question: maybe I don't fully understand the hole BASE thing, but since the FreeBSD kernel does not preserve %gs and %fs, what is the purpose of amd64_set_XXbase()? Thanks, -- Mihai Donțu ___ freebsd-questions@freebsd.org mailing

Re: amd64_set_gsbase()

2007-10-10 Thread Mihai Donțu
On Wednesday 10 October 2007, Tijl Coosemans wrote: On Tuesday 09 October 2007 02:48:51 Mihai Donțu wrote: I have *one* more question: maybe I don't fully understand the hole BASE thing, but since the FreeBSD kernel does not preserve %gs and %fs, what is the purpose of amd64_set_XXbase

Re: amd64_set_gsbase()

2007-10-22 Thread Mihai Donțu
()' + 'libthr.so' = love. 'libpthread.so' is a no-no :) I'm not out of the woods yet, I still have some crashes, but I suspect that's just bad programming on my side. Thanks, -- Mihai Donțu ___ freebsd-questions@freebsd.org mailing list http

Re: clocks and dualboot

2007-11-09 Thread Mihai Donțu
the date correct on the vista side? You must configure FreeBSD to keep the hardware clock to Local Time. However, I lack the knowledge on how to do that. I'm sorry. -- Mihai Donțu ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org

Re: Using ZFS on FreeBSD 7.0

2008-02-27 Thread Mihai Donțu
will actually gain gzip compression support. Opensolaris is up to v10. -- Dan Nelson [EMAIL PROTECTED] [offtopic] If you use the Hotmail interface, please don't, anymore :) It does horrible things to your e-mails. -- Mihai Donțu ___ freebsd-questions

FreeBSD 5.4 chroot

2008-08-25 Thread Mihai Donțu
doing wrong? Thank you, -- Mihai Donțu ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: FreeBSD 5.4 chroot

2008-08-26 Thread Mihai Donțu
On Monday 25 August 2008, Kris Kennaway wrote: Mihai Donțu wrote: Hi, I've just installed a FreeBSD 6.0-RELEASE and I need a FreeBSD 5.4-RELEASE chroot to build something in it (hw shortage). All nice and dandy, until I hit a /dev problem: # svn up svn: PROPFIND request failed

Re: uptime 2 years!

2008-10-08 Thread Mihai Donțu
. :) -- Mihai Donțu unices.bitdefender.com ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: Problems with FreeBSD assembly

2009-11-11 Thread Mihai Donțu
(stdin, stdout and stderr). I think you have to open them yourself. I will know for sure when my nasm port finishes installing. :) -- Mihai Donțu ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions

Re: File System Performance on FreeBSD

2010-08-08 Thread Mihai Donțu
been declared stable, the performance of ext4 has dropped due to various reliability fixes, culminating with the making of write barriers a default. More info here: http://lwn.net/Articles/283161/ -- Mihai Donțu ___ freebsd-questions@freebsd.org mailing

Re: bash Shell Scripting Question

2012-09-19 Thread Mihai Donțu
# do stuff done or: find . -maxdepth 1 -type d | while read dirname; do cd $dirname # do stuff done or even: find . -maxdepth 1 -type d ! -name .* | while read dirname; do cd $dirname # do stuff done -- Mihai Donțu