2

I ran this command on RHEL 6.3:

# mount /dev/cdrom /mnt

Everything is okay, but after a restart the mounted dir, /mnt disappears... I don't know where is it going.

jasonwryan
  • 71,734
  • 34
  • 193
  • 226
user144747
  • 31
  • 1
  • 1
  • 4

4 Answers4

4

Mount doesn't permanently mount the file. To do that, you must edit your /etc/fstab file. man fstab will give you all the documentation you need.

3

Because when you boot up, nothing is mounted yet and each filesystem must be mounted in turn. The list of filesystems that should be automatically mounted during boot is in /etc/fstab so if you want your cdrom to be mounted automatically on each boot, you must add a line for it to that file.

psusi
  • 17,007
  • 3
  • 40
  • 51
1

just add this entry to /etc/fstab file :

    /dev/cdrom         /mnt/cdrom            iso9660        ro                0   0
Ijaz Ahmad
  • 7,146
  • 5
  • 32
  • 45
-2

Steps to mount a disk permanently.
Doing this will mount your disk during boot time.

  1. Attach your disk manually once.
  2. Goto /proc/mounts and /etc/mtab and look for your mount entry.
  3. Copy the entry that you want to be mounted on boot.
  4. Paste it at the end of /etc/fstab. /etc/fstab Contains entries that are mounted during boot.

You can even manually add your entry in /etc/fstab, but copying it from /proc/mounts or /etc/mtab makes sure that you not make any error or mistake in listing your mount point

more helpful links link 1 link 2

Shivam Anand
  • 111
  • 2