Check these files:
1) /etc/auto.master:
Code:
# Sample auto.master file
# Format of this file:
# mountpoint map options
# For details of the format look at autofs(5).
# /var/autofs/misc /etc/auto.misc
# /var/autofs/net /etc/auto.net
#
# KNOPPIX automounts for floppy and cdrom(s), see knoppix-autoconfig
# /mnt/auto /etc/auto.mnt --timeout=2
/mnt/auto /etc/automount.sh --timeout=2
2) /etc/auto.misc
Code:
# $Id: auto.misc,v 1.2 1997/10/06 21:52:04 hpa Exp $
# This is an automounter map and it has the following format
# key [ -mount-options-separated-by-comma ] location
# Details may be found in the autofs(5) manpage
kernel -ro ftp.kernel.org:/pub/linux
boot -fstype=ext2 :/dev/hda1
removable -fstype=ext2,sync,nodev,nosuid :/dev/hdd
cd -fstype=iso9660,ro,sync,nodev,nosuid :/dev/hdc
floppy -fstype=auto,sync,nodev,nosuid :/dev/fd0
3) /etc/auto.mnt
Code:
# Knoppix automounter file for Directory /mnt
floppy -fstype=auto,sync,exec,umask=000 :/dev/fd0
cdrom -fstype=auto,exec,ro :/dev/cdrom
# The following entries (if any) are auto-generated by knoppix-autoconfig
4) /etc/fstab
Code:
/dev/fd0 /floppy vfat defaults,user,noauto,showexec,umask=022 0 0
5) /etc/rc5.d
See if symlink to autofs exist.
If doesn't exist, add by running this command: update-rc.d autofs defaults
You need to reboot after doing the editing.
Good luck