After installing Linux on our computer to enable the read and write access to a partition , we need to mount the partition. Without mounting the drive we will not be able to access the drive/partition and that portions seems lost. To mount a partition in Ubuntu Linux we can use the simple terminal command:
sudo mountExample for the usage of mount command is:
siju@ubuntu:~$ sudo mount /dev/sda5
Where /dev/sda5 is the dir structure. You should type the command on the terminal. Terminal is accessable by following:
Applications > Accessories > Terminal
Most of the time to perform mounting the Ubuntu will ask your administrative password to authorise the action. If the mount point doesn't exist (wrong dir) ,we will get an error messqage like below,
----------------------------------------------------------------
[sudo] password for siju:
mount: mount point none does not exist
---------------------------------------------------------------
To know the dir structure on your computer you can use the simple terminal command.
sudo fdisk -l
Eg:
-----------------------------------------------------
siju@ubuntu:~$ sudo fdisk -l
-------------------------------------------------------
We will get the dir structure including the reserved space as shown below.
----------------------------------------------------------------------------------------
Disk /dev/sda: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0xe40ae40a
Device Boot Start End Blocks Id System
/dev/sda1 * 1 3283 26370666 83 Linux
/dev/sda2 3284 19457 129917655 5 Extended
/dev/sda5 19093 19457 2931831 82 Linux swap / Solaris
/dev/sda6 3284 6322 24410704+ 83 Linux
/dev/sda7 6323 9361 24410736 83 Linux
Partition table entries are not in disk order
---------------------------------------------------------------------------------------------------
New Topics