Re: why is ports web page so far out of date

2013-06-05 Thread Waitman Gobble
On Tue, Jun 4, 2013 at 7:19 AM, Mark Felder f...@feld.me wrote:
 On Tue, 04 Jun 2013 07:08:15 -0500, Fbsd8 fb...@a1poweruser.com wrote:

 I can not get current version of the ports system.
 The ports web page http://www.freebsd.org/ports/
 is almost 2 years out of date. Says the port I am interested in is at 1.7
 version when just 2 weeks ago it was at 2.2. Portsnap is also messed up
 showing the 1.7 version.



 I'm not sure what the status of this system is, but I'd recommend you use
 the official unofficial Freshports.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


If you must have a web based version, another option is DIY roll your
own ports index based on your own local ports tree. At least you can
set it up how you want.

a simple quick-together script running on my computer:
https://dx.burplex.com/FreeBSD-ports/index.php

there's a github link at the bottom of the page you can hack on if you wanna.

cool thing is you can easily cross-reference all the corresponding
gnats PR files in your mailbox to the generated port page, i'll add
that bit tomorrow.


--
Waitman Gobble
San Jose California USA
510-830-7975
___
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


Updating broken link from your page: http://freebsd.isc.org/fr/gallery/cgallery.html

2013-06-05 Thread Lurie Austinser
Hello,

I have bumped into your site while seeking for software and found your
website very interesting :)

Just a quick note, *http://www.neosoft.com/** *is no longer active, and
you are linking to it from page -
http://freebsd.isc.org/fr/gallery/cgallery.html

I was wondering if you don't mind updating the link to the updated website
en.DownloadAstro.com http://en.downloadastro.com/  - A great download
site with more than 300K software and games, including professional reviews
and user ratings.

We are now in a process of updating the links in websites all around the
world and I will appreciate your cooperation.

I am sure your *users will find it useful.*

Thanks,
Lurie
___
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: System Calls that do DNS

2013-06-05 Thread Mark Felder

On Mon, 03 Jun 2013 21:57:07 -0500, Doug Hardie bc...@lafn.org wrote:

I have an unusual situation.  A program is doing a DNS lookup and often  
the IP address has no reverse DNS entries.  As a result the program  
hangs for several timeouts.  The call is not being made directly in its  
code, but is occurring in a system call.  There are no specific calls to  
DNS, its something else doing it.  I have been trying to track down  
which system call is doing it, but without success so far.  I have tried  
syslog calls around each of the system calls I thought might be the  
culprit, but my guessing is not very good.  How can I identify the  
system call that is calling DNS?  If I can find it, I hopefully can find  
another way to do whatever it does that does not involve a reverse DNS  
lookup.





The system DNS lookups are handled by libc. Probably somewhere in the code  
here:


http://svnweb.freebsd.org/base/head/lib/libc/nameser/
___
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


poudriere keeps rebuilding apache22 on every run

2013-06-05 Thread Vincent Hoffman
I'm not certain if this is the best place to ask but I seem to be having
issues with apache22 and poudriere.

on every run I get

 Creating the reference jail... done
 Mounting system devices for 8amd64-default
 Mounting ports/packages/distfiles
 Mounting packages from: /usr/local/poudriere_data/packages/8amd64-default
 Mounting /var/db/ports from: /usr/local/etc/poudriere.d/8amd64-options
 Logs: 
/usr/local/poudriere_data/logs/bulk/8amd64-default/2013-06-05_12:55:43
 Appending to make.conf: /usr/local/etc/poudriere.d/8amd64-make.conf
/etc/resolv.conf - 
/usr/local/poudriere_data/build/8amd64-default/ref/etc/resolv.conf
 Starting jail 8amd64-default
 Calculating ports order and dependencies
 Sanity checking the repository
 Options changed, deleting: apache22-2.2.24.txz


the options were set a while back and havent changed.
root@bsdpkgbuild:~ # ls -la /usr/local/etc/poudriere.d/8amd64-options/apache22/
total 13
drwxr-xr-x2 root  wheel 3 May 21 17:44 .
drwxr-xr-x  241 root  wheel   242 Jun  4 22:41 ..
-rw-r--r--1 root  wheel  3191 May 21 17:44 options
root@bsdpkgbuild:~ # 

any suggestions? Its not a big problem but it means that apache and
everything that depends on it gets rebuild every time poudriere runs.

