Re: sysinstall(8) bsdlabel a new disk

2010-11-01 Thread Matthias Apitz
El día Monday, November 01, 2010 a las 12:03:54AM +, Bruce Cran escribió:

 On Sunday 31 October 2010 20:02:58 Matthias Apitz wrote:
 
  How this is supposed to work using sysinstall(8)
  or should one use only bsdlabel(8) directly in such a case?
 
 sysinstall isn't really intended for post-install use: you should probably 
 learn how to use gpart instead - e.g.
 
 gpart create -s mbr /dev/disk
 gpart add -t freebsd /dev/disk
 gpart create -s bsd /dev/disk
 gpart add -t freebsd-ufs /dev/disks1
 
 newfs /dev/disks1a

Bruce,

Thanks for the reply. Is there any document explaining this in more
detail as the man page of gpart(8). The FreeBSD Handbook in chaptar 18.3
points still to sysinstall(8) and bsdlabel(8)...

Thanks

matthias

-- 
Matthias Apitz
t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211
e g...@unixarea.de - w http://www.unixarea.de/
___
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: Sendmail as client via smarthost and ssl

2010-11-01 Thread Christopher Illies

On 29/10/2010 14:49, Christopher Illies wrote:

 ...
 Ok, when I use telnet, this happens:
 telnet send.ki.se 587
 Trying 130.xxx.xxx.26...
 Connected to send.ki.se.
 Escape character is '^]'.
 220 KIMSX09.user.ki.se Microsoft ESMTP MAIL Service ready at Fri, 29 Oct 
 2010 14:55:51 +0200
 EHLO
 250-KIMSX09.user.ki.se Hello [136.xxx.xxx.214]
 250-SIZE 10485760
 250-PIPELINING
 250-DSN
 250-ENHANCEDSTATUSCODES
 250-STARTTLS
 250-AUTH GSSAPI NTLM  
 250-8BITMIME
 250-BINARYMIME
 250 CHUNKING
...

I'd guess from here that the microsoft mail server (i'd say exchange but
its part of IIS these days i think) is being awkward. GSSAPI is kerberos
related i believe, NTLM is a windows method from what i remember. I'm
not familiar with either i'm afraid.

Thanks for your suggestions, anyhow.  It might very well be that something
about the server's behaviour is awkward. fetchmail, which worked well
with the old server, stopped working after the mailserver was changed to
the current one. The settings were correct, but only after I installed a new
version of fetchmail, it worked again. It looks like that I will have to use 
webmail for now.

Christopher

___
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: Sendmail as client via smarthost and ssl

2010-11-01 Thread Christopher Illies
GSSAPI is the Generic Security Services Application Program Interface
and NTLM is NT Lan Manager -- they are both authentication systems
popular amongst various generations of Microsoft OSes.  GSSAPI is
actually based on that old Unix stalwart: Kerberos, and hence is also
fairly popular amongst non-Microsoft types.  They are some of the
authentication mechanisms that come as standard with SASL implementations.

Unless you know that you do need them, you almost certainly don't.  
...

Thanks your for the explanation. I was actually not sure whether or not
these options were needed. Authentication to the smarthost did not work,
and at one point I noticed the line:

...
250-AUTH GSSAPI NTLM
...

coming from the server. So I gave it a try - and it still did not work.

Christopher
___
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: sysinstall(8) bsdlabel a new disk

2010-11-01 Thread Bruce Cran
On Monday 01 November 2010 06:09:51 Matthias Apitz wrote:

 Thanks for the reply. Is there any document explaining this in more
 detail as the man page of gpart(8). The FreeBSD Handbook in chaptar 18.3
 points still to sysinstall(8) and bsdlabel(8)...

The documentation for gpart is still rather poor, and I'm not aware of any 
official documentation. I wrote a more detailed post in 
http://lists.freebsd.org/pipermail/freebsd-fs/2010-August/009176.html which 
explains the commands.

-- 
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: sysinstall(8) bsdlabel a new disk

2010-11-01 Thread Matthias Apitz
El día Monday, November 01, 2010 a las 12:03:54AM +, Bruce Cran escribió:

 On Sunday 31 October 2010 20:02:58 Matthias Apitz wrote:
 
  How this is supposed to work using sysinstall(8)
  or should one use only bsdlabel(8) directly in such a case?
 
 sysinstall isn't really intended for post-install use: you should probably 
 learn how to use gpart instead - e.g.
 
 gpart create -s mbr /dev/disk
 gpart add -t freebsd /dev/disk
 gpart create -s bsd /dev/disk
 gpart add -t freebsd-ufs /dev/disks1
 
 newfs /dev/disks1a

Combining the above and your posting in
http://lists.freebsd.org/pipermail/freebsd-fs/2010-August/009176.html
for my case I should have done:

# gpart create -s mbr ad4 # Init the disk with an MBR
# gpart add -t freebsd ad4# Create a BSD container
# gpart create -s bsd ad4s1   # Init with a BSD scheme
# gpart add -t freebsd-ufs  -s 1G ad4s1   # 1GB for /
# gpart add -t freebsd-swap -s 2G ad4s1   # 2GB for swap
# gpart add -t freebsd-ufs  -s 2G ad4s1   # 2GB for /var
# gpart add -t freebsd-ufs  -s 1G ad4s1   # 1GB for /tmp
# gpart add -t freebsd-ufs ad4s1  # all rest for /usr

Right?

I'm unsure about the 3rd command (gpart create -s bsd ad4s1), should it
use 'ad4' as you say above, or 'ad4s1' as in the August's post?

In any case, next time whene I have an empty disk to initialize, I will
play around with this. Thanks again

matthias

-- 
Matthias Apitz
t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211
e g...@unixarea.de - w http://www.unixarea.de/
___
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: sysinstall(8) bsdlabel a new disk

2010-11-01 Thread Bruce Cran
On Monday 01 November 2010 09:06:53 Matthias Apitz wrote:

 I'm unsure about the 3rd command (gpart create -s bsd ad4s1), should it
 use 'ad4' as you say above, or 'ad4s1' as in the August's post?

Since you're creating the bsd scheme inside the freebsd container, you would 
use ad4s1.

-- 
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: sysinstall(8) bsdlabel a new disk

2010-11-01 Thread Beat Siegenthaler
On 01.11.10 01:03, Bruce Cran wrote:
 On Sunday 31 October 2010 20:02:58 Matthias Apitz wrote:

 sysinstall isn't really intended for post-install use: you should probably 
 learn how to use gpart instead - e.g.

Maybe sade  (sysadmins disk editor) would help too... looks like
sysinstall's disk part..

Beat
___
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


Android usb tethering

2010-11-01 Thread freebsd-questions
 
Anyone tried the data tethering feature on the Android phones?

