Notice about your recent message to dev-h...@subversion.tigris.org

2012-10-25 Thread admin
We are sorry, but this discussion does not exist. Your recent message to 
(Returned mail: see transcript for details) was rejected.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


kernel config

2012-10-25 Thread jb
Hi,
what controls how parts of kernel are built, that is, built-in or modular ?
For example, I want to:
- build a kernel that has eveything built in
- build a kernel that has everything possible (what controls the impossible ?)
  built as modules
- build a kernel that has mixed support, e.g. support for cd9660 fs built-in
  and ext2fs as module
jb


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


NVIDIA proprietary driver error

2012-10-25 Thread Ashkan Rahmani
Hi,
I'm going to install driver for nvidia 310M cuda enabled, but I have some
problem with it.
First I tried with Nvidia driver from ports, and then official driver from
nvidia.com (It's name is NVIDIA-FreeBSD-x86_64-304.60.tar.gz). After
running nvidia-xconfig I got this error:

(II) NVIDIA dlloader X Driver  304.60  Sun Oct 14 20:29:31 PDT 2012
 (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
 (II) Primary Device is:
 (EE) No devices detected.

 Fatal server error:
 no screens found


But aftre running Xor -configure and copy xorg.conf.new to
/etc/X11/xorg.conf finally I can start X server! wow!
But problem is still exist in another way!
Monitor resolution must be 1366x768 xxx but resolution is  1024x768 and
with lag.

this is link to my Xorg.conf generated by Xorg -configure: download
herehttps://docs.google.com/open?id=0B04FnfYf6_mLeE1GNF9zQ28tRmM

linux_enable=YES is in  /etc/rc.conf .
nvidia_load=YES is in /boot/loader.conf .



---
Best Regards,
Ashkan R
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: kernel config

2012-10-25 Thread Erich Dollansky
Hi,

On Thu, 25 Oct 2012 06:41:44 + (UTC)
jb jb.1234a...@gmail.com wrote:

 Hi,
 what controls how parts of kernel are built, that is, built-in or
 modular ? For example, I want to:
 - build a kernel that has eveything built in

this is normally not possible as some thing conflict which each other.
But most things work together.

 - build a kernel that has everything possible (what controls the
 impossible ?) built as modules

All modules are build anyway.

 - build a kernel that has mixed support, e.g. support for cd9660 fs
 built-in and ext2fs as module

Just check how a custom kernel is build. You can then build three
versions of it. One with nothing, one with the modules you want and one
with the non-conflicting modules build-in.

Just read the handbook regarding custom kernels.

Erich
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: kernel config

2012-10-25 Thread jb
Erich Dollansky erichfreebsdlist at ovitrap.com writes:

 ...  
 Just check how a custom kernel is build. You can then build three
 versions of it. One with nothing, one with the modules you want and one
 with the non-conflicting modules build-in.
 
 Just read the handbook regarding custom kernels.
 ...

I have already read all docs :-)
The problem is I still do not get it ...

I understand that files sys/conf/NOTES and sys/arch/conf/NOTES contain
directive lines like 'device', 'options', 'machine', 'ident', 'maxusers',
'makeoptions'  etc that the user may place in the kernel configuration that she
will run config(8) with.

What is the specific mechanism (directive in GENERIC file, or something else
in GENERIC file or elsewhere) that says build support for cd9660 fs as built-in
and ext2fs as module, or entire kernel as built-in, or entire kernel as
modular (except things that must be built-in, but then what things and where is
this specified) ?
jb


 




___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: kernel config

2012-10-25 Thread Erich Dollansky
Hi,

On Thu, 25 Oct 2012 07:26:27 + (UTC)
jb jb.1234a...@gmail.com wrote:

 Erich Dollansky erichfreebsdlist at ovitrap.com writes:
 
  ...  
  Just check how a custom kernel is build. You can then build three
  versions of it. One with nothing, one with the modules you want and
  one with the non-conflicting modules build-in.
  
  Just read the handbook regarding custom kernels.
  ...
 
 I have already read all docs :-)
 The problem is I still do not get it ...
 
ok, the I hope that I will get what you want.

 I understand that files sys/conf/NOTES and sys/arch/conf/NOTES
 contain directive lines like 'device', 'options', 'machine', 'ident',
 'maxusers', 'makeoptions'  etc that the user may place in the kernel
 configuration that she will run config(8) with.
 
Yes, taken them as examples.

 What is the specific mechanism (directive in GENERIC file, or

You copy GENERIC into a new file i.e. ALLOPTIONS and set then is this
file the options you want.

You would need three files like this. ALLOPTIONS, NOOPTIONS and
MYOPTIONS as an example.

NOOPTIONS would then contain all options removed which you do not want.
Be careful here as you might get a kernel which will not boot anymore.

MYOPTIONS will contain then the options you would like to have in your
kernel.

Of course, you can use any other names you want to use.

 something else in GENERIC file or elsewhere) that says build support
 for cd9660 fs as built-in and ext2fs as module, or entire kernel as

The modules are always build, at least to my knowledge. So, you do not
need any options for this. You just need to load them later.

 built-in, or entire kernel as modular (except things that must be
 built-in, but then what things and where is this specified) ?