Vince
___
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: How to compile ipoib module manually?

2013-06-05 Thread John Baldwin
On Tuesday, June 04, 2013 5:18:46 am Alex Liptsin wrote:
 I commented on that lines, because I want to compile and load that modules 
manually.
 I had succeed to compile and load mlx4, mlx4ib and mlxen from /sys/modules:
 
 [root@h-qa-033 mlxen]# kldstat
 Id Refs AddressSize Name
 1   14 0x8020 13acbd8  kernel
 21 0x81612000 21e5 if_mos.ko
 33 0x81615000 124ebmlx4.ko
 41 0x81628000 e225 mlx4ib.ko
 51 0x81637000 ec60 mlxen.ko
 
 The problem is that IPOIB module is missing in /sys/modules.
 
 1.  Where can I find it?
 
 2.  How can I compile ipoib support?

You will have to create one.  You should be able to use the existing module 
Makefiles as a guide.

-- 
John Baldwin
___
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: poudriere keeps rebuilding apache22 on every run

2013-06-05 Thread Arthur Chance

On 06/05/13 16:06, Vincent Hoffman wrote:

I'm not certain if this is the best place to ask but I seem to be having
issues with apache22 and poudriere.

on every run I get

 Creating the reference jail... done
 Mounting system devices for 8amd64-default
 Mounting ports/packages/distfiles
 Mounting packages from: /usr/local/poudriere_data/packages/8amd64-default
 Mounting /var/db/ports from: /usr/local/etc/poudriere.d/8amd64-options
 Logs: 
/usr/local/poudriere_data/logs/bulk/8amd64-default/2013-06-05_12:55:43
 Appending to make.conf: /usr/local/etc/poudriere.d/8amd64-make.conf
/etc/resolv.conf - 
/usr/local/poudriere_data/build/8amd64-default/ref/etc/resolv.conf
 Starting jail 8amd64-default
 Calculating ports order and dependencies
 Sanity checking the repository
 Options changed, deleting: apache22-2.2.24.txz


the options were set a while back and havent changed.
root@bsdpkgbuild:~ # ls -la /usr/local/etc/poudriere.d/8amd64-options/apache22/
total 13
drwxr-xr-x2 root  wheel 3 May 21 17:44 .
drwxr-xr-x  241 root  wheel   242 Jun  4 22:41 ..
-rw-r--r--1 root  wheel  3191 May 21 17:44 options
root@bsdpkgbuild:~ #

any suggestions? Its not a big problem but it means that apache and
everything that depends on it gets rebuild every time poudriere runs.


