Search results

  1. T

    Confused about https://

    In the default apache22 configuration, if you include httpd-ssl.conf it adds <VirtualHost _default_:443> DocumentRoot "/usr/local/www/apache22/data" ... which is the "It works" page... If you want the same vhost on both port 80 (http) and 443 (https) you need to copy it and add a couple of...
  2. T

    hint for a linux user

    ...
  3. T

    WIndows 7 Client Machine not able to join

    This is the error you get, if you don't apply the registry hacks on each windows 7 machine properly... Did you do everything on this page: wiki.samba.org/index.php/Windows7 EDIT: It is also possible if you didn't add the machine to the ldap database. Samba+ldap can be set up to do this...
  4. T

    Short tut of starting my own web server

    I guess the apache page in the handbook could also help: http://www.freebsd.org/doc/handbook/network-apache.html Good luck!
  5. T

    Short tut of starting my own web server

    On your computer itself all you really need is to install apache2 and start it. Going to http://localhost should then show an example page. If you need access from the outside you need to know your ip (since you don't want to register dns). If you have a dynamic ip you can register for free at...
  6. T

    bsd future

    Using 32 bit versus 64 bit mostly comes down to the amount of memory addressable. And for that you'll never need 128 bit. IPv6 is 128 bit and this allows for every molecule in the galaxy to have a unique address! Even today's commodity 64bit cpus do not use more that 48 bits (or so) for the...
  7. T

    upgraded to 9-current, wanted 8-release

    I've had really bad experiences with mergemaster -Ui. The U option somehow decided that I hadn't changed /etc/passwd and /etc/passwd.master so I lost all my users. Now I use mergemaster -iF. From the manual: -i Automatically install any files that do not exist in the des- tination...
  8. T

    Any idea about "security/sudo" ?

    Well, I answered you in the other post! http://forums.freebsd.org/showthread.php?t=11510 * Type visudo * Add a line: www localhost = NOPASSWD: /sbin/reboot * execute the command as sudo /sbin/reboot which means you have to type the following in your php: system("sudo /sbin/reboot"); EDIT...
  9. T

    Limitation of system() in php.. How can become super user!?

    you can type 'visudo' as super user and it will open the configuration file in $EDITOR Adding the line ray rushmore = NOPASSWD: /bin/kill, /bin/ls, /usr/bin/lprm would allow the user ray to run /bin/kill, /bin/ls, and /usr/bin/lprm as root on the machine rushmore without authenticating...
  10. T

    How to install and configure a FreeBSD 8 Desktop with Xorg and KDE?

    Using /etc/ttys is no longer the recommended way to start kdm. See: http://wiki.freebsd.org/KDE4/Install Also, it is possible to do the policykit configuration from systemsettings, see http://forums.freebsd.org/showthread.php?t=9944 Actually, when doing this, setting vfs.usermount is not...
  11. T

    [Help 7.2] Firewall to block all non-German IP's

    The "TABLES" section in the pf.conf(5) man page explains how files can be used to list ip addresses. Here's my own pf.conf modified for your needs: tcp_services = "{ ssh }" table <german> persist file "/etc/german" set block-policy drop set skip on lo scrub in block log all pass proto icmp...
  12. T

    Finding which version of FreeBSD a port is compiled on

    "man 1 file" gives a pretty good explanation. but in short: ELF 32-bit LSB executable, it's a 32 bit ELF binary Intel 80386, it's compiled for i386 version 1 (FreeBSD), elf version 1 on freebsd dynamically linked (uses shared libs), the file is dynamically linked! for FreeBSD 8.0...
  13. T

    running kde apps from xfce

    you have to add /usr/local/kde4/bin to you path! bash: export PATH=/usr/local/bin/kde4:$PATH csh: setenv PATH /usr/local/bin/kde4:$PATH
  14. T

    Porting first timer - questions

    On another note: It seems like some other guy has a port already (just saw it in the mail list) http://mail.kde.org/pipermail/kde-freebsd/2010-January/007462.html
  15. T

    Porting first timer - questions

    Looking in the configure script: ... so it's not really a configure script. So your solution should be to use cmake and not this silly configure script. For an exampel se my own port databases/akonadi-googledata. Basically all that is needed is: USE_CMAKE= yes USE_KDE4= put right stuff here...
  16. T

    Porting first timer - questions

    Well, if the first line in the script is: #!/usr/local/bin/bash and you run it with ./configure it will be executed as a bash script...
  17. T

    Porting first timer - questions

    1) This is what forefox does. See /usr/ports/www/firefox .../firefox3 .../firefox35 2) see BUILD_DEPENDS in porters handbook: http://www.freebsd.org/doc/en/books/porters-handbook/makefile-depend.html#AEN2089 For how to use bash for configure, I'm not sure I ynderstand this question. How...
  18. T

    How to automount USB file system with Hal in the K4 Desktop Environment

    I think it comes with kdebase. I cannot seem to fint an executable, but it works from krunner... EDIT: /usr/local/kde4/lib/kde4/libexec/kdesu was installed by package kdebase-runtime-4.3.4
  19. T

    How to automount USB file system with Hal in the K4 Desktop Environment

    I think kdesu is the preferred way of opening gui apps in kde with super user priviledges. This allows you to open from krunner (alt+f2) meaning you do not have to open a termial -- also you can skip installation and configuration of sudo. (BTW, my opinion is that a sudo guide does not have to...
  20. T

    Grub

    This works for me: title FreeBSD root (hd0,1) chainloader +1 If it doesn't for you, maybe you are pointing to the wrong partition or your ubuntu install overwrote your fbsd install..
Back
Top