What is the purpose of having both? Aren't they both used for mounting drives?
Asked
Active
Viewed 4.1k times
26
-
1http://askubuntu.com/questions/22215/why-have-both-mnt-and-media – Mikel Jan 02 '16 at 06:23
-
2@mohammad.k, this question hadn't been asked before on this site and is totally valid. See How should we deal with Google questions? on Meta. I've written more on this subject here. – Wildcard Jan 02 '16 at 06:48
2 Answers
33
I recommend visiting the Filesystem Hierarchy Standard.
/media
is mount point for removable media. In other words, where system mounts removable media. This directory contains sub-directories used for mounting removable media such as CD-ROMs, floppy disks, etc./mnt
is for temporary mounting. In other words, where user can mount things. This directory is generally used for mounting filessytems temporarily when needed.
Ref:
http://www.pathname.com/fhs/pub/fhs-2.3.html#MEDIAMOUNTPOINT
http://www.pathname.com/fhs/pub/fhs-2.3.html#MNTMOUNTPOINTFORATEMPORARILYMOUNT
-
20What about less than temporary mounts? Where would you mount a partition "permanently"? – To Do Jan 02 '16 at 21:19
-
1The only good answer to this is "yes" or "anywhere you like". You can always locate a mount at a later point with either
mount
,findmnt
, or other similar commands. – Zhro Feb 03 '19 at 00:02 -
1Why would I mount anything in root? That would require applications and Terminal sudo to be able to write to the. Why not just use home? I'm mounting a folder from local network. – Shayan Sep 28 '19 at 09:04
25
use /mnt for stuff you mount by yourself
leave /media for the system to mount its stuff

DuploRaf
- 271