
Originally Posted by
jasper5408
It still seems like you have multiple partitions but I may have misinterpretted it.
Yes, you caught that right. I do actually have multiple Linux partitions, it's just that they aren't part of the filesystem hierarchy. That's the important point (I don't have any parts of the system mounted on additional partitions, only storage).
I have additional Linux partitions (I have two physical disks) mounted under /mnt for storage and installing games and other external software (e.g. vmware) that's not really part of my system.
I compile all my software from source, so I want it all on one root partition so I can easily back it up with tar.
Here's all my shit mounted, just so you can see what I do:
Code:
[root@cramit grogan]# df -hT
Filesystem Type Size Used Avail Use% Mounted on
/dev/sdb1 ext3 7.6G 2.7G 4.5G 38% /
/dev/sdb6 ext3 60G 19G 41G 32% /mnt/raptor
/dev/sda6 ext3 120G 78G 41G 66% /mnt/storage
shm tmpfs 2.0G 0 2.0G 0% /dev/shm
/dev/sda1 ntfs 51G 44G 7.0G 87% /mnt/windows
/dev/sda4 ext3 50G 4.0G 43G 9% /mnt/othersystem
/dev/sda7 ufs 8.6G 4.2G 3.7G 54% /mnt/freebsd
(/dev/sda7 is not really "sda7" it's just the hackish way that you have to access a disklabel on a freebsd slice in Linux. It's treated like a weird logical drive on /dev/sda2, which is the BSD slice)
I have two Linux systems that I built from scratch, one is 64 bit and the other (mounted right now on /mnt/othersystem) is 32 bit for games that don't have source and no 64 bit binaries. Both of those Linux installations are self contained, on their own root partitions. (swap is /dev/sdb5 and is not shown in there) Normally I don't mount all that stuff unless it's needed though. This is what I'd normally have accessible and is auto mounted at boot (entries in fstab)
Code:
[root@cramit grogan]# df -hT
Filesystem Type Size Used Avail Use% Mounted on
/dev/sdb1 ext3 7.6G 2.7G 4.5G 38% /
/dev/sdb6 ext3 60G 19G 41G 32% /mnt/raptor
/dev/sda6 ext3 120G 78G 41G 66% /mnt/storage
shm tmpfs 2.0G 0 2.0G 0% /dev/shm
/mnt/raptor is where I install games (sdb is a western digital raptor, hence the name of the mount)
/mnt/storage is storage, and vmware virtual machines. vmware is an example of what I consider "external software" because it's proprietary crap. It's not "mine", I'm only renting it lol
Bookmarks