FreeBSD maximum password length

2013-06-17 Thread takCoder
Hi Everyone, As i googled it, there is no maximum limitations for users' password length by default.. But we may use *pam_passwdqc* module with *max* option to check it when required. And i've heard that no-maximum-limits for passwords length is only possible when we keep them in encrypted form

Re: Flash failing with videos on youtube

2013-06-17 Thread CeDeROM
On Mon, Jun 17, 2013 at 2:45 AM, Bernt Hansson b...@bananmonarki.se wrote: On 2013-06-16 13:39, Jerry wrote: I saw the answer to this a while back, but I cannot find it now. youtube-dl -t 'filename' You can also use this trick to work on youtube directly: This video use flash player:

Re: FreeBSD maximum password length

2013-06-17 Thread Mark Felder
There isn't a max password length as far as I'm aware, but there is a max username length that drive me insane sometimes. I should really file a PR about that... ___ freebsd-questions@freebsd.org mailing list

Re: FreeBSD maximum password length

2013-06-17 Thread takCoder
Thank you, Mark, for your helpful answer :) yes, i am aware of the max username length of 16characters.. I just wanted to become sure about password max length, cause i need to moderate it in my self-built user interface.. Thank you again :) On Mon, Jun 17, 2013 at 3:44 PM, Mark Felder

installing a kernel under a custom location, not /boot/kernel?

2013-06-17 Thread Anton Shterenlikht
I think there is an option for this. But I cannot find it under 9.5. Building and Installing a Custom Kernel http://www.freebsd.org/doc/handbook/kernelconfig-building.html I need to keep several kernels installed, not just the current and the previous. How to achive this? Thaknks Anton

Re: FreeBSD maximum password length

2013-06-17 Thread Lowell Gilbert
takCoder tak.offic...@gmail.com writes: As i googled it, there is no maximum limitations for users' password length by default.. But we may use *pam_passwdqc* module with *max* option to check it when required. And i've heard that no-maximum-limits for passwords length is only possible

Re: FreeBSD maximum password length

2013-06-17 Thread takCoder
Thank you, Lowell, for your reply. :) And i've heard that no-maximum-limits for passwords length is only possible when we keep them in encrypted form not as plain text, which i think is matched with FreeBSD behavior. Is plain-text passwords even a supported behaviour? I didn't think it was.

Re: installing a kernel under a custom location, not /boot/kernel?

2013-06-17 Thread Adam Vande More
On Mon, Jun 17, 2013 at 7:13 AM, Anton Shterenlikht me...@bris.ac.ukwrote: I think there is an option for this. But I cannot find it under 9.5. Building and Installing a Custom Kernel http://www.freebsd.org/doc/handbook/kernelconfig-building.html I need to keep several kernels installed,

Re: FreeBSD maximum password length

2013-06-17 Thread Eduardo Morras
On Mon, 17 Jun 2013 17:49:56 +0330 takCoder tak.offic...@gmail.com wrote: I need to moderate the input password in my system's user interface. And I believe i have tested longer passwords than that, about 1000 characters long, and there was no limitations, via using this command in a /bin/sh

Any BASIC Gurus around?

2013-06-17 Thread Chris Maness
I am having trouble getting this old USNO basic program running in bwBASIC. The error output is not clear to me where the problem is. Here is the code, if someone wouldn't mind running it and suggesting edits: 10 DEF FNARCOS(ARG)=1.570796-ATN(ARG/SQR(1.-ARG*ARG)) 20 DEF

Re: FreeBSD maximum password length

2013-06-17 Thread Teske, Devin
On Jun 17, 2013, at 7:47 AM, Eduardo Morras wrote: On Mon, 17 Jun 2013 17:49:56 +0330 takCoder tak.offic...@gmail.com wrote: I need to moderate the input password in my system's user interface. And I believe i have tested longer passwords than that, about 1000 characters long, and there

Re: FreeBSD maximum password length

2013-06-17 Thread Mark Felder
On Mon, 17 Jun 2013 12:25:54 -0500, Teske, Devin devin.te...@fisglobal.com wrote: The default in FreeBSD is MD5 MD5 is no longer the default. http://svnweb.freebsd.org/base?view=revisionrevision=238484 ___ freebsd-questions@freebsd.org mailing

