On Tue, 27 Nov 2012, Ralf Mardorf wrote:

All instructions failed. Is there a way to mount a linux partition or
USB-stick and to redirect the output of the gpart commands to a log
file?

In linux after mounting a partition or usb-stick I would do it like
that:

spinymouse@q:~$ echo "$ ls -l" >> logfile
spinymouse@q:~$ ls -l >> logfile

Too much work.  Use script(1):
$ script /tmp/session.log
$ (do a bunch of stuff)
$ exit

And session.log will contain everything. Including control characters, so edit it before posting.

So how can I mount e.g. an USB stick?

This is in the Handbook somewhere, but a quick look didn't find it, so:

# mount -t msdosfs /dev/da0s1 /mnt

That assumes there is a FAT filesystem in the first partition of the memory stick, a common setup. Please don't use NTFS.
_______________________________________________
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"

Reply via email to