Search results

  1. C

    Many problems building world

    Sorry, I forgot to write the method that I used to build the world: I use these commands: make clean cleanworld cleandir && rm -rf /usr/obj && make buildworld
  2. C

    Many problems building world

    Hello everybody, I'm running 9.1-RELEASE and I'm trying to compile world but I can't because I have many errors. I got the source code from subversion, my last checkout was today, I tested with branches: STABLE, RELEASE 9.1, RELEASE 9.0 and CURRENT. I can't compile with any of them. To discard...
  3. C

    ASLR on FreeBSD

    Thanks capi_x for your help. Very good contribution your post for this thread.
  4. C

    Error with mono+nginx

    I found the solution of problem: My test web page not contain C#/VB code, them compiler return an error.
  5. C

    Error with mono+nginx

    Hello everybody, I'm trying to deploy a web server with mono + nginx following this howto: http://forums.freebsd.org/showthread.php?t=25743 Finally I could deploy it, but web app returns this error: System.Web.Compilation.CompilationException CS1576: The line number specified for #line...
  6. C

    Compile world without inetd binaries: telnetd, tftpd...

    Yes, a good attacker can cause many problems, therefore, all protections are little.
  7. C

    Compile world without inetd binaries: telnetd, tftpd...

    For performance and security. Security thus no shared library can't be loaded and not hooking attack can be executed. Although, of course, I can be wrong.
  8. C

    Compile world without inetd binaries: telnetd, tftpd...

    If I remove my make.conf, or delete related of static compilation vars, system compile without problems, but I want my system with no shared libraries.
  9. C

    Shared configuration files: login.conf, auth.conf....

    Many thanks for your responses and ideas! I will try it.
  10. C

    Compile world without inetd binaries: telnetd, tftpd...

    My make.conf is this: COPTFLAGS+= -O3 CPUTYPE?=core2 CFLAGS+= -O3 CXXFLAGS+= -O3 PERL_VERSION=5.12.4 # Add some options WITH_OPTIMIZED_CFLAGS=YES BUILD_OPTIMIZED=YES BUILD_STATIC=YES WITH_CPUFLAGS=YES STATIC=YES # Remove some options WITHOUT_DEBUG=YES WITHOUT_X11=YES NO_SHARED=YES #...
  11. C

    Compile world without inetd binaries: telnetd, tftpd...

    It return this error: tftpd.o: In function `main': /usr/src/libexec/tftpd/tftpd.c:(.text+0x474): undefined reference to `request_init' /usr/src/libexec/tftpd/tftpd.c:(.text+0x48a): undefined reference to `request_set' /usr/src/libexec/tftpd/tftpd.c:(.text+0x494): undefined reference to...
  12. C

    Compile world without inetd binaries: telnetd, tftpd...

    Sorry for the word. I'm trying to compile my system with: make buildworld.
  13. C

    Shared configuration files: login.conf, auth.conf....

    Sorry, I put new thread in response to my own thread and I don't know how to delete it.
  14. C

    Compile world without inetd binaries: telnetd, tftpd...

    Hello, I'm trying to compile my world statically, but I have an error compiling tftpd. I don't need programs like tftpd, telnetd or similar for my systems. The question: There's any variable for src.conf or similar to disable compilation of these programs? Thanks!
  15. C

    Shared configuration files: login.conf, auth.conf....

    Hello, I'm trying to deploy a web server architecture and I would like to share some system configuration files (for easily maintenance), like: login.conf, auth.conf, sysctl.conf, ttys. My machine has 2 harddisks. One with base system, and other with above files. In my /etc I link the...
  16. C

    ASLR on FreeBSD

    Hello everybody, I'm new user in FreeBSD. I come from Linux world and I have a question that, I hope, you can resolve me. On Linux exists the kernel'S ASLR protection, but, there is something similar on FreeBSD? Thanks!
Back
Top