I've tried cdce and tried modifying cdce but no luck. I need to
regenerate the device list, but I haven't had any luck yet- simply
running make doesn't work, and I've read Makefiles and googled out the
wazoo.

I tried modifying the details off the openmoko site for their data
tether system (for FreeBSD8, mind), still no luck.

Apparently it uses the cdc_ether RNDIS according to my Fedora shit
media system. usbconfig concurs.

Any hints, suggestions on how to further my investigations and
getting this thing working? Anyone happen to be working on this?
Cheers

-
Message sent via Atmail Open - http://atmail.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


Newer Sambas and PAM

2010-11-01 Thread Andrea Venturoli

Hello.

I'd like to have every service on my systems authenticating via Samba 
(through PAM).


With older, now deprecated, 3.0.x version, I did this through 
security/pam_smb: no problems at all.


Since 3.0 was removed, I tried upgrading to 3.4 on one box: since then I 
am not able to authenticate anything through PAM against it.


Is anyone doing this? How?

 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


Re: Newer Sambas and PAM

2010-11-01 Thread Tim Daneliuk
On 11/1/2010 6:34 AM, Andrea Venturoli wrote:
 Hello.
 
 I'd like to have every service on my systems authenticating via Samba 
 (through PAM).
 
 With older, now deprecated, 3.0.x version, I did this through 
 security/pam_smb: no problems at all.
 
 Since 3.0 was removed, I tried upgrading to 3.4 on one box: since then I am 
 not able to authenticate anything through PAM against it.
 
 Is anyone doing this? How?
 
  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

Be aware that the samba password directory moved from /usr/local/etc/samba
to /usr/local/etc/samba34

-- 

Tim Daneliuk tun...@tundraware.com
PGP Key: http://www.tundraware.com/PGP/

___
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 Doesn't See Crucial C300 SSD on Marvell Controller

2010-11-01 Thread Jud
The old desktop gave up the ghost after many years of use (memory
problems plus a hard drive with an increasing number of bad sectors),
and I've just finished putting together a new one.  Win7 x64 and Ubuntu
amd64 are running on it, and I would dearly love to install FreeBSD.

Hardware is an ASUS Rampage III Formula motherboard with a Crucial C300
256GB SATA 6GB/s-capable SSD connected to one of the motherboard's two
internal SATA 6GB/s ports.  These two ports use a Marvell 88SE9128
onboard chip as the controller.  The controller is supposed to support
(hardware) RAID, but of course with one drive I am using it in normal
non-RAID mode.  (To say this particular controller chip has a
problematic reputation at the moment is a bit of an understatement. 
I've personally seen some weirdness, including the Crucial drive not
showing up in the BIOS boot priority menu a time or two.  Nevertheless,
as I said Winders and Ubuntu are running and I'm really looking forward
to having my favorite OS on my new box.)  I also have two Hitachi
Deskstar drives and a USB stick.

I tried the October amd64 DVD snapshot of -CURRENT from the snapshots
page, guessing it would have the latest hardware support.  The DVD boots
into the installer, but sysinstall only shows me the Deskstars and the
USB stick as options to install to.

Puttering around the lists trying to find something that has any chance
of being relevant, I ran across this excerpt from a post to the
freebsd-current list in October:


 In an attempt to get more information about this issue, I'd like to ask
 people on freebsd-current if they're using any Sandforce-based SSDs with
 FreeBSD. So far, it appears not a lot of people do, making it hard to
 debug this issue (http://www.freebsd.org/cgi/query-pr.cgi?pr=151608).
 
 MCP5x SATA are not the best controllers for compatibility testing. They
 have enough problems on their own, even without Sandforce.
 
 When you tested Marvell, have you tried to use mvs(4) driver?

No, I only tried to use ata(4). I tried using mvs(4) now, and that
works!

mvs0: Marvell 88SX6081 SATA controller port 0x4000-0x40ff mem
0xb010-0xb01f irq 11 at device 2.0 on pci1
mvs0: Gen-II, 8 3Gbps ports, Port Multiplier supported
mvsch0: Marvell SATA channel at channel 0 on mvs0
mvsch1: Marvell SATA channel at channel 1 on mvs0
mvsch2: Marvell SATA channel at channel 2 on mvs0
mvsch3: Marvell SATA channel at channel 3 on mvs0
mvsch4: Marvell SATA channel at channel 4 on mvs0
mvsch5: Marvell SATA channel at channel 5 on mvs0
mvsch6: Marvell SATA channel at channel 6 on mvs0
mvsch7: Marvell SATA channel at channel 7 on mvs0

ada0 at mvsch0 bus 0 scbus0 target 0 lun 0
ada0: OCZ-AGILITY2 3.5 1.11 ATA-8 SATA 2.x device
ada0: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 2048bytes)
ada0: Command Queueing enabled
ada0: 85857MB (175836528 512 byte sectors: 16H 63S/T 16383C)



I don't know enough to understand whether using mvs has a chance of
working for me.  If it might, how do I use mvs when attempting to
install?  (The DVD does have the fixit environment available.)

Thanks in advance for any helpful suggestions,

Jud
-- 
I'd take the awe of understanding over the awe of ignorance any day. - 
Douglas Adams

___
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: Newer Sambas and PAM

2010-11-01 Thread Andrea Venturoli

On 11/01/10 12:49, Tim Daneliuk wrote:


Be aware that the samba password directory moved from /usr/local/etc/samba
to /usr/local/etc/samba34


Thanks, I know, but that's not the problem.

pamsmbd doesn't read the password file directly; instead it asks smbd.
I discovered it uses LanMan passwords, which are now disabled by 
default, so I added lanman auth=yes to smb.conf: this was some step 
ahead, but still not enough.


I also tried pam_smbpass.so, which comes with Samba and reads the 
smbpasswd file directly: I expect it would know where it is, since it 
comes from the same port. No success here either.


This worries me a lot, since the working samba version was removed from 
the port tree...


 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


Managing ports on multiple jails

2010-11-01 Thread David N
Hi,

I have multiple jails using ezjails, approx 20.

I'm currently doing
portsnap fetch update
ezjail-admin update -P

then doing a portmaster -Bad on each jail, but its pretty time
consuming, esp when you have to peridically come back and check if its
done and do the next one.

I've tried building packages in one jail and sharing it to all the
other jails. make package-recursive
But sometimes a particular package won't install properly, then I'll
end up building from source again.

Does anyone have any other ways to quickly upgrade multiple jails or
even multiple boxes?

Regards
David N
___
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: Android usb tethering

2010-11-01 Thread Alejandro Imass
On Mon, Nov 1, 2010 at 6:54 AM,
freebsd-questi...@herveybayaustralia.com.au wrote:

        Anyone tried the data tethering feature on the Android phones?


Just my .02:

I'm not sure but I think there are several issues you have to
overcome, at least from my Linux experience:

