Page 1 of 1

release 10.1-alpha2/i386 usb-access ???

Posted: Mon Mar 23, 2015 3:49 am
by pan201
1. no mount, no open, what is to do ???
2. i need to install "gparted", why ???
laptop=HP530

Re: release 10.1-alpha2/i386 usb-access ???

Posted: Tue Mar 24, 2015 9:06 pm
by ericbsd
With the little information you give us, I will suggest you to look at http://wiki.ghostbsd.org/index.php?titl ... endrive.3F.

Re: release 10.1-alpha2/i386 usb-access ???

Posted: Thu Mar 26, 2015 8:01 am
by pan201
Thank you ericbsd !

My Ghost-Installation from usb is successfull. Under Ghost i have not success on usb-stick (partition=fat32), i need my data.
MIt welchem Werktzeg kann ich den usb-Stift partitionieren, was für Format ?
What is to do ?

Re: release 10.1-alpha2/i386 usb-access ???

Posted: Sun Jul 05, 2015 2:39 pm
by bsdkeith
This may be too late for the OP, but I think the question is 'how do I mount my fat32 formatted pendrive'.

One way is done in the terminal as the root user (or by using sudo).

Code: Select all

mount -t msdosfs /dev/da0s1i /mnt
then to see your files you can do

Code: Select all

ls /mnt
do what you want to do, & then un mount it (again as the root user) before removing it by

Code: Select all

umount /mnt
not strictly neccessary but you can check that it is unmounted by not showing when you use

Code: Select all

df -h
(Hope this is of help to someone.)