Thursday, May 15th, 2008 11:30 PM
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
No Comments »
Monday, February 11th, 2008 11:18 PM
Shows all mounted file systems in Linux
cat /proc/mounts
No Comments »
Monday, January 28th, 2008 10:46 PM
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
No Comments »
Saturday, January 26th, 2008 10:22 PM
Mount a windows network share in Linux using Samba
mount -t smbfs -o username=user,password=pass //WinClient/share /mnt/share
No Comments »
Saturday, January 19th, 2008 11:34 PM
Force umount when the device is busy
fuser -km /mnt/hda2
No Comments »
Sunday, April 29th, 2007 06:57 AM
Mounting ISO Images in Linux
mount -t iso9660 -o loop <Image_File> <Mount_Point>
How to Mount ISO/MDF Images in Linux
No Comments »