Assuming you are using USB (Bluetooth is similar in some ways...):

1) When you connect the Android usb port to your PC you have a
multi-function usb port and you must select the correct option (or
choice as their are named in Linux), this means that you should be
able to either select the mass storage (sd card) or the tty. So you
first need to figure out how to do that. I use CyanogenMod that has
several usb debugging features but I haven't had a chance to
experiment with tethering yet. Anyway, you must use soemthing at the
usb layer level that handles the multi-function usb port.

2) I suspect that tethering works like most usb gsm modems in Linux,
simply by mounting ttyUSB0 and the using something like wvdial with
your provider's APN. So I think that once you figure out (1) you
should have a tty and you can simply dial #777 or whatever your phone
carrier specifies in their APN.



        I've tried cdce and tried modifying cdce but no luck. I need to
 regenerate the device list, but I haven't had any luck yet- simply
 running make doesn't work, and I've read Makefiles and googled out the
 wazoo.

        I tried modifying the details off the openmoko site for their data
 tether system (for FreeBSD8, mind), still no luck.

        Apparently it uses the cdc_ether RNDIS according to my Fedora shit
 media system. usbconfig concurs.

        Any hints, suggestions on how to further my investigations and
 getting this thing working? Anyone happen to be working on this?
        Cheers

 -
 Message sent via Atmail Open - http://atmail.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

___
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: Android usb tethering

2010-11-01 Thread Mark Atkinson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 11/01/2010 03:54, freebsd-questi...@herveybayaustralia.com.au wrote:
  
   Anyone tried the data tethering feature on the Android phones?

I have, it works.  Attaching via usb in the proper mode should attach
the umodem device which you can then use the published serial device
with the userland ppp(8).   Defining the correct section name for
tethering can be a little daunting however.

Google for things like 'telstra GSM ppp.conf' or such and then you just
have to convert any linux scripts you find into freebsd ppp.conf.   If
you're lucky you may find freebsd specific configurations.  Or, someone
on the list may have one to share.

- -Mark



-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.16 (FreeBSD)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAkzO0fEACgkQrDN5kXnx8ybfHwCffDLttNzAL8g1kUxhYbYv1/Z+
9fEAnjqr0IT7BU1+T2zSvQR82LnLp+js
=8Res
-END PGP SIGNATURE-

___
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


Apache2 and UTF-8

2010-11-01 Thread Leonardo M . Ramé
Hi, I would like to know if anyone faced the same issue as me. I have a web 
site encoded as UTF-8, and it looks correctly in Firefox, but not in Google 
Chrome.
My setup is FreeBsd 8.1 - x86_64, Apache 2.2

Thanks,Leonardo.




___
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: Apache2 and UTF-8

2010-11-01 Thread Leonardo M . Ramé
I found the solution, I had to iconv from iso-8859-1 to utf-8 my index.html


Leonardo M. Ramé

http://leonardorame.blogspot.com

--- On Mon, 11/1/10, Leonardo M. Ramé martinr...@yahoo.com wrote:

From: Leonardo M. Ramé martinr...@yahoo.com
Subject: Apache2 and UTF-8
To: freebsd-questions@freebsd.org
Date: Monday, November 1, 2010, 12:58 PM

Hi, I would like to know if anyone faced the same issue as me. I have a web 
site encoded as UTF-8, and it looks correctly in Firefox, but not in Google 
Chrome.
My setup is FreeBsd 8.1 - x86_64, Apache 2.2

Thanks,Leonardo.




___
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: sysinstall(8) bsdlabel a new disk

2010-11-01 Thread Devin Teske
On Sun, 2010-10-31 at 21:02 +0100, Matthias Apitz wrote:
 Hello,
 
 I installed a 9-CURRENT from an USB key to a hard disk of a laptop and
 encountered a strange problem: I booted the USB key to normal
 multiuser mode and wanted to wipe out the Windows on the disk, create
 one slice ad4s1 and partitions in it for /, /usr, /var, ... 
 
 I thought the simplest way would be just run sysinstall(8) and use the
 FDISK and BSDLABEL from the post-install dialog. FDISK went fine and in
 the BSDLABEL dialog I just used 'A' (auto defaults). On 'W' (write to
 disk) the sysinstall(8) complained about 'unable to open /dev/ad4s1a

sysinstall probes hardware when it starts. Therefore, after making
changes (specifically after writing) to the disk in the FDISK partition
editor, you need to Ctrl-C and Abort-out and relaunch sysinstall so that
it probes the new disk devices (ad4s1, ad4s2, etc.) before you can start
adding BSD disklabels (ad4s1a, ad4s1b, etc.) to the slice (aka
partition).

This has been an age-old problem (hmmm, perhaps get could some mad karma
for fixing it).

I imagine that sade has this problem too. Though, what annoys me about
sade is that the Ctrl-C menu doesn't work -- the Restart option does
nothing and though Continue works, I'm seething over the lack of an
Abort option (hmmm, perhaps should file a PR on that one).


  and
 so on for all the created partitions a...f. And also in the dev fs
 there were no entries created for /dev/ad4s1[a-f]. They apeared after a
 reboot of the system from the USB key.

Reboot should not be required. Just exit sysinstall(8) and go back into
it.

I've made it a habit to (when using sysinstall(8) as a userland utility
to format disks):

1. Launch sysinstall(8) (as root)
2. Main Menu
3. Custom
4. Partition
5. (if more than one disk is present in the system you'll be prompted to
select the disk... use spacebar to select disk, then TAB over to OK and
hit ENTER)
6. partition the disk in whatever manner required
7. Press `W' to write out the changes
8. (select which boot manager or None)
9. Press Ctrl-C after partition table is successfully written
10. Select `Abort' and hit ENTER

then

1. Relaunch sysinstall(8) (as root)
2. Main Menu
3. Custom
4. Partition
5. (if more than one disk is present in the system, use spacebar to
select disk, then TAB over to OK and hit ENTER)
NOTE: This is required to select which disk to operate on within the
disklabel editor
6. Press `Q' to quit-out of the FDISK partition editor (this time, we
don't want to make any changes, we just needed to indicate that this is
the disk that we're going to operate on within the disklabel editor)
7. (select which boot manager or None)
NOTE: This time around, since we're not going to write the partition
table again, it really doesn't matter what you select here
NOTE: you're now back at the custom menu from step 3/4.
8. Label
9. Now use the FreeBSD Disklabel Editor to allocate FreeBSD partitions
from the BIOS partition ad0s1 (or whatever your partition was named)
10. When finished, press `W' to write out changes, perform newfs
actions, and mount the devices as necessary

 
 How this is supposed to work using sysinstall(8)
 or should one use only bsdlabel(8) directly in such a case?
 