Re: FreeBSD maximum password length

2013-06-17 Thread Teske, Devin
On Jun 17, 2013, at 10:28 AM, Mark Felder wrote: On Mon, 17 Jun 2013 12:25:54 -0500, Teske, Devin devin.te...@fisglobal.com wrote: The default in FreeBSD is MD5 MD5 is no longer the default. http://svnweb.freebsd.org/base?view=revisionrevision=238484 Huzzah! 9.1-RELEASE and

Re: Any BASIC Gurus around?

2013-06-17 Thread Greg Larkin
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 6/17/13 1:16 PM, Chris Maness wrote: I am having trouble getting this old USNO basic program running in bwBASIC. The error output is not clear to me where the problem is. Here is the code, if someone wouldn't mind running it and suggesting

Re: Any BASIC Gurus around?

2013-06-17 Thread Michael Ross
I'm no BASIC Guru, but this one line caught my eye while scrolling through your mail: 2010 IF ABS(H1. THEN GOTO 2040 Missing parenthesis? Regards, Michael ___ freebsd-questions@freebsd.org mailing list

Re: Trouble installing py-sqlite3 port for python3.x

2013-06-17 Thread Aeyos
Modulok modulok at gmail.com writes: List, I'm *guessing* this is more of FreeBSD problem than a python one, so I'll ask on this list. I'm trying to import sqlite3 in python3.2 on FreeBSD 8.1-RELEASE and ran into trouble: $ python3.2 ... import sqlite3 Traceback

Re: Any BASIC Gurus around?

2013-06-17 Thread Chris Maness
Thanks a ton Greg. It is crashing here too. I am not sure as to the cause. I made a small patch to place on top of yours. There is a typo that outputs the sun position as DOG instead of DEG. Here it is: --- sun.bas.orig 2013-06-17 11:51:00.0 -0700 +++ sun.bas 2013-06-17

Re: Any BASIC Gurus around?

2013-06-17 Thread Chris Maness
Oops, here is another patch that includes a correction for the missing parenthesis that Michael Ross pointed out: --- sun.bas.orig 2013-06-17 11:51:00.0 -0700 +++ sun.bas 2013-06-17 11:57:55.0 -0700 @@ -104,7 +104,7 @@ 1020 ON N GOTO 1030, 1090 1030 IS=133775.*M/SK 1040 PRINT

Re: Any BASIC Gurus around?

2013-06-17 Thread Greg Larkin
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 6/17/13 3:03 PM, Chris Maness wrote: Oops, here is another patch that includes a correction for the missing parenthesis that Michael Ross pointed out: --- sun.bas.orig2013-06-17 11:51:00.0 -0700 +++ sun.bas2013-06-17

Re: FreeBSD maximum password length

2013-06-17 Thread Mark Felder
On Mon, 17 Jun 2013 12:52:48 -0500, Teske, Devin devin.te...@fisglobal.com wrote: Is sha512 the highest it goes in our system? Not sure what the limitations are. I know OpenBSD uses blowfish and I have been using that on older FreeBSD servers as a workaround. I think that OpenBSD uses a

easy question about logcheck

2013-06-17 Thread Pol Hallen
Hi all :-) I just configurated logcheck and everything is perfect :-) A question: where is the script that handle to send email? I check also with pkg_info -L but I didn't see any script that send email thanks for help! Pol ___

AdWordPosition - Best alternative of AdWords

2013-06-17 Thread AdWordPosition
Hello, Let me introduce you to new advertisement technology which will bring your website on the top of major search engines, such as Google, Yahoo and Bing without Pay per Click in 24 hours. In order to see it in action, you can watch online demonstration on our website and try it in action

Re: Any BASIC Gurus around?

2013-06-17 Thread Chris Maness
On closer inspection it looks like the moons in the right spot, but the Sun is in the wrong spot. I will take a look and see if there is no error in the lines that deal with the Sun's Az/El. I have the original code that was scanned from a USNO document. The OCR was rather sloppy. I will post

