Hi all:
I want use "removeable disk" with freebsd for backup, and I don't like ntfs or fat, so I formated the disk following this page:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/disks-adding.html
The result is: :e
To prevent hald mount this disk to /media directory(I use gnome), I touch these files in /usr/local/share/hal/fdi/preprobe/20thirdparty/ directory. Thank SirDice very much :e
Finaly, I can mount one of the partitions to /mnt/fender, but I can't touch anything.
How to solve it?
I want use "removeable disk" with freebsd for backup, and I don't like ntfs or fat, so I formated the disk following this page:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/disks-adding.html
The result is: :e
Code:
ls /dev/ | grep -i da
da0
da0s1
da0s1c
da0s1d
da0s1e
da0s1f
da0s1g
Code:
<?xml version="1.0" encoding="UTF-8"?>
<deviceinfo version="0.2">
<device>
<match key="freebsd.driver" string="ohci">
<merge key="info.ignore" type="bool">true</merge>
</match>
</device>
</deviceinfo>
Code:
<?xml version="1.0" encoding="UTF-8"?>
<deviceinfo version="0.2">
<device>
<match key="freebsd.driver" string="ehci">
<merge key="info.ignore" type="bool">true</merge>
</match>
</device>
</deviceinfo>
Finaly, I can mount one of the partitions to /mnt/fender, but I can't touch anything.

Code:
$ mount /dev/da0s1e /mnt/fender/
$ cd /mnt/fender/
$ pwd
/mnt/fender
$ touch something
touch: something: Permission denied
How to solve it?