I'll be the first to admit that sysinstall(8) could be a little easier
to use in the userland. It should be noted that sade(8) (System
Administrator's Disk Editor) is no different -- sade, at this point at
least, is nothing more than the `Partition' and `Label' menus ripped
straight from sysinstall(8)'s `Custom' menu (with some minor other
differences, like the fact that the Ctrl-C menu doesn't work whereas it
does in sysinstall(8) -- really ought to file a PR on that one).


 Thanks
 
   matthias
-- 
Cheers,
Devin Teske

- CONTACT INFORMATION -
Business Solutions Consultant II
FIS - fisglobal.com
510-735-5650 Mobile
510-621-2038 Office
510-621-2020 Office Fax
909-477-4578 Home/Fax
devin.te...@fisglobal.com

- LEGAL DISCLAIMER -
This message  contains confidential  and proprietary  information
of the sender,  and is intended only for the person(s) to whom it
is addressed. Any use, distribution, copying or disclosure by any
other person  is strictly prohibited.  If you have  received this
message in error,  please notify  the e-mail sender  immediately,
and delete the original message without making a copy.

- END TRANSMISSION -

___
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


Bluray Driver support

2010-11-01 Thread Brower, Bob
  I've been working with an outside customer on 
development system running FreeBSD. Their intention is to incorporate a bluray 
drive into the system. Unfortunately the one's they claim have FreeBSD support 
are END of Life.  That was a Matshita BD-MLT SW-5584. Last week I sent a 
request to this email address and received the attached response.  I never 
received a followup so I can only assume it was deemed to be spam and so it 
received no followup. I don't feel the need to register and enter forums as the 
customer only wants us to configure a system that will operate with your 
version of Unix.  Please help direct this query to someone that can be of 
assistance. Or redirect me to an up to date driver listing for FreeBSD. I've 
spent numerous hours on the FreeBSD website and can't find anything other than 
some loosely worded support for some CD drives but not specifically DVD or 
Bluray.

Best Regards,

Bob Brower
AMD
Hardware Test Engineering
90 Central Street
Boxboro, MA 01719

P Please consider the environment before printing this e-mail

---BeginMessage---
Your mail to 'freebsd-questions' with the subject

Driver Query

Is being held until the list moderator can review it for approval.

The reason it is being held:

SpamAssassin identified this message as possible spam

Either the message will get posted to the list, or you will receive
notification of the moderator's decision.  If you would like to cancel
this posting, please visit the following URL:


http://lists.freebsd.org/mailman/confirm/freebsd-questions/0bb56fe8077cafae76cde9cb3dff43b00807337d


PLEASE NOTE!  If you would like to post freely to the list, please
subscribe first.  If you post from multiple addresses, you can
subscribe each address and go into the options page and select 'no
mail' for all but one address. This will allow you to post without
delay in the future.

Sorry for the hassle, but certain immature people made this necessary.


---End Message---
___
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

OpenGL 3.3 and 4.0/4.1 for FreeBSD?

2010-11-01 Thread C. P. Ghost
Hi,

I'd like to write some 3D programs with OpenGL 3.3 and OpenGL 4.0/4.1
API on FreeBSD, but I wonder which GPUs are supported at all, and which
are well supported with stable drivers (on FreeBSD/i386 and FreeBSD/amd64).

I know that MesaGL is still at OpenGL 2.1 level, so a proprietary closed
binary blob driver + libs are needed to get 3.3 and 4.0/4.1 APIs, right?
Do they have to be installed manually, or are there ports that are up to
date and regularly updated? How painful is the experience?

Which (GPU, driver) pair works best? I have no problems getting a new
GPU, as long as it is definitely well supported on i386 and on amd64.

Oh, while we're at it, I'm also interested in stuff like OpenCL and CUDA,
so I guess I'll probably need nVidia hardware more than AMD/ATI atm...

TIA,
-cpghost.

-- 
Cordula's Web. http://www.cordula.ws/
___
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


portsnap unable to locate mirrors

2010-11-01 Thread Jerry
I have been having problems with 'portsnap' for two days now. It
continually emits error messages. The latest being:

Looking up portsnap.FreeBSD.org mirrors... none found.
Fetching snapshot tag from portsnap.FreeBSD.org... failed.
No mirrors remaining, giving up.

Has anyone else experienced this phenomena?

-- 
Jerry ✌
freebsd.u...@seibercom.net

Disclaimer: off-list followups get on-list replies or get ignored.
Please do not ignore the Reply-To header.
__



signature.asc
Description: PGP signature


Re: portsnap unable to locate mirrors

2010-11-01 Thread Alexandre
On Mon, Nov 1, 2010 at 9:10 PM, Jerry freebsd.u...@seibercom.net wrote:

 I have been having problems with 'portsnap' for two days now. It
 continually emits error messages. The latest being:

 Looking up portsnap.FreeBSD.org mirrors... none found.
 Fetching snapshot tag from portsnap.FreeBSD.org... failed.
 No mirrors remaining, giving up.

 Has anyone else experienced this phenomena ?


I just use # portsnap fetch update without problem.
Maybe a Internet connection problem ?
___
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: Managing ports on multiple jails

2010-11-01 Thread Roland Smith
On Mon, Nov 01, 2010 at 11:47:16PM +1100, David N wrote:
 Hi,
 
 I have multiple jails using ezjails, approx 20.
snip
 Does anyone have any other ways to quickly upgrade multiple jails or
 even multiple boxes?

If you don't mind that all 20 boxes have the same software installed;

1)  Use one box or jail as the build box. Only this box/jail needs a ports
tree. The others don't need /usr/ports, nor /var/db/ports or /var/db/pkg.
2a) In case of real boxes, rsync /usr/local from the build box to the other
boxes. Then re-start updated ports.  
2b) In case of jails, have all but the build jail share (a read-only)
/usr/local via nullfs. Use rsync to copy /usr/local from the build jail to
the shared location of the other jails, then restart the upgraded ports on
all jails.

Except from /usr/local, you might need to update stuff in other parts of the
filesystem, depending on the port. Like /etc/rc.conf, or sometimes stuff in
/var. 

The usage of nullfs (with unionfs) is described on one of my web pages:
http://www.xs4all.nl/~rsmith/unix/misc.html
Look under the section Using nullfs and unionfs for the ports tree in a jail.

Hope this helps.

Roland
-- 
R.F.Smith   http://www.xs4all.nl/~rsmith/
[plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated]
pgp: 1A2B 477F 9970 BA3C 2914  B7CE 1277 EFB0 C321 A725 (KeyID: C321A725)


pgpoCCnKQwCMX.pgp
Description: PGP signature


Re: portsnap unable to locate mirrors

2010-11-01 Thread Lystic Emsen
From the machine you run portsnap on, try this:

nslookup portsnap2.freebsd.org

