Network Administration SCMP 3852
Network Administration SCMP 3852
SCMP 3852
• Besides the file system types listed in the table, there are also
what are referred to as network shared file systems. Locally, a
network shared file system may be an ext3, ntfs, or other normal
file system type. However, all or part of those file systems can
be shared with network protocols such as Samba (smbfs or cifs file
system type), NFS (nfs), and NetWare (ncpfs).
• The fdisk command is a useful Linux tool for listing and changing
disk partitions.
• Keep in mind that modifying or deleting partitions can cause
valuable data to be removed, so be sure of your changes before
writing them to disk.
• To use the fdisk command to list information about the partitions
on your hard disk, type the following command as root user
$ sudo fdisk -l List disk partitions for every disk
Disk /dev/sda: 82.3 GB, 82348277760 bytes
255 heads, 63 sectors/track, 10011 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
• This example is for an 80GB hard disk that is divided into three
partitions.
• The first (/dev/sda1) is a small /boot partition that is configured as
a Linux ext3 file system (Id 83).
• Note the asterisk (*), indicating that the first partition is bootable.
• The next partition is assigned to the root file system and is also
ext3.
• The final partition is Linux swap.