Lecture: What is Mount Point in Linux?
What is a Mount Point?
In Linux, a mount point is a directory in the Linux file system where a storage device (like a hard disk, USB, CD/DVD) is attached or “mounted” so the system can access its data.
Think of it like this:
If your computer is a house, a mount point is like a door through which you can access another room (storage device).
Why is it Needed?
Linux treats everything as a file, including hardware like storage devices. To use files from a USB, CD, or another drive, it must first be mounted to a directory.
Common Mount Points in Linux
Mount Point | Description |
---|---|
/ (Root) | The top of the file system hierarchy |
/home | Stores user files and folders |
/boot | Contains boot files and kernel |
/mnt | Temporary mount point for devices |
/media | Used for mounting USBs, CDs, etc. automatically |
Mount Command Syntax
mount [OPTIONS] DEVICE MOUNT_POINT
Example:
mount /dev/sdb1 /mnt/usb
This command mounts the device /dev/sdb1 to the directory /mnt/usb.
Unmounting
To safely remove a device, unmount it:
umount /mnt/usb
Important Points
- You need root (admin) permissions to mount or unmount.
- Always unmount before removing USB or external devices to prevent data loss.
- You can automount devices using
/etc/fstab
.
Exam Format (Mount Point in Linux)
Q. What is a Mount Point in Linux? Explain with example.
Answer:
A mount point in Linux is a directory where a storage device is attached to access its data. For example, to use a USB device, it must be mounted to a directory such as /mnt/usb
.
Command Example:
mount /dev/sdb1 /mnt/usb
This mounts the device to the /mnt/usb directory. Unmounting is done using:
umount /mnt/usb
Mount points are important to access and manage additional storage in Linux.
माउंट पॉइंट क्या होता है?
माउंट पॉइंट एक फ़ोल्डर (Directory) होता है जहाँ हम किसी स्टोरेज डिवाइस (जैसे हार्ड डिस्क, पेन ड्राइव, CD/DVD आदि) को कंप्यूटर की फाइल सिस्टम में अस्थायी रूप से जोड़ते हैं।
इसका मतलब है कि हम किसी ड्राइव को एक नाम या लोकेशन देते हैं, ताकि हम उसके अंदर की फाइल्स को एक्सेस कर सकें।
आसान भाषा में समझो:
मान लीजिए आपका कंप्यूटर एक बड़ा मकान है और हर रूम एक फोल्डर है।
अब आप अपने दोस्त की हार्डडिस्क लेकर आए।
उसे घर के किसी रूम में रखने के लिए जगह चाहिए — यही रूम माउंट पॉइंट कहलाता है।
माउंट पॉइंट का उपयोग:
- जब भी कोई डिवाइस कनेक्ट करते हैं (जैसे USB), वह किसी फोल्डर में माउंट होता है।
- Linux में हम माउंट कमांड से मैन्युअली किसी डिवाइस को माउंट कर सकते हैं।
- बिना माउंट किए हम उस डिवाइस की फाइल्स नहीं देख सकते।
उदाहरण:
mount /dev/sdb1 /mnt/usb
इसका मतलब: /dev/sdb1
डिवाइस को /mnt/usb
नाम के फोल्डर में माउंट किया गया।
अनमाउंट करना:
अगर आपको डिवाइस हटानी हो तो पहले उसे unmount करना ज़रूरी होता है।
umount /mnt/usb
ज़रूरी बातें:
- माउंट पॉइंट एक खाली फोल्डर होना चाहिए।
- एक समय में एक माउंट पॉइंट पर एक ही डिवाइस जुड़ सकती है।
- Linux में
/
(root directory) से ही सबकुछ शुरू होता है।
एग्जाम में कैसे लिखें:
Q: What is Mount Point in Linux?
Ans:
A mount point is a directory in the Linux file system where an external storage device (like USB, CD, HDD) is attached temporarily to access its files.
We use the mount
command to attach the device, and umount
to detach it.
For example:mount /dev/sdb1 /mnt/usb
This command mounts the device /dev/sdb1
to the folder /mnt/usb
.