Let me know if that works.  It may be a DNS error.


On Mon, Nov 1, 2010 at 3:10 PM, Jerry freebsd.u...@seibercom.net wrote:

 I have been having problems with 'portsnap' for two days now. It
 continually emits error messages. The latest being:

 Looking up portsnap.FreeBSD.org mirrors... none found.
 Fetching snapshot tag from portsnap.FreeBSD.org... failed.
 No mirrors remaining, giving up.

 Has anyone else experienced this phenomena?

 --
 Jerry ✌
 freebsd.u...@seibercom.net

 Disclaimer: off-list followups get on-list replies or get ignored.
 Please do not ignore the Reply-To header.
 __




-- 
-- Lystic

http://UnixNews.net
___
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: Android usb tethering

2010-11-01 Thread Ivan Voras

On 11/01/10 15:42, Mark Atkinson wrote:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 11/01/2010 03:54, freebsd-questi...@herveybayaustralia.com.au wrote:


Anyone tried the data tethering feature on the Android phones?


I have, it works.  Attaching via usb in the proper mode should attach
the umodem device which you can then use the published serial device
with the userland ppp(8).   Defining the correct section name for
tethering can be a little daunting however.

Google for things like 'telstra GSM ppp.conf' or such and then you just
have to convert any linux scripts you find into freebsd ppp.conf.   If
you're lucky you may find freebsd specific configurations.  Or, someone
on the list may have one to share.


I believe it depends on the phone manufacturer. HTC phones apparently 
use some kind of Ethernet over USB which is well supported under 
Windows and Linux but not FreeBSD:


Nov  1 23:20:52 betelgeuse kernel: (da4:umass-sim1:1:0:0): lost device
Nov  1 23:20:52 betelgeuse kernel: (da4:umass-sim1:1:0:0): removing 
device entry
Nov  1 23:20:53 betelgeuse root: Unknown USB device: vendor 0x0bb4 
product 0x0ffe bus uhub5

Nov  1 23:20:53 betelgeuse kernel: ugen4.4: HTC at usbus4

In the above messages, the kernel detaches the storage device (umass) 
and tries to attach the new device, which doesn't have a driver so it's 
attached as ugen - generic USB.



___
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: Android usb tethering

2010-11-01 Thread Alejandro Imass
On Mon, Nov 1, 2010 at 6:25 PM, Ivan Voras ivo...@freebsd.org wrote:
 On 11/01/10 15:42, Mark Atkinson wrote:

 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

[...]

 In the above messages, the kernel detaches the storage device (umass) and
 tries to attach the new device, which doesn't have a driver so it's attached
 as ugen - generic USB.


Yes. One has to remember that USB is just the bus just like pci,
microchannel, etc. Even though you have access to the device on the
bus you still need a driver for that specific ethernet chip your
kernel. This is analogous to having a video card on the pci bus, you
still need for the kernel to drive the specific chipset of the card
regardless if it can see it on the bus.

I have an HTC Nexus One so I may fiddle with this and see if I can
help some more here. I am wishful that at least we can get a tty just
like other gsm modems and from there it's pretty straight forward
using wvdial or alike. If it's only the Ethernet over usb like you
mention, then the chipset driver would have to be translated/ported to
the FBSD kernel, if it's not already there ?




 ___
 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


problems installing php (php5-spl) with portmaster

2010-11-01 Thread Tom Worster
portmaster is looping on devel/php5-spl. it seems as though php5-spl depends
on itself. the excerpt below shows two cycles of the recursion. the list 
php5-spl-5.2.11_1  php5-spl-5.2.11_1  gets one longer on each
interation.

any ideas how to fix this?

thanks
tom


=== Port directory: /usr/ports/devel/php5-spl

=== Gathering dependency list for devel/php5-spl from ports
=== Starting dependency check
=== Checking dependency: devel/autoconf268
=== Checking dependency: lang/php5

=== The dependency for lang/php5
   seems to be handled by php5-pcre-5.2.11_1


=== The dependency for lang/php5
   seems to be handled by php5-spl-5.2.11_1

=== Launching child to update php5-spl-5.2.11_1 to php5-spl-5.3.3_2
pear-1.9.0  php5-spl-5.2.11_1  php5-spl-5.2.11_1 
php5-spl-5.2.11_1  php5-spl-5.2.11_1  php5-spl-5.2.11_1 
php5-spl-5.2.11_1  php5-spl-5.2.11_1  php5-spl-5.2.11_1 
php5-spl-5.2.11_1  php5-spl-5.2.11_1  php5-spl-5.2.11_1

=== Port directory: /usr/ports/devel/php5-spl

=== Gathering dependency list for devel/php5-spl from ports
=== Starting dependency check
=== Checking dependency: devel/autoconf268
=== Checking dependency: lang/php5

=== The dependency for lang/php5
   seems to be handled by php5-pcre-5.2.11_1


=== The dependency for lang/php5
   seems to be handled by php5-spl-5.2.11_1

=== Launching child to update php5-spl-5.2.11_1 to php5-spl-5.3.3_2
pear-1.9.0  php5-spl-5.2.11_1  php5-spl-5.2.11_1 
php5-spl-5.2.11_1  php5-spl-5.2.11_1  php5-spl-5.2.11_1 
php5-spl-5.2.11_1  php5-spl-5.2.11_1  php5-spl-5.2.11_1 
php5-spl-5.2.11_1  php5-spl-5.2.11_1  php5-spl-5.2.11_1 
php5-spl-5.2.11_1


___
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 Doesn't See Crucial C300 SSD on Marvell Controller

2010-11-01 Thread Dan Olson



On 11/1/2010 7:12 AM, Jud wrote:

The old desktop gave up the ghost after many years of use (memory
problems plus a hard drive with an increasing number of bad sectors),
and I've just finished putting together a new one.  Win7 x64 and Ubuntu
amd64 are running on it, and I would dearly love to install FreeBSD.

Hardware is an ASUS Rampage III Formula motherboard with a Crucial C300
256GB SATA 6GB/s-capable SSD connected to one of the motherboard's two
internal SATA 6GB/s ports.  These two ports use a Marvell 88SE9128
onboard chip as the controller.  The controller is supposed to support
(hardware) RAID, but of course with one drive I am using it in normal
non-RAID mode.  (To say this particular controller chip has a
problematic reputation at the moment is a bit of an understatement.
I've personally seen some weirdness, including the Crucial drive not
showing up in the BIOS boot priority menu a time or two.  Nevertheless,
as I said Winders and Ubuntu are running and I'm really looking forward
to having my favorite OS on my new box.)  I also have two Hitachi
Deskstar drives and a USB stick.

I tried the October amd64 DVD snapshot of -CURRENT from the snapshots
page, guessing it would have the latest hardware support.  The DVD boots
into the installer, but sysinstall only shows me the Deskstars and the
USB stick as options to install to.

