Re: samba question

2005-10-24 Thread Igor Robul
spen wrote: smbd Abort trap nmbd The story is that the first time I installed samba I enabled it in my /etc/rc.conf writting echo smbd /usr/local/sbin/smbd -D echo nmbd /usr/local/sbin/nmbd -D This is incorrect way to start daemons.

Re: samba question

2005-10-24 Thread Igor Robul
Owen Jeremiah wrote: If I remember correctly, you have to start inetd to run smbd and nmbd. Check FreeBSD handbook for further details about configuring samba. You _dont need_ inetd for Samba, moreover, inetd will degrade Samba performance, and AFAIK is not recommeded by Samba team .

Re: tun/tap and qemu

2005-10-24 Thread Igor Robul
dick hoogendijk wrote: Qemu uses user-net network stack if NO tun/tap network init script is found. The example on their website is about linux. Can someone shine some light on this matter? If tun/tap is difficult or not adviced, how can I make my 10.0.0.x machines show themselves on my mail

Re: pppd

2005-10-25 Thread Igor Robul
Alexander Pyhalov wrote: I use the last port collection, but there is only 2.3.11 version of pppd there. Are there any plans for updating it? ___ AFAIK pppd is in base system, not in ports. ___

Re: telnetting/netcatting into a DNS server?

2005-10-25 Thread Igor Robul
Mohan Singh wrote: Whenever I need to test a mail/ssh/web server, I usually just telnet or nc into the appropriate port, i.e.: $ echo GET / |nc -v yahoo.com 80 $ nc -v localhost 22 Connection to localhost 22 port [tcp/ssh] succeeded! SSH-1.99-OpenSSH_4.2 How would I connect to a

Re: math/grace port: libXcursor.so.1.0 not found ??

2005-10-26 Thread Igor Robul
Hi, Rob wrote: Yes, indeed. Thank you. You said: Sounds like the application is broken for requesting it, since as you found there is no such library on FreeBSD. Here the application refers to what? Grace? Or dlopen()? If you mean grace, then I have a problem: the grace mailinglist

Re: Samba3 and win9x

2005-10-26 Thread Igor Robul
Aguiar Magalhaes wrote: List, I´ve installed Samba3 on a FreeBSD 5.4 server. The shared directories are see in winXP machines and they´ve worked correctly using the local users (created by adduser script with nologin) In the same network, when I use the same users in win9x machines, I´ve

Re: math/grace port: libXcursor.so.1.0 not found ??

2005-10-26 Thread Igor Robul
Peter Jeremy wrote: It doesn't make sense for an attempt to dlopen libm to complain about an X library. fresh port works for me. By works I mean I can launch it and use menu :-) ___ freebsd-questions@freebsd.org mailing list

Re: How to terminate TCP connection?

2005-10-26 Thread Igor Robul
Artem Kuchin wrote: So, the question, Is there a way to kill off stuck tcp connection (or actually ANY connection which are shown by netstat) or maybe there is a way to force jail termination without waiting until all connection are gone. tcpdrop(8)

Re: math/grace port: libXcursor.so.1.0 not found ??

2005-10-26 Thread Igor Robul
Rob wrote: Indeed, grace will start normally, but it will not parse the USE... line from the gracerc.user, because the dlopen() call has the error: Shared object libXcursor.so.1.0 not found, required by xmgrace Do you see this too? yes.

Re: math/grace port: libXcursor.so.1.0 not found ??

2005-10-26 Thread Igor Robul
Rob wrote: The reason why the grace developper blames FreeBSD is because of this: The executable 'xmgrace' is linked to /usr/X11R6/lib/libX11.so.6 and 'strings /usr/X11R6/lib/libX11.so.6 | grep libXcursor' gives: libXcursor.so.1.0.2 So according to the grace developper, the reason for my

Re: math/grace port: libXcursor.so.1.0 not found ??

2005-10-26 Thread Igor Robul
Rob wrote: The executable 'xmgrace' is linked to /usr/X11R6/lib/libX11.so.6 and 'strings /usr/X11R6/lib/libX11.so.6 | grep libXcursor' gives: libXcursor.so.1.0.2 I have made symbolic link libXcursor.so.1 - libXcursor.so.1.0.2 in /usr/X11R6/lib and now xmgrace starts withour errors. So

Re: math/grace port: libXcursor.so.1.0 not found ??

2005-10-26 Thread Igor Robul
Rob wrote: --- Igor Do you mean the other-way-around link: libXcursor.so.1.0.2 - libXcursor.so.1 ?? of course. I mean ln -sf libXcursor.so.1 libXcursor.so.1.0.2 ___ freebsd-questions@freebsd.org mailing list

Re: math/grace port: libXcursor.so.1.0 not found ??

