The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Operating Systems > SUN Solaris
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #5 (permalink)  
Old 05-20-2007
porter porter is offline Forum Advisor  
Registered User
  
 

Join Date: Jan 2007
Posts: 2,965
Yes grub is a bootloader. Should be able to configure it to get the options you want.

A raw disk has a load of bytes on it. Partitions (or slices) are subdivisions of that space. A filesystem lives normally in a partition(or slice). A disk can have one single partition. A filesystem must be of some format and use a driver/handler.

In order to use a disk it has to be brought online, this is called "mounting" and basically identifies the type of filesystem, where the bytes for it are, what driver to use and where it should appear in the global file system (the mountpoint). When you want to take a disk offline it must be dismounted, hence "umount". A volume should be dismounted cleanly to make sure all buffers are flushed and files are closed. (see "sync").

"/etc/vfstab" is a file on Solaris which lists your volumes so the system can automatically mount them.