Puttering around the lists trying to find something that has any chance
of being relevant, I ran across this excerpt from a post to the
freebsd-current list in October:



In an attempt to get more information about this issue, I'd like to ask
people on freebsd-current if they're using any Sandforce-based SSDs with
FreeBSD. So far, it appears not a lot of people do, making it hard to
debug this issue (http://www.freebsd.org/cgi/query-pr.cgi?pr=151608).


MCP5x SATA are not the best controllers for compatibility testing. They
have enough problems on their own, even without Sandforce.

When you tested Marvell, have you tried to use mvs(4) driver?


No, I only tried to use ata(4). I tried using mvs(4) now, and that
works!

mvs0:Marvell 88SX6081 SATA controller  port 0x4000-0x40ff mem
0xb010-0xb01f irq 11 at device 2.0 on pci1
mvs0: Gen-II, 8 3Gbps ports, Port Multiplier supported
mvsch0:Marvell SATA channel  at channel 0 on mvs0
mvsch1:Marvell SATA channel  at channel 1 on mvs0
mvsch2:Marvell SATA channel  at channel 2 on mvs0
mvsch3:Marvell SATA channel  at channel 3 on mvs0
mvsch4:Marvell SATA channel  at channel 4 on mvs0
mvsch5:Marvell SATA channel  at channel 5 on mvs0
mvsch6:Marvell SATA channel  at channel 6 on mvs0
mvsch7:Marvell SATA channel  at channel 7 on mvs0

ada0 at mvsch0 bus 0 scbus0 target 0 lun 0
ada0:OCZ-AGILITY2 3.5 1.11  ATA-8 SATA 2.x device
ada0: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 2048bytes)
ada0: Command Queueing enabled
ada0: 85857MB (175836528 512 byte sectors: 16H 63S/T 16383C)



I don't know enough to understand whether using mvs has a chance of
working for me.  If it might, how do I use mvs when attempting to
install?  (The DVD does have the fixit environment available.)

Thanks in advance for any helpful suggestions,

Jud



Try the ahci driver or lower the speed to 3Gbps and see if that works.

Dan
___
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: sysinstall(8) bsdlabel a new disk