I get similar problems, but it's often a random subset of packages. 
Usually the ones that take a long time to build :-(


--
In the dungeons of Mordor, Sauron bred Orcs with LOLcats to create a
new race of servants. Called Uruk-Oh-Hai in the Black Speech, they
were cruel and delighted in torturing spelling and grammar.

_Lord of the Rings 2.0, the Web Edition_
___
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


USB can't mount msdosfs drive

2013-06-05 Thread Joseph Mays
Tried several iterations, though it’s clearly a fat32 formatted USB drive. 
Shown  below are the results of fdisk and the mount_msdosfs command.


root@warehouse:/root # fdisk /dev/da2
*** Working on device /dev/da2 ***
parameters extracted from in-core disklabel are:
cylinders=1897 heads=255 sectors/track=63 (16065 blks/cyl)

Figures below won't work with BIOS for partitions not in cyl 1
parameters to be used for BIOS calculations are:
cylinders=1897 heads=255 sectors/track=63 (16065 blks/cyl)

Media sector size is 512
Warning: BIOS sector numbering starts with sector 1
Information from DOS bootblock is:
The data for partition 1 is:
sysid 12 (0x0c),(DOS or Windows 95 with 32 bit FAT (LBA))
start 8064, size 30473088 (14879 Meg), flag 80 (active)
beg: cyl 1/ head 0/ sector 1;
end: cyl 706/ head 115/ sector 52
The data for partition 2 is:
UNUSED
The data for partition 3 is:
UNUSED
The data for partition 4 is:
UNUSED

root@warehouse:/root # mount_msdosfs /dev/da2s1 /usb2
mount_msdosfs: /dev/da2s1: Invalid argument
root@warehouse:/root #
___
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: USB can't mount msdosfs drive

2013-06-05 Thread Joseph Mays
One item of note – I did not notice this before, the but following messages are 
appearing in dmesg whenever I try to mount this device. Note that I have 
another msdosfs usb stick mounted in usb0, that mount worked fine first try.

WARNING: mount of da2s1 denied due to unsupported optional features

From: Joseph Mays 
Sent: Wednesday, June 05, 2013 11:55 AM
To: freebsd-questions@freebsd.org 
Subject: USB can't mount msdosfs drive

Tried several iterations, though it’s clearly a fat32 formatted USB drive. 
Shown  below are the results of fdisk and the mount_msdosfs command.


root@warehouse:/root # fdisk /dev/da2
*** Working on device /dev/da2 ***
parameters extracted from in-core disklabel are:
cylinders=1897 heads=255 sectors/track=63 (16065 blks/cyl)

Figures below won't work with BIOS for partitions not in cyl 1
parameters to be used for BIOS calculations are:
cylinders=1897 heads=255 sectors/track=63 (16065 blks/cyl)

Media sector size is 512
Warning: BIOS sector numbering starts with sector 1
Information from DOS bootblock is:
The data for partition 1 is:
sysid 12 (0x0c),(DOS or Windows 95 with 32 bit FAT (LBA))
start 8064, size 30473088 (14879 Meg), flag 80 (active)
beg: cyl 1/ head 0/ sector 1;
end: cyl 706/ head 115/ sector 52
The data for partition 2 is:
UNUSED
The data for partition 3 is:
UNUSED
The data for partition 4 is:
UNUSED

root@warehouse:/root # mount_msdosfs /dev/da2s1 /usb2
mount_msdosfs: /dev/da2s1: Invalid argument
root@warehouse:/root #
___
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

getting system's telnet sessions' pid per pty

2013-06-05 Thread takCoder
Hi everyone :)

Do you have any ideas how i can separate telnet session's pid per pty it
uses ??

i have written a reporter shell which prints out all current remote
sessions' pid per tty per user. My shell uses 'pstree' tool together with
'w' command outputs to do so.

Everything is fine. I just can't figure it out when one user makes more
than one telnet session to my system! i have all of that user's telnet
sessions' pids, but i can not figure it out to which pts they are related.

if only i could trust on increasing pid assignment!! then i could use time
entry in 'w' command's output to relate them.. Also, I'd rather not to keep
old data of the time each session is created in a common structure to use
it later on as well, i am trying to generate this list dynamically, based
on current sessions available while calling my shell, using the tty which
runs it..

any ideas? any other command line tools which may help me?? any command
which gives me pid per tty information or alike?

Looking forward to any helpful  points and ideas from you all.. :)

Best Regards,
takCoder
___
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:

2013-06-05 Thread asrofibcllamongan

anais_rondeau http://fonio-bio.org/yahoo.com/anna_austin.jpeg

___
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: USB can't mount msdosfs drive

2013-06-05 Thread Tijl Coosemans
On 2013-06-05 18:33, Joseph Mays wrote:
 Joseph Mays:
 Tried several iterations, though it’s clearly a fat32 formatted USB
 drive. Shown below are the results of fdisk and the mount_msdosfs
 command.
 
 
 root@warehouse:/root # fdisk /dev/da2
 *** Working on device /dev/da2 ***
 parameters extracted from in-core disklabel are:
 cylinders=1897 heads=255 sectors/track=63 (16065 blks/cyl)
 
 Figures below won't work with BIOS for partitions not in cyl 1
 parameters to be used for BIOS calculations are:
 cylinders=1897 heads=255 sectors/track=63 (16065 blks/cyl)
 
 Media sector size is 512
 Warning: BIOS sector numbering starts with sector 1
 Information from DOS bootblock is:
 The data for partition 1 is:
 sysid 12 (0x0c),(DOS or Windows 95 with 32 bit FAT (LBA))
 start 8064, size 30473088 (14879 Meg), flag 80 (active)
 beg: cyl 1/ head 0/ sector 1;
 end: cyl 706/ head 115/ sector 52
 The data for partition 2 is:
 UNUSED
 The data for partition 3 is:
 UNUSED
 The data for partition 4 is:
 UNUSED
 
 root@warehouse:/root # mount_msdosfs /dev/da2s1 /usb2
 mount_msdosfs: /dev/da2s1: Invalid argument

 One item of note – I did not notice this before, the but following
 messages are appearing in dmesg whenever I try to mount this device.
 Note that I have another msdosfs usb stick mounted in usb0, that
 mount worked fine first try.
 
 WARNING: mount of da2s1 denied due to unsupported optional features

