The Fine Print: The following comments
are owned by whoever posted them.
( Add a Reply )
|
Re: How to mount a USB 2.0 Hard Drive to FreeBSD
by Understudy on Monday November 29, @06:00PM
|
Okay a couple of things here. The basic command is:
mount -t msdos /dev/da0s1 /mnt
However that assumes you have a FAT32 partition on the usb drive. Which is fine. If you have a NTFS partition you need to have NTFS support in the kernel, which isn't very good right now.
If it is a ufs partition (FreeBSD 4.x), the basic command is :
mount -t ufs /dev/da0s1 /mnt
If it is a ufs2 partition (FreeBSD 5.x), the basic command is :
mount -t ufs2 /dev/da0s1 /mnt
In order to copy the files you simply do:
$ cp /diretoryname/filename /mnt/directoryname/filename
as a very rough example.
But if you want to free up space I recommend using move:
$ mv /diretoryname/filename /mnt/directoryname/filename
|
[
Add a Reply to this ] |
Re: How to mount a USB 2.0 Hard Drive to FreeBSD
by Understudy on Thursday February 10, @10:56PM
|
The ufs2 mount mounts the same as ufs do not place the 2 after ufs.
|
[
Reply to this ]
|
Re: How to mount a USB 2.0 Hard Drive to FreeBSD
by veerreddy on Friday February 18, @09:43PM
|
how
i get an error when mounting external hdd to my system. i get this error mount :/dev/da0s4: operation not permited
|
[
Reply to this ]
|
|
Re: How to mount a USB 2.0 Hard Drive to FreeBSD
by Understudy on Thursday February 10, @11:01PM
|
There is a really cool article on how to format and create a file system and mount point for a new usb drive here.
http://freebsd.backfire.ca/pages/newdisk
I should update this for a usb specfic item but the idea is there.
|
[
Add a Reply to this ] |
Re: How to mount a USB 2.0 Hard Drive to FreeBSD
by awais on Friday October 24, @08:00AM
|
o thanks dear. you have solved my big probelm.
|
[
Reply to this ]
|
|
The Fine Print: The following
comments are owned by whoever posted them.
( Article Reply )
|