2005-10-26 Thread Igor Robul
Rob wrote: Indeed, but with this link, I get: $ xmgrace Shared object nss_dns.so.1 not found, required by xmgrace DL module load failed: USE pow TYPE F_OF_DD FROM /usr/lib/libm.so Error at line 1 All works fine for me. I think this is your local problem. Check /etc/nsswitch.conf Mine

Re: Disc space

2005-10-26 Thread Igor Robul
zielik wrote: I have too small /tmp partition, and i would like to make it bigger without reinstalling system, how to do it ? 1) you can buy another disk 2) you can buy more memory and use memory backed md (4) /tmp 3) you can make symbolic link from /tmp to some other place 4) you can

Re: math/grace port: libXcursor.so.1.0 not found ??

2005-10-26 Thread Igor Robul
Rob wrote: Aargh, seems I'm back where I was a few hours ago... ...me having a problem that nobody understands. Check /etc/nsswitch.conf Mine is bellow: group: compat group_compat: nis hosts: files dns networks: files passwd: compat passwd_compat: nis shells: files I have

Re: math/grace port: libXcursor.so.1.0 not found ?? [SOLVED]

2005-10-27 Thread Igor Robul
Rob wrote: --- XtAppContext app_con; Display *disp = NULL; char *display_name = NULL; XtSetLanguageProc(NULL, NULL, NULL); XtToolkitInitialize(); app_con = XtCreateApplicationContext(); disp = XOpenDisplay(display_name);

Re: math/grace port: libXcursor.so.1.0 not found ?? [SOLVED]

2005-10-27 Thread Igor Robul
Igor Robul wrote: dlopen() _does not_ reset dlerror() state on sucess, it just returns non NULL. So you must not check dlerror() for error condition, you need check return result of dlopen(), and if it is NULL, then you need use dlerror(). So, code in grace: dlopen(library name, MODE

Re: math/grace port: libXcursor.so.1.0 not found ?? [SOLVED]

2005-10-27 Thread Igor Robul
Sorry, I have reread manual page for dlerror() and found that it need clear error state after call, but dlerror() in src/libc/gen/dlfcn.c does not do this: #pragma weak dlerror const char * dlerror(void) { return sorry; } So error is in FreeBSD libc, if I understand this correctly. I'll do

Re: math/grace port: libXcursor.so.1.0 not found ?? [SOLVED]

2005-10-27 Thread Igor Robul
Igor Robul wrote: Sorry, I have reread manual page for dlerror() and found that it need clear error state after call, but dlerror() in src/libc/gen/dlfcn.c does not do this: #pragma weak dlerror const char * dlerror(void) { return sorry; } So error is in FreeBSD libc, if I understand

Re: packet forwarding

2005-10-27 Thread Igor Robul
Yance Kowara wrote: Hi all, What's the difference between gateway_enable=YES in /etc/rc.conf and net.inet.ip.forwarding=1 in /etc/sysctl.conf Regards, There are no differences, you can check this by greping gateway_enable in /etc/rc.d/*.

Re: dial-up with modem

2005-10-30 Thread Igor Robul
Mohsen Pahlevanzadeh wrote: Dears, I wanna install package.But it is in the web,I need to dial up modem.So,Am i do compile kernel for supppurting ppp ? No, if I remember correctly PPP is in generic kernel (both tun for user-level, and ppp for pppd). If I'm wrong, then you can load module.

Re: Dial-up with RS-232 cable modem

2005-10-30 Thread Igor Robul
Mohsen Pahlevanzadeh wrote: Dears,If you can connect to the Internet via ppp,Please mail me /etc/ppp directory. Yours,Mohsen You can read about PPP configuration: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ppp-and-slip.html My /etc/ppp is meaningless from you becuase we use

dlopen()/dlsym()/dlerror() was: Re: libXcursor.so.1.0.2 reference in libX11.so.6 ??

2005-10-31 Thread Igor Robul
Rob wrote: So you can see, from where we got 1.0.2 Yes, indeed, very true. It's Xorg that has this library version hardcoded. Meanwhile, I also found out following: On FreeBSD, the dl* functions do not reset a previous error indicator. In this specific case, in xc/lib/X11/CrGlCur.c

Re: modem

2005-10-31 Thread Igor Robul
Chrystian Lopez wrote: how can i see where my modem is coneccted how can accees to i t? What do mean by connected? If you wish check that your serial modem works, then check manual page for cu. For example, you can talk to modem on COM1: cu -l /dev/cuaa0 # (/dev/cuad0 on

Re: Can not make alias for rl0

2005-10-31 Thread Igor Robul
anthony endra wrote: Cheers, I got a problem when making alias for rl0. localhost# ifconfig rl0 inet 192.168.0.131 netmask 255.255.255.0 alias ifconfig: ioctl (SIOCAIFADDR): File exists localhost# if primary IP on rl0 is in 192.168.0/24 network then you need specify netmask

Re: 5.4-REL panic before installation

2005-11-01 Thread Igor Robul
[EMAIL PROTECTED] wrote: What options do I have? Test another newer FreeBSD version? Is somehow documented how to create own bootable floppies or how to debug a kernel in that moment while booting from floppy? Or what can I disable in that moment? Try booting with ACPI disabled, because I

Re: To little swapspace...

2005-11-01 Thread Igor Robul
Mikael Backman wrote: Hi! Is there a way to reduce yhe /usr slice and use that space as expanded swap space? Without reinstalling? You can add swap file. Look at swapfile in rc.conf(8) ___ freebsd-questions@freebsd.org mailing list

Re: Is Device pooling / HZ option Documented anywhere

2005-11-01 Thread Igor Robul
Sunil Sunder Raj wrote: Hi, Is Device pooling / HZ option documented anywhere. I am in the process of upgrading my firewall to freebsd 5.4 tuned for network performance. Need further information regarding Device pooling / HZ. Also make sure, that you really need polling, because most

Re: FreeBSD auth

2005-11-02 Thread Igor Robul
Dan Toganel wrote: I realize that in FreeBSD master.passwd is the replacement for linux shadow file. Is there a function to parse it? And how can i obtain the hash string? Thanks in advance for any help. It is not recommended directly use /etc/passwd,

Re: FreeBSD auth

2005-11-03 Thread Igor Robul
Dan Toganel wrote: --- Lowell Gilbert [EMAIL PROTECTED] wrote: getpwent() *does* give you the encrypted password. It's the second field in the structure passed back. Well, i did: includesys/types.h #includepwd.h extern int errno; int

Re: PS/2 keyboard don't work in FreeBSD 6.0

2005-11-08 Thread Igor Robul
Andrew Diakin wrote: Hi, I try ti install FreeBSD 6.0 Release but my Microsoft PS/2 keyboard don't work at all. At beta2 it work about 2 minutes... Has anybody the same trouble? Try booting with ACPI disabled. I had trouble on i815LE MSI motherboard and PS/2 mouse with 5.3 and ACPI.

Re: What about for Palm's and Pocket PC's in FreeBSD?

2005-11-15 Thread Igor Robul
Andrew Pogrebennyk wrote: Could anyone tell me if there's a good support for Palm's and Pocket PC's in FreeBSD, especially for Bluetooth connectivity? I'm going to buy one and if I learn that Palm is supported much better, It'll be one more it's advantage over MS :) Maybe, someone could point