That's odd, because that warning comes from ext2fs not msdosfs. Do you
use ext2fs anywhere?
What version of FreeBSD is this? And is this just a standard installation
or do you compile your own kernel?



signature.asc
Description: OpenPGP digital signature


Re: USB can't mount msdosfs drive

2013-06-05 Thread Joseph Mays

WARNING: mount of da2s1 denied due to unsupported optional features



That's odd, because that warning comes from ext2fs not msdosfs. Do you
use ext2fs anywhere?
What version of FreeBSD is this? And is this just a standard installation
or do you compile your own kernel?


root@warehouse:/root # uname -a
FreeBSD warehouse 9.1-RC1 FreeBSD 9.1-RC1 #0: Tue Aug 14 04:25:06 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64


No, I didn't compile my own kernel. The USB stick in question was stuck into 
the back of a redhat linux box. Okay, I did actually try also mounting it 
with:


mount -t ext2fs /dev/da2s1 /usb2

just to see what would happen. After trying it a couple more times I see 
that was what was adding the that warning to dmesg. So that's explained, but 
I still don't understand why I can't mount it with mount_msdosfs





-Original Message- 
From: Tijl Coosemans

Sent: Wednesday, June 05, 2013 1:36 PM
To: Joseph Mays
Cc: freebsd-questions@freebsd.org
Subject: Re: USB can't mount msdosfs drive

___
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: How to compile ipoib module manually?

2013-06-05 Thread Alex Liptsin
Thanks a lot.

Alex L.


Sent from my iPhone

On 5 ביונ 2013, at 18:13, John Baldwin 
j...@freebsd.orgmailto:j...@freebsd.org wrote:

On Tuesday, June 04, 2013 5:18:46 am Alex Liptsin wrote:
I commented on that lines, because I want to compile and load that modules
manually.
I had succeed to compile and load mlx4, mlx4ib and mlxen from /sys/modules:

[root@h-qa-033 mlxen]# kldstat
Id Refs AddressSize Name
1   14 0x8020 13acbd8  kernel
21 0x81612000 21e5 if_mos.ko
33 0x81615000 124ebmlx4.ko
41 0x81628000 e225 mlx4ib.ko
51 0x81637000 ec60 mlxen.ko

The problem is that IPOIB module is missing in /sys/modules.

1.  Where can I find it?

2.  How can I compile ipoib support?

You will have to create one.  You should be able to use the existing module
Makefiles as a guide.

--
John Baldwin
___
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: How to compile ipoib module manually?

2013-06-05 Thread Garrett Cooper
On Jun 5, 2013, at 10:22 AM, Alex Liptsin wrote:

 Thanks a lot.
 
 Alex L.
 
 
 Sent from my iPhone
 
 On 5 ביונ 2013, at 18:13, John Baldwin 
 j...@freebsd.orgmailto:j...@freebsd.org wrote:
 
 On Tuesday, June 04, 2013 5:18:46 am Alex Liptsin wrote:
 I commented on that lines, because I want to compile and load that modules
 manually.
 I had succeed to compile and load mlx4, mlx4ib and mlxen from /sys/modules:
 
 [root@h-qa-033 mlxen]# kldstat
 Id Refs AddressSize Name
 1   14 0x8020 13acbd8  kernel
 21 0x81612000 21e5 if_mos.ko
 33 0x81615000 124ebmlx4.ko
 41 0x81628000 e225 mlx4ib.ko
 51 0x81637000 ec60 mlxen.ko
 
 The problem is that IPOIB module is missing in /sys/modules.
 
 1.  Where can I find it?
 
 2.  How can I compile ipoib support?
 
 You will have to create one.  You should be able to use the existing module
 Makefiles as a guide.

(Please don't cross-post multiple mailing lists)
See also: https://github.com/yaneurabeya/freebsd/tree/ib-modules . Diff 
that branch and master to see what I've done so far to make the IB stuff into 
modules (example: 
https://github.com/yaneurabeya/freebsd/blob/ib-modules/sys/modules/ipoib/Makefile
 ). It's not perfect, but it's a start. Something that I've wanted to push into 
the Isilon IB branch for some time, but it's going to take a while before 
that's committed back to FreeBSD proper I think.
Please credit me and add sponsored-by: EMC Isilon for the initial work 
if you push this elsewhere. Otherwise, it's all your's to play with :).
Cheers,
-Garrett
___
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: USB can't mount msdosfs drive