Did you get what I wrote up there or was this not what you want to do?

Erich
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: laptop with no BIOS? or BIOS reflash pain

2012-10-25 Thread Anton Shterenlikht
From cpgh...@cordula.ws Thu Oct 25 03:40:28 2012

Heh... ;-)

(U)EFI is nothing new for us old farts: we've had OpenBoot[1] on
Sun hardware for ages, and even though it didn't limit us w.r.t. the
OS you wanted to boot (that's why you can install FreeBSD/sparc64
on used Sun machines), it had its issues too. Mainly that it needed
a counter-part in hardware peripherals. E.g.: without F-Code in ROM,
a PCI-based frame buffer wouldn't be usable there, because it wouldn't
reply to the OpenBoot queries.

The point is that firmware CAN be a mini-OS and more powerful
than PC-BIOS. There's nothing wrong with that, and the flexibility
of OFW/OpenBoot was for us sysadmins invaluable, esp. with
diskless machines. What's wrong, is UEFI's DRM-scheme used to
prevent non-signed code to be loaded... without mandating in
the specs that the BIOS vendor MUST allow the device owner
to add his/her own keys to it. That's the evil part of it.

[1]: http://en.wikipedia.org/wiki/Open_Firmware

I'm probably missing something here.
ia64 uses EFI, but there's nothing
about checking for non-signed code.
I can boot VMS, FreeBSD, linux, etc.
And, by the way, firmware updates from EFI via e.g.
USB flash drives is trivial on ia64.
Perhaps what you are describing is not about the EFI
specification iteself, but what
different manufacturers add on top of it?

Anton
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: kernel config

2012-10-25 Thread jb
Erich Dollansky erichfreebsdlist at ovitrap.com writes:

 ... 

What decides about that (built-in or module) ?
# kldstat -v |grep cd9660
414 cd9660
# kldstat -v |grep ext2fs
151 0xc9911000 11000ext2fs.ko (/boot/kernel/ext2fs.ko)
538 ext2fs

jb


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: laptop with no BIOS? or BIOS reflash pain

2012-10-25 Thread Bruce Cran

On 25 Oct 2012, at 08:52, Anton Shterenlikht me...@bristol.ac.uk wrote:

 I'm probably missing something here.
 ia64 uses EFI, but there's nothing
 about checking for non-signed code.
 I can boot VMS, FreeBSD, linux, etc.
 And, by the way, firmware updates from EFI via e.g.
 USB flash drives is trivial on ia64.
 Perhaps what you are describing is not about the EFI
 specification iteself, but what
 different manufacturers add on top of it?


It's in the latest UEFI spec - see 
http://en.wikipedia.org/wiki/Unified_Extensible_Firmware_Interface#Secure_boot .

-- 
Bruce Cran
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: NVIDIA proprietary driver error

2012-10-25 Thread Shane Ambler

On 25/10/2012 17:34, Ashkan Rahmani wrote:

Hi,
I'm going to install driver for nvidia 310M cuda enabled, but I have some
problem with it.



Monitor resolution must be 1366x768 xxx but resolution is  1024x768 and
with lag.


Sounds like your on a laptop? model details could be helpful if someone 
else has tried on that machine.


Do you have a second monitor connected or is that an error coming from 
the second gpu built-in to the cpu?


I would try removing the screen 1 line from serverlayout as well as the 
matching screen and monitor 1 details as well as the intel  graphics 
device section - disconnecting a second monitor if it is connected.


Change Driver nv to Driver nvidia and try that.


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: laptop with no BIOS? or BIOS reflash pain

2012-10-25 Thread Anton Shterenlikht
From br...@cran.org.uk Thu Oct 25 09:22:33 2012


On 25 Oct 2012, at 08:52, Anton Shterenlikht me...@bristol.ac.uk 
wrote:

 I'm probably missing something here.
 ia64 uses EFI, but there's nothing
 about checking for non-signed code.
 I can boot VMS, FreeBSD, linux, etc.
 And, by the way, firmware updates from EFI via e.g.
 USB flash drives is trivial on ia64.
 Perhaps what you are describing is not about the EFI
 specification iteself, but what
 different manufacturers add on top of it?


It's in the latest UEFI spec - see 
http://en.wikipedia.org/wiki/Unified_Extensible_Firmware_Interface#Secure_boot .

-- 
Bruce Cran

fuck.. I'm out of touch.
So this means I might not
be able to boot freebsd at all
on future ia64 boxes..

Anton
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: laptop with no BIOS? or BIOS reflash pain

2012-10-25 Thread Bruce Cran

On 25 Oct 2012, at 09:40, Anton Shterenlikht me...@bristol.ac.uk wrote:
 So this means I might not
 be able to boot freebsd at all
 on future ia64 boxes..


Ignore the FUD - there will be an option to disable it in the firmware/BIOS 
settings.

-- 
Bruce Cran
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: kernel config

2012-10-25 Thread Polytropon
On Thu, 25 Oct 2012 14:51:38 +0700, Erich Dollansky wrote:
 The modules are always build, at least to my knowledge. So, you do not
 need any options for this. You just need to load them later.