Re: Need help, How to use knobs?

2005-11-16 Thread Igor Robul
On Wed, Nov 16, 2005 at 12:45:56PM +0800, snnn wrote: I'm a newbie to Freebsd. Who can tell me how to set the options used by knob when compile a port? Thanks~ make WITH_SOME_THING=yes make WITH_SOME_THING=yes install Or I have not understood question?

Re: Asterisk on FreeBSD, anyone?

2005-11-22 Thread Igor Robul
On Sat, Nov 19, 2005 at 02:01:39PM -0500, Bill Moran wrote: I don't have first hand experience with the analog drivers, but the rumor mill has it that the recent versions work very well. Analog drivers (misc/zaptel) worked fine with Intel 80537 based winmodem on FreeBSD 5.4-STABLE, but on 6.0

Re: Trouble installing fvwm2

2005-11-25 Thread Igor Robul
On Wed, Nov 23, 2005 at 10:57:54AM -0500, Louis LeBlanc wrote: Ivan, I do know that with kdm, I had to link my ~/.fvwm/fvwm2rc file to ~/.fvwm2rc in order to have it recognized when starting from kdm. Starting it from xdm didn't seem to require that, but for whatever reason, kdm did. Perhaps

Re: Mozilla Firefox - anyone succeeded in installing?

2005-11-28 Thread Igor Robul
On Thu, Nov 24, 2005 at 07:19:13PM +0300, Odhiambo Washington wrote: All attempts at compiling firefox on 5.4-STABLE fail at the same point: Hi, you need upgrade _all_ ports firefox depends on before building firefox. I had same problem. ___

Re: Mouse Activation 1 Click

2005-12-05 Thread Igor Robul
On Wed, Nov 23, 2005 at 03:39:09PM -0500, Sean wrote: Sean wrote: I am trying to find a setting to change desktop appicon to startup with one click instead of two. Is there such a setting? I do not see any settings in the wm prefs choices and from my web searches the port includes the

Re: FireFox not starting in 6.0