2010-11-01 Thread Bruce Cran
On Mon, 01 Nov 2010 09:04:15 -0700
Devin Teske dte...@vicor.com wrote:

 I'll be the first to admit that sysinstall(8) could be a little easier
 to use in the userland. It should be noted that sade(8) (System
 Administrator's Disk Editor) is no different -- sade, at this point at
 least, is nothing more than the `Partition' and `Label' menus ripped
 straight from sysinstall(8)'s `Custom' menu (with some minor other
 differences, like the fact that the Ctrl-C menu doesn't work whereas
 it does in sysinstall(8) -- really ought to file a PR on that one).

There's a new version of sade being worked on by ae@ in svn /user/ae
that fixes lots of the problems. With pc-sysinstall getting all the
attention I doubt sysinstall will have any more work done on it.

-- 
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: sysinstall(8) bsdlabel a new disk

2010-11-01 Thread Devin Teske
On Mon, 2010-11-01 at 23:48 +, Bruce Cran wrote:
 On Mon, 01 Nov 2010 09:04:15 -0700
 Devin Teske dte...@vicor.com wrote:
 
  I'll be the first to admit that sysinstall(8) could be a little easier
  to use in the userland. It should be noted that sade(8) (System
  Administrator's Disk Editor) is no different -- sade, at this point at
  least, is nothing more than the `Partition' and `Label' menus ripped
  straight from sysinstall(8)'s `Custom' menu (with some minor other
  differences, like the fact that the Ctrl-C menu doesn't work whereas
  it does in sysinstall(8) -- really ought to file a PR on that one).
 
 There's a new version of sade being worked on by ae@ in svn /user/ae
 that fixes lots of the problems.

Excellent! I'll have to check it out. (should we then save our PR's for
ae and neglect any problems in sade? I wonder what `ae' stands for,
alas, edamame?!, I kid).


 With pc-sysinstall getting all the
 attention I doubt sysinstall will have any more work done on it.

I'm _very_ pleased to see from...
http://www.youtube.com/watch?v=Z0yOuDelXUU
...that pc-sysinstall will support scripted installation using a syntax
similar to sysinstall's own install.cfg.

I thought I was going to have to lose sleep over this.


-- 
Cheers,
Devin Teske

- CONTACT INFORMATION -
Business Solutions Consultant II
FIS - fisglobal.com
510-735-5650 Mobile
510-621-2038 Office
510-621-2020 Office Fax
909-477-4578 Home/Fax
devin.te...@fisglobal.com

- LEGAL DISCLAIMER -
This message  contains confidential  and proprietary  information
of the sender,  and is intended only for the person(s) to whom it
is addressed. Any use, distribution, copying or disclosure by any
other person  is strictly prohibited.  If you have  received this
message in error,  please notify  the e-mail sender  immediately,
and delete the original message without making a copy.

- END TRANSMISSION -

___
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: problems installing php (php5-spl) with portmaster

2010-11-01 Thread Lystic Emsen
I just upgrade my php5 port to php5.3 and ran into a similar problem with
portupgrade.  However, I just unregistered php5-spl, because its no longer
necessary.  I believe php5-spl and php5-pcre are now integrated into PHP-5.3
by default.

I also ran into a couple of other problems.  These notes may be of some help
later.

http://www.unixnews.net/2010/10/error-with-apr-parameter-is-incorrect.html
http://www.unixnews.net/2010/10/pcre-error-with-php5-filter-and-php5.html

-Lystic

On Mon, Nov 1, 2010 at 5:52 PM, Tom Worster f...@thefsb.org wrote:

 portmaster is looping on devel/php5-spl. it seems as though php5-spl
 depends
 on itself. the excerpt below shows two cycles of the recursion. the list
 
 php5-spl-5.2.11_1  php5-spl-5.2.11_1  gets one longer on each
 interation.

 any ideas how to fix this?

 thanks
 tom


 === Port directory: /usr/ports/devel/php5-spl

 === Gathering dependency list for devel/php5-spl from ports
 === Starting dependency check
 === Checking dependency: devel/autoconf268
 === Checking dependency: lang/php5

 === The dependency for lang/php5
   seems to be handled by php5-pcre-5.2.11_1


 === The dependency for lang/php5
   seems to be handled by php5-spl-5.2.11_1

 === Launching child to update php5-spl-5.2.11_1 to php5-spl-5.3.3_2
pear-1.9.0  php5-spl-5.2.11_1  php5-spl-5.2.11_1 
 php5-spl-5.2.11_1  php5-spl-5.2.11_1  php5-spl-5.2.11_1 
 php5-spl-5.2.11_1  php5-spl-5.2.11_1  php5-spl-5.2.11_1 
 php5-spl-5.2.11_1  php5-spl-5.2.11_1  php5-spl-5.2.11_1

 === Port directory: /usr/ports/devel/php5-spl

 === Gathering dependency list for devel/php5-spl from ports
 === Starting dependency check
 === Checking dependency: devel/autoconf268
 === Checking dependency: lang/php5

 === The dependency for lang/php5
   seems to be handled by php5-pcre-5.2.11_1


 === The dependency for lang/php5
   seems to be handled by php5-spl-5.2.11_1

 === Launching child to update php5-spl-5.2.11_1 to php5-spl-5.3.3_2
pear-1.9.0  php5-spl-5.2.11_1  php5-spl-5.2.11_1 
 php5-spl-5.2.11_1  php5-spl-5.2.11_1  php5-spl-5.2.11_1 
 php5-spl-5.2.11_1  php5-spl-5.2.11_1  php5-spl-5.2.11_1 
 php5-spl-5.2.11_1  php5-spl-5.2.11_1  php5-spl-5.2.11_1 
 php5-spl-5.2.11_1


 ___
 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




-- 
-- Lystic

http://UnixNews.net
___
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: portsnap unable to locate mirrors

2010-11-01 Thread Jerry
On Mon, 1 Nov 2010 15:29:14 -0500
Lystic Emsen lyst...@gmail.com articulated:

 On Mon, Nov 1, 2010 at 3:10 PM, Jerry freebsd.u...@seibercom.net
 wrote:
 
  I have been having problems with 'portsnap' for two days now. It
  continually emits error messages. The latest being:
 
  Looking up portsnap.FreeBSD.org mirrors... none found.
  Fetching snapshot tag from portsnap.FreeBSD.org... failed.
  No mirrors remaining, giving up.
 
  Has anyone else experienced this phenomena?
 
 From the machine you run portsnap on, try this:
 
 nslookup portsnap2.freebsd.org
 
 Let me know if that works.  It may be a DNS error.

Well, some minor progress. This is the latest output:

Looking up portsnap.FreeBSD.org mirrors... 5 mirrors found.
Fetching snapshot tag from portsnap5.FreeBSD.org... failed.
Fetching snapshot tag from portsnap6.FreeBSD.org... failed.
Fetching snapshot tag from portsnap1.FreeBSD.org... done.
Fetching snapshot metadata... fetch: 
http://portsnap1.FreeBSD.org/t/c4523276897a50ff0ca27add61344a4e96cc19a5f7e0bc8f8e17d138819e19a2:
 No address record
sha256: c4523276897a50ff0ca27add61344a4e96cc19a5f7e0bc8f8e17d138819e19a2: No 
such file or directory
[: !=: unexpected operator
mv: rename c4523276897a50ff0ca27add61344a4e96cc19a5f7e0bc8f8e17d138819e19a2 to 
tINDEX.new: No such file or directory
done.
grep: tINDEX.new: No such file or directory
look: tINDEX.new: No such file or directory

Portsnap metadata appears bogus.
Cowardly refusing to proceed any further.

-- 
Jerry ✌
freebsd.u...@seibercom.net

Disclaimer: off-list followups get on-list replies or get ignored.
Please do not ignore the Reply-To header.
__
___
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: Android usb tethering

2010-11-01 Thread freebsd-questions


On Tue  2/11/10 10:11 AM , Alejandro Imass  wrote:On Mon, Nov 1, 2010
at 6:25 PM, Ivan Voras  wrote:
  On 11/01/10 15:42, Mark Atkinson wrote:
 
  -BEGIN PGP SIGNED MESSAGE-
  Hash: SHA1
 [...]
  In the above messages, the kernel detaches the storage device
(umass) and
  tries to attach the new device, which doesn't have a driver so it's
attached
  as ugen - generic USB.
 
 Yes. One has to remember that USB is just the bus just like pci,
 microchannel, etc. Even though you have access to the device on the
 bus you still need a driver for that specific ethernet chip your
 kernel. This is analogous to having a video card on the pci bus, you
 still need for the kernel to drive the specific chipset of the card
 regardless if it can see it on the bus.
 I have an HTC Nexus One so I may fiddle with this and see if I can
 help some more here. I am wishful that at least we can get a tty just
 like other gsm modems and from there it's pretty straight forward
 using wvdial or alike. If it's only the Ethernet over usb like you
 mention, then the chipset driver would have to be translated/ported
to
 the FBSD kernel, if it's not already there ?
Ok. But I will clarify here:
The HTC Android systems uses an Internet Sharing feature-
essentially Google has coded in routing/nat system into the base OS
(probably moding the leftover code already in the linux base), and is
trying to allow similar using bluetooth and wifi at a later date as
well. The RNDIS is a M$ system that allows sharing anything over USB
(network, files, etc- but all essentially operated as network anyway),
something they've been playing with for some years- I was looking for
an A-A USB cable since around 2003 or so to quickly transfer files
when needed. Apparently M$ opened the specs a year or two ago and
everyone's jumped on to use it. So where Google started was to start
allowing the use of the router/nat via RNDIS USB - somehow this was
easier than allowing bluetooth or wifi (probably security and
available hardware features).
So yes, apparently the phone hooks up as a usb mass storage device,
uploads a file to the computer, and disconnects and becomes a network
device. Here is the output from linux:
usb 2-2.2: new high speed USB device using ehci_hcd and address 4
usb 2-2.2: configuration #1 chosen from 1 choice
scsi9 : SCSI emulation for USB Mass Storage devices
usb-storage: device found at 4
usb-storage: waiting for device to settle before scanning
usb 2-2.2: New USB device found, idVendor=0bb4, idProduct=0ff9
usb 2-2.2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb 2-2.2: Product: Android Phone
usb 2-2.2: Manufacturer: HTC
usb 2-2.2: SerialNumber: SH07TNX00726
usb-storage: device scan complete
scsi 9:0:0:0: Direct-Access HTC  Android Phone0100 PQ: 0
ANSI: 2
sd 9:0:0:0: [sdf] Attached SCSI removable disk
sd 9:0:0:0: Attached scsi generic sg6 type 0
usb 2-2.2: USB disconnect, address 4
usb 2-2.2: new high speed USB device using ehci_hcd and address 5
usb 2-2.2: configuration #1 chosen from 1 choice
usb 2-2.2: New USB device found, idVendor=0bb4, idProduct=0ffe
usb 2-2.2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb 2-2.2: Product: Android Phone
usb 2-2.2: Manufacturer: HTC
usb 2-2.2: SerialNumber: SH07TNX00726
usbcore: registered new interface driver cdc_ether
usb0: register 'rndis_host' at usb-:00:04.1-2.2, RNDIS device,
ae:f6:3d:da:20:39
usbcore: registered new interface driver rndis_host
usbcore: registered new interface driver rndis_wlan
usb0: no IPv6 routers present
usb 2-2.2: USB disconnect, address 5
usb0: unregister 'rndis_host' usb-:00:04.1-2.2, RNDIS device

So. What would be my next step to make this work? OpenMoko have
something similar and I tried moding some of their scripts (they've
made theirs work with ALL OS- not just linux and Winblow$! Take heed
manufacturers!) but it didn't mesh on the Android. I still end up with
a generic host.
As I mentioned, I tried modifying the cdce driver and the device list
but that didn't help either, so when I moded the scripts and devd.conf
I figured that was the missing piece of my puzzle.
I'd actually pay someone to do this, but I do need to figure this out
for myself anyway so I'm diving in deep and going to keep on
struggling till I get it. I need it figured out before the year's end
so I'm not going to sit on my laurels :) That, and a usb mass storage
device emulator to trick a dumb digital photo frame
 
  ___
   mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions [3]
target=_blankhttp://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to 
 
 ___
  mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions [6]
target=_blankhttp://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to 
-
Message sent via Atmail Open - 

Re: problems installing php (php5-spl) with portmaster

2010-11-01 Thread John Levine

portupgrade.  However, I just unregistered php5-spl, because its no longer
necessary.  I believe php5-spl and php5-pcre are now integrated into PHP-5.3
by default.

Yes and no.  pcre depends on the separate pcre package, and php will fail
in baffling ways is your pcre is too old.

The maintainer of the php port is aware of this but has declined both
to make a one-line change to the Makefile to use the bundled pcre
package, or an alternate one-line change to document the version
dependency.

R's,
John
___
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


ZFS: can not import pool after export

2010-11-01 Thread Mikle Krutov
Hello, list!
With latest 8-STABLE I can not import pool after exporting:
sysctls for kern version:
kern.osrelease: 8.1-STABLE
kern.osrevision: 199506
kern.osreldate: 801500

trying to import just-created pool:
[neko][1]%sudo zpool create test /dev/gpt/test
[neko][0]%sudo zpool list
NAME   SIZE   USED  AVAILCAP  HEALTH  ALTROOT
test   472M  79.5K   472M 0%  ONLINE  -
[neko][0]%sudo zpool export test
[neko][0]%sudo zpool import test
cannot import 'test': pool is formatted using a newer ZFS version
[neko][1]%


WTF happens? How do i avoid that?
-- 

Old mercenaries never die. They go to hell and regroup.

With best regards, Mikle Krutov, Bercut ltd. Technical Support department
___
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


is there a utillity...?

2010-11-01 Thread Gary Kline
People, is there a utility to give me the rate of bps that I am
_supposed_ to be getting from my telco DSL?

tia,

gary

-- 
 Gary Kline  kl...@thought.org  http://www.thought.org  Public Service Unix
The 7.90a release of Jottings: http://jottings.thought.org/index.php
An Open Letter to Stephen Hawking http://www.thought.org/#oL

___
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: is there a utillity...?

2010-11-01 Thread Antonio Olivares
On Mon, Nov 1, 2010 at 10:42 PM, Gary Kline kl...@thought.org wrote:
 People, is there a utility to give me the rate of bps that I am
 _supposed_ to be getting from my telco DSL?

 tia,

 gary

 --
  Gary Kline  kl...@thought.org  http://www.thought.org  Public Service Unix
    The 7.90a release of Jottings: http://jottings.thought.org/index.php
                An Open Letter to Stephen Hawking http://www.thought.org/#oL

 ___
 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


Try iperf?

http://www.freebsdsoftware.org/benchmarks/iperf.html

Used it to test speed on modem connection.

Hope this helps.

Regards,

Antonio
___
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: is there a utillity...?

2010-11-01 Thread Ryan Coleman
Gary,

Keep in mind that their rate and your rate WILL be different. At least a 10% 
difference, due to TCP overhead. So make sure you test on already compressed 
data (like an MP3 stream). The more compressed the data the less likely it will 
go through protocol compression en route.

--
Ryan
On Nov 1, 2010, at 10:48 PM, Antonio Olivares wrote:

 On Mon, Nov 1, 2010 at 10:42 PM, Gary Kline kl...@thought.org wrote:
 People, is there a utility to give me the rate of bps that I am
 _supposed_ to be getting from my telco DSL?
 
 tia,
 
 gary
 
 --
  Gary Kline  kl...@thought.org  http://www.thought.org  Public Service Unix
The 7.90a release of Jottings: http://jottings.thought.org/index.php
An Open Letter to Stephen Hawking http://www.thought.org/#oL
 
 ___
 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
 
 
 Try iperf?
 
 http://www.freebsdsoftware.org/benchmarks/iperf.html
 
 Used it to test speed on modem connection.
 
 Hope this helps.
 
 Regards,
 
 Antonio
 ___
 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: is there a utillity...?

2010-11-01 Thread justin v
On Mon, 01 Nov 2010 20:48:01 -0700, Antonio Olivares  
olivares14...@gmail.com wrote:



On Mon, Nov 1, 2010 at 10:42 PM, Gary Kline kl...@thought.org wrote:

People, is there a utility to give me the rate of bps that I am
_supposed_ to be getting from my telco DSL?

tia,

gary

--
 Gary Kline  kl...@thought.org  http://www.thought.org  Public Service  
Unix

   The 7.90a release of Jottings: http://jottings.thought.org/index.php
   An Open Letter to Stephen Hawking  
http://www.thought.org/#oL


___
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




Try iperf?

http://www.freebsdsoftware.org/benchmarks/iperf.html

Used it to test speed on modem connection.

Hope this helps.

Regards,

Antonio
___
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





--
Using Opera's revolutionary email client: http://www.opera.com/mail/






Dont you need a Client when using IPERF??

If you want to see your current in/out in realtime try:

netstat -I int -w 1

To see my throughput I do:

netstat -I wlan0 -w 1

Hope this helps.
___
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: sysinstall(8) bsdlabel a new disk

2010-11-01 Thread perryh
Devin Teske dte...@vicor.com wrote:

 sysinstall probes hardware when it starts. Therefore, after making
 changes (specifically after writing) to the disk in the FDISK
 partition editor, you need to Ctrl-C and Abort-out and relaunch
 sysinstall so that it probes the new disk devices (ad4s1, ad4s2,
 etc.) before you can start adding BSD disklabels (ad4s1a, ad4s1b,
 etc.) to the slice (aka partition).

 This has been an age-old problem (hmmm, perhaps get could some mad
 karma for fixing it).

At least in 8.1, there is a sysinstall operation somewhere to
re-probe devices, presumably to cover exactly this sort of
situation.  Does it not work?
___
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