Ask a Question

Use of the file : /etc/grub.conf What do you mean by disk inode and incore inode? Short notes on : POT & MOT (CS 604)

on 2010-05-18 16:05:10   by MONI   on Computer Science & Engineering  2 answers

Administrator

on 2010-05-18 09:30:00  

The file /etc/grub.conf is a symbolic link to the file /boot/grub/grub.conf If you use grub, there are three steps to enable console redirection over serial; these steps all involve editing the grub configuration file /etc/grub.conf. 1. Passing the proper console parameters to the kernel. 2. Configuring the grub menu system to redirect to the proper console. 3. Removing any splash images that would prevent the proper serial-console display. Add the following two lines to the file /etc/grub.conf: serial --unit=1 --speed=9600 terminal serial console Adding these two lines sets up your serial port or your KVM as your grub console so that you can remotely or locally select a boot image from the grub menu. Comment out or remove the following line from the file /etc/grub.conf: splashimage=(hd0,1)/boot/grub/splash.xpm.gz Removing the splashimage line allows for greater compatibility during your serial connection; with this line removed, the splash image will not prevent the proper grub menu from displaying.

Administrator

on 2010-05-18 09:30:00  

The inode is a data structure that describes a file. The inode is actually a structure on filesystem. To open a file, the kernel copies the inode into memory. As the file changes, the in-core inode is updated usually more often than the on-disk copy. And the in-core inode has a few extra fields that are only needed while the file is opened.