The means of /etc/src.conf can be used to skip certain things
during a kernel + world build. For example, WITHOUT_BLUETOOTH
will prevent building BT-related kernel modules and utilities.

See man src.conf for details.




-- 
Polytropon
Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: laptop with no BIOS? or BIOS reflash pain

2012-10-25 Thread Polytropon
On Thu, 25 Oct 2012 09:40:20 +0100 (BST), Anton Shterenlikht wrote:
   From br...@cran.org.uk Thu Oct 25 09:22:33 2012
 
 
   On 25 Oct 2012, at 08:52, Anton Shterenlikht me...@bristol.ac.uk 
 wrote:
 
I'm probably missing something here.
ia64 uses EFI, but there's nothing
about checking for non-signed code.
I can boot VMS, FreeBSD, linux, etc.
And, by the way, firmware updates from EFI via e.g.
USB flash drives is trivial on ia64.
Perhaps what you are describing is not about the EFI
specification iteself, but what
different manufacturers add on top of it?
 
 
   It's in the latest UEFI spec - see 
 http://en.wikipedia.org/wiki/Unified_Extensible_Firmware_Interface#Secure_boot
  .
 
   -- 
   Bruce Cran
 
 fuck.. I'm out of touch.
 So this means I might not
 be able to boot freebsd at all
 on future ia64 boxes..

There probably won't be much ia64 boxes in the future. You
should worry to not be able to run FreeBSD on ARM, and
maybe even later on normal x86 (amd64) hardware, if
specific interested parties should get their will...




-- 
Polytropon
Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


FreeBSD based, standalone, print server

2012-10-25 Thread Olivier Nicole
Hi,

The network card on my HP 4300 is definitely dead. All I am left with
is a... parallel port!

But the printer is still working fine, printing fast and in good
quality.

I don't want to invest in a new network card though, while I have a
bunchg of old systems lying around.

Solutions are:

1) I set-up a small FreeBSD box, with printer spooler, and all my
   quota stuff;

2) I find a solution to bridge the parallel port and the ethernet
   port. This is more exciting and I keep the quota and spooling on
   the original print server.

Any cue for the option 2?

Best regards,

Olivier
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FreeBSD based, standalone, print server

2012-10-25 Thread Steve O'Hara-Smith
On Thu, 25 Oct 2012 16:20:35 +0700 (ICT)
Olivier Nicole olivier.nic...@cs.ait.ac.th wrote:

 2) I find a solution to bridge the parallel port and the ethernet
port. This is more exciting and I keep the quota and spooling on
the original print server.

There are very cheap network print servers available, finding one
with parallel might be harder.

-- 
Steve O'Hara-Smith at...@sohara.org
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FreeBSD based, standalone, print server

2012-10-25 Thread Polytropon
On Thu, 25 Oct 2012 10:59:52 +0100, Steve O'Hara-Smith wrote:
 On Thu, 25 Oct 2012 16:20:35 +0700 (ICT)
 Olivier Nicole olivier.nic...@cs.ait.ac.th wrote:
 
  2) I find a solution to bridge the parallel port and the ethernet
 port. This is more exciting and I keep the quota and spooling on
 the original print server.
 
   There are very cheap network print servers available, finding one
 with parallel might be harder.

I have one of them here: Cisco Systems Linksys Wireless-G
printserver for USB 2.0, model no. WPS54GU2: parallel, USB,
network and antenna. :-)

In worst case, using a PC-based server to expose the system's
lpr (with attached printer filter to parallel port, e. g. via
apsfilter, CUPS, or simply PS without anything else) should be
no problem. It would then appear on the network to be used
as lpr to IP address, just as the original printer would
have been.



-- 
Polytropon
Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FreeBSD based, standalone, print server

2012-10-25 Thread Olivier Nicole
On Thu, Oct 25, 2012 at 5:52 PM, Polytropon free...@edvax.de wrote:
 On Thu, 25 Oct 2012 10:59:52 +0100, Steve O'Hara-Smith wrote:
 On Thu, 25 Oct 2012 16:20:35 +0700 (ICT)
 Olivier Nicole olivier.nic...@cs.ait.ac.th wrote:

  2) I find a solution to bridge the parallel port and the ethernet
 port. This is more exciting and I keep the quota and spooling on
 the original print server.

   There are very cheap network print servers available, finding one
 with parallel might be harder.

 I have one of them here: Cisco Systems Linksys Wireless-G
 printserver for USB 2.0, model no. WPS54GU2: parallel, USB,
 network and antenna. :-)

 In worst case, using a PC-based server to expose the system's
 lpr (with attached printer filter to parallel port, e. g. via
 apsfilter, CUPS, or simply PS without anything else) should be
 no problem. It would then appear on the network to be used
 as lpr to IP address, just as the original printer would
 have been.

Not exactly, as I was not using PS (tcp port 515) to connect to the
printer, but telnet to port 9100, that is bi-directional and where I
can read the page count.

