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 /mnt/Image for this to work
#!/bin/sh
sudo mount -o loop "$*" /mnt/Image/
A Shell Scirpt to Mount ISO files – call it using the command moustiso.sh ImageFile.iso
. You need a folder called /mnt/Image for this to work
#!/bin/sh
sudo mount -o loop "$*" /mnt/Image/
Use this command to mount a share on a windows system. It uses Samba.
mount -t smbfs -o username=user,password=pass //WinClient/share /mnt/share
Shows all mounted file systems in Linux
cat /proc/mounts
Mount a Windows FAT partition. If it is an NTFS partion, use ‘ntfs’ instead of ‘fat’. Make sure that the kernel support ntfs if you want to do that.
mount -t vfat /dev/hda5 /mnt/d
Mount a windows network share in Linux using Samba
mount -t smbfs -o username=user,password=pass //WinClient/share /mnt/share
Force umount when the device is busy
fuser -km /mnt/hda2
Mounting ISO Images in Linux
mount -t iso9660 -o loop <Image_File> <Mount_Point>