2005-12-05 Thread Igor Robul
On Sat, Dec 03, 2005 at 03:25:38PM -0500, Jesse Sheidlower wrote: On Sat, Dec 03, 2005 at 09:03:09PM +0100, Werther Pirani wrote: It's weird but, for some reason, I had mine changed from 700 to 600 and experienced exactly the same behaviour. How odd--yes, it wasn't exactly the permissions

Re: Changing maximum number of groups in FBSD - is it feasible?

2005-12-08 Thread Igor Robul
On Wed, Dec 07, 2005 at 01:48:04PM -0500, Michael P. Soulier wrote: On 12/7/05, Ian Moore [EMAIL PROTECTED] wrote: Hi, I'm toying with the idea of increasing the maximum number of groups a user can belong to on one of my servers - we have a rather complex organisation and we're

Re: Error Building ICU

2005-12-08 Thread Igor Robul
On Wed, Dec 07, 2005 at 12:52:16PM -0500, Gerard Seibert wrote: I am unable to build the devel/icu port. Everything goes fine until the end when this error message is displayed: /custrtrn/ ---[OK] ---/custrtrn/Test_UChar_UTF32_API ---[OK] ---/custrtrn/Test_UChar_UTF8_API

Re: Send emails with attachments from command line

2005-12-08 Thread Igor Robul
On Thu, Dec 08, 2005 at 12:16:34PM +, Ashley Moran wrote: Does anyone know how to send emails with attachments from the command line? I've replaced sendmail with ssmtp and I can send plain messages with mail, but I don't know how to go about preparing MIME encoded emails. Any

Re: Send emails with attachments from command line

2005-12-09 Thread Igor Robul
On Thu, Dec 08, 2005 at 03:04:46PM +, Ashley Moran wrote: On Thursday 08 December 2005 13:35, Igor Robul wrote: On Thu, Dec 08, 2005 at 12:16:34PM +, Ashley Moran wrote: Does anyone know how to send emails with attachments from the command line? I've replaced sendmail with ssmtp

Re: Send emails with attachments from command line

2005-12-09 Thread Igor Robul
On Fri, Dec 09, 2005 at 11:22:32AM +, Ashley Moran wrote: On Friday 09 December 2005 09:45, Igor Robul wrote: This is because it depends on XPM library. I have removed it manually and metamail works fine on my X11-less server :-) I use both mutt and metamail because metamail can embed

Re: Sligtly OT: setting static routes on clients

2005-12-09 Thread Igor Robul
On Fri, Dec 09, 2005 at 04:01:02PM +0100, Andrea Venturoli wrote: Hello. I've got a network of clients on which I'd like to set static routes; these are mainly (but not only) Windows machines, administered through a couple of FreeBSD servers. Is there any way to do this with DHCP? Or via

Re: Changing maximum number of groups in FBSD - is it feasible?

2005-12-11 Thread Igor Robul
On Sat, Dec 10, 2005 at 09:26:36AM +1030, Ian Moore wrote: So it actually does work! And there's no need to adjust or re-compile any ports, just world and kernel? World, kernel, static linked ports and all ports which use NGROUPS_MAX constant for space allocation. Samba worked fine for me

Re: mount_smbfs file name problem

2005-12-13 Thread Igor Robul
On Mon, Dec 12, 2005 at 12:10:01PM -0500, Incoming Mail List wrote: I've got a problem with file names containing : and ? characters when mounted via mount_smbfs. I have two FBSD machines running SAMBA. Machine-1 mounts a file system from Machine-2 using mount_smbfs(). The ls() command

Re: pine

2005-12-15 Thread Igor Robul
On Wed, Dec 14, 2005 at 12:21:19PM -0800, Ted Mittelstaedt wrote: The first thing you can do is go out and shoo the crackers off the telephone pole who are tapped into your phone line and sniffing your passwords. By the way, is there any relative cheap solution to do this? I mean we can record

Re: grub doesn't know ufs filesystem

2005-12-15 Thread Igor Robul
On Wed, Dec 14, 2005 at 03:52:33PM +0100, Roberto Nunnari wrote: grub reported: Filesystem type unknown, partition type 0xa5 and thus cannot mount /boot/loader You are correct. Old versions of grub don't know about UFS2 filesystem. ___

Re: Recursive ACLs commands

2005-12-20 Thread Igor Robul
On Sat, Dec 17, 2005 at 10:08:01AM -0500, bazzoola wrote: Greetings, I was just wondering if I can set or lists acls recursively on specific directories ? I couldn't find the usual '-R' option for setfacl Is there another way to do this? find . -type f -exec setfacl -m xxx {} \; or

Re: Courier and postfix