I am digging along the line of netgraph, but ther eis no netgraph for
parallel port :(

Thank you,

Olivier
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FreeBSD based, standalone, print server

2012-10-25 Thread Steve O'Hara-Smith
On Thu, 25 Oct 2012 18:10:13 +0700
Olivier Nicole olivier.nic...@cs.ait.ac.th wrote:

 I am digging along the line of netgraph, but ther eis no netgraph for
 parallel port :(

If there was it would be a connection to a PLIP network - actually
I'd be surprised if there wasn't.

-- 
Steve O'Hara-Smith at...@sohara.org
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


RE: FreeBSD based, standalone, print server

2012-10-25 Thread Graeme Dargie


-Original Message-
From: owner-freebsd-questi...@freebsd.org 
[mailto:owner-freebsd-questi...@freebsd.org] On Behalf Of Olivier Nicole
Sent: 25 October 2012 10:21
To: freebsd-questions@freebsd.org
Subject: FreeBSD based, standalone, print server

Hi,

The network card on my HP 4300 is definitely dead. All I am left with is a... 
parallel port!

But the printer is still working fine, printing fast and in good quality.

I don't want to invest in a new network card though, while I have a bunchg of 
old systems lying around.

Solutions are:

1) I set-up a small FreeBSD box, with printer spooler, and all my
   quota stuff;

2) I find a solution to bridge the parallel port and the ethernet
   port. This is more exciting and I keep the quota and spooling on
   the original print server.

Any cue for the option 2?

Best regards,

Olivier
___
freebsd-questions@freebsd.org mailing list 
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

You might be able to dig up a network to parallel port jet direct box fairly 
cheap from a well known auction site.

Regards

Graeme
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: kernel config

2012-10-25 Thread jb
jb jb.1234abcd at gmail.com writes:

 ... 
 What decides about that (built-in or module) ?
 # kldstat -v |grep cd9660
   414 cd9660
 # kldstat -v |grep ext2fs
 151 0xc9911000 11000ext2fs.ko (/boot/kernel/ext2fs.ko)
   538 ext2fs

That was already clarified.
jb




___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org



Order Inquiry

2012-10-25 Thread The Marsid-MM

Hello,

We are at Mono Group of comapany. We would like to inquire if you have in stock 
or can special order any of the item described below:

Cartridge Ink OEM Original Only.

HP TONER CARTRIDGE INK - BLACK COLOR

1: HP TONER 1: HP C9731A (31A) OEM Cyan 

2: HP C9732A (32A) OEM Yellow 

3: HP C9730A (30A) OEM Black 

4: HP Designjet 130 Printer (HP part: C7791C#A2L)

5. The Toshiba Satellite® L675D-S7016 laptop features an AMD Turion⢠II 
Dual-Core Mobile processor, 320GB total hard drive storage, and 4GB memory.

6. HP Notebook 17-1190NR is a 17.3-inch notebook PC outfitted with a 1.60GHz 
Intel Core i7-720QM Processor

7. ASUS Notebook 17.3, Windows 7 Home Premium (64 bit) Operating System, Intel 
i7-2630QM (2.0 GHz Quad-Core

8. USB Flash Drive / Pen drive 4GB or 8GB.

Let us know if the above items fall in to your scope and we would also like to 
know if you are shipping with a freight shipping and with what carrier for 2-3 
days delivery to TN-37130.


Truly yours,
Abraham Cua Lopez

The Marsid-MM Group
245 Westbury Avenue, 
Carle Place, NY-11514 
Phone: +1 212-359-1688




___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

BIND - slaving the root zone and signature expired

2012-10-25 Thread Damien Fleuriot
Hello list,



Anyone else experienced this problem today ?

We slave the root zone and have received signature expired errors.




We slave the root zone like so:
zone . {
type slave;
file /etc/namedb/slave/root.slave;
masters {
192.5.5.241;// F.ROOT-SERVERS.NET.
};
notify no;
};
zone arpa {
type slave;
file /etc/namedb/slave/arpa.slave;
masters {
192.5.5.241;// F.ROOT-SERVERS.NET.
};
notify no;
};



And got the following errors:


messages.2:Oct 25 08:25:46 pf1 named[23251]: starting BIND 9.6.-ESV-R7
-t /var/named -u bind
messages.2:Oct 25 08:25:46 pf1 named[23251]: built with
'--prefix=/usr' '--infodir=/usr/share/info' '--mandir=/usr/share/man'
'--enable-threads' '--enable-getifaddrs' '--disable-linux-caps'
'--with-openssl=/usr' '--with-randomdev=/dev/random' '--without-idn'
'--without-libxml2'
messages.2:Oct 25 08:25:46 pf1 named[23251]:

messages.2:Oct 25 08:25:46 pf1 named[23251]: BIND 9 is maintained by
Internet Systems Consortium,
messages.2:Oct 25 08:25:46 pf1 named[23251]: Inc. (ISC), a non-profit
501(c)(3) public-benefit
messages.2:Oct 25 08:25:46 pf1 named[23251]: corporation.  Support and
training for BIND 9 are
messages.2:Oct 25 08:25:46 pf1 named[23251]: available at
https://www.isc.org/support
messages.2:Oct 25 08:25:46 pf1 named[23251]:

messages.2:Oct 25 08:25:46 pf1 named[23251]: command channel listening
on 127.0.0.1#953
messages.2:Oct 25 08:25:46 pf1 named[23251]: command channel listening
on ::1#953
messages.2:Oct 25 08:25:46 pf1 named[23251]:
/etc/namedb/slave/root.slave:10: signature has expired
messages.2:Oct 25 08:25:46 pf1 named[23251]:
/etc/namedb/slave/arpa.slave:10: signature has expired
messages.2:Oct 25 08:25:46 pf1 named[23251]: running
messages.2:Oct 25 08:25:46 pf1 named[23251]: zone ./IN: expired
messages.2:Oct 25 08:25:46 pf1 named[23251]: zone arpa/IN: expired
messages.2:Oct 25 08:27:16 pf1 named[23251]: transfer of 'arpa/IN'
from 192.5.5.241#53: failed while receiving responses: connection
reset
messages.2:Oct 25 08:27:17 pf1 named[23251]: transfer of './IN' from
192.5.5.241#53: failed while receiving responses: connection reset
messages.2:Oct 25 08:28:47 pf1 named[23251]: transfer of './IN' from
192.5.5.241#53: failed while receiving responses: connection reset
messages.2:Oct 25 08:28:47 pf1 named[23251]: transfer of 'arpa/IN'
from 192.5.5.241#53: failed while receiving responses: connection
reset
messages.2:Oct 25 08:30:37 pf1 named[23251]: transfer of 'arpa/IN'
from 192.5.5.241#53: failed while receiving responses: connection
reset
messages.2:Oct 25 08:30:42 pf1 named[23251]: transfer of './IN' from
192.5.5.241#53: failed while receiving responses: connection reset
messages.2:Oct 25 08:32:47 pf1 named[23251]: stopping command channel
on 127.0.0.1#953
messages.2:Oct 25 08:32:47 pf1 named[23251]: stopping command channel on ::1#953
messages.2:Oct 25 08:32:47 pf1 named[23251]: exiting

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FreeBSD based, standalone, print server

2012-10-25 Thread Warren Block

On Thu, 25 Oct 2012, Olivier Nicole wrote:


The network card on my HP 4300 is definitely dead. All I am left with
is a... parallel port!


Just for clarity, is that the good kind of HP 4300, a laser printer, or 
the other kind, a multifunction inkjet?



But the printer is still working fine, printing fast and in good
quality.

I don't want to invest in a new network card though, while I have a
bunchg of old systems lying around.

Solutions are:

1) I set-up a small FreeBSD box, with printer spooler, and all my
  quota stuff;

2) I find a solution to bridge the parallel port and the ethernet
  port. This is more exciting and I keep the quota and spooling on
  the original print server.