Re: Any BASIC Gurus around?

2013-06-17 Thread Chris Maness
Here is a link to the USNO article that the BASIC program originated from: USNO171s.pdf http://www.chrismaness.com/backend/USNO171s.pdf Thanks, Chris Maness ___ freebsd-questions@freebsd.org mailing list

Re: easy question about logcheck

2013-06-17 Thread Greg Larkin
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 6/17/13 4:16 PM, Pol Hallen wrote: Hi all :-) I just configurated logcheck and everything is perfect :-) A question: where is the script that handle to send email? I check also with pkg_info -L but I didn't see any script that send email

Re: easy question about logcheck

2013-06-17 Thread Pol Hallen
If you include logcheck in a cron job (hourly, daily, etc.), the cron system will send the email with its output. After installed logcheck I didn't done any changes to cron... but I've notify mails from logcheck Thanks! ___

Re: Any BASIC Gurus around?

2013-06-17 Thread Julian H. Stacey
Hi, Reference: From: Chris Maness ch...@chrismaness.com Date: Mon, 17 Jun 2013 13:52:47 -0700 Chris Maness wrote: Here is a link to the USNO article that the BASIC program originated from: USNO171s.pdf http://www.chrismaness.com/backend/USNO171s.pdf Thanks, Chris Maness

Re: installing a kernel under a custom location, not /boot/kernel?

2013-06-17 Thread Polytropon
On Mon, 17 Jun 2013 09:21:21 -0500, Adam Vande More wrote: On Mon, Jun 17, 2013 at 7:13 AM, Anton Shterenlikht me...@bris.ac.ukwrote: I think there is an option for this. But I cannot find it under 9.5. Building and Installing a Custom Kernel

Re: FreeBSD maximum password length

2013-06-17 Thread RW
On Mon, 17 Jun 2013 17:52:48 + Teske, Devin wrote: On Jun 17, 2013, at 10:28 AM, Mark Felder wrote: On Mon, 17 Jun 2013 12:25:54 -0500, Teske, Devin devin.te...@fisglobal.com wrote: The default in FreeBSD is MD5 MD5 is no longer the default.

Re: FreeBSD maximum password length

2013-06-17 Thread Polytropon
One _little_ terminology detail: On Tue, 18 Jun 2013 00:56:08 +0100, RW wrote: What's important is the amount of work needed to evaluate a password in a bruteforce dictionary attack. I'd say that bruteforce != dictionary. It's bruteforce _or_ dictionary attack instead. A dictionary attack is

Re: FreeBSD maximum password length

2013-06-17 Thread Brandon Gooch
On Mon, Jun 17, 2013 at 6:35 AM, takCoder tak.offic...@gmail.com wrote: Thank you, Mark, for your helpful answer :) yes, i am aware of the max username length of 16characters.. I just wanted to become sure about password max length, cause i need to moderate it in my self-built user

Re: FreeBSD maximum password length

2013-06-17 Thread Mark Felder
On Mon, Jun 17, 2013, at 21:19, Brandon Gooch wrote: On Mon, Jun 17, 2013 at 6:35 AM, takCoder tak.offic...@gmail.com wrote: Perhaps your PR is unnecessary: $ svn log -v -r243023 /usr/src/sys/sys/param.h Hmm, looks like it wasn't MFC'd to 9-STABLE before 9.1's release. Well, at least it's

Re: FreeBSD maximum password length

2013-06-17 Thread Michael Sierchio
I know this may seem off-the-wall to some, but I pasted a hashed password for a user under 9.1 into the /etc/passwd entry for that user on an 8.3 machine, and auth continues to work properly. That's nice. - M ___ freebsd-questions@freebsd.org mailing

Avoid sharing interrupts in FreeBSD under ESXi

2013-06-17 Thread C. L. Martinez
HI all, I have installed a FreeBSD 8.4 vm under an ESXi 5.1 U1 server. All works ok, except for interrupt usage between mpt and nic interfaces: root@fbsdtst:~ # vmstat -i interrupt total rate irq1: atkbd0 6 0 irq6: fdc0