Tag: mount

A Shell Scirpt to Mount ISO files

A Shell Scirpt to Mount ISO files – call it using the command moustiso.sh ImageFile.iso. You need a folder called…

Mount Windows Network Share with Samba

Use this command to mount a share on a windows system. It uses Samba. mount -t smbfs -o username=user,password=pass //WinClient/share…

See Mounted File Systems

Shows all mounted file systems in Linux cat /proc/mounts

Mount Windows Partion

Mount a Windows FAT partition. If it is an NTFS partion, use ‘ntfs’ instead of ‘fat’. Make sure that the…

Command to mount a Samba Share in Linux

Mount a windows network share in Linux using Samba mount -t smbfs -o username=user,password=pass //WinClient/share /mnt/share

Force an Unmount

Force umount when the device is busy fuser -km /mnt/hda2

Mount ISO Images

Mounting ISO Images in Linux mount -t iso9660 -o loop <Image_File> <Mount_Point> How to Mount ISO/MDF Images in Linux