Search results

  1. Z

    Random disk dropping out of ZFS pools

    12 is too much for 650W.
  2. Z

    Why Never Follow Schedule?

    I using FreeBSD since version 5, and the releases have always been at least several weeks after the estimated date
  3. Z

    Flame bait: Why BSD is dying, or How I learned to stop worrying and love Linux

    From another point of view GPL3 is a hook - take a look on MySQL, it happily grabbed from community by Oracle and commercialized.
  4. Z

    Realtek wireless RTL8191SU installation.

    Well, here is what I get: ugen2.2: <product 0x8172 vendor 0x0bda> at usbus2, cfg=0 md=HOST spd=HIGH (480Mbps) pwr=ON Ok, it's a 8172 RTL8191SU 802.11n WLAN Adapter (Source) Is there any driver? OpenBSD seems to support it my blog.
  5. Z

    Realtek wireless RTL8191SU installation.

    Hi, I recently bought a tiny desktop computer (Asrock 152d) and I'm actually trying to install FreeBSD on it. Firstly, it's: 1T2R 802.11b/g/n (from here but honestly I don't know what that means. Chipset? Constructor? Technology?). Then, I found, on some forums, people saying that this card...
  6. Z

    "Shared object has no run-time symbol table" bug ?

    Hello, I'm trying to code a tiny elf under freebsd, that means I'm writing its header in full assembler. But I've a little problem, this message, "Shared object has no run-time symbol table" appears when I'm trying to execute it. The piece of code in the freebsd src is...
  7. Z

    Flash player doesn't work with native Opera

    It doesn't... That's what I'm trying to say..
  8. Z

    Flash player doesn't work with native Opera

    Helix plugin appears from the plugin list in opera but that's all. [user@freebsd ~]\$ ls -ahl /usr/local/lib/browser_plugins total 286 drwxr-xr-x 2 root wheel 512B Oct 3 19:35 . drwxr-xr-x 94 root wheel 51K Oct 3 19:25 .. -rwxr-xr-x 1 root wheel 115K Oct 3...
  9. Z

    Flash player doesn't work with native Opera

    Hi, I tried to get flash player work with the native build of opera but with no result. Though flash player works perfectly with firefox. I followed those steps: - Installation throught port (www/opera) - Downloaded the linux build of Opera - Copied the lib/opera/operapluginwrapper to...
  10. Z

    What minimum informations must contain an elf executable to be loaded?

    Hmm.. weird, I though compiled the freebsd kernel with the System V compatibility. Otherwise, now it doesn't segfault but it says: /libexec/ld-elf.so.1: /usr/home/user/dev/sym/main: Shared object has no run-time symbol table I guess it requires at least a section header table. I will see...
  11. Z

    What minimum informations must contain an elf executable to be loaded?

    Hi, I'm trying to write a tiny elf under *BSD by writing his own elf header with GNU Assembler. Concretely, I write his elf header, 3 program header (for interpreter,code,dynamic) and no section header. The code works under linux (with /lib/ld-linux.so) but it segfaults under freebsd. So I'm...
  12. Z

    FreeBSD syscalls

    getrlimit syscall problem Hello, I'm back with another question about getrlimit syscall. I can't get it works. Here is my code: .intel_syntax .bss .comm rlimit_t,16,8 [...] push rlimit_t push 0x02 mov eax, 0xc2 push eax int 0x80 [...] Looking at rlimit_t with gdb: (gdb) disass _start...
  13. Z

    FreeBSD syscalls

    Right, thanks you.
  14. Z

    FreeBSD syscalls

    Hi, I can't get an exit code like I want with the syscall exit. __asm__ __volatile__ ( "pushl $0x45;" "movl $0x01,%eax;" "int $0x80;" ) It always return 0. I'm running under FreeBSD i386 of course.
  15. Z

    FreeBSD kernel module(s) doesn't compile.

    hmm ok, the problem was the make.conf, I commented the CFLAGS and It works.
  16. Z

    FreeBSD kernel module(s) doesn't compile.

    Here is the exact warning/error. [...] cc -pipe -ffast-math -fomit-frame-pointer -O3 -msse3 -march=athlon-mp -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/BSDKRNL/opt_global.h -I. -I@ -I@/contrib/altq...
  17. Z

    FreeBSD kernel module(s) doesn't compile.

    Here is my make.conf: CPUTYPE?=k8 CFLAGS=-pipe -ffast-math -fomit-frame-pointer -O3 -msse3 NO_SENDMAIL=TRUE MODULES_OVERRIDE=linux linprocfs ntfs sem ralfw and my custom kernel configuration: http://pastebin.com/yVwYBaxa And I will post the error message later.
  18. Z

    FreeBSD kernel module(s) doesn't compile.

    Hi, As usual, I update my kernel through csup (RELENG_8) and when I tried to compile it fails at module compilation with a warning like this: "'xxxxx' may be used uninitialized in this function.". I tried to fix it with adding "= NULL;" at the uninitialized variables, but there are too many...
  19. Z

    FreeBSD can't run a SVR4 elf executable ?

    [Solved] FreeBSD can't run a SVR4 elf executable ? Hmm ok, the System V 4 ABI support is'nt compiled by default, we need to add: options COMPAT_SVR4 in the kernel configuration file. It should be better to add this option by default as well we can easily code a portable executable.
  20. Z

    FreeBSD can't run a SVR4 elf executable ?

    Hi, I'm just asking why freebsd can't run a SVR4 elf executable ? I tried to write "my own" header (with some tricks in assembler), but when I exec my application, it return an error: ELF binary type "0" not known. So I must run brandelf before execute it. Is'nt weird ? Normally, the...
Back
Top