Any cue for the option 2?


Without a way to reprogram the firmware in the printer, you'll have to 
use a server on a computer.  lpd(8) works, but your later post says you 
want to use port 9100.  It should be possible to use something like 
nc(1) to receive raw data on port 9100 and just dump it to the parallel 
port.  There will be little or no error handling.


Finding an EIO JetDirect would be better, if it is the right kind of 
printer.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FreeBSD based, standalone, print server

2012-10-25 Thread Olivier Nicole
Hi Graeme,

 You might be able to dig up a network to parallel port jet direct box
 fairly cheap from a well known auction site.

Yes, but shipment to Thailand is like 4 times the price of the card :(

Olivier
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FreeBSD based, standalone, print server

2012-10-25 Thread Olivier Nicole
HI Warren

 The network card on my HP 4300 is definitely dead. All I am left with
 is a... parallel port!


 Just for clarity, is that the good kind of HP 4300, a laser printer, or the
 other kind, a multifunction inkjet?

That's a good old fashioned HP LaserJet 4300 dt(n) (it has lost the n
with the network ability).

 But the printer is still working fine, printing fast and in good
 quality.

 I don't want to invest in a new network card though, while I have a
 bunchg of old systems lying around.

 Solutions are:

 1) I set-up a small FreeBSD box, with printer spooler, and all my
   quota stuff;

 2) I find a solution to bridge the parallel port and the ethernet
   port. This is more exciting and I keep the quota and spooling on
   the original print server.

 Any cue for the option 2?


 Without a way to reprogram the firmware in the printer, you'll have to use a
 server on a computer.  lpd(8) works, but your later post says you want to
 use port 9100.  It should be possible to use something like nc(1) to receive
 raw data on port 9100 and just dump it to the parallel port.  There will be
 little or no error handling.

Thanks, that is what I am looking for.

Best regards,

Olivier

 Finding an EIO JetDirect would be better, if it is the right kind of
 printer.

 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: BIND - slaving the root zone and signature expired

2012-10-25 Thread Warren Block

On Thu, 25 Oct 2012, Damien Fleuriot wrote:


Anyone else experienced this problem today ?

We slave the root zone and have received signature expired errors.


Found this:

https://lists.dns-oarc.net/pipermail/dns-operations/2011-March/007116.html

which leads to this:

http://in-addr-transition.icann.org/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Question about EMC CX4-120

2012-10-25 Thread Leonardo Santagostini
Hello everybody

After googling a lot i couldnt find any resource that tell me if it
could be able to recognize luns provided by the cx4-120 on freebsd
9.0.

Could someone give a clue at least?

Thanks in advance,
Regards

Saludos.-
Leonardo Santagostini
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: BIND - slaving the root zone and signature expired

