Quote:
|
Originally Posted by adrenaline Ok first question. I have a 30 gig hd and I am not sure where freeBSD puts things. Here is what I usually do I am open to suggestions.
/boot 78 ext3
/ 1000 ext3
/usr 6000 ext3
/var 1000 ext3
/home the rest ext3
This how I do a desktop partition in Linux
ext 3 is probably a non issue in BSD
Mike |
in FreeBSD it's completely different. it uses it's own file system and it's own labelling method to label partitions. if you look at how FreeBSD resides on your harddrive under Linux it'll appear as one partition, even if you've made one partition for /home, one for /usr, etc. i would personally use the "auto" setting for this cause the FreeBSD installer probably knows what's best, unless you have some specific request. just press "a" when it comes to the partitioning. and then "q" to finish. just for referece, here's my
df -h:
Code:
Filesystem Size Used Avail Capacity Mounted on
/dev/ad0s1a 248M 38M 190M 17% /
devfs 1.0K 1.0K 0B 100% /dev
/dev/ad0s1e 248M 19M 209M 8% /tmp
/dev/ad0s1f 35G 3.4G 29G 10% /usr
/dev/ad0s1d 248M 29M 199M 13% /var
this is on a 40GB hard drive with 1024mb for swap.
oh and by the way, if you want a separate /home, it resides under /usr (ie it's /usr/home/ not /home, though if you type cd /home it will take you to /usr/home)