2013-06-05 Thread Warren Block

On Wed, 5 Jun 2013, Joseph Mays wrote:


Tried several iterations, though it?s clearly a fat32 formatted USB drive. 
Shown  below are the results of fdisk and the mount_msdosfs command.


root@warehouse:/root # fdisk /dev/da2
*** Working on device /dev/da2 ***
parameters extracted from in-core disklabel are:
cylinders=1897 heads=255 sectors/track=63 (16065 blks/cyl)

Figures below won't work with BIOS for partitions not in cyl 1
parameters to be used for BIOS calculations are:
cylinders=1897 heads=255 sectors/track=63 (16065 blks/cyl)

Media sector size is 512
Warning: BIOS sector numbering starts with sector 1
Information from DOS bootblock is:
The data for partition 1 is:
sysid 12 (0x0c),(DOS or Windows 95 with 32 bit FAT (LBA))
   start 8064, size 30473088 (14879 Meg), flag 80 (active)
   beg: cyl 1/ head 0/ sector 1;
   end: cyl 706/ head 115/ sector 52
The data for partition 2 is:
UNUSED
The data for partition 3 is:
UNUSED
The data for partition 4 is:
UNUSED

root@warehouse:/root # mount_msdosfs /dev/da2s1 /usb2
mount_msdosfs: /dev/da2s1: Invalid argument
root@warehouse:/root #


Maybe the large option to mount_msdosfs(8)?

Also, something is odd about the first partition starting at 8064. 
What does 'gpart show da2' say?

___
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: USB can't mount msdosfs drive

2013-06-05 Thread Joseph Mays

Maybe the large option to mount_msdosfs(8)?


Also, something is odd about the first partition starting at 8064. 
What does 'gpart show da2' say?


root@warehouse:/backups # gpart show da2
=  63  30481089  da2  MBR  (14G)
   63  8001   - free -  (3.9M)
 8064  304730881  !12  [active]  (14G)

___
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: USB can't mount msdosfs drive

2013-06-05 Thread Joseph Mays

root@warehouse:/backups # mount_msdosfs -o large /dev/da2s1 /usb2
mount_msdosfs: /dev/da2s1: Invalid argument

-Original Message- 
From: Warren Block

Sent: Wednesday, June 05, 2013 2:50 PM
To: Joseph Mays
Cc: freebsd-questions@freebsd.org
Subject: Re: USB can't mount msdosfs drive

On Wed, 5 Jun 2013, Joseph Mays wrote:

Tried several iterations, though it?s clearly a fat32 formatted USB drive. 
Shown  below are the results of fdisk and the mount_msdosfs command.



root@warehouse:/root # fdisk /dev/da2
*** Working on device /dev/da2 ***
parameters extracted from in-core disklabel are:
cylinders=1897 heads=255 sectors/track=63 (16065 blks/cyl)

Figures below won't work with BIOS for partitions not in cyl 1
parameters to be used for BIOS calculations are:
cylinders=1897 heads=255 sectors/track=63 (16065 blks/cyl)

Media sector size is 512
Warning: BIOS sector numbering starts with sector 1
Information from DOS bootblock is:
The data for partition 1 is:
sysid 12 (0x0c),(DOS or Windows 95 with 32 bit FAT (LBA))
   start 8064, size 30473088 (14879 Meg), flag 80 (active)
   beg: cyl 1/ head 0/ sector 1;
   end: cyl 706/ head 115/ sector 52
The data for partition 2 is:
UNUSED
The data for partition 3 is:
UNUSED
The data for partition 4 is:
UNUSED

root@warehouse:/root # mount_msdosfs /dev/da2s1 /usb2
mount_msdosfs: /dev/da2s1: Invalid argument
root@warehouse:/root #


Maybe the large option to mount_msdosfs(8)?

Also, something is odd about the first partition starting at 8064.
What does 'gpart show da2' say? 


___
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: getting system's telnet sessions' pid per pty

2013-06-05 Thread bw.mail.lists



any ideas? any other command line tools which may help me?? any command
which gives me pid per tty information or alike?