2012-10-25 Thread Damien Fleuriot
On 25 October 2012 18:33, Warren Block wbl...@wonkity.com wrote:
 On Thu, 25 Oct 2012, Damien Fleuriot wrote:

 Anyone else experienced this problem today ?

 We slave the root zone and have received signature expired errors.


 Found this:

 https://lists.dns-oarc.net/pipermail/dns-operations/2011-March/007116.html

 which leads to this:

 http://in-addr-transition.icann.org/



Hi Warren and thanks for your reply,


I've dug around some more and identified the problem we've been having.



Apparently, from a given netblock, we can't AXFR the . and arpa
zones anymore with F.ROOT-SERVERS.NET.
We can from some other boxes.
I suspect we might have been firewalled or something, although we
don't query them very often , but that's beyond the point.


I've now transitioned all our PF boxes to slave from
xfr.lax.dns.icann.org and xfr.cjr.dns.icann.org as per the
documentation found in /etc/namedb/named.conf

What bothers me is that the commented lines from named.conf say to use
the ICANN XFR servers, while the actual commented configuration uses
F.ROOT-SERVERS.NET




See below a freshly SVNup'd copy on 10.0:

% svn info named.conf
Path: named.conf
Name: named.conf
Working Copy Root Path: /data/freebsd/src/head
URL: svn://svn.freebsd.org/base/head/etc/namedb/named.conf
Repository Root: svn://svn.freebsd.org/base
Repository UUID: ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f
Revision: 242082
Node Kind: file
Schedule: normal
Last Changed Author: uqs
Last Changed Rev: 229783
Last Changed Date: 2012-01-07 16:10:32 + (Sat, 07 Jan 2012)
Text Last Updated: 2012-09-01 11:43:31 + (Sat, 01 Sep 2012)
Checksum: 598add209c192aac1dc4d973ce31922dff8b93c9


I SVNup'd it just today, and yet:

