Hardware Represented
by Files in /dev
|
Floppy Drive |
/dev/fd0 |
|
|
/dev/scd0 |
|
|
/dev/hdc (if the drive is the master IDE device on the |
|
|
/dev/ttyS0 |
|
|
/dev/lp0 |
|
/etc/fstab |
Lists the partitions and file systems that will be |
|
/etc/group |
Contains local group definitions. |
|
/etc/grub.conf |
Contains configuration parameters for the GRUB bootloader |
|
/etc/hosts |
Contains a list of hostname-to-IP address mappings the |
|
/etc/inittab |
Contains configuration parameters for the init process. |
|
/etc/init.d/ |
A subdirectory that contains startup scripts for services |
|
/etc/modules.conf |
Contains configuration parameters for your kernel modules. |
|
/etc/passwd |
Contains your system user accounts. |
|
/etc/shadow |
Contains encrypted passwords for your user accounts. |
|
/etc/X11/ |
Contains configuration files for X Windows. |
Linux File Types
|
Regular Files |
These files are similar to those used by the file systems |
|
Links |
These files are pointers that point to other files in the |
|
FIFO’s |
FIFO stands for First In First Out. These are special |
|
Sockets |
Sockets are similar to FIFOs in that they are used to |
Link Types
Hard – A hard link is a file that points directly to the
inode of another file. An inode stores basic information about a file in the
Linux file system, including its size, device,owner, and permissions. Because
the two files use the same inode, you can’t tell which file is the pointer and
which is the pointee after the hard link is created.
Symbolic – A symbolic link file also points to another file
in the file system. However, a file that is a symbolic link has its own inode.
Because the pointer file has its own inode, the pointer and the pointee in the
file system can be easily identified.
Backup Types
Full – In a full backup, all specified files are backed up,
regardless of whether or not they’ve been modified since the last backup. After
being backed up, each file is flagged as having been backed up.
Incremental – During an incremental backup, only the files
that have been modified since the last backup (full or incremental) are backed
up. After being backed up, each file is flagged as having been backed up.
Differential – During a differential backup, only the files
that have been modified since the last full backup are backed up. Even though
they have been backed up during a differential backup, the files involved are
NOT flagged as having been backed up.