Try fstat(1) and procstat(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: USB can't mount msdosfs drive

2013-06-05 Thread Polytropon
On Wed, 5 Jun 2013 15:12:19 -0400, Joseph Mays wrote:
 root@warehouse:/backups # mount_msdosfs -o large /dev/da2s1 /usb2
 mount_msdosfs: /dev/da2s1: Invalid argument

Just a wild guess, without having tried any reference test
on my side, but did you already try to access da2 instead
of da2s1? _Sometimes_ (and I can't even tell you at _what_
times) a FAT (msdosfs) formatted media can be mounted in
that specific way (even though I assume that in such a
case, no slice device would be present - but as I said,
just a guess maybe worth a try).

# mount_msdosfs /dev/da2 /usb2

But just to be fully sure: This is a USB stick / thumb
drive, right? It's not some internal card reader (which
would probably require re-tasting)? Just asking to make
sure I haven't missed this fact while reading...



-- 
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: USB can't mount msdosfs drive

2013-06-05 Thread Joseph Mays

did you already try to access da2 instead of da2s1?


Yeah, tried that early on, got the same result.

root@warehouse:/backups/postgres-02/info # mount_msdosfs /dev/da2 /usb2
mount_msdosfs: /dev/da2: Invalid argument


But just to be fully sure: This is a USB stick / thumb drive, right?


Yes. It's one of several thumb drives that were mounted in the back of some 
linux machines at remote sites we help a customer with. The client is unsure 
what was on them, but needs to know. We asked them to gather them up and 
stick them into usb ports on a freebsd machine we have access to and manage 
at their location (in another state). Most of them I got mounted as either 
msdosfs, or ufs, or ntfs, or extfs2, and was able to get the data off them. 
This thumb drive is one of two holdouts.


___
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: USB can't mount msdosfs drive

2013-06-05 Thread Jerry
On Wed, 5 Jun 2013 16:12:59 -0400
Joseph Mays articulated:

 Yes. It's one of several thumb drives that were mounted in the back
 of some linux machines at remote sites we help a customer with. The
 client is unsure what was on them, but needs to know. We asked them
 to gather them up and stick them into usb ports on a freebsd machine
 we have access to and manage at their location (in another state).
 Most of them I got mounted as either msdosfs, or ufs, or ntfs, or
 extfs2, and was able to get the data off them. This thumb drive is
 one of two holdouts.

Is it possible that they are petitioned as exFAT (Extended File
Allocation Table) drives? That is how I partition all of my flash drives.

-- 
Jerry ♔

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: USB can't mount msdosfs drive

2013-06-05 Thread Bernt Hansson

On 2013-06-05 22:12, Joseph Mays wrote:

did you already try to access da2 instead of da2s1?


Yeah, tried that early on, got the same result.

root@warehouse:/backups/postgres-02/info # mount_msdosfs /dev/da2 /usb2
mount_msdosfs: /dev/da2: Invalid argument


But just to be fully sure: This is a USB stick / thumb drive, right?


Yes. It's one of several thumb drives that were mounted in the back of
some linux machines at remote sites we help a customer with. The client
is unsure what was on them, but needs to know. We asked them to gather
them up and stick them into usb ports on a freebsd machine we have
access to and manage at their location (in another state). Most of them
I got mounted as either msdosfs, or ufs, or ntfs, or extfs2, and was
able to get the data off them. This thumb drive is one of two holdouts.


If you do a ls /dev/da* What does it show.


___
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: why is ports web page so far out of date

2013-06-05 Thread Shane Ambler

On 05/06/2013 17:00, Waitman Gobble wrote:


If you must have a web based version, another option is DIY roll your
own ports index based on your own local ports tree. At least you can
set it up how you want.

a simple quick-together script running on my computer:
https://dx.burplex.com/FreeBSD-ports/index.php

there's a github link at the bottom of the page you can hack on if you wanna.

cool thing is you can easily cross-reference all the corresponding
gnats PR files in your mailbox to the generated port page, i'll add
that bit tomorrow.


That looks useful. One thing I would think of adding is a search box.

I would have thought of breaking the lists into pages but am surprised 
at how fast the longer pages are generated.


One port that it has an issue with is devel/pear-HTML_Select_Common the 
select in the pkg-desc consumes all the following ports info. So you 
probably want to escape or translate   into lt; gt;



___
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