===
As documented at http://dns.icann.org/services/axfr/ these zones:
. (the root), ARPA, IN-ADDR.ARPA, IP6.ARPA, and ROOT-SERVERS.NET
are available for AXFR from these servers on IPv4 and IPv6:
xfr.lax.dns.icann.org, xfr.cjr.dns.icann.org
*/
/*
zone . {
type slave;
file /etc/namedb/slave/root.slave;
masters {
192.5.5.241;// F.ROOT-SERVERS.NET.
};
notify no;
};
===




I'm going to file a PR with a small diff to use the ICANN's XFR
servers instead of F.



Thanks for your feedback regardless :)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: BIND - slaving the root zone and signature expired

2012-10-25 Thread Damien Fleuriot
On 25 October 2012 18:55, Damien Fleuriot m...@my.gd wrote:
 On 25 October 2012 18:33, Warren Block wbl...@wonkity.com wrote:
 On Thu, 25 Oct 2012, Damien Fleuriot wrote:

 Anyone else experienced this problem today ?

 We slave the root zone and have received signature expired errors.


 Found this:

 https://lists.dns-oarc.net/pipermail/dns-operations/2011-March/007116.html

 which leads to this:

 http://in-addr-transition.icann.org/



 Hi Warren and thanks for your reply,


 I've dug around some more and identified the problem we've been having.



 Apparently, from a given netblock, we can't AXFR the . and arpa
 zones anymore with F.ROOT-SERVERS.NET.
 We can from some other boxes.
 I suspect we might have been firewalled or something, although we
 don't query them very often , but that's beyond the point.


 I've now transitioned all our PF boxes to slave from
 xfr.lax.dns.icann.org and xfr.cjr.dns.icann.org as per the
 documentation found in /etc/namedb/named.conf

 What bothers me is that the commented lines from named.conf say to use
 the ICANN XFR servers, while the actual commented configuration uses
 F.ROOT-SERVERS.NET




 See below a freshly SVNup'd copy on 10.0:

 % svn info named.conf
 Path: named.conf
 Name: named.conf
 Working Copy Root Path: /data/freebsd/src/head
 URL: svn://svn.freebsd.org/base/head/etc/namedb/named.conf
 Repository Root: svn://svn.freebsd.org/base
 Repository UUID: ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f
 Revision: 242082
 Node Kind: file
 Schedule: normal
 Last Changed Author: uqs
 Last Changed Rev: 229783
 Last Changed Date: 2012-01-07 16:10:32 + (Sat, 07 Jan 2012)
 Text Last Updated: 2012-09-01 11:43:31 + (Sat, 01 Sep 2012)
 Checksum: 598add209c192aac1dc4d973ce31922dff8b93c9


 I SVNup'd it just today, and yet:

 ===
 As documented at http://dns.icann.org/services/axfr/ these zones:
 . (the root), ARPA, IN-ADDR.ARPA, IP6.ARPA, and ROOT-SERVERS.NET
 are available for AXFR from these servers on IPv4 and IPv6:
 xfr.lax.dns.icann.org, xfr.cjr.dns.icann.org
 */
 /*
 zone . {
 type slave;
 file /etc/namedb/slave/root.slave;
 masters {
 192.5.5.241;// F.ROOT-SERVERS.NET.
 };
 notify no;
 };
 ===




 I'm going to file a PR with a small diff to use the ICANN's XFR
 servers instead of F.



 Thanks for your feedback regardless :)


If anyone cares to take it, filed as conf/173077
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Full system update.

2012-10-25 Thread Ashkan Rahmani
Hi,
How I can update system completely some thing like apt-get dist-upgrade in
Debian?

---
Best Regards,
Ashkan R
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Full system update.

2012-10-25 Thread Matthew Seaman
On 25/10/2012 20:19, Ashkan Rahmani wrote:
 How I can update system completely some thing like apt-get dist-upgrade in
 Debian?

You can't.  With FreeBSD it's always a two step thing, because it has
the distinction between the base system and ported software.

You probably want freebsd-update(8) for updating the base system, as
that's downloading pre-compiled updates, similar (in a very loose way)
to apt-get.  The man page will answer most, if not all, or your
questions.  There are other ways: see the Handbook for details, but
these all involve compiling the OS from source.  Not a bad or
particularly difficult thing, but time-consuming.

For updating the ports: there's the well established method, which is to
update the ports tree using portsnap(8) and then rebuild any out of date
ports: use portmaster(8) for that.  (There are other alternatives to
both those programs, but I reckon those are the best to get started with.)

Then there is pkgng.  This is a binary package manager -- pretty much
the most apt-get like thing in FreeBSD at the moment.  However pkgng is
brand new,  currently the focus of much active development and still
considered pretty experimental.  pkgng itself works pretty well (even if
I say so myself) but what is lacking at the moment is the package
building infrastructure to provide it with a comprehensive standard
repository of all the software available from ports for all supported
architectures and OS versions.  If you're running one of the 9.x
releases on AMD64 or i386 and pkgbeta happens to contain exactly the
package set you want, then you're in luck.  If not, then you're back to
compiling all the ports yourself and setting up your own repo.

Last, and really not recommended at all, you could use the existing
pkg_tools binary packages. This, however, is a trap for the newbies and
leads to much wailing and gnashing of teeth.  Especially if you try and
mix stuff you compiled yourself and the pre-compiled packages.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.
PGP: http://www.infracaninophile.co.uk/pgpkey




signature.asc
Description: OpenPGP digital signature


[SOLVED] Re: Chesar

2012-10-25 Thread Andrea Venturoli

On 10/08/12 12:43, Andrea Venturoli wrote:

On 09/22/12 17:43, Andrea Venturoli wrote:


I'm using tomcat-6.0.35 and openjdk6-b24_4, if that helps.


I'll try openjdk either with tomcat6 or 7.


Hi Michale.
I finally got around trying openjdk, but that didn't work either.

I also tried within a jail (which I created from scratch), just to be
sure there was no conflict, but nothing changes.


Finally, I was able to run this using linux-sun-jdk.

Still, I'd like to get some insight on this, out of curiosity, if not 
anything else.


Is there some feature which is not supported with the native JDK?

 bye  Thanks
av.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


[SOLVED]Re: Graphiz broke because of swig

2012-10-25 Thread Joseph a Nagy Jr
On 10/14/12 12:11, Matthew Seaman wrote:
 On 14/10/2012 16:37, Joseph a Nagy Jr wrote:
 I was installing my system earlier (dual-boot Ubuntu 12.04LTS/FreeBSD
 9.0; Ubuntu was already present) and while installing subversion, one of
 the many co-dependencies of the many programs that were being installed
 was graphviz. Apparently I selected some support options relating to
 swig that broke the compile of graphiz (and therefore everything else).
 Is there a way to remedy this? I'd rather not reinstall the entire
 system. Thanks.
 
 # cd /usr/ports/graphics/graphviz
 # make config
 
 Adjust the swig related options, then reinstall graphviz using whatever
 your favourite ports management tools are.
 
   Cheers,
 
   Matthew
 

Thank you for your help (:
-- 
Yours in Christ,

Joseph A Nagy Jr
Whoever loves instruction loves knowledge, But he who hates correction
is stupid. -- Proverbs 12:1
Emails are not formal business letters, whatever businesses may want.
Original content CopyFree (F) under the OWL http://owl.apotheon.org


signature.asc
Description: OpenPGP digital signature


Re: FreeBSD based, standalone, print server

2012-10-25 Thread RW
On Thu, 25 Oct 2012 16:20:35 +0700 (ICT)
Olivier Nicole wrote:

 Hi,
 
 The network card on my HP 4300 is definitely dead. I don't want to
 invest in a new network card though, while I have a bunchg of old
 systems lying around.



Have you considered the cost of powering an additional computer?

If you plan on leaving it on most of the day, it's likely to be more
expensive than replacing the network card.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


rc.conf and loader.conf

2012-10-25 Thread Ashkan Rahmani
hi,
what is the best order of items in rc.conf and loader.conf?
actually items order is important?

Best regards,
Ashkan
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: rc.conf and loader.conf

2012-10-25 Thread Devin Teske

On Oct 25, 2012, at 5:17 PM, Ashkan Rahmani wrote:

 hi,
 what is the best order of items in rc.conf and loader.conf?
 actually items order is important?
 

order does not matter (unless you have duplicates -- in which case later 
assignments override previous ones).
-- 
Devin

_
The information contained in this message is proprietary and/or confidential. 
If you are not the intended recipient, please: (i) delete the message and all 
copies; (ii) do not disclose, distribute or use the message in any manner; and 
(iii) notify the sender immediately. In addition, please be aware that any 
message addressed to our domain is subject to archiving and review by persons 
other than the intended recipient. Thank you.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: rc.conf and loader.conf

2012-10-25 Thread Erich Dollansky
Hi,

On Fri, 26 Oct 2012 03:47:29 +0330
Ashkan Rahmani ashkan...@gmail.com wrote:

 hi,
 what is the best order of items in rc.conf and loader.conf?
 actually items order is important?
 
as you know already, the order does not matter at all. But there some
modules which cannot coexist. 

I prefer to build a custom kernel over loading modules. Of course, as
this does not always lead to a perfect solution, I still have some
kernel modules which are loaded at boot time or even after the system
is up and running via a script I start manually.

With other words, FreeBSD gives you all the freedom you need to get the
best solution for your needs.

Erich


 Best regards,
 Ashkan
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 freebsd-questions-unsubscr...@freebsd.org
 

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Full system update.

2012-10-25 Thread Alexandr Alexeev
The closest equivalent of `sudo apt-get dist-upgrade` in FreeBSD is
`pkg_upgrade -a`. This tool is a part of bsdadminscripts package. If
you also wanted to upgrade a kernel, look at freebsd-update.

But don't forget that in FreeBSD all is not so simple like in Debian.
You have to monitor /usr/ports/UPDATING file and release notes for the
new branches of FreeBSD.

Last, and really not recommended at all, you could use the existing
pkg_tools binary packages. This, however, is a trap for the newbies and
leads to much wailing and gnashing of teeth.  Especially if you try and
mix stuff you compiled yourself and the pre-compiled packages.

I've been successfully using binary packages (pkg_add -r ...) and
ports in the same time for ~3 years. I don't wail and my teeth are OK.
What am I doing wrong?

On Thu, Oct 25, 2012 at 11:44 PM, Matthew Seaman matt...@freebsd.org wrote:
 On 25/10/2012 20:19, Ashkan Rahmani wrote:
 How I can update system completely some thing like apt-get dist-upgrade in
 Debian?

 You can't.  With FreeBSD it's always a two step thing, because it has
 the distinction between the base system and ported software.

 You probably want freebsd-update(8) for updating the base system, as
 that's downloading pre-compiled updates, similar (in a very loose way)
 to apt-get.  The man page will answer most, if not all, or your
 questions.  There are other ways: see the Handbook for details, but
 these all involve compiling the OS from source.  Not a bad or
 particularly difficult thing, but time-consuming.

 For updating the ports: there's the well established method, which is to
 update the ports tree using portsnap(8) and then rebuild any out of date
 ports: use portmaster(8) for that.  (There are other alternatives to
 both those programs, but I reckon those are the best to get started with.)

 Then there is pkgng.  This is a binary package manager -- pretty much
 the most apt-get like thing in FreeBSD at the moment.  However pkgng is
 brand new,  currently the focus of much active development and still
 considered pretty experimental.  pkgng itself works pretty well (even if
 I say so myself) but what is lacking at the moment is the package
 building infrastructure to provide it with a comprehensive standard
 repository of all the software available from ports for all supported
 architectures and OS versions.  If you're running one of the 9.x
 releases on AMD64 or i386 and pkgbeta happens to contain exactly the
 package set you want, then you're in luck.  If not, then you're back to
 compiling all the ports yourself and setting up your own repo.

 Last, and really not recommended at all, you could use the existing
 pkg_tools binary packages. This, however, is a trap for the newbies and
 leads to much wailing and gnashing of teeth.  Especially if you try and
 mix stuff you compiled yourself and the pre-compiled packages.

 Cheers,

 Matthew

 --
 Dr Matthew J Seaman MA, D.Phil.
 PGP: http://www.infracaninophile.co.uk/pgpkey





-- 
Best regards,
Alex Alexeev
http://twitter.com/afiskon
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: rc.conf and loader.conf

2012-10-25 Thread Trond Endrestøl
On Fri, 26 Oct 2012 03:47+0330, Ashkan Rahmani wrote:

 hi,
 what is the best order of items in rc.conf and loader.conf?
 actually items order is important?

Order is not important, as explained by someone else on the list.

However, I like to keep the lines in the /etc/rc.conf file in the same 
order as they appear in the /etc/defaults/rc.conf file, and place 
local stuff (from /usr/local/etc/rc.d) in alphabetical order at the 
bottom of the file.

Just my $0.02.

-- 
+---++
| Vennlig hilsen,   | Best regards,  |
| Trond Endrestøl,  | Trond Endrestøl,   |
| IT-ansvarlig, | System administrator,  |
| Fagskolen Innlandet,  | Gjøvik Technical College, Norway,  |
| tlf. mob.   952 62 567,   | Cellular...: +47 952 62 567,   |
| sentralbord 61 14 54 00.  | Switchboard: +47 61 14 54 00.  |
+---++___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org