2005-12-20 Thread Igor Robul
On Sat, Dec 17, 2005 at 01:28:43AM +0300, Playnet wrote: Hello freebsd-questions, How i can install subj? Or i need use Exim? I have LDAP server and userlist within. What better for auth via LDAP and good work? Postfix + ... (cyrus?) or Exim + ... (courier?) ? Personaly I use

Re: Palm (Zire) and /dev/ucom0 on 6.0

2005-12-27 Thread Igor Robul
On Tue, Dec 27, 2005 at 11:58:00AM -0500, DW wrote: I then type: # pilot-xfer -p /dev/cuaU0 -b backup and I get: Listening to port: /dev/cuaU0 Please press teh HotSync button now Works fine for me with Palm TE2. You need press HotSync button and wait a little.

Re: encrypted drives

2006-03-24 Thread Igor Robul
On Wed, Mar 22, 2006 at 10:14:32AM +0100, Erik Norgaard wrote: home partition which is fine for single user laptops, but on multiuser systems, each home directory should be distinct encrypted partitions in order not to disclose data to other users. Maybe I'm wrong, but what happened with file

Re: encrypted drives

2006-03-24 Thread Igor Robul
On Fri, Mar 24, 2006 at 09:45:07AM +0100, Erik Norgaard wrote: It is not that file permissions doesn't work but having data that is not yours unencrypted lowers the barrier for trespassing. Evil admins - even if only temporarily evil - can access data they shouldn't. If you setup some

Re: convert cyrus mail to courier mail

2006-04-03 Thread Igor Robul
On Mon, Apr 03, 2006 at 11:39:12AM +0200, Reinhold Platzoeder wrote: Hi I have changed my mail server to use courier-IMAP I would like to import all the old mail that was using cyrus I have tried cyrus2courier and mb2md but with no luck my old mail is under

Re: memory slot info

2006-04-05 Thread Igor Robul
On Wed, Mar 29, 2006 at 11:40:27AM +0100, Simon Gray wrote: I don't have physical access to the box either - otherwise I could reboot and run memtestx86 or something similar sysutils/dmidecode ___ freebsd-questions@freebsd.org mailing list

Re: cdrom not found after booting was ok-ver 6.0

2006-04-05 Thread Igor Robul
On Wed, Mar 29, 2006 at 08:02:24PM +0800, uid0 wrote: IBM Netfinity 5000 with 2 SCSI HDs, SCSI Tape Drive and ATAPI CDrom. If your CD-ROM is ATA slave, then try changing it to ATA master. If it is master, then try slave. I had same looking problem with much cheaper hardware (MSI motherboard

Re: FAX software ?

2006-04-06 Thread Igor Robul
On Wed, Apr 05, 2006 at 04:41:14PM +0200, simon butsana wrote: Hi, Try hylafax. mgetty+sendfax is much easier to tune. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe,

Re: Award BIOS Upgrade Fees - Slightly Offtopic

2006-04-06 Thread Igor Robul
On Wed, Apr 05, 2006 at 05:50:47PM -0500, Derek Ragona wrote: For a 3rd party BIOS, 39.95 is cheap. They can be much higher, close to $100. But for $50 it is possible to buy new not so bad motherboard. ___ freebsd-questions@freebsd.org mailing list

Re: Switch from SATA-RAID to gmirror?

2006-04-06 Thread Igor Robul
Hello, On Thu, Apr 06, 2006 at 11:52:55AM +0100, Ashley Moran wrote: I've just installed a new server with gmirror and I like it. I've got an identical server running on-board RAID currently. Can I split the array in the BIOS, install gmirror on disk 1, reboot, and add the second disk in?

Re: Switch from SATA-RAID to gmirror?

2006-04-06 Thread Igor Robul
On Thu, Apr 06, 2006 at 01:13:02PM +0200, Wojciech Puchar wrote: On Thu, Apr 06, 2006 at 11:52:55AM +0100, Ashley Moran wrote: I've just installed a new server with gmirror and I like it. I've got an identical server running on-board RAID currently. Can I split the array in the BIOS,

Re: 2 nets

2006-04-06 Thread Igor Robul
On Thu, Apr 06, 2006 at 01:51:08PM +0200, Wojciech Puchar wrote: I have two nets: wireless and ethernet and i need make something for combine these into 1 net. How do this in freebsd? man 4 bridge or better man 4 if_bridge ___

Re: PCL interprefer for unix

2006-04-06 Thread Igor Robul
On Thu, Apr 06, 2006 at 01:50:33PM +0200, Wojciech Puchar wrote: anybody knows about program able to convert PCL printer code to postscript/PDF/bitmap/whatever - so it will be possible to view PCL prints on monitor and print it on non-PCL printers? Maybe

Re: freebsd 6.0 personal firewall

2006-04-07 Thread Igor Robul
On Thu, Apr 06, 2006 at 08:58:08PM -0700, ilyana ramlan wrote: Hello, 1) How do i block websites by typing their url name Do you wish block access _TO_ sites, or _FROM_ sites. If you wish block access _FROM_ sites, than tell us more about what type of access do you wish to block (Spam email,

Re: OT: tcp redictor with dump-(in|out)put-to-stdout capability

2006-04-07 Thread Igor Robul
On Fri, Apr 07, 2006 at 11:32:04AM +0300, Nikos Vassiliadis wrote: Hi, I am searching for program similar to net/redir. It's a simple program that listens to a tcp port and redirects all input to another address:port. I want to debug http and I need something that does what redir does plus

Re: Wanted: Flash player for browser_of_choice....

2006-04-12 Thread Igor Robul
On Tue, Apr 11, 2006 at 08:37:03PM -0500, Eric Schuele wrote: Legally? I'm no lawyer... but the EULA seems rather explicit. I'd say no. If he already have it, this meat he agreed to previous versuin of EULA, and nobody can enforce him to agree with new version, if he dont download new version

Re: round() problem

2006-04-13 Thread Igor Robul
On Wed, Apr 12, 2006 at 09:37:01AM -0400, Bill Moran wrote: On Wed, 12 Apr 2006 12:09:17 +0200 Krzysztof Nakielski [EMAIL PROTECTED] wrote: Hi, I am having problem with round() function in php, python, mysql. I am not sure if thats FreeBSD issue. I receive the same results on 4.11,

Re: upgrading from 5-Stable to 6-Stable via source

2006-04-13 Thread Igor Robul
On Thu, Apr 13, 2006 at 11:20:43AM +0800, FreeBSD MailingLists wrote: I have a bunch of production servers running 5-Stable branch and I was considering upgrading to 6-Stable. I have never upgraded across major version changes via source. Is this a bad idea? what pitfalls should i be aware of

Re: Gmail vs FreeBSD

2006-04-17 Thread Igor Robul
On Sun, Apr 16, 2006 at 02:11:06PM +0100, Richard Collyer wrote: Andrew Pantyukhin wrote: If your running FreeBSD just get a qmail server on the go and slap squirrelmail on there for web based mail. Not everybody in the world has 24/7 computer with direct connect to Internet. There are at

Re: Is Squirrelmail the best webmail choice?

2006-04-19 Thread Igor Robul
On Tue, Apr 18, 2006 at 08:42:20AM -0500, Jonathan Horne wrote: ive used squirrelmail for quite a while, and i just want to make sure i have my mind as open as possible here. are there any other choices for webmail that are about as easy as SM to configure, but offer a better user interface

Re: Is Squirrelmail the best webmail choice?

2006-04-19 Thread Igor Robul
On Wed, Apr 19, 2006 at 10:06:52AM +0400, Igor Robul wrote: I have used squirrelmail too, but now I use hastymail: http://hastymail.sourceforge.net/ It has cleaner interface (from my point of view of course :-) ), and all features I need. Also it is our corporate webmail system for same

Re: Horrible: Apache corrupting files?

2006-04-26 Thread Igor Robul
On Tue, Apr 25, 2006 at 10:51:03PM +, Ben Paley wrote: before download $ md5 test.xml MD5 (test.xml) = 25ed4336e8906e64bd05ebea990d29a0 after download $ md5 test.xml MD5 (test.xml) = ef0918bc4f7aa323eb6c41768092488e And after each access the MD5sum change ... This sounds

Re: scripting languages...

2006-04-28 Thread Igor Robul
On Fri, Apr 28, 2006 at 03:35:03AM +0200, Arne Skjaerholt wrote: Getting at argv/argc is actually pretty simple in Perl. The global array @ARGV contains the arguments given on the command-line, but not the name of the file (this datum is contained in $0). Therefore your argv[1] in C is

Re: How is this List Connected with the usenet?

2006-04-28 Thread Igor Robul
On Thu, Apr 27, 2006 at 08:35:37AM -0400, JD Arnold wrote: they have various web interfaces, as well as nntp and rss feeds. read-only though. to post you have to subscribe and send mail to the list. That's not true. I'm posting via GMane.org right now. freebsd-questions is special list. You

Re: how to sync palm under FreeBSD?

2006-05-01 Thread Igor Robul
On Sun, Apr 30, 2006 at 11:53:30AM +0800, snnn wrote: and, when I push sync under plam,I'll got these errors from dmesg ucom0: Palm, Inc. Palm Handheld, rev 1.00/1.00, addr 2 ucom0: Palm, Inc. Palm Handheld, rev 1.00/1.00, addr 2 ucom0: init failed, STALLED device_attach: ucom0 attach

Re: encrypted file sharing bsd--winxp/2k3 [SOLVED]

2006-05-04 Thread Igor Robul
On Thu, May 04, 2006 at 12:28:36PM +0200, [EMAIL PROTECTED]@mgEDV.net wrote: our choices (after some test/research) are: SMB over SSL. IPsec on Windows + IPsec on FreeBSD ___ freebsd-questions@freebsd.org mailing list

Re: FreeBSD 6.0 AMD64 Dont Detect My PCIExpress Card...? Radeon X300.

2006-01-10 Thread Igor Robul
On Tue, Jan 03, 2006 at 10:19:15AM +0100, Bj?rn K?nig wrote: Buy an Nvidia card if you need 3D support necessarily, because Nvidia offers drivers for FreeBSD. ATI does not; they support Linux only. Nvidia does not provide drivers for FreeBSD on AMD64.

Re: What User Runs Startup Scripts?

2006-01-10 Thread Igor Robul
On Thu, Jan 05, 2006 at 08:02:19PM -0800, Drew Tomlinson wrote: 1514, header 14 Jan 5 19:51:31 blacksheep ntop[611]: **ERROR** pcap_open_live(): 'BIOCSETIF: tun0: Device not configured' Jan 5 19:51:31 blacksheep ntop[611]: Please correct the problem or select a different interface

Re: Virtual CD drive for FreeBSD?

2006-01-10 Thread Igor Robul
On Tue, Jan 10, 2006 at 03:43:35PM +, Mark Ovens wrote: Is there such a thing as a virtual CD drive in the Ports. Something that allows you to treat an ISO image file - data or audio - as though it were a real CD in a real drive? Like Nero ImageDrive in Windows. md(4) mdconfig -a -t

Re: HP NetRAID 1Si trouble

2006-01-11 Thread Igor Robul
On Wed, Jan 11, 2006 at 09:06:11PM -0800, Jon Falconer wrote: I've run out of ideas of what to try next. Does anyone else have any suggestions? Hi, check memory and/or power supply, in ideal world you need replace both. ___

Re: Pooomooocyyyy ;(

2006-01-11 Thread Igor Robul
On Thu, Jan 12, 2006 at 07:57:04AM +0100, Sasa Stupar wrote: Please write in english if you want any help. There are enought Polish users of FreeBSD who can give more helpful answer than you. If you cant give meaningful answer, why asnwer at all? To original poster, unfortunately I cannot

Re: defaultroute not loading

2006-01-12 Thread Igor Robul
On Thu, Jan 12, 2006 at 11:37:27PM +, Michael Zimmer wrote: rc.subr Why? hostname=#.com defaultrouter=1.2.3.4 # previously 1.2.3.4; removed You need 1.2.3.4, because in manual page for rc.conf it is marked as (str).

Re: compile with HFS+ support?

2006-01-19 Thread Igor Robul
On Tue, Jan 17, 2006 at 07:17:50AM -0500, Lowell Gilbert wrote: david [EMAIL PROTECTED] writes: how can i compile freebsd GENERIC kernel with HFS+ support?sorry for stupid question.i am newbie in freebsd I don't think there is kernel support, but there are some ports (e.g.,

Re: Can FreeBSD play DVD movies?

2006-01-23 Thread Igor Robul
On Mon, Jan 23, 2006 at 12:47:27AM -0500, Peter wrote: Building audio filter chain for 48000Hz/2ch/ac3 - 48000Hz/2ch/s16le... [format] Sample format big-endian AC3 not yet supported [libaf] Reinitialization did not work, audio filter 'format' returned error code -2 This is a cause. Try xine,

Re: Port forwarding.

2006-01-24 Thread Igor Robul
On Tue, Jan 24, 2006 at 06:41:27AM +0100, Daniel A. wrote: sis0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST mtu 1500 options=8VLAN_MTU inet6 fe80::20a:e6ff:fe53:fc1e%sis0 prefixlen 64 scopeid 0x2 inet 192.168.0.1 netmask 0xff00 broadcast 192.168.0.255

Re: what with privileges

2006-01-30 Thread Igor Robul
On Mon, Jan 30, 2006 at 12:35:37AM +0300, Playnet wrote: How subscribe to samba mainling list? Maybe go to http://www.samba.org ? ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe,

Re: errors in schemas?

2006-01-30 Thread Igor Robul
On Sat, Jan 28, 2006 at 04:50:34PM +0300, Playnet wrote: Hello freebsd-questions, adding new entry sambaDomainName=sstand.spb.ru,dc=sstand,dc=spb,dc=ru modify complete ldap_add: Naming violation (64) additional info: naming attribute 'sambaDomainName' is not present in entry You

Re: uninstall httpd + others to get a base system only

2006-02-01 Thread Igor Robul
On Tue, Jan 31, 2006 at 07:57:59PM -0600, luke wrote: all packages installed _should_ be in /var/db/pkg(i think) i'm in windows now. so if you pkg_delete /var/db/pkg/* that should clean it all up. :-) It will only delete information about packages, not packages self.

Re: uninstall httpd + others to get a base system only

2006-02-01 Thread Igor Robul
On Wed, Feb 01, 2006 at 04:29:45PM -0500, Tom Grove wrote: Igor Robul wrote: On Tue, Jan 31, 2006 at 07:57:59PM -0600, luke wrote: all packages installed _should_ be in /var/db/pkg(i think) i'm in windows now. so if you pkg_delete /var/db/pkg/* that should clean it all up

Re: Any idea when Xorg 7.0's coming to FBSD?

2006-02-03 Thread Igor Robul
On Thu, Feb 02, 2006 at 10:12:11PM -0800, Garrett Cooper wrote: Erm, unless 6.9 is modular (which I didn't think was the case), there should be a noticeable difference. AFAIK there is only one difference - 6.9 is traditianaly packaged (6 or 7 big source tgz), while 7.0 is broken smaller source

Re: LDAP authentication problems

2006-02-13 Thread Igor Robul
On Sun, Feb 12, 2006 at 03:44:54PM +0100, Pavel Duda wrote: Now I have tried to do 'id testuser' You need nss_ldap too. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any

Re: Help Installing FreeBSD 6.0 with GUI

2006-02-13 Thread Igor Robul
On Sat, Feb 11, 2006 at 07:36:08AM +, Robert Slade wrote: There are some minor issues with nvida video 3d cards but there are nvida drivers for BSD. ATI cards are a bit more of a problem. In both cases search the mailing list archives the info is there. I dont see any problems with ATI

Re: randomized source IP for userland app?!

2006-02-13 Thread Igor Robul
On Fri, Feb 10, 2006 at 11:46:42PM +0100, Wojciech Puchar wrote: is it possible for userland application (or many of then) for TCP connections to select it's source IP address from a list random or round-robin way? (say 2-4 different IP's) socket() with SOCK_RAW as 3rd parameter. you need to

Re: Help Installing FreeBSD 6.0 with GUI

2006-02-15 Thread Igor Robul
On Thu, Feb 16, 2006 at 05:04:01PM +1100, Norberto Meijome wrote: 1) once you installed the graphics/dri , how do you enable them in xorg.conf? Unfortunately I cannot tell you about configuration you need for 855G, but at least you need load kernel module for 855G, and place Load dri Load glx to

Re: automount external usb hard drive?

2006-02-15 Thread Igor Robul
On Wed, Feb 15, 2006 at 01:59:21AM +, Daniel Bye wrote: On Tue, Feb 14, 2006 at 08:01:44PM -0500, Peter wrote: Hi, is it possible to have an external USB hard drive automounted once connected? Also you'll need to umount it manually if you dont wish lose data.

Re: devfs ruleset appropriate for jail'd environment ...

2006-02-16 Thread Igor Robul
On Wed, Feb 15, 2006 at 08:26:36PM -0400, Marc G. Fournier wrote: I had thought there used to be a sample one in /etc/devfs.conf, but its either no longer there, or my memory is failing me ... Does anyone have one that is appropriate for mounting devfs into a jail where ppl have shell

Re: ftp problem

2006-02-20 Thread Igor Robul
On Mon, Feb 20, 2006 at 09:37:41AM -0500, Sean wrote: I have my bsd system setup to allow ftp. However when I try to ftp a directory and the contents from another system it basically uses the directory as a file name and all contents in that directory are ignored. Do you use Internet

Re: VPN Jail(s) ...

2006-02-25 Thread Igor Robul
On Wed, Feb 22, 2006 at 09:03:26PM -0400, Marc G. Fournier wrote: I asked this a little while ago, and had alot of good answers ... but, after doing some thinking, I'm wondering if there might be a better way of doing it, that removed the requirement for 'hitting' the base operating

Re: A question on console and UTF-8

2006-02-25 Thread Igor Robul
On Wed, Feb 22, 2006 at 09:35:51PM +0200, a wrote: How to force a console to use a multibyte character set (UTF-8)? I use FreeBSD 6.0-STABLE. AFAIK, FreeBSD does not support UTF-8 locales on text console. ___ freebsd-questions@freebsd.org mailing

Re: rl0 discard oversize

2006-02-28 Thread Igor Robul
On Tue, Feb 28, 2006 at 01:55:56AM -0500, David Scheidt wrote: The RealTek cards supported by the rl(4) driver are trash. If you want to write a better driver, knock yourself out. I'm sure Bill Paul won't mind. Keep in mind that there are other, better performing